blob: b33d72461862eebb8e82bc9b21020f9bea957352 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`cmd` --- Support for line-oriented command interpreters
2=============================================================
3
4.. module:: cmd
5 :synopsis: Build line-oriented command interpreters.
6.. sectionauthor:: Eric S. Raymond <esr@snark.thyrsus.com>
7
Raymond Hettinger10480942011-01-10 03:26:08 +00008**Source code:** :source:`Lib/cmd.py`
Georg Brandl116aa622007-08-15 14:28:22 +00009
Raymond Hettinger4f707fd2011-01-10 19:54:11 +000010--------------
11
Georg Brandl116aa622007-08-15 14:28:22 +000012The :class:`Cmd` class provides a simple framework for writing line-oriented
13command interpreters. These are often useful for test harnesses, administrative
14tools, and prototypes that will later be wrapped in a more sophisticated
15interface.
16
Georg Brandl0d8f0732009-04-05 22:20:44 +000017.. class:: Cmd(completekey='tab', stdin=None, stdout=None)
Georg Brandl116aa622007-08-15 14:28:22 +000018
19 A :class:`Cmd` instance or subclass instance is a line-oriented interpreter
20 framework. There is no good reason to instantiate :class:`Cmd` itself; rather,
21 it's useful as a superclass of an interpreter class you define yourself in order
22 to inherit :class:`Cmd`'s methods and encapsulate action methods.
23
24 The optional argument *completekey* is the :mod:`readline` name of a completion
25 key; it defaults to :kbd:`Tab`. If *completekey* is not :const:`None` and
26 :mod:`readline` is available, command completion is done automatically.
27
28 The optional arguments *stdin* and *stdout* specify the input and output file
29 objects that the Cmd instance or subclass instance will use for input and
Georg Brandl0c77a822008-06-10 16:37:50 +000030 output. If not specified, they will default to :data:`sys.stdin` and
31 :data:`sys.stdout`.
32
33 If you want a given *stdin* to be used, make sure to set the instance's
34 :attr:`use_rawinput` attribute to ``False``, otherwise *stdin* will be
35 ignored.
Georg Brandl116aa622007-08-15 14:28:22 +000036
Georg Brandl116aa622007-08-15 14:28:22 +000037
38.. _cmd-objects:
39
40Cmd Objects
41-----------
42
43A :class:`Cmd` instance has the following methods:
44
45
Georg Brandl0d8f0732009-04-05 22:20:44 +000046.. method:: Cmd.cmdloop(intro=None)
Georg Brandl116aa622007-08-15 14:28:22 +000047
48 Repeatedly issue a prompt, accept input, parse an initial prefix off the
49 received input, and dispatch to action methods, passing them the remainder of
50 the line as argument.
51
52 The optional argument is a banner or intro string to be issued before the first
53 prompt (this overrides the :attr:`intro` class member).
54
55 If the :mod:`readline` module is loaded, input will automatically inherit
56 :program:`bash`\ -like history-list editing (e.g. :kbd:`Control-P` scrolls back
57 to the last command, :kbd:`Control-N` forward to the next one, :kbd:`Control-F`
58 moves the cursor to the right non-destructively, :kbd:`Control-B` moves the
59 cursor to the left non-destructively, etc.).
60
61 An end-of-file on input is passed back as the string ``'EOF'``.
62
63 An interpreter instance will recognize a command name ``foo`` if and only if it
64 has a method :meth:`do_foo`. As a special case, a line beginning with the
65 character ``'?'`` is dispatched to the method :meth:`do_help`. As another
66 special case, a line beginning with the character ``'!'`` is dispatched to the
67 method :meth:`do_shell` (if such a method is defined).
68
69 This method will return when the :meth:`postcmd` method returns a true value.
70 The *stop* argument to :meth:`postcmd` is the return value from the command's
71 corresponding :meth:`do_\*` method.
72
73 If completion is enabled, completing commands will be done automatically, and
74 completing of commands args is done by calling :meth:`complete_foo` with
75 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
76 we are attempting to match: all returned matches must begin with it. *line* is
77 the current input line with leading whitespace removed, *begidx* and *endidx*
78 are the beginning and ending indexes of the prefix text, which could be used to
79 provide different completion depending upon which position the argument is in.
80
Georg Brandlb2566cf2010-08-02 20:27:20 +000081 All subclasses of :class:`Cmd` inherit a predefined :meth:`do_help`. This
Georg Brandl116aa622007-08-15 14:28:22 +000082 method, called with an argument ``'bar'``, invokes the corresponding method
Georg Brandlb2566cf2010-08-02 20:27:20 +000083 :meth:`help_bar`, and if that is not present, prints the docstring of
84 :meth:`do_bar`, if available. With no argument, :meth:`do_help` lists all
85 available help topics (that is, all commands with corresponding
86 :meth:`help_\*` methods or commands that have docstrings), and also lists any
87 undocumented commands.
Georg Brandl116aa622007-08-15 14:28:22 +000088
89
90.. method:: Cmd.onecmd(str)
91
92 Interpret the argument as though it had been typed in response to the prompt.
93 This may be overridden, but should not normally need to be; see the
94 :meth:`precmd` and :meth:`postcmd` methods for useful execution hooks. The
95 return value is a flag indicating whether interpretation of commands by the
96 interpreter should stop. If there is a :meth:`do_\*` method for the command
97 *str*, the return value of that method is returned, otherwise the return value
98 from the :meth:`default` method is returned.
99
100
101.. method:: Cmd.emptyline()
102
103 Method called when an empty line is entered in response to the prompt. If this
104 method is not overridden, it repeats the last nonempty command entered.
105
106
107.. method:: Cmd.default(line)
108
109 Method called on an input line when the command prefix is not recognized. If
110 this method is not overridden, it prints an error message and returns.
111
112
113.. method:: Cmd.completedefault(text, line, begidx, endidx)
114
115 Method called to complete an input line when no command-specific
116 :meth:`complete_\*` method is available. By default, it returns an empty list.
117
118
119.. method:: Cmd.precmd(line)
120
121 Hook method executed just before the command line *line* is interpreted, but
122 after the input prompt is generated and issued. This method is a stub in
123 :class:`Cmd`; it exists to be overridden by subclasses. The return value is
124 used as the command which will be executed by the :meth:`onecmd` method; the
125 :meth:`precmd` implementation may re-write the command or simply return *line*
126 unchanged.
127
128
129.. method:: Cmd.postcmd(stop, line)
130
131 Hook method executed just after a command dispatch is finished. This method is
132 a stub in :class:`Cmd`; it exists to be overridden by subclasses. *line* is the
133 command line which was executed, and *stop* is a flag which indicates whether
134 execution will be terminated after the call to :meth:`postcmd`; this will be the
135 return value of the :meth:`onecmd` method. The return value of this method will
136 be used as the new value for the internal flag which corresponds to *stop*;
137 returning false will cause interpretation to continue.
138
139
140.. method:: Cmd.preloop()
141
142 Hook method executed once when :meth:`cmdloop` is called. This method is a stub
143 in :class:`Cmd`; it exists to be overridden by subclasses.
144
145
146.. method:: Cmd.postloop()
147
148 Hook method executed once when :meth:`cmdloop` is about to return. This method
149 is a stub in :class:`Cmd`; it exists to be overridden by subclasses.
150
151Instances of :class:`Cmd` subclasses have some public instance variables:
152
153
154.. attribute:: Cmd.prompt
155
156 The prompt issued to solicit input.
157
158
159.. attribute:: Cmd.identchars
160
161 The string of characters accepted for the command prefix.
162
163
164.. attribute:: Cmd.lastcmd
165
166 The last nonempty command prefix seen.
167
168
169.. attribute:: Cmd.intro
170
171 A string to issue as an intro or banner. May be overridden by giving the
172 :meth:`cmdloop` method an argument.
173
174
175.. attribute:: Cmd.doc_header
176
177 The header to issue if the help output has a section for documented commands.
178
179
180.. attribute:: Cmd.misc_header
181
182 The header to issue if the help output has a section for miscellaneous help
183 topics (that is, there are :meth:`help_\*` methods without corresponding
184 :meth:`do_\*` methods).
185
186
187.. attribute:: Cmd.undoc_header
188
189 The header to issue if the help output has a section for undocumented commands
190 (that is, there are :meth:`do_\*` methods without corresponding :meth:`help_\*`
191 methods).
192
193
194.. attribute:: Cmd.ruler
195
196 The character used to draw separator lines under the help-message headers. If
197 empty, no ruler line is drawn. It defaults to ``'='``.
198
199
200.. attribute:: Cmd.use_rawinput
201
202 A flag, defaulting to true. If true, :meth:`cmdloop` uses :func:`input` to
203 display a prompt and read the next command; if false, :meth:`sys.stdout.write`
204 and :meth:`sys.stdin.readline` are used. (This means that by importing
205 :mod:`readline`, on systems that support it, the interpreter will automatically
206 support :program:`Emacs`\ -like line editing and command-history keystrokes.)
207
Raymond Hettingerbd889e82010-09-09 01:40:50 +0000208Cmd Example
Alexander Belopolskyf0a0d142010-10-27 03:06:43 +0000209-----------
Raymond Hettingerbd889e82010-09-09 01:40:50 +0000210
211.. sectionauthor:: Raymond Hettinger <python at rcn dot com>
212
213The :mod:`cmd` module is mainly useful for building custom shells that let a
214user work with a program interactively.
215
216This section presents a simple example of how to build a shell around a few of
217the commands in the :mod:`turtle` module.
218
219Basic turtle commands such as :meth:`~turtle.forward` are added to a
220:class:`Cmd` subclass with method named :meth:`do_forward`. The argument is
221converted to a number and dispatched to the turtle module. The docstring is
222used in the help utility provided by the shell.
223
224The example also includes a basic record and playback facility implemented with
225the :meth:`~Cmd.precmd` method which is responsible for converting the input to
226lowercase and writing the commands to a file. The :meth:`do_playback` method
227reads the file and adds the recorded commands to the :attr:`cmdqueue` for
228immediate playback::
229
230 import cmd, sys
231 from turtle import *
232
233 class TurtleShell(cmd.Cmd):
234 intro = 'Welcome to the turtle shell. Type help or ? to list commands.\n'
235 prompt = '(turtle) '
236 file = None
237
238 # ----- basic turtle commands -----
239 def do_forward(self, arg):
240 'Move the turtle forward by the specified distance: FORWARD 10'
241 forward(*parse(arg))
242 def do_right(self, arg):
243 'Turn turtle right by given number of degrees: RIGHT 20'
244 right(*parse(arg))
245 def do_left(self, arg):
246 'Turn turtle left by given number of degrees: LEFT 90'
247 right(*parse(arg))
248 def do_goto(self, arg):
249 'Move turtle to an absolute position with changing orientation. GOTO 100 200'
250 goto(*parse(arg))
251 def do_home(self, arg):
252 'Return turtle to the home postion: HOME'
253 home()
254 def do_circle(self, arg):
255 'Draw circle with given radius an options extent and steps: CIRCLE 50'
256 circle(*parse(arg))
257 def do_position(self, arg):
258 'Print the current turle position: POSITION'
259 print('Current position is %d %d\n' % position())
260 def do_heading(self, arg):
261 'Print the current turle heading in degrees: HEADING'
262 print('Current heading is %d\n' % (heading(),))
263 def do_color(self, arg):
264 'Set the color: COLOR BLUE'
265 color(arg.lower())
266 def do_undo(self, arg):
267 'Undo (repeatedly) the last turtle action(s): UNDO'
268 def do_reset(self, arg):
269 'Clear the screen and return turtle to center: RESET'
270 reset()
271 def do_bye(self, arg):
272 'Stop recording, close the turtle window, and exit: BYE'
273 print('Thank you for using Turtle')
274 self.close()
275 bye()
276 sys.exit(0)
277
278 # ----- record and playback -----
279 def do_record(self, arg):
280 'Save future commands to filename: RECORD rose.cmd'
281 self.file = open(arg, 'w')
282 def do_playback(self, arg):
283 'Playback commands from a file: PLAYBACK rose.cmd'
284 self.close()
Éric Araujoa3dd56b2011-03-11 17:42:48 +0100285 with open(arg) as f:
286 self.cmdqueue.extend(f.read().splitlines())
Raymond Hettingerbd889e82010-09-09 01:40:50 +0000287 def precmd(self, line):
288 line = line.lower()
289 if self.file and 'playback' not in line:
290 print(line, file=self.file)
291 return line
292 def close(self):
293 if self.file:
294 self.file.close()
295 self.file = None
296
297 def parse(arg):
298 'Convert a series of zero or more numbers to an argument tuple'
299 return tuple(map(int, arg.split()))
300
301 if __name__ == '__main__':
302 TurtleShell().cmdloop()
303
304
305Here is a sample session with the turtle shell showing the help functions, using
306blank lines to repeat commands, and the simple record and playback facility::
307
308 Welcome to the turtle shell. Type help or ? to list commands.
309
310 (turtle) ?
311
312 Documented commands (type help <topic>):
313 ========================================
314 bye color goto home playback record right
315 circle forward heading left position reset undo
316
Raymond Hettingerbd889e82010-09-09 01:40:50 +0000317 (turtle) help forward
318 Move the turtle forward by the specified distance: FORWARD 10
319 (turtle) record spiral.cmd
320 (turtle) position
321 Current position is 0 0
322
323 (turtle) heading
324 Current heading is 0
325
326 (turtle) reset
327 (turtle) circle 20
328 (turtle) right 30
329 (turtle) circle 40
330 (turtle) right 30
331 (turtle) circle 60
332 (turtle) right 30
333 (turtle) circle 80
334 (turtle) right 30
335 (turtle) circle 100
336 (turtle) right 30
337 (turtle) circle 120
338 (turtle) right 30
339 (turtle) circle 120
340 (turtle) heading
341 Current heading is 180
342
343 (turtle) forward 100
344 (turtle)
345 (turtle) right 90
346 (turtle) forward 100
347 (turtle)
348 (turtle) right 90
349 (turtle) forward 400
350 (turtle) right 90
351 (turtle) forward 500
352 (turtle) right 90
353 (turtle) forward 400
354 (turtle) right 90
355 (turtle) forward 300
356 (turtle) playback spiral.cmd
357 Current position is 0 0
358
359 Current heading is 0
360
361 Current heading is 180
362
363 (turtle) bye
364 Thank you for using Turtle
365