U if :@s@dZddlZddlZdgZdZejejdZGdddZdS)a A generic class to build line-oriented command interpreters. Interpreters constructed with this class obey the following conventions: 1. End of file on input is processed as the command 'EOF'. 2. A command is parsed out of each line by collecting the prefix composed of characters in the identchars member. 3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method is passed a single argument consisting of the remainder of the line. 4. Typing an empty line repeats the last command. (Actually, it calls the method `emptyline', which may be overridden in a subclass.) 5. There is a predefined `help' method. Given an argument `topic', it calls the command `help_topic'. With no arguments, it lists all topics with defined help_ functions, broken into up to three topics; documented commands, miscellaneous help topics, and undocumented commands. 6. The command '?' is a synonym for `help'. The command '!' is a synonym for `shell', if a do_shell method exists. 7. If completion is enabled, completing commands will be done automatically, and completing of commands args is done by calling complete_foo() with arguments text, line, begidx, endidx. text is string we are matching against, all returned matches must begin with it. line is the current input line (lstripped), begidx and endidx are the beginning and end indexes of the text being matched, which could be used to provide different completion depending upon which position the argument is in. The `default' method may be overridden to intercept commands for which there is no do_ method. The `completedefault' method may be overridden to intercept completions for commands that have no complete_ method. The data member `self.ruler' sets the character used to draw separator lines in the help messages. If empty, no ruler line is drawn. It defaults to "=". If the value of `self.intro' is nonempty when the cmdloop method is called, it is printed out on interpreter startup. This value may be overridden via an optional argument to the cmdloop() method. The data members `self.doc_header', `self.misc_header', and `self.undoc_header' set the headers used for the help function's listings of documented functions, miscellaneous topics, and undocumented functions respectively. NCmdz(Cmd) _c@seZdZdZeZeZdZdZ dZ dZ dZ dZ dZdZd Zd0d d Zd1d dZddZddZddZddZddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Z d+d,Z!d2d.d/Z"dS)3raA simple framework for writing line-oriented command interpreters. These are often useful for test harnesses, administrative tools, and prototypes that will later be wrapped in a more sophisticated interface. A Cmd instance or subclass instance is a line-oriented interpreter framework. There is no good reason to instantiate Cmd itself; rather, it's useful as a superclass of an interpreter class you define yourself in order to inherit Cmd's methods and encapsulate action methods. =Nz(Documented commands (type help ):zMiscellaneous help topics:zUndocumented commands:z*** No help on %stabcCs@|dk r||_ntj|_|dk r(||_ntj|_g|_||_dS)aInstantiate a line-oriented interpreter framework. The optional argument 'completekey' is the readline name of a completion key; it defaults to the Tab key. If completekey is not None and the readline module is available, command completion is done automatically. The optional arguments stdin and stdout specify alternate input and output file objects; if not specified, sys.stdin and sys.stdout are used. N)stdinsysstdoutcmdqueue completekey)selfr rr r(/opt/alt/python38/lib64/python3.8/cmd.py__init__Ls z Cmd.__init__cCs||jr\|jr\z2ddl}||_||j||jdWnt k rZYnXz|dk rl||_ |j r|j t |j dd}|s4|jr|jd}nl|jrzt|j}Wntk rd}YnXn<|j |j|j |j}t|sd}n |d}||}||}|||}q|W5|jr|jrzddl}||jWnt k r~YnXXdS)zRepeatedly issue a prompt, accept input, parse an initial prefix off the received input, and dispatch to action methods, passing them the remainder of the line as argument. rNz : complete EOFz )preloop use_rawinputr readlineZ get_completerZ old_completerZ set_completercompleteparse_and_bind ImportErrorintror writestrr popinputpromptEOFErrorflushrlenrstripprecmdonecmdpostcmdpostloop)r rrstoplinerrrcmdloopbsN           z Cmd.cmdloopcCs|S)zHook method executed just before the command line is interpreted, but after the input prompt is generated and issued. rr r(rrrr#sz Cmd.precmdcCs|S)z?Hook method executed just after a command dispatch is finished.r)r r'r(rrrr%sz Cmd.postcmdcCsdS)z>Hook method executed once when the cmdloop() method is called.Nrr rrrrsz Cmd.preloopcCsdS)zYHook method executed once when the cmdloop() method is about to return. Nrr+rrrr&sz Cmd.postloopcCs|}|sdd|fS|ddkr4d|dd}n2|ddkrft|dr\d|dd}n dd|fSdt|}}||kr|||jkr|d}qt|d|||d}}|||fS) zParse the line into a command name and a string containing the arguments. Returns a tuple containing (command, args, line). 'command' and 'args' may be None if the line couldn't be parsed. Nr?zhelp r!Zdo_shellzshell )striphasattrr! identchars)r r(incmdargrrr parselines      z Cmd.parselinecCs||\}}}|s|S|dkr.||S||_|dkrBd|_|dkrT||Szt|d|}Wntk r||YSX||SdS)ahInterpret the argument as though it had been typed in response to the prompt. This may be overridden, but should not normally need to be; see the precmd() and postcmd() methods for useful execution hooks. The return value is a flag indicating whether interpretation of commands by the interpreter should stop. Nrrdo_)r5 emptylinedefaultlastcmdgetattrAttributeError)r r(r3r4funcrrrr$s   z Cmd.onecmdcCs|jr||jSdS)zCalled when an empty line is entered in response to the prompt. If this method is not overridden, it repeats the last nonempty command entered. N)r9r$r+rrrr7sz Cmd.emptylinecCs|jd|dS)zCalled on an input line when the command prefix is not recognized. If this method is not overridden, it prints an error message and returns. z*** Unknown syntax: %s N)r rr*rrrr8sz Cmd.defaultcGsgS)zMethod called to complete an input line when no command-specific complete_*() method is available. By default, it returns an empty list. r)r ignoredrrrcompletedefaultszCmd.completedefaultcsd|fdd|DS)Nr6cs"g|]}|r|ddqS)N startswith.0aZdotextrr s z%Cmd.completenames..) get_names)r textr=rrEr completenamesszCmd.completenamesc Cs|dkrddl}|}|}t|t|}||}||}|dkr||\} } } | dkrp|j} qzt|d| } Wqt k r|j} YqXn|j } | |||||_ z |j |WSt k rYdSXdS)zReturn the next possible completion for 'text'. If a command has not been entered, then complete against command list. Otherwise try to call complete_ to get list of completions. rNrZ complete_) rZget_line_bufferlstripr!Z get_begidxZ get_endidxr5r>r:r;rIZcompletion_matches IndexError) r rHstaterZorigliner(strippedZbegidxZendidxr3argsZfooZcompfuncrrrrs*   z Cmd.completecCs t|jS)N)dir __class__r+rrrrGsz Cmd.get_namescs4t|j}tfdd|D}t||BS)Nc3s,|]$}|ddr|ddVqdS)help_rNr@rBrNrr sz$Cmd.complete_help..)setrIrGlist)r rNZcommandsZtopicsrrSr complete_helpszCmd.complete_helpc Cs|rzt|d|}Wn|tk rz4t|d|j}|rX|jdt|WYdSWntk rnYnX|jdt|j|fYdSX|n|}g}g}i}|D]$}|dddkrd||dd<q|d} |D]p}|dddkr|| kr q|} |dd} | |kr8| | || =qt||jrR| | q| | q|jdt|j | |j |d d | |j t|d d | |j|d d dS) zEList available commands with "help" or detailed help with "help cmd".rQr6%s NrRrrr?P)r:r;__doc__r rrnohelprGsortappend doc_leader print_topics doc_header misc_headerrVkeys undoc_header) r r4r<docnamesZcmds_docZ cmds_undochelpnameZprevnamer3rrrdo_help$sN        z Cmd.do_helpcCs\|rX|jdt||jr<|jdt|jt||||d|jddS)NrXrr)r rrrulerr! columnize)r headerZcmdsZcmdlenZmaxcolrrrr`Rs zCmd.print_topicsrZcss|jddSfddttD}|rJtddtt|t}|dkrv|jdtd dStdtD]}||d|}g}d }t|D]h} d } t|D]2} | || } | |krq| } t| t| } q| | || d 7}||krqq||krq4qt}d}d g}t|D]} g}t|D]4} | || } | |krld } n| } | | qL|r|d s|d =qtt|D]} ||  || || <q|jdtd|q Ncsg|]}t|ts|qSr) isinstancer)rCr1rVrrrFdsz!Cmd.columnize..z list[i] not a string for i in %sz, rrXrrz ) r rranger! TypeErrorjoinmaprmaxr^ljust)r rVZ displaywidthZ nonstringssizeZnrowsZncolsZ colwidthsZtotwidthcolZcolwidthrowr1xZtextsrrnrrkZs\           z Cmd.columnize)rNN)N)rZ)#__name__ __module__ __qualname__r[PROMPTr IDENTCHARSr0rjr9rr_rarbrdr\rrr)r#r%rr&r5r$r7r8r>rIrrGrWrir`rkrrrrr4s<   4   .) r[stringr __all__rZ ascii_lettersZdigitsrrrrrrs ,