zmc
2023-12-22 9fdbf60165db0400c2e8e6be2dc6e88138ac719a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
U
G=®dŸFã@sbdZddlZddlZddlZddlmZddlmZmZm    Z    m
Z
m Z ddlm Z Gdd„dƒZ dS)ztdistutils.cmd
 
Provides the Command class, the base class for the command classes
in the distutils.command package.
éN)ÚDistutilsOptionError)ÚutilÚdir_utilÚ    file_utilÚ archive_utilÚdep_util©Úlogc@s"eZdZdZgZdd„Zdd„Zdd„Zdd    „Zd
d „Z    dCdd„Z
dd„Z dDdd„Z dd„Z dEdd„ZdFdd„Zdd„ZdGdd„Zdd „Zd!d"„Zd#d$„Zd%d&„ZdHd'd(„ZdId*d+„Zd,d-„Zd.d/„Zd0d1„ZdJd2d3„ZdKd5d6„ZdLd7d8„ZdMd9d:„ZdNd;d<„ZdOd=d>„Z dPd?d@„Z!dQdAdB„Z"d S)RÚCommanda}Abstract base class for defining command classes, the "worker bees"
    of the Distutils.  A useful analogy for command classes is to think of
    them as subroutines with local variables called "options".  The options
    are "declared" in 'initialize_options()' and "defined" (given their
    final values, aka "finalized") in 'finalize_options()', both of which
    must be defined by every command class.  The distinction between the
    two is necessary because option values might come from the outside
    world (command line, config file, ...), and any options dependent on
    other options must be computed *after* these outside influences have
    been processed -- hence 'finalize_options()'.  The "body" of the
    subroutine, where it does all its work based on the values of its
    options, is the 'run()' method, which must also be implemented by every
    command class.
    cCsbddlm}t||ƒstdƒ‚|jtkr0tdƒ‚||_| ¡d|_    |j
|_
d|_ d|_ d|_ dS)zÞCreate and initialize a new Command object.  Most importantly,
        invokes the 'initialize_options()' method, which is the real
        initializer and depends on the actual command being
        instantiated.
        r)Ú Distributionz$dist must be a Distribution instancezCommand is an abstract classN)Údistutils.distr Ú
isinstanceÚ    TypeErrorÚ    __class__r
Ú RuntimeErrorÚ distributionÚinitialize_optionsÚ_dry_runÚverboseÚforceÚhelpÚ    finalized)ÚselfÚdistr ©rúPD:\z\workplace\VsCode\pyvenv\venv\Lib\site-packages\setuptools/_distutils/cmd.pyÚ__init__/s 
 
 
zCommand.__init__cCs<|dkr0t|d|ƒ}|dkr*t|j|ƒS|Snt|ƒ‚dS)NÚdry_runÚ_)ÚgetattrrÚAttributeError)rÚattrÚmyvalrrrÚ __getattr___s  zCommand.__getattr__cCs|js| ¡d|_dS)Né)rÚfinalize_options©rrrrÚensure_finalizediszCommand.ensure_finalizedcCstd|jƒ‚dS)aÙSet default values for all the options that this command
        supports.  Note that these defaults may be overridden by other
        commands, by the setup script, by config files, or by the
        command-line.  Thus, this is not the place to code dependencies
        between options; generally, 'initialize_options()' implementations
        are just a bunch of "self.foo = None" assignments.
 
        This method must be implemented by all command classes.
        ú,abstract method -- subclass %s must overrideN©rrr&rrrr{s
ÿzCommand.initialize_optionscCstd|jƒ‚dS)aSet final values for all the options that this command supports.
        This is always called as late as possible, ie.  after any option
        assignments from the command-line or from other commands have been
        done.  Thus, this is the place to code option dependencies: if
        'foo' depends on 'bar', then it is safe to set 'foo' from 'bar' as
        long as 'foo' still has the same value it was assigned in
        'initialize_options()'.
 
        This method must be implemented by all command classes.
        r(Nr)r&rrrr%ˆs ÿzCommand.finalize_optionsNÚcCsšddlm}|dkr d| ¡}|j||tjd|d}|jD]R\}}}| |¡}|ddkrn|dd…}t||ƒ}|j|d||ftjdqBdS)    Nr)Ú longopt_xlatezcommand options for '%s':)Úlevelz  éÿÿÿÿú=z%s = %s)    Údistutils.fancy_getoptr+Úget_command_nameÚannouncer    ÚINFOÚ user_optionsÚ    translater)rÚheaderÚindentr+ÚoptionrÚvaluerrrÚ dump_options—s  
 
ÿzCommand.dump_optionscCstd|jƒ‚dS)a¾A command's raison d'etre: carry out the action it exists to
        perform, controlled by the options initialized in
        'initialize_options()', customized by other commands, the setup
        script, the command-line, and config files, and finalized in
        'finalize_options()'.  All terminal output and filesystem
        interaction should be done by 'run()'.
 
        This method must be implemented by all command classes.
        r(Nr)r&rrrÚrun¥s
ÿz Command.runr$cCst ||¡dS)zmIf the current verbosity level is of greater than or equal to
        'level' print 'msg' to stdout.
        Nr)rÚmsgr,rrrr1²szCommand.announcecCs&ddlm}|r"t|ƒtj ¡dS)z~Print 'msg' to stdout if the global DEBUG (taken from the
        DISTUTILS_DEBUG environment variable) flag is true.
        r)ÚDEBUGN)Údistutils.debugr<ÚprintÚsysÚstdoutÚflush)rr;r<rrrÚ debug_print¸s zCommand.debug_printcCsBt||ƒ}|dkr"t|||ƒ|St|tƒs>td|||fƒ‚|S)Nz'%s' must be a %s (got `%s`))rÚsetattrr Ústrr)rr7ÚwhatÚdefaultÚvalrrrÚ_ensure_stringlikeÏs
 
ÿzCommand._ensure_stringlikecCs| |d|¡dS)zWEnsure that 'option' is a string; if not defined, set it to
        'default'.
        ÚstringN)rH)rr7rFrrrÚ ensure_stringÙszCommand.ensure_stringcCspt||ƒ}|dkrdSt|tƒr6t||t d|¡ƒn6t|tƒrTtdd„|Dƒƒ}nd}|sltd||fƒ‚dS)zîEnsure that 'option' is a list of strings.  If 'option' is
        currently a string, we split it either on /,\s*/ or /\s+/, so
        "foo bar baz", "foo,bar,baz", and "foo,   bar baz" all become
        ["foo", "bar", "baz"].
        Nz,\s*|\s+css|]}t|tƒVqdS©N)r rD)Ú.0ÚvrrrÚ    <genexpr>ìsz-Command.ensure_string_list.<locals>.<genexpr>Fz''%s' must be a list of strings (got %r))    rr rDrCÚreÚsplitÚlistÚallr)rr7rGÚokrrrÚensure_string_listßs
 
 
ÿÿzCommand.ensure_string_listcCs6| |||¡}|dk    r2||ƒs2td|||fƒ‚dS)Nzerror in '%s' option: )rHr)rr7ÚtesterrEÚ    error_fmtrFrGrrrÚ_ensure_tested_stringôs
ÿzCommand._ensure_tested_stringcCs| |tjjdd¡dS)z5Ensure that 'option' is the name of an existing file.Úfilenamez$'%s' does not exist or is not a fileN)rWÚosÚpathÚisfile©rr7rrrÚensure_filenameûs þzCommand.ensure_filenamecCs| |tjjdd¡dS)Nzdirectory namez)'%s' does not exist or is not a directory)rWrYrZÚisdirr\rrrÚensure_dirnames þzCommand.ensure_dirnamecCst|dƒr|jS|jjSdS)NÚ command_name)Úhasattrr`rÚ__name__r&rrrr0    s
zCommand.get_command_namecGsF|j |¡}| ¡|D](\}}t||ƒdkrt||t||ƒƒqdS)a>Set the values of any "undefined" options from corresponding
        option values in some other command object.  "Undefined" here means
        "is None", which is the convention used to indicate that an option
        has not been changed between 'initialize_options()' and
        'finalize_options()'.  Usually called from 'finalize_options()' for
        options that depend on some other command rather than another
        option of the same command.  'src_cmd' is the other command from
        which option values will be taken (a command object will be created
        for it if necessary); the remaining arguments are
        '(src_option,dst_option)' tuples which mean "take the value of
        'src_option' in the 'src_cmd' command object, and copy it to
        'dst_option' in the current command object".
        N)rÚget_command_objr'rrC)rÚsrc_cmdÚ option_pairsÚ src_cmd_objÚ
src_optionÚ
dst_optionrrrÚset_undefined_optionss
  zCommand.set_undefined_optionscCs|j ||¡}| ¡|S)zûWrapper around Distribution's 'get_command_obj()' method: find
        (create if necessary and 'create' is true) the command object for
        'command', call its 'ensure_finalized()' method, and return the
        finalized command object.
        )rrcr')rÚcommandÚcreateÚcmd_objrrrÚget_finalized_command$szCommand.get_finalized_commandrcCs|j ||¡SrK)rÚreinitialize_command)rrjÚreinit_subcommandsrrrrn0sÿzCommand.reinitialize_commandcCs|j |¡dS)zÂRun some other command: uses the 'run_command()' method of
        Distribution, which creates and finalizes the command object if
        necessary and then invokes its 'run()' method.
        N)rÚ run_command)rrjrrrrp4szCommand.run_commandcCs2g}|jD]"\}}|dks"||ƒr
| |¡q
|S)akDetermine the sub-commands that are relevant in the current
        distribution (ie., that need to be run).  This is based on the
        'sub_commands' class attribute: each tuple in that list may include
        a method that we call to determine if the subcommand needs to be
        run for the current distribution.  Return a list of command names.
        N)Ú sub_commandsÚappend)rÚcommandsÚcmd_nameÚmethodrrrÚget_sub_commands;s
 zCommand.get_sub_commandscCst d| ¡|¡dS)Nzwarning: %s: %s
)r    Úwarnr0)rr;rrrrwKsz Command.warncCstj||||jddS©N©r)rÚexecuter)rÚfuncÚargsr;r,rrrrzNszCommand.executeéÿcCstj|||jddSrx)rÚmkpathr)rÚnameÚmoderrrr~QszCommand.mkpathc    Cstj|||||j ||jdS)zÑCopy a file respecting verbose, dry-run and force flags.  (The
        former two default to whatever is in the Distribution object, and
        the latter defaults to false for commands that don't define it.)ry)rÚ    copy_filerr)rÚinfileÚoutfileÚ preserve_modeÚpreserve_timesÚlinkr,rrrrTs 
þzCommand.copy_filec    Cstj||||||j |jdS)z\Copy an entire directory tree respecting verbose, dry-run,
        and force flags.
        ry)rÚ    copy_treerr)rr‚rƒr„r…Úpreserve_symlinksr,rrrr‡]s 
þzCommand.copy_treecCstj|||jdS)z$Move a file respecting dry-run flag.ry)rÚ    move_filer)rÚsrcÚdstr,rrrr‰fszCommand.move_filecCs ddlm}||||jddS)z2Spawn an external command respecting dry-run flag.r)ÚspawnryN)Údistutils.spawnrŒr)rÚcmdÚ search_pathr,rŒrrrrŒjs z Command.spawnc    Cstj|||||j||dS)N)rÚownerÚgroup)rÚ make_archiver)rÚ    base_nameÚformatÚroot_dirÚbase_dirrr‘rrrr’os
 þzCommand.make_archivecCs„|dkrd|}t|tƒr"|f}nt|ttfƒs8tdƒ‚|dkrRd|d |¡f}|jsdt ||¡rv|     ||||¡n
t
  |¡dS)aÌSpecial case of 'execute()' for operations that process one or
        more input files and generate one output file.  Works just like
        'execute()', except the operation is skipped and a different
        message printed if 'outfile' already exists and is newer than all
        files listed in 'infiles'.  If the command defined 'self.force',
        and it is true, then the command is unconditionally run -- does no
        timestamp checks.
        Nzskipping %s (inputs unchanged)z9'infiles' must be a string, or a list or tuple of stringszgenerating %s from %sz, ) r rDrQÚtuplerÚjoinrrÚ newer_grouprzr    Údebug)rÚinfilesrƒr{r|Úexec_msgÚskip_msgr,rrrÚ    make_fileus
 
ÿzCommand.make_file)Nr*)r$)N)N)N)r$)r)Nr$)r})r$r$Nr$)r$r$rr$)r$)r$r$)NNNN)NNr$)#rbÚ
__module__Ú __qualname__Ú__doc__rqrr#r'rr%r9r:r1rBrHrJrTrWr]r_r0rirmrnrprvrwrzr~rr‡r‰rŒr’ržrrrrr
sZ0
 
 
 
 
 
ÿ
 
 
 
 
ÿ
    ÿ
    
 
ÿ
ÿr
)r¡r?rYrOÚdistutils.errorsrÚ    distutilsrrrrrr    r
rrrrÚ<module>s