3 \A@sdZddddgZddlZyddlmZWnek rDdd ZYnXGd ddeZeZgfd dZ gfd dZ d dZ ddZ ddZ ddZedkrddlZee ejdddddgdS)aParser for command line options. This module helps scripts to parse the command line arguments in sys.argv. It supports the same conventions as the Unix getopt() function (including the special meanings of arguments of the form `-' and `--'). Long options similar to those supported by GNU software may be used as well via an optional third argument. This module provides two functions and an exception: getopt() -- Parse command line options gnu_getopt() -- Like getopt(), but allow option and non-option arguments to be intermixed. GetoptError -- exception (class) raised with 'opt' attribute, which is the option involved with the exception. GetoptErrorerrorgetopt gnu_getoptN)gettextcCs|S)N)srr/usr/lib64/python3.6/getopt.py_)sr c@s&eZdZdZdZdddZddZdS)rcCs||_||_tj|||dS)N)msgopt Exception__init__)selfr r rrr r.szGetoptError.__init__cCs|jS)N)r )rrrr __str__3szGetoptError.__str__N)r )__name__ __module__ __qualname__r r rrrrrr r+s cCsg}t|tdkr|g}nt|}x|r|djdr|ddkr|ddkr^|dd}P|djdrt||ddd||dd\}}q&t||ddd||dd\}}q&W||fS)a@getopt(args, options[, long_options]) -> opts, args Parses command line options and parameter list. args is the argument list to be parsed, without the leading reference to the running program. Typically, this means "sys.argv[1:]". shortopts is the string of option letters that the script wants to recognize, with options that require an argument followed by a colon (i.e., the same format that Unix getopt() uses). If specified, longopts is a list of strings with the names of the long options which should be supported. The leading '--' characters should not be included in the option name. Options which require an argument should be followed by an equal sign ('='). The return value consists of two elements: the first is a list of (option, value) pairs; the second is the list of program arguments left after the option list was stripped (this is a trailing slice of the first argument). Each option-and-value pair returned has the option as its first element, prefixed with a hyphen (e.g., '-x'), and the option argument as its second element, or an empty string if the option has no argument. The options occur in the list in the same order in which they were found, thus allowing multiple occurrences. Long and short options may be mixed. r r-z--N)typelist startswithdo_longs do_shorts)args shortoptslongoptsoptsrrr r8s   (*cCs6g}g}t|tr|g}nt|}|jdr>|dd}d}ntjjdrPd}nd}x|r,|ddkrz||dd7}P|ddd dkrt||dd d||dd\}}qV|dddd kr|dd krt||ddd||dd\}}qV|r||7}PqV|j |d|dd}qVW||fS) agetopt(args, options[, long_options]) -> opts, args This function works like getopt(), except that GNU style scanning mode is used by default. This means that option and non-option arguments may be intermixed. The getopt() function stops processing options as soon as a non-option argument is encountered. If the first character of the option string is `+', or if the environment variable POSIXLY_CORRECT is set, then option processing stops as soon as a non-option argument is encountered. +rNTZPOSIXLY_CORRECTFrz--rr) isinstancestrrrosenvirongetrrappend)rrrr Z prog_argsZall_options_firstrrr rcs2     ( (c Csy|jd}Wntk r&d}Yn X|d|||dd}}t||\}}|r|dkr|svttd|||d|dd}}n|dk rttd|||jd||pdf||fS)N=rzoption --%s requires argumentrz%option --%s must not have an argumentz--r )index ValueError long_has_argsrr r')r r rrioptarghas_argrrr rs rcsfdd|D}|s(ttd|kr8dfSd|krLdfSt|dkrjttdt|dkszt|d }|jd}|r|dd }||fS) Ncsg|]}|jr|qSr)r).0o)r rr sz!long_has_args..zoption --%s not recognizedFr(Trzoption --%s not a unique prefixr)rr lenAssertionErrorendswith)r rZ possibilitiesZ unique_matchr.r)r r r+s    r+cCsx|dkr|d|dd}}t||rj|dkr^|sHttd|||d|dd}}|d}}nd}|jd||fqW||fS)Nr rrzoption -%s requires argumentr) short_has_argrr r')r Z optstringrrr r-rrr rs    rcCsXx@tt|D]0}|||ko(dknr|jd|dSqWttd||dS)N:rzoption -%s not recognized)ranger3rrr )r rr,rrr r6sr6__main__rza:bzalpha=Zbeta)__doc____all__r$rr ImportErrorrrrrrrr+rr6rsysprintargvrrrr s"   + 2