????
Your IP : 13.59.85.64
a
�DOg���@s�dZdZgd�ZdZddlZddlZddlZdd�ZzddlmZm Z Wn"e
yjd d
�Zdd�Z Yn0eZGd
d�de�Z
Gdd�de
�ZGdd�de�ZGdd�de
�ZGdd�de
�ZGdd�de�ZGdd�d�ZGdd�de�ZGdd�de�Zdd �Zd!d"�Zeed#�feed#�feed$�feed%�fd&�Zd'd(�Zd)d*�Zd+ZGd,d-�d-�Zd.Zd/Z Gd0d1�d1�Z!Gd2d3�d3�Z"Gd4d5�d5e"�Z#Gd6d7�d7e"�Z$d8d9�Z%eZ&dS):a�A powerful, extensible, and easy-to-use option parser.
By Greg Ward <gward@python.net>
Originally distributed as Optik.
For support, use the optik-users@lists.sourceforge.net mailing list
(http://lists.sourceforge.net/lists/listinfo/optik-users).
Simple usage example:
from optparse import OptionParser
parser = OptionParser()
parser.add_option("-f", "--file", dest="filename",
help="write report to FILE", metavar="FILE")
parser.add_option("-q", "--quiet",
action="store_false", dest="verbose", default=True,
help="don't print status messages to stdout")
(options, args) = parser.parse_args()
z1.5.3)�Option�make_option�
SUPPRESS_HELP�SUPPRESS_USAGE�Values�OptionContainer�OptionGroup�OptionParser�
HelpFormatter�IndentedHelpFormatter�TitledHelpFormatter�
OptParseError�OptionError�OptionConflictError�OptionValueError�BadOptionError�check_choicea"
Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
�NcCsd|jjt|�|fS)Nz<%s at 0x%x: %s>)� __class__�__name__�id��self�r� /usr/lib64/python3.9/optparse.py�_reprOsr)�gettext�ngettextcCs|S�Nr)�messagerrrr\srcCs|dkr|S|S�N�r)Zsingular�plural�nrrrr_src@seZdZdd�Zdd�ZdS)rcCs
||_dSr��msg�rr$rrr�__init__hszOptParseError.__init__cCs|jSrr#rrrr�__str__kszOptParseError.__str__N)r�
__module__�__qualname__r&r'rrrrrgsrc@s eZdZdZdd�Zdd�ZdS)r
z]
Raised if an Option instance is created with invalid or
inconsistent arguments.
cCs||_t|�|_dSr)r$�str� option_id)rr$�optionrrrr&uszOptionError.__init__cCs |jrd|j|jfS|jSdS)Nz
option %s: %s)r+r$rrrrr'yszOptionError.__str__N�rr(r)�__doc__r&r'rrrrr
osr
c@seZdZdZdS)rzE
Raised if conflicting options are added to an OptionParser.
N�rr(r)r.rrrrrsrc@seZdZdZdS)rzS
Raised if an invalid option value is encountered on the command
line.
Nr/rrrrr�src@s eZdZdZdd�Zdd�ZdS)rzB
Raised if an invalid option is seen on the command line.
cCs
||_dSr)�opt_str�rr0rrrr&�szBadOptionError.__init__cCstd�|jS)Nzno such option: %s)�_r0rrrrr'�szBadOptionError.__str__Nr-rrrrr�src@s eZdZdZdd�Zdd�ZdS)�AmbiguousOptionErrorzD
Raised if an ambiguous option is seen on the command line.
cCst�||�||_dSr)rr&�
possibilities)rr0r4rrrr&�szAmbiguousOptionError.__init__cCstd�|jd�|j�fS)Nzambiguous option: %s (%s?)�, )r2r0�joinr4rrrrr'�s�zAmbiguousOptionError.__str__Nr-rrrrr3�sr3c@s�eZdZdZdZdd�Zdd�Zdd�Zd d
�Zdd�Z d
d�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zdd �Zd!S)"r a�
Abstract base class for formatting option help. OptionParser
instances should use one of the HelpFormatter subclasses for
formatting help; by default IndentedHelpFormatter is used.
Instance attributes:
parser : OptionParser
the controlling OptionParser instance
indent_increment : int
the number of columns to indent per nesting level
max_help_position : int
the maximum starting column for option help text
help_position : int
the calculated starting column for option help text;
initially the same as the maximum
width : int
total number of columns for output (pass None to constructor for
this value to be taken from the $COLUMNS environment variable)
level : int
current indentation level
current_indent : int
current indentation level (in columns)
help_width : int
number of columns available for option help text (calculated)
default_tag : str
text to replace with each option's default value, "%default"
by default. Set to false value to disable default value expansion.
option_strings : { Option : str }
maps Option instances to the snippet of help text explaining
the syntax of that option, e.g. "-h, --help" or
"-fFILE, --file=FILE"
_short_opt_fmt : str
format string controlling how short options with values are
printed in help text. Must be either "%s%s" ("-fFILE") or
"%s %s" ("-f FILE"), because those are the two syntaxes that
Optik supports.
_long_opt_fmt : str
similar but for long options; must be either "%s %s" ("--file FILE")
or "%s=%s" ("--file=FILE").
Znonec Cs�d|_||_|durJzttjd�}Wnttfy@d}Yn0|d8}||_t|t |d|d��|_
|_d|_d|_
d|_||_d|_i|_d|_d|_dS) N�COLUMNS�P��rz%defaultz%s %sz%s=%s)�parser�indent_increment�int�os�environ�KeyError�
ValueError�width�min�max�
help_position�max_help_position�current_indent�level�
help_width�short_first�default_tag�option_strings�_short_opt_fmt�
_long_opt_fmt�rr<rFrBrJrrrr&�s&
�
zHelpFormatter.__init__cCs
||_dSr)r;�rr;rrr�
set_parser�szHelpFormatter.set_parsercCs&|dvrtd|��d|d|_dS)N)�� z/invalid metavar delimiter for short options: %r�%s)rArM�r�delimrrr�set_short_opt_delimiter�s
�z%HelpFormatter.set_short_opt_delimitercCs&|dvrtd|��d|d|_dS)N)�=rSz.invalid metavar delimiter for long options: %rrT)rArNrUrrr�set_long_opt_delimiter�s
�z$HelpFormatter.set_long_opt_delimitercCs"|j|j7_|jd7_dSr�rGr<rHrrrr�indent�szHelpFormatter.indentcCs4|j|j8_|jdks"Jd��|jd8_dS)NrzIndent decreased below 0.r rZrrrr�dedent�szHelpFormatter.dedentcCstd��dS�Nzsubclasses must implement��NotImplementedError�r�usagerrr�format_usage�szHelpFormatter.format_usagecCstd��dSr]r^�r�headingrrr�format_headingszHelpFormatter.format_headingcCs.t|j|jd�}d|j}tj||||d�S)z�
Format a paragraph of free-form text for inclusion in the
help output at the current indentation level.
�rS)�initial_indent�subsequent_indent)rDrBrG�textwrap�fill)r�text�
text_widthr[rrr�_format_texts
�zHelpFormatter._format_textcCs|r|�|�dSdSdS�N�
rR�rm�r�descriptionrrr�format_descriptionsz HelpFormatter.format_descriptioncCs|rd|�|�dSdSdSrnrp)r�epilogrrr�
format_epilogszHelpFormatter.format_epilogcCsP|jdus|js|jS|jj�|j�}|tus6|dur<|j}|j�|jt |��Sr)
r;rK�help�defaults�get�dest�
NO_DEFAULT�NO_DEFAULT_VALUE�replacer*)rr,Z
default_valuerrr�expand_defaultszHelpFormatter.expand_defaultcs�g}�j|}�j�jd}t|�|krBd�jd|f}�j}nd�jd||f}d}|�|�|jr���|�}t�|�j �}|�d|d|df�|�
�fdd�|dd�D��n|d d
kr�|�d
�d�|�S)Nr9�%*s%s
rRz %*s%-*s rcsg|]}d�jd|f�qS)r~rR)rE)�.0�linerrr�
<listcomp>Es�z/HelpFormatter.format_option.<locals>.<listcomp>r ���ro)rLrErG�len�appendrvr}ri�wraprI�extendr6)rr,�result�optsZ opt_width�indent_first� help_text�
help_linesrrr�
format_option(s&
�
zHelpFormatter.format_optioncCs�|��d}|jD],}|�|�}||j|<t|t|�|j�}q|��|jD]8}|jD],}|�|�}||j|<t|t|�|j�}qXqN|��|��t |d|j
�|_t|j|jd�|_
dS)Nrr9rf)r[�option_list�format_option_stringsrLrDr�rG�
option_groupsr\rCrFrErBrI)rr;Zmax_len�opt�strings�grouprrr�store_option_stringsKs
z"HelpFormatter.store_option_stringscst|��rF|jp|j�����fdd�|jD�}��fdd�|jD�}n|j}|j}�jrb||}n||}d�|�S)z@Return a comma-separated list of option strings & metavariables.csg|]}�j|�f�qSr)rM)rZsopt��metavarrrrr�as�z7HelpFormatter.format_option_strings.<locals>.<listcomp>csg|]}�j|�f�qSr)rN)rZloptr�rrr�cs�r5)�takes_valuer�ry�upper�_short_opts�
_long_optsrJr6)rr,Z
short_optsZ long_optsr�rr�rr�]s��
z#HelpFormatter.format_option_stringsN)rr(r)r.r{r&rQrWrYr[r\rbrermrsrur}r�r�r�rrrrr �s")
#r c@s*eZdZdZddd�Zdd �Zd
d�ZdS)
r
z.Format help with indented section bodies.
r9�Nr cCst�|||||�dSr�r r&rOrrrr&ts
�zIndentedHelpFormatter.__init__cCstd�|S)Nz
Usage: %s
)r2r`rrrrb|sz"IndentedHelpFormatter.format_usagecCsd|jd|fS)Nz%*s%s:
rR)rGrcrrrresz$IndentedHelpFormatter.format_heading)r9r�Nr �rr(r)r.r&rbrerrrrr
ps�
r
c@s*eZdZdZddd�Zdd�Zd d
�ZdS)rz1Format help with underlined section headers.
rr�NcCst�|||||�dSrr�rOrrrr&�s
�zTitledHelpFormatter.__init__cCsd|�td��|fS)Nz%s %s
ZUsage)rer2r`rrrrb�sz TitledHelpFormatter.format_usagecCsd|d|jt|�fS)Nz%s
%s
z=-)rHr�rcrrrre�sz"TitledHelpFormatter.format_heading)rr�Nrr�rrrrr�s�
rcCsh|dd���dkrd}nD|dd���dkrDd}|dd�p@d}n|dd�dkrZd}nd}|||�S) Nr9�0x�Z0b�0r ��
)�lower)�val�type�radixrrr�
_parse_num�sr�cCs
t|t�Sr)r�r=)r�rrr�
_parse_int�sr�Zintegerzfloating-point�complex)r=�long�floatr�cCsFt|j\}}z
||�WSty@ttd�|||f��Yn0dS)Nzoption %s: invalid %s value: %r)�_builtin_cvtr�rArr2)r,r��valueZcvtZwhatrrr�
check_builtin�s
�r�cCs:||jvr|Sd�tt|j��}ttd�|||f��dS)Nr5z.option %s: invalid choice: %r (choose from %s))�choicesr6�map�reprrr2)r,r�r�r�rrrr�s
��r)ZNOZDEFAULTc@s�eZdZdZgd�ZdZdZdZdZdZ dZ
eeeeed �Z
d
Zdd�Zd
d�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd �ZeeeeeeegZd!d"�ZeZd#d$�Zd%d&�Zd'd(�Zd)d*�Z d+d,�Z!d-d.�Z"d
S)/rar
Instance attributes:
_short_opts : [string]
_long_opts : [string]
action : string
type : string
dest : string
default : any
nargs : int
const : any
choices : [string]
callback : function
callback_args : (any*)
callback_kwargs : { string : any }
help : string
metavar : string
)�actionr�ry�default�nargs�constr��callback�
callback_args�callback_kwargsrvr�)
�store�store_const�
store_true�store_falser��append_const�countr�rv�version)r�r�r�r�r�r�r�)r�r�r�)r�r�)r�r�)�stringr=r�r�r��choice)r=r�r�r�r�NcOsBg|_g|_|�|�}|�|�|�|�|jD]}||�q0dSr)r�r��_check_opt_strings�_set_opt_strings�
_set_attrs�
CHECK_METHODS)rr��attrs�checkerrrrr&4s
zOption.__init__cCsdd�|D�}|std��|S)NcSsg|]}|r|�qSrr)rr�rrrr�K�z-Option._check_opt_strings.<locals>.<listcomp>z+at least one option string must be supplied)� TypeError)rr�rrrr�GszOption._check_opt_stringscCs�|D]�}t|�dkr$td||��qt|�dkrd|ddkrH|ddksVtd||��|j�|�q|dd�dkr�|ddks�td||��|j�|�qdS) Nr9z>invalid option string %r: must be at least two characters longr�-r zMinvalid short option string %r: must be of the form -x, (x any non-dash char)�--zGinvalid long option string %r: must start with --, followed by non-dash)r�r
r�r�r�)rr�r�rrrr�Ps2������zOption._set_opt_stringscCsv|jD]F}||vr*t||||�||=q|dkr@t||t�qt||d�q|rrt|���}tdd�|�|��dS)Nr�zinvalid keyword arguments: %sr5)�ATTRS�setattrrz�sorted�keysr
r6)rr��attrrrrr�es
�zOption._set_attrscCs2|jdurd|_n|j|jvr.td|j|��dS)Nr�zinvalid action: %r)r��ACTIONSr
rrrr�
_check_actionxs
zOption._check_actioncCs�|jdur0|j|jvr�|jdur(d|_q�d|_n^t|jt�rF|jj|_|jdkrVd|_|j|jvrrtd|j|��|j|jvr�td|j|��dS)Nr�r�r*zinvalid option type: %rz$must not supply a type for action %r) r�r��ALWAYS_TYPED_ACTIONSr��
isinstancer�TYPESr
�
TYPED_ACTIONSrrrr�_check_type~s
�zOption._check_typecCsr|jdkrT|jdur td|��qnt|jttf�sntdtt|j���d�d|��n|jdurntd|j|��dS)Nr�z/must supply a list of choices for type 'choice'z1choices must be a list of strings ('%s' supplied)�'r z#must not supply choices for type %r)r�r�r
r��tuple�listr*�splitrrrr�
_check_choice�s
���
�zOption._check_choicecCs\|j|jvp|jdu}|jdurX|rX|jrH|jddd��dd�|_n|jdd|_dS)Nrr9r�r2r )r��
STORE_ACTIONSr�ryr�r|r�)rr�rrr�_check_dest�s�zOption._check_destcCs*|j|jvr&|jdur&td|j|��dS)Nz*'const' must not be supplied for action %r)r��
CONST_ACTIONSr�r
rrrr�_check_const�s
�zOption._check_constcCs<|j|jvr|jdur8d|_n|jdur8td|j|��dS)Nr z*'nargs' must not be supplied for action %r)r�r�r�r
rrrr�_check_nargs�s
�zOption._check_nargscCs�|jdkrrt|j�s$td|j|��|jdurJt|jt�sJtd|j|��|jdur�t|jt�s�td|j|��nB|jdur�td|j|��|jdur�td|��|jdur�td|��dS)Nr�zcallback not callable: %rz3callback_args, if supplied, must be a tuple: not %rz4callback_kwargs, if supplied, must be a dict: not %rz.callback supplied (%r) for non-callback optionz.callback_args supplied for non-callback optionz0callback_kwargs supplied for non-callback option) r��callabler�r
r�r�r�r��dictrrrr�_check_callback�sL
�
���
���
��
�
�zOption._check_callbackcCsd�|j|j�S)N�/)r6r�r�rrrrr'�szOption.__str__cCs
|jduSr)r�rrrrr��szOption.takes_valuecCs|jr|jdS|jdSdS�Nr)r�r�rrrr�get_opt_string�s
zOption.get_opt_stringcCs*|j�|j�}|dur|S||||�SdSr)�TYPE_CHECKERrxr�)rr�r�r�rrr�check_value�szOption.check_valuecs:|dur6�jdkr���|�St��fdd�|D��SdS)Nr csg|]}���|��qSr)r�)r�v�r�rrrr�r�z(Option.convert_value.<locals>.<listcomp>)r�r�r�)rr�r�rr�r�
convert_values
zOption.convert_valuecCs$|�||�}|�|j|j||||�Sr)r��take_actionr�ry)rr�r��valuesr;rrr�processs�zOption.processc Cs@|dkrt|||��n$|dkr2t|||j��n
|dkrHt||d�n�|dkr^t||d�n�|dkrz|�|g��|�n�|dkr�|�|g��|j�n�|d kr�t|||�|d
�d�n�|dkr�|jp�d
}|jp�i}|j||||g|�Ri|��nF|dk�r|��|��n*|dk�r.|� �|��nt
d|j��dS)Nr�r�r�Tr�Fr�r�r�rr r�rrvr�zunknown action %r)r�r��ensure_valuer�r�r�r��
print_help�exit�
print_versionrAr�) rr�ryr�r�r�r;�args�kwargsrrrr�s4
zOption.take_action)#rr(r)r.r�r�r�r�r�r�r�r�rr�r�r&r�r�r�r�r�r�r�r�r�r�r'r�__repr__r�r�r�r�r�r�rrrrr�sT
�
� rZSUPPRESSHELPZ
SUPPRESSUSAGEc@s^eZdZddd�Zdd�ZeZdd�Zdd �Zd
d�Z dd
�Z
ddd�Zddd�Zdd�Z
dS)rNcCs&|r"|��D]\}}t|||�qdSr)�itemsr�)rrwr�r�rrrr&9szValues.__init__cCs
t|j�Sr)r*�__dict__rrrrr'>szValues.__str__cCs2t|t�r|j|jkSt|t�r*|j|kStSdSr)r�rr�r��NotImplemented)r�otherrrr�__eq__Cs
z
Values.__eq__cCs6t|�D](}||vr||}|durt|||�qdS)z�
Update the option values from an arbitrary dictionary, but only
use keys from dict that already have a corresponding attribute
in self. Any keys in dict without a corresponding attribute
are silently ignored.
N)�dirr�)rr�r�Zdvalrrr�_update_carefulKs
zValues._update_carefulcCs|j�|�dS)z�
Update the option values from an arbitrary dictionary,
using all keys from the dictionary regardless of whether
they have a corresponding attribute in self or not.
N)r��update)rr�rrr�
_update_looseXszValues._update_loosecCs8|dkr|�|�n |dkr(|�|�ntd|��dS)N�carefulZloosezinvalid update mode: %r)r�r�rA)rr��moderrr�_update`s
zValues._updater�cCs&t|�tj|}|�t|�|�dSr)�
__import__�sys�modulesr�vars)r�modnamer�modrrr�read_modulehs
zValues.read_modulecCs&i}tt|���|�|�||�dSr)�exec�open�readr)r�filenamerrrrr� read_filemszValues.read_filecCs.t||�rt||�dur$t|||�t||�Sr)�hasattr�getattrr�)rr�r�rrrr�rszValues.ensure_value)N)r�)r�)rr(r)r&r'rr�r�r�r�rrr
r�rrrrr7s
rc@s�eZdZdZdd�Zdd�Zdd�Zdd �Zd
d�Zdd
�Z dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"S)#ra�
Abstract base class.
Class attributes:
standard_option_list : [Option]
list of standard options that will be accepted by all instances
of this parser class (intended to be overridden by subclasses).
Instance attributes:
option_list : [Option]
the list of Option objects contained by this OptionContainer
_short_opt : { string : Option }
dictionary mapping short option strings, eg. "-f" or "-X",
to the Option instances that implement them. If an Option
has multiple short option strings, it will appear in this
dictionary multiple times. [1]
_long_opt : { string : Option }
dictionary mapping long option strings, eg. "--file" or
"--exclude", to the Option instances that implement them.
Again, a given Option can occur multiple times in this
dictionary. [1]
defaults : { string : any }
dictionary mapping option destination names to default
values for each destination [1]
[1] These mappings are common to (shared by) all components of the
controlling OptionParser, where they are initially created.
cCs&|��||_|�|�|�|�dSr)�_create_option_list�option_class�set_conflict_handler�set_description)rr�conflict_handlerrrrrrr&�s
zOptionContainer.__init__cCsi|_i|_i|_dSr��
_short_opt� _long_optrwrrrr�_create_option_mappings�sz'OptionContainer._create_option_mappingscCs|j|_|j|_|j|_dSrrrPrrr�_share_option_mappings�sz&OptionContainer._share_option_mappingscCs|dvrtd|��||_dS)N)�error�resolvez$invalid conflict_resolution value %r)rAr)r�handlerrrrr�sz$OptionContainer.set_conflict_handlercCs
||_dSr�rrrqrrrr�szOptionContainer.set_descriptioncCs|jSrrrrrr�get_description�szOptionContainer.get_descriptioncCs|`|`|`dS�zsee OptionParser.destroy().Nrrrrr�destroy�szOptionContainer.destroycCs�g}|jD]"}||jvr
|�||j|f�q
|jD]"}||jvr4|�||j|f�q4|r�|j}|dkr�tdd�dd�|D��|��nd|dkr�|D]V\}}|�d�r�|j� |�|j|=n|j� |�|j|=|js�|js�|j
j� |�q�dS)Nrz conflicting option string(s): %sr5cSsg|]}|d�qS)rr)r�corrrr��r�z3OptionContainer._check_conflict.<locals>.<listcomp>rr�)r�rr�r�rrrr6�
startswith�remove� containerr�)rr,Z
conflict_optsr�rZc_optionrrr�_check_conflict�s2
��
zOptionContainer._check_conflictcOs�t|dt�r |j|i|��}n8t|�dkrP|sP|d}t|t�sXtd|��ntd��|�|�|j�|�||_ |j
D]}||j|<qz|jD]}||j
|<q�|jdur�|jtur�|j|j|j<n|j|jvr�d|j|j<|S)zOadd_option(Option)
add_option(opt_str, ..., kwarg=val, ...)
rr znot an Option instance: %r�invalid argumentsN)r�r*rr�rr�r%r�r�r$r�rr�rryr�rzrw)rr�r�r,r�rrr�
add_option�s(
zOptionContainer.add_optioncCs|D]}|�|�qdSr)r')rr�r,rrr�add_optionsszOptionContainer.add_optionscCs|j�|�p|j�|�Sr)rrxrr1rrr�
get_options
�zOptionContainer.get_optioncCs||jvp||jvSr)rrr1rrr�
has_options
�zOptionContainer.has_optioncCsn|j�|�}|dur |j�|�}|dur4td|��|jD]}|j|=q:|jD]}|j|=qN|jj�|�dS)Nzno such option %r) rrxrrAr�r�r$r�r#)rr0r,r�rrr�
remove_options
zOptionContainer.remove_optioncCs>|js
dSg}|jD]}|jtur|�|�|��qd�|�S�NrR)r�rvrr�r�r6)r� formatterr�r,rrr�format_option_helps
z"OptionContainer.format_option_helpcCs|�|���Sr)rsr�rr-rrrrs(sz"OptionContainer.format_descriptioncCs:g}|jr|�|�|��|jr0|�|�|��d�|�S)Nro)rrr�rsr�r.r6�rr-r�rrr�format_help+szOptionContainer.format_helpN)rr(r)r.r&rrrrrr r%r'r(r)r*r+r.rsr1rrrrrxs" rc@s6eZdZddd�Zdd�Zdd�Zdd �Zd
d�ZdS)
rNcCs$||_t�||j|j|�||_dSr)r;rr&rr�title)rr;r2rrrrrr&6s
�zOptionGroup.__init__cCsg|_|�|j�dSr)r�rr;rrrrr<szOptionGroup._create_option_listcCs
||_dSr)r2)rr2rrr� set_title@szOptionGroup.set_titlecCst�|�|`dSr)rr r�rrrrr Cs
zOptionGroup.destroycCs0|�|j�}|��|t�||�7}|��|Sr)rer2r[rr1r\r0rrrr1Js
zOptionGroup.format_help)N)rr(r)r&rr3r r1rrrrr4s
rc
@sbeZdZdZgZddedddddddf
dd�Zdd�Zd d
�Zdd�Z d
d�Z
dPdd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�ZdQd)d*�Zd+d,�Zd-d.�Zd/d0�Zd1d2�Zd3d4�Zd5d6�Zd7d8�Zd9d:�Z dRd<d=�Z!d>d?�Z"d@dA�Z#dSdBdC�Z$dDdE�Z%dTdFdG�Z&dUdHdI�Z'dJdK�Z(dVdLdM�Z)dWdNdO�Z*dS)Xra$
Class attributes:
standard_option_list : [Option]
list of standard options that will be accepted by all instances
of this parser class (intended to be overridden by subclasses).
Instance attributes:
usage : string
a usage string for your program. Before it is displayed
to the user, "%prog" will be expanded to the name of
your program (self.prog or os.path.basename(sys.argv[0])).
prog : string
the name of the current program (to override
os.path.basename(sys.argv[0])).
description : string
A paragraph of text giving a brief overview of your program.
optparse reformats this paragraph to fit the current terminal
width and prints it when the user requests help (after usage,
but before the list of options).
epilog : string
paragraph of help text to print after option help
option_groups : [OptionGroup]
list of option groups in this parser (option groups are
irrelevant for parsing the command-line, but very useful
for generating help)
allow_interspersed_args : bool = true
if true, positional arguments may be interspersed with options.
Assuming -a and -b each take a single argument, the command-line
-ablah foo bar -bboo baz
will be interpreted the same as
-ablah -bboo -- foo bar baz
If this flag were false, that command line would be interpreted as
-ablah -- foo bar -bboo baz
-- ie. we stop processing options as soon as we see the first
non-option argument. (This is the tradition followed by
Python's getopt module, Perl's Getopt::Std, and other argument-
parsing libraries, but it is generally annoying to users.)
process_default_values : bool = true
if true, option default values are processed similarly to option
values from the command line: that is, they are passed to the
type-checking function for the option's type (as long as the
default value is a string). (This really only matters if you
have defined custom types; see SF bug #955889.) Set it to false
to restore the behaviour of Optik 1.4.1 and earlier.
rargs : [string]
the argument list currently being parsed. Only set when
parse_args() is active, and continually trimmed down as
we consume arguments. Mainly there for the benefit of
callback options.
largs : [string]
the list of leftover arguments that we have skipped while
parsing options. If allow_interspersed_args is false, this
list is always empty.
values : Values
the set of option values currently being accumulated. Only
set when parse_args() is active. Also mainly for callbacks.
Because of the 'rargs', 'largs', and 'values' attributes,
OptionParser is not thread-safe. If, for some perverse reason, you
need to parse command-line arguments simultaneously in different
threads, use different OptionParser instances.
NrTcCsrt�||||�|�|�| |_||_d|_d|_|dur@t�}||_|j� |�|
|_
|j||d�|��dS)NT)�add_help)
rr&� set_usage�progr��allow_interspersed_args�process_default_valuesr
r-rQrt�_populate_option_list�_init_parsing_state)rrar�rr�rrrr-Zadd_help_optionr6rtrrrr&�s"�
�zOptionParser.__init__cCs.t�|�|jD]}|��q|`|`|`dS)a
Declare that you are done with this OptionParser. This cleans up
reference cycles so the OptionParser (and all objects referenced by
it) can be garbage-collected promptly. After calling destroy(), the
OptionParser is unusable.
N)rr r�r�r-)rr�rrrr �s
zOptionParser.destroycCsg|_g|_|��dSr)r�r�rrrrrr�sz OptionParser._create_option_listcCs|jdddtd�d�dS)Nz-hz--helprvzshow this help message and exit�r�rv�r'r2rrrr�_add_help_option�s�zOptionParser._add_help_optioncCs|jddtd�d�dS)Nz --versionr�z&show program's version number and exitr;r<rrrr�_add_version_option�s�z OptionParser._add_version_optioncCs>|jr|�|j�|r |�|�|jr.|��|r:|��dSr)�standard_option_listr(r�r>r=)rr�r4rrrr9�s
z"OptionParser._populate_option_listcCsd|_d|_d|_dSr)�rargs�largsr�rrrrr:�sz OptionParser._init_parsing_statecCsL|durtd�|_n4|tur$d|_n$|���d�rB|dd�|_n||_dS)Nz%prog [options]zusage: �)r2rarr�r"r`rrrr5�szOptionParser.set_usagecCs
d|_dS)aSet parsing to not stop on the first non-option, allowing
interspersing switches with command arguments. This is the
default behavior. See also disable_interspersed_args() and the
class documentation description of the attribute
allow_interspersed_args.TN�r7rrrr�enable_interspersed_args�sz%OptionParser.enable_interspersed_argscCs
d|_dS)z�Set parsing to stop on the first non-option. Use this if
you have a command processor which runs another command that
has options of its own and you want to make sure these options
don't get confused.
FNrCrrrr�disable_interspersed_argssz&OptionParser.disable_interspersed_argscCs
||_dSr)r8)rr�rrr�set_process_default_valuessz'OptionParser.set_process_default_valuescCs||j|<dSr)rw)rryr�rrr�set_defaultszOptionParser.set_defaultcKs|j�|�dSr)rwr�)rr�rrr�set_defaultsszOptionParser.set_defaultscCs*|jdd�}|jD]}|�|j�q|Sr)r�r�r�)r�optionsr�rrr�_get_all_optionss
zOptionParser._get_all_optionscCs`|jst|j�S|j��}|��D]4}|�|j�}t|t�r"|� �}|�
||�||j<q"t|�Sr)r8rrw�copyrJrxryr�r*r�r�)rrwr,r�r0rrr�get_default_valuess
zOptionParser.get_default_valuescOs�t|dt�r&t|g|�Ri|��}nJt|�dkrh|sh|d}t|t�sTtd|��|j|urptd��ntd��|j�|�|S)Nrr znot an OptionGroup instance: %rz"invalid OptionGroup (wrong parser)r&) r�r*rr�r�r;rAr�r�)rr�r�r�rrr�add_option_group+s
zOptionParser.add_option_groupcCs0|j�|�p|j�|�}|r,|j|ur,|jSdSr)rrxrr$)rr0r,rrr�get_option_group;s
�zOptionParser.get_option_groupcCs&|durtjdd�S|dd�SdSr)r�argv)rr�rrr� _get_argsEszOptionParser._get_argsc
Cs�|�|�}|dur|��}||_g|_}||_z|�|||�}Wn6ttfyx}z|�t |��WYd}~n
d}~00||}|�
||�S)aR
parse_args(args : [string] = sys.argv[1:],
values : Values = None)
-> (values : Values, args : [string])
Parse the command-line options found in 'args' (default:
sys.argv[1:]). Any errors result in a call to 'error()', which
by default prints the usage message to stderr and calls
sys.exit() with an error message. On success returns a pair
(values, args) where 'values' is a Values instance (with all
your option values) and 'args' is the list of arguments left
over after parsing options.
N)rPrLr@rAr��
_process_argsrrrr*�check_values)rr�r�r@rA�stop�errrrr�
parse_argsKs
$zOptionParser.parse_argscCs||fS)a�
check_values(values : Values, args : [string])
-> (values : Values, args : [string])
Check that the supplied option values and leftover arguments are
valid. Returns the option values and leftover arguments
(possibly adjusted, possibly completely new -- whatever you
like). Default implementation just returns the passed-in
values; subclasses may override as desired.
r)rr�r�rrrrRrszOptionParser.check_valuescCs�|r�|d}|dkr|d=dS|dd�dkr<|�||�q|dd�dkrft|�dkrf|�||�q|jr~|�|�|d=qdSqdS)a�_process_args(largs : [string],
rargs : [string],
values : Values)
Process command-line arguments and populate 'values', consuming
options and arguments from 'rargs'. If 'allow_interspersed_args' is
false, stop at the first non-option argument. If true, accumulate any
interspersed non-option arguments in 'largs'.
rr�Nr9r r�)�_process_long_optr��_process_short_optsr7r�)rrAr@r��argrrrrQs
zOptionParser._process_argscCst||j�S)a_match_long_opt(opt : string) -> string
Determine which long option string 'opt' matches, ie. which one
it is an unambiguous abbreviation for. Raises BadOptionError if
'opt' doesn't unambiguously match any long option string.
)�
_match_abbrevr)rr�rrr�_match_long_opt�szOptionParser._match_long_optc
Cs�|�d�}d|vr4|�dd�\}}|�d|�d}n|}d}|�|�}|j|}|��r�|j}t|�|kr�|�t dd|�||d��q�|dkr�|�d�} q�t
|d|��} |d|�=n|r�|�td �|�nd} |�|| ||�dS)
NrrXr TF�.%(option)s option requires %(number)d argument�/%(option)s option requires %(number)d arguments�r,�numberz%s option does not take a value)
�popr��insertrZrr�r�r�rrr�r2r�)
rr@r�rXr�Znext_argZhad_explicit_valuer,r�r�rrrrV�s6
��zOptionParser._process_long_optcCs�|�d�}d}d}|dd�D]�}d|}|j�|�}|d7}|sJt|��|��r�|t|�krv|�d||d��d}|j} t|�| kr�|�t dd| �|| d��q�| dkr�|�d�}
q�t
|d| ��}
|d| �=nd}
|�||
||�|rq�qdS) NrFr r�Tr[r\r])r_rrxrr�r�r`r�rrr�r�)rr@r�rXrS�iZchr�r,r�r�rrrrW�s<
��z OptionParser._process_short_optscCs&|jdurtj�tjd�S|jSdSr�)r6r>�path�basenamerrOrrrr�
get_prog_names
zOptionParser.get_prog_namecCs|�d|���S)Nz%prog)r|rd)r�srrr�expand_prog_nameszOptionParser.expand_prog_namecCs|�|j�Sr)rfrrrrrrrszOptionParser.get_descriptionrcCs|rtj�|�t�|�dSr)r�stderr�writer�)r�statusr$rrrr�szOptionParser.exitcCs(|�tj�|�dd|��|f�dS)z�error(msg : string)
Print a usage message incorporating 'msg' to stderr and exit.
If you override this in a subclass, it should not return -- it
should either exit or raise an exception.
r9z%s: error: %s
N)�print_usagerrgr�rdr%rrrrszOptionParser.errorcCs"|jr|j�|�|j��SdSdSr,)rar-rbrfrrrr� get_usage#s
�zOptionParser.get_usagecCs|jrt|��|d�dS)aaprint_usage(file : file = stdout)
Print the usage message for the current program (self.usage) to
'file' (default stdout). Any occurrence of the string "%prog" in
self.usage is replaced with the name of the current program
(basename of sys.argv[0]). Does nothing if self.usage is empty
or not defined.
��fileN)ra�printrk�rrmrrrrj*s zOptionParser.print_usagecCs|jr|�|j�SdSdSr,)r�rfrrrr�get_version6szOptionParser.get_versioncCs|jrt|��|d�dS)aEprint_version(file : file = stdout)
Print the version message for this program (self.version) to
'file' (default stdout). As with print_usage(), any occurrence
of "%prog" in self.version is replaced by the current program's
name. Does nothing if self.version is empty or undefined.
rlN)r�rnrprorrrr�<szOptionParser.print_versioncCs�|dur|j}|�|�g}|�|�td���|��|jrZ|�t�||��|�d�|j D]}|�|�
|��|�d�q`|��d�|dd��S)NZOptionsrorRr�)
r-r�r�rer2r[r�rr.r�r1r\r6)rr-r�r�rrrr.Gs
zOptionParser.format_option_helpcCs|�|j�Sr)rurtr/rrrruXszOptionParser.format_epilogcCsn|dur|j}g}|jr*|�|��d�|jrD|�|�|�d�|�|�|��|�|�|��d�|�Srn) r-rar�rkrrrsr.rur6r0rrrr1[szOptionParser.format_helpcCs |durtj}|�|���dS)z�print_help(file : file = stdout)
Print an extended help message, listing all options and any
help text provided with them, to 'file' (default stdout).
N)r�stdoutrhr1rorrrr�gszOptionParser.print_help)T)NN)rN)N)N)N)N)N)+rr(r)r.r?rr&r rr=r>r9r:r5rDrErFrGrHrJrLrMrNrPrUrRrQrZrVrWrdrfrr�rrkrjrpr�r.rur1r�rrrrrRsbD�
"
'
3 $)
rcsZ�|vr�S�fdd�|��D�}t|�dkr6|dS|sDt���n|��t�|��dS)z�_match_abbrev(s : string, wordmap : {string : Option}) -> string
Return the string key in 'wordmap' for which 's' is an unambiguous
abbreviation. If 's' is found to be ambiguous or doesn't match any of
'words', raise BadOptionError.
csg|]}|���r|�qSr)r")rZword�rerrr��s
�z!_match_abbrev.<locals>.<listcomp>r rN)r�r�r�sortr3)reZwordmapr4rrrrrYts
rY)'r.�__version__�__all__Z
__copyright__rr>rirrr�ImportErrorr2� Exceptionrr
rrrr3r r
rr�r�r�r�r�r�rrzrrrrrrrrYrrrrr�<module>s`
P
�uA=&