\d:bdZddlZddlZdgZdZejejzdzZGddZdS)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) _ceZdZdZeZeZdZdZ dZ dZ dZ dZ dZdZd Zdd Zdd Zd ZdZdZdZdZdZdZdZdZdZdZdZdZdZ dZ!d dZ"dS)!raA 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 %stabc|||_ntj|_|||_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)selfrr r s ..\python\lib\cmd.py__init__z Cmd.__init__LsI  DJJDJ   DKK*DK &c||jrm|jrf ddl}||_||j||jdzn#t$rYnwxYw |||_ |j r/|j t|j dzd}|s |jr|jd}n|jr( t!|j}n#t$$rd}Yn|wxYw|j |j|j |j}t+|sd}n|d}||}||}|||}| ||jr9|jr4 ddl}||jdS#t$rYdSwxYwdSdS#|jr7|jr1 ddl}||jw#t$rYwwxYwwwxYw)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_rawinputrreadline get_completer old_completer set_completercompleteparse_and_bind ImportErrorintror writestrrpopinputpromptEOFErrorflushr lenrstripprecmdonecmdpostcmdpostloop)rr rstoplines rcmdloopz Cmd.cmdloopbs    !1  %-%;%;%=%="&&t}555''(8(EFFFF    !  " z 8 !!#dj//$"6777D 0=7=,,Q//DD( 7)#(#5#5DD')))#(DDD) ))$+666 ))+++#z2244"4yy7#(DD#';;v#6#6D{{4(({{4((||D$//' 0( MMOOO  T%5 #OOO**4+=>>>>>"DD     t  T%5 #OOO**4+=>>>>"D   szAA99 BB A-H28D H2 DH2DCH2=H H+*H+2I3I! I3! I.+I3-I..I3c|S)zHook method executed just before the command line is interpreted, but after the input prompt is generated and issued. rr/s rr*z Cmd.precmds  rc|S)z?Hook method executed just after a command dispatch is finished.r2)rr.r/s rr,z Cmd.postcmds rcdS)z>Hook method executed once when the cmdloop() method is called.Nr2rs rrz Cmd.preloops rcdS)zYHook method executed once when the cmdloop() method is about to return. Nr2r6s rr-z Cmd.postloops rc|}|sdd|fS|ddkrd|ddz}n/|ddkr#t|drd|ddz}ndd|fSdt|}}||kr)|||jvr|dz}||kr|||jv|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!do_shellzshell )striphasattrr( identchars)rr/incmdargs r parselinez Cmd.parselines zz|| (t# # !W^^T!""X%DD !W^^tZ(( ($qrr(*T4''#d))1!eeQ4?22!Aa!eeQ4?228T!""X^^--SC~rcv||\}}}|s|S|||S||_|dkrd|_|dkr||S t |d|z}n%#t $r||cYSwxYw||S)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_)rC emptylinedefaultlastcmdgetattrAttributeError)rr/rArBfuncs rr+z Cmd.onecmds--S$ $>>## # ;<<%% % 5==DL "99<<%% % *tUS[11! * * *||D))))) *499 s7B B-,B-cH|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)rHr+r6s rrFz Cmd.emptylines, < -;;t|,, , - -rc@|jd|zdS)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 r!r3s rrGz Cmd.defaults& 4T9:::::rcgS)zMethod called to complete an input line when no command-specific complete_*() method is available. By default, it returns an empty list. r2)rignoreds rcompletedefaultzCmd.completedefaults  rcNd|zfd|DS)NrEcNg|]!}||dd"S)N startswith).0adotexts r z%Cmd.completenames..s2HHH!1<<3G3GH!""HHHr) get_names)rtextrOrXs @r completenameszCmd.completenamess0tHHHHt~~//HHHHrc$|dkrddl}|}|}t|t|z }||z }||z }|dkrS||\} } } | dkr|j} n3 t|d| z} n#t$r |j} Yn wxYw|j } | |||||_ |j |S#t$rYdSwxYw)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. rNr complete_) rget_line_bufferlstripr( get_begidx get_endidxrCrPrIrJr\completion_matches IndexError) rr[staterorigliner/strippedbegidxendidxrAargsfoocompfuncs rrz Cmd.completesD A:: OOO//11H??$$D8}}s4yy0H((**X5F((**X5Faxx!%!5!5T3"99#3HH8#*4s1B#C#C)888#'#78 -&.htT66&J&JD # *51 1   44 s$.CCC4 D DDc*t|jSN)dir __class__r6s rrZz Cmd.get_namess4>"""rct|j}tfd|D}t||zS)Nc3hK|],}|ddz |ddV-dS)help_rNrT)rVrWrjs r z$Cmd.complete_help.. sX99q WtAw%6779QqrrU999999r)setr\rZlist)rrjcommandstopicss ` r complete_helpzCmd.complete_helpsl)t)40119999DNN$4$499999Hv%&&&rc|r t|d|z}n#t$r t|d|zj}|r-|jdt |zYdSn#t$rYnwxYw|jdt |j|fzzYdSwxYw|dS|}g}g}t}|D]-}|dddkr| |dd.| d} |D]}|dddkr|| kr|} |dd} | |vr+| | | | Rt||jr| | }| | |jdt |j z||j|dd ||jt#|dd ||j|dd dS) zEList available commands with "help" or detailed help with "help cmd".rsrE%s NrtrrSP)rIrJ__doc__r r!r"nohelprZrvaddsortappendremove doc_leader print_topics doc_header misc_headersorted undoc_header) rrBrKdocnamescmds_doc cmds_undocrynameprevnamerAs rdo_helpz Cmd.do_help$s * D tWs]33!   eck22:C ))&S/:::&D !!&T[C6-A)B)B"BCCC  DFFFFFNN$$EHJUUF ) )8w&&JJtABBx((( JJLLLH / /8u$$x'' #HQRRCf}} ,,, c**** t,,4/ ,,,,"))#... K  fS%9%99 : : :   doR C C C   d.2 F F F   d/R C C C C Cs3 B2AA+*B2+ A85B27A886B21B2c T|r|jdt|z|jr?|jdt|jt |zz|||dz |jddSdS)Nr|rr)r r!r"rulerr( columnize)rheadercmdscmdlenmaxcols rrzCmd.print_topicsRs  $ K  fS[[0 1 1 1z H !!&TZ#f++-E)F)F"FGGG NN4 * * * K  d # # # # #  $ $rr~c s|jddSfdttD}|r8t ddt t|zt}|dkr2|jdtdzdStdtD]}||zdz |z}g}d }t|D]p} d} t|D]7} | || zz} | |krn&| } t| t| } 8| | || d zz }||krnq||krnt}d}dg}t|D]} g}t|D]0} | || zz} | |krd } n| } | | 1|r|d s |d =|r|d  tt|D]&} ||  || || <'|jdtd |zdS)zDisplay a list of strings as a compact set of columns. Each column is only as wide as necessary. Columns are separated by two spaces (one was not legible enough). z NcJg|]}t|t| Sr2) isinstancer")rVr?rws rrYz!Cmd.columnize..ds;999A)$q'3779a999rz list[i] not a string for i in %sz, rr|rrz ) r r!ranger( TypeErrorjoinmapr"maxrljust)rrw displaywidth nonstringssizenrowsncols colwidthstotwidthcolcolwidthrowr?xtextss ` rrz Cmd.columnizeZs   K  k * * * F9999s4yy!1!1999  ?>"iiC(<(<==>?? ?4yy 199 K  fSa\\1 2 2 2 F1c$ii((  E%Z\e+EIHU||   <<55CeCiADyyQA"8SVV44HH  ***HqL(l**E+<''(IIEEI<< <  >"3Z--in==c K  fS5)9)9%:%:: ; ; ; ; < rrHr rrrrrrrr0r*r,rr-rCr+rFrGrPr\rrZrzrrrr2rrrr4s|  FJ EG EJ;J.K+L FL'''',1111h      (6---;;;III<### ''' ,D,D,D\$$$7<7<7<7<7<7rs**X '   !FM 1C 7 ]<]<]<]<]<]<]<]<]<]