Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{cmd} --- |
Fred Drake | f8ca7d8 | 2000-10-10 17:03:45 +0000 | [diff] [blame] | 2 | Support for line-oriented command interpreters} |
| 3 | |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 4 | \declaremodule{standard}{cmd} |
Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 5 | \sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com} |
Fred Drake | f8ca7d8 | 2000-10-10 17:03:45 +0000 | [diff] [blame] | 6 | \modulesynopsis{Build line-oriented command interpreters.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 8 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 9 | The \class{Cmd} class provides a simple framework for writing |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 10 | line-oriented command interpreters. These are often useful for |
| 11 | test harnesses, administrative tools, and prototypes that will |
| 12 | later be wrapped in a more sophisticated interface. |
| 13 | |
Fred Drake | 7f8d17a | 2003-12-31 05:01:23 +0000 | [diff] [blame] | 14 | \begin{classdesc}{Cmd}{\optional{completekey\optional{, |
| 15 | stdin\optional{, stdout}}}} |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 16 | A \class{Cmd} instance or subclass instance is a line-oriented |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 17 | interpreter framework. There is no good reason to instantiate |
| 18 | \class{Cmd} itself; rather, it's useful as a superclass of an |
| 19 | interpreter class you define yourself in order to inherit |
| 20 | \class{Cmd}'s methods and encapsulate action methods. |
Martin v. Löwis | 66b6e19 | 2001-07-28 14:44:03 +0000 | [diff] [blame] | 21 | |
Anthony Baxter | 983b008 | 2003-02-06 01:45:11 +0000 | [diff] [blame] | 22 | The optional argument \var{completekey} is the \refmodule{readline} name |
| 23 | of a completion key; it defaults to \kbd{Tab}. If \var{completekey} is |
Fred Drake | 7f8d17a | 2003-12-31 05:01:23 +0000 | [diff] [blame] | 24 | not \constant{None} and \refmodule{readline} is available, command completion |
Anthony Baxter | 983b008 | 2003-02-06 01:45:11 +0000 | [diff] [blame] | 25 | is done automatically. |
| 26 | |
| 27 | The optional arguments \var{stdin} and \var{stdout} specify the |
| 28 | input and output file objects that the Cmd instance or subclass |
| 29 | instance will use for input and output. If not specified, they |
| 30 | will default to \var{sys.stdin} and \var{sys.stdout}. |
| 31 | |
Neal Norwitz | 292f56c | 2003-02-06 05:02:39 +0000 | [diff] [blame] | 32 | \versionchanged[The \var{stdin} and \var{stdout} parameters were added.]{2.3} |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 33 | \end{classdesc} |
| 34 | |
| 35 | \subsection{Cmd Objects} |
| 36 | \label{Cmd-objects} |
| 37 | |
| 38 | A \class{Cmd} instance has the following methods: |
| 39 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 40 | \begin{methoddesc}{cmdloop}{\optional{intro}} |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 41 | Repeatedly issue a prompt, accept input, parse an initial prefix off |
| 42 | the received input, and dispatch to action methods, passing them the |
| 43 | remainder of the line as argument. |
| 44 | |
| 45 | The optional argument is a banner or intro string to be issued before the |
| 46 | first prompt (this overrides the \member{intro} class member). |
| 47 | |
Fred Drake | 7f8d17a | 2003-12-31 05:01:23 +0000 | [diff] [blame] | 48 | If the \refmodule{readline} module is loaded, input will automatically |
Fred Drake | 682d5f3 | 2001-07-12 02:09:51 +0000 | [diff] [blame] | 49 | inherit \program{bash}-like history-list editing (e.g. \kbd{Control-P} |
| 50 | scrolls back to the last command, \kbd{Control-N} forward to the next |
| 51 | one, \kbd{Control-F} moves the cursor to the right non-destructively, |
| 52 | \kbd{Control-B} moves the cursor to the left non-destructively, etc.). |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 53 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 54 | An end-of-file on input is passed back as the string \code{'EOF'}. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 55 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 56 | An interpreter instance will recognize a command name \samp{foo} if |
| 57 | and only if it has a method \method{do_foo()}. As a special case, |
Eric S. Raymond | 7ae3a5e | 2000-07-12 02:56:15 +0000 | [diff] [blame] | 58 | a line beginning with the character \character{?} is dispatched to |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 59 | the method \method{do_help()}. As another special case, a line |
Eric S. Raymond | 7ae3a5e | 2000-07-12 02:56:15 +0000 | [diff] [blame] | 60 | beginning with the character \character{!} is dispatched to the |
Fred Drake | 43211ec | 2001-07-29 03:41:23 +0000 | [diff] [blame] | 61 | method \method{do_shell()} (if such a method is defined). |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 62 | |
Fred Drake | 69013d0 | 2004-07-30 18:58:54 +0000 | [diff] [blame] | 63 | This method will return when the \method{postcmd()} method returns a |
| 64 | true value. The \var{stop} argument to \method{postcmd()} is the |
| 65 | return value from the command's corresponding \method{do_*()} method. |
| 66 | |
Martin v. Löwis | 66b6e19 | 2001-07-28 14:44:03 +0000 | [diff] [blame] | 67 | If completion is enabled, completing commands will be done |
| 68 | automatically, and completing of commands args is done by calling |
Fred Drake | 43211ec | 2001-07-29 03:41:23 +0000 | [diff] [blame] | 69 | \method{complete_foo()} with arguments \var{text}, \var{line}, |
| 70 | \var{begidx}, and \var{endidx}. \var{text} is the string prefix we |
| 71 | are attempting to match: all returned matches must begin with it. |
| 72 | \var{line} is the current input line with leading whitespace removed, |
| 73 | \var{begidx} and \var{endidx} are the beginning and ending indexes |
| 74 | of the prefix text, which could be used to provide different |
| 75 | completion depending upon which position the argument is in. |
Martin v. Löwis | 66b6e19 | 2001-07-28 14:44:03 +0000 | [diff] [blame] | 76 | |
Fred Drake | 43211ec | 2001-07-29 03:41:23 +0000 | [diff] [blame] | 77 | All subclasses of \class{Cmd} inherit a predefined \method{do_help()}. |
| 78 | This method, called with an argument \code{'bar'}, invokes the |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 79 | corresponding method \method{help_bar()}. With no argument, |
| 80 | \method{do_help()} lists all available help topics (that is, all |
| 81 | commands with corresponding \method{help_*()} methods), and also lists |
| 82 | any undocumented commands. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 83 | \end{methoddesc} |
| 84 | |
| 85 | \begin{methoddesc}{onecmd}{str} |
Fred Drake | 7c9a53d | 2001-12-27 05:10:18 +0000 | [diff] [blame] | 86 | Interpret the argument as though it had been typed in response to the |
| 87 | prompt. This may be overridden, but should not normally need to be; |
| 88 | see the \method{precmd()} and \method{postcmd()} methods for useful |
| 89 | execution hooks. The return value is a flag indicating whether |
Fred Drake | 69013d0 | 2004-07-30 18:58:54 +0000 | [diff] [blame] | 90 | interpretation of commands by the interpreter should stop. If there |
| 91 | is a \method{do_*()} method for the command \var{str}, the return |
| 92 | value of that method is returned, otherwise the return value from the |
| 93 | \method{default()} method is returned. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 94 | \end{methoddesc} |
| 95 | |
| 96 | \begin{methoddesc}{emptyline}{} |
| 97 | Method called when an empty line is entered in response to the prompt. |
| 98 | If this method is not overridden, it repeats the last nonempty command |
| 99 | entered. |
| 100 | \end{methoddesc} |
| 101 | |
| 102 | \begin{methoddesc}{default}{line} |
| 103 | Method called on an input line when the command prefix is not |
| 104 | recognized. If this method is not overridden, it prints an |
| 105 | error message and returns. |
| 106 | \end{methoddesc} |
| 107 | |
Martin v. Löwis | 66b6e19 | 2001-07-28 14:44:03 +0000 | [diff] [blame] | 108 | \begin{methoddesc}{completedefault}{text, line, begidx, endidx} |
| 109 | Method called to complete an input line when no command-specific |
Fred Drake | 43211ec | 2001-07-29 03:41:23 +0000 | [diff] [blame] | 110 | \method{complete_*()} method is available. By default, it returns an |
Martin v. Löwis | 66b6e19 | 2001-07-28 14:44:03 +0000 | [diff] [blame] | 111 | empty list. |
| 112 | \end{methoddesc} |
| 113 | |
Fred Drake | 7c9a53d | 2001-12-27 05:10:18 +0000 | [diff] [blame] | 114 | \begin{methoddesc}{precmd}{line} |
| 115 | Hook method executed just before the command line \var{line} is |
| 116 | interpreted, but after the input prompt is generated and issued. This |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 117 | method is a stub in \class{Cmd}; it exists to be overridden by |
Fred Drake | 7c9a53d | 2001-12-27 05:10:18 +0000 | [diff] [blame] | 118 | subclasses. The return value is used as the command which will be |
| 119 | executed by the \method{onecmd()} method; the \method{precmd()} |
| 120 | implementation may re-write the command or simply return \var{line} |
| 121 | unchanged. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 122 | \end{methoddesc} |
| 123 | |
Fred Drake | 7c9a53d | 2001-12-27 05:10:18 +0000 | [diff] [blame] | 124 | \begin{methoddesc}{postcmd}{stop, line} |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 125 | Hook method executed just after a command dispatch is finished. This |
| 126 | method is a stub in \class{Cmd}; it exists to be overridden by |
Fred Drake | 7c9a53d | 2001-12-27 05:10:18 +0000 | [diff] [blame] | 127 | subclasses. \var{line} is the command line which was executed, and |
| 128 | \var{stop} is a flag which indicates whether execution will be |
| 129 | terminated after the call to \method{postcmd()}; this will be the |
| 130 | return value of the \method{onecmd()} method. The return value of |
| 131 | this method will be used as the new value for the internal flag which |
| 132 | corresponds to \var{stop}; returning false will cause interpretation |
| 133 | to continue. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 134 | \end{methoddesc} |
| 135 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 136 | \begin{methoddesc}{preloop}{} |
| 137 | Hook method executed once when \method{cmdloop()} is called. This |
| 138 | method is a stub in \class{Cmd}; it exists to be overridden by |
| 139 | subclasses. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 140 | \end{methoddesc} |
| 141 | |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 142 | \begin{methoddesc}{postloop}{} |
| 143 | Hook method executed once when \method{cmdloop()} is about to return. |
| 144 | This method is a stub in \class{Cmd}; it exists to be overridden by |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 145 | subclasses. |
| 146 | \end{methoddesc} |
| 147 | |
| 148 | Instances of \class{Cmd} subclasses have some public instance variables: |
| 149 | |
| 150 | \begin{memberdesc}{prompt} |
| 151 | The prompt issued to solicit input. |
| 152 | \end{memberdesc} |
| 153 | |
| 154 | \begin{memberdesc}{identchars} |
| 155 | The string of characters accepted for the command prefix. |
| 156 | \end{memberdesc} |
| 157 | |
| 158 | \begin{memberdesc}{lastcmd} |
| 159 | The last nonempty command prefix seen. |
| 160 | \end{memberdesc} |
| 161 | |
| 162 | \begin{memberdesc}{intro} |
| 163 | A string to issue as an intro or banner. May be overridden by giving |
| 164 | the \method{cmdloop()} method an argument. |
| 165 | \end{memberdesc} |
| 166 | |
| 167 | \begin{memberdesc}{doc_header} |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 168 | The header to issue if the help output has a section for documented |
| 169 | commands. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 170 | \end{memberdesc} |
| 171 | |
| 172 | \begin{memberdesc}{misc_header} |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 173 | The header to issue if the help output has a section for miscellaneous |
| 174 | help topics (that is, there are \method{help_*()} methods without |
| 175 | corresponding \method{do_*()} methods). |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 176 | \end{memberdesc} |
| 177 | |
| 178 | \begin{memberdesc}{undoc_header} |
| 179 | The header to issue if the help output has a section for undocumented |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 180 | commands (that is, there are \method{do_*()} methods without |
| 181 | corresponding \method{help_*()} methods). |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 182 | \end{memberdesc} |
| 183 | |
| 184 | \begin{memberdesc}{ruler} |
| 185 | The character used to draw separator lines under the help-message |
Fred Drake | 579d366 | 1998-07-02 19:35:12 +0000 | [diff] [blame] | 186 | headers. If empty, no ruler line is drawn. It defaults to |
| 187 | \character{=}. |
Guido van Rossum | 8668e8e | 1998-06-28 17:55:53 +0000 | [diff] [blame] | 188 | \end{memberdesc} |
| 189 | |
Guido van Rossum | c8da0f9 | 2001-03-24 19:17:35 +0000 | [diff] [blame] | 190 | \begin{memberdesc}{use_rawinput} |
| 191 | A flag, defaulting to true. If true, \method{cmdloop()} uses |
| 192 | \function{raw_input()} to display a prompt and read the next command; |
Fred Drake | 43211ec | 2001-07-29 03:41:23 +0000 | [diff] [blame] | 193 | if false, \method{sys.stdout.write()} and |
| 194 | \method{sys.stdin.readline()} are used. (This means that by |
Fred Drake | 7f8d17a | 2003-12-31 05:01:23 +0000 | [diff] [blame] | 195 | importing \refmodule{readline}, on systems that support it, the |
| 196 | interpreter will automatically support \program{Emacs}-like line editing |
Eric S. Raymond | ff00fda | 2001-06-23 14:42:43 +0000 | [diff] [blame] | 197 | and command-history keystrokes.) |
Guido van Rossum | c8da0f9 | 2001-03-24 19:17:35 +0000 | [diff] [blame] | 198 | \end{memberdesc} |