Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 1 | # A generic class to build line-oriented command interpreters |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 2 | # |
| 3 | # Interpreters constructed with this class obey the following conventions: |
| 4 | # |
| 5 | # 1. End of file on input is processed as the command 'EOF'. |
| 6 | # 2. A command is parsed out of each line by collecting the prefix composed |
| 7 | # of characters in the identchars member. |
| 8 | # 3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method |
| 9 | # is passed a single argument consisting of the remainder of the line. |
| 10 | # 4. Typing an empty line repeats the last command. (Actually, it calls the |
| 11 | # method `emptyline', which may be overridden in a subclass.) |
| 12 | # 5. There is a predefined `help' method. Given an argument `topic', it |
| 13 | # calls the command `help_topic'. With no arguments, it lists all topics |
| 14 | # with defined help_ functions, broken into up to three topics; documented |
| 15 | # commands, miscellaneous help topics, and undocumented commands. |
| 16 | # 6. The command '?' is a synonym for `help'. The command '!' is a synonym |
| 17 | # for `shell', if a do_shell method exists. |
| 18 | # |
| 19 | # The `default' method may be overridden to intercept commands for which there |
| 20 | # is no do_ method. |
| 21 | # |
| 22 | # The data member `self.ruler' sets the character used to draw separator lines |
| 23 | # in the help messages. If empty, no ruler line is drawn. It defaults to "=". |
| 24 | # |
| 25 | # If the value of `self.intro' is nonempty when the cmdloop method is called, |
| 26 | # it is printed out on interpreter startup. This value may be overridden |
| 27 | # via an optional argument to the cmdloop() method. |
| 28 | # |
| 29 | # The data members `self.doc_header', `self.misc_header', and |
| 30 | # `self.undoc_header' set the headers used for the help function's |
| 31 | # listings of documented functions, miscellaneous topics, and undocumented |
| 32 | # functions respectively. |
| 33 | # |
| 34 | # These interpreters use raw_input; thus, if the readline module is loaded, |
| 35 | # they automatically support Emacs-like command history and editing features. |
| 36 | # |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 37 | |
| 38 | import string |
| 39 | import sys |
| 40 | import linecache |
| 41 | |
| 42 | PROMPT = '(Cmd) ' |
| 43 | IDENTCHARS = string.letters + string.digits + '_' |
| 44 | |
| 45 | class Cmd: |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 46 | prompt = PROMPT |
| 47 | identchars = IDENTCHARS |
| 48 | ruler = '=' |
| 49 | lastcmd = '' |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 50 | cmdqueue = [] |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 51 | intro = None |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 52 | doc_leader = "" |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 53 | doc_header = "Documented commands (type help <topic>):" |
| 54 | misc_header = "Miscellaneous help topics:" |
| 55 | undoc_header = "Undocumented commands:" |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 56 | nohelp = "*** No help on %s" |
Guido van Rossum | 9b3bc71 | 1993-06-20 21:02:22 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | 030eb11 | 1998-07-01 22:53:04 +0000 | [diff] [blame] | 58 | def __init__(self): pass |
| 59 | |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 60 | def cmdloop(self, intro=None): |
| 61 | self.preloop() |
| 62 | if intro != None: |
| 63 | self.intro = intro |
| 64 | if self.intro: |
| 65 | print self.intro |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 66 | stop = None |
| 67 | while not stop: |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 68 | if self.cmdqueue: |
| 69 | line = self.cmdqueue[0] |
| 70 | del self.cmdqueue[0] |
| 71 | else: |
| 72 | try: |
| 73 | line = raw_input(self.prompt) |
| 74 | except EOFError: |
| 75 | line = 'EOF' |
| 76 | line = self.precmd(line) |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 77 | stop = self.onecmd(line) |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 78 | stop = self.postcmd(stop, line) |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 79 | self.postloop() |
| 80 | |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 81 | def precmd(self, line): |
| 82 | return line |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 83 | |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 84 | def postcmd(self, stop, line): |
| 85 | return stop |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 86 | |
| 87 | def preloop(self): |
| 88 | pass |
| 89 | |
| 90 | def postloop(self): |
| 91 | pass |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 92 | |
| 93 | def onecmd(self, line): |
| 94 | line = string.strip(line) |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 95 | if line == '?': |
| 96 | line = 'help' |
| 97 | elif line == '!': |
| 98 | if hasattr(self, 'do_shell'): |
| 99 | line = 'shell' |
| 100 | else: |
Guido van Rossum | c612681 | 1998-07-20 21:22:08 +0000 | [diff] [blame] | 101 | return self.default(line) |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 102 | elif not line: |
Guido van Rossum | c612681 | 1998-07-20 21:22:08 +0000 | [diff] [blame] | 103 | return self.emptyline() |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 104 | self.lastcmd = line |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 105 | i, n = 0, len(line) |
| 106 | while i < n and line[i] in self.identchars: i = i+1 |
| 107 | cmd, arg = line[:i], string.strip(line[i:]) |
| 108 | if cmd == '': |
| 109 | return self.default(line) |
| 110 | else: |
| 111 | try: |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 112 | func = getattr(self, 'do_' + cmd) |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 113 | except AttributeError: |
| 114 | return self.default(line) |
| 115 | return func(arg) |
| 116 | |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 117 | def emptyline(self): |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 118 | if self.lastcmd: |
| 119 | return self.onecmd(self.lastcmd) |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 120 | |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 121 | def default(self, line): |
| 122 | print '*** Unknown syntax:', line |
| 123 | |
| 124 | def do_help(self, arg): |
| 125 | if arg: |
| 126 | # XXX check arg syntax |
| 127 | try: |
Guido van Rossum | c629d34 | 1992-11-05 10:43:02 +0000 | [diff] [blame] | 128 | func = getattr(self, 'help_' + arg) |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 129 | except: |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 130 | print self.nohelp % (arg,) |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 131 | return |
| 132 | func() |
| 133 | else: |
Guido van Rossum | 5fca6fd | 1998-09-11 22:33:08 +0000 | [diff] [blame] | 134 | # Inheritance says we have to look in class and |
| 135 | # base classes; order is not important. |
| 136 | names = [] |
| 137 | classes = [self.__class__] |
| 138 | while classes: |
| 139 | aclass = classes[0] |
| 140 | if aclass.__bases__: |
| 141 | classes = classes + list(aclass.__bases__) |
| 142 | names = names + dir(aclass) |
| 143 | del classes[0] |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 144 | cmds_doc = [] |
| 145 | cmds_undoc = [] |
| 146 | help = {} |
| 147 | for name in names: |
| 148 | if name[:5] == 'help_': |
| 149 | help[name[5:]]=1 |
Guido van Rossum | 5fca6fd | 1998-09-11 22:33:08 +0000 | [diff] [blame] | 150 | names.sort() |
| 151 | # There can be duplicates if routines overridden |
| 152 | prevname = '' |
Guido van Rossum | b53e678 | 1992-01-24 01:12:17 +0000 | [diff] [blame] | 153 | for name in names: |
| 154 | if name[:3] == 'do_': |
Guido van Rossum | 5fca6fd | 1998-09-11 22:33:08 +0000 | [diff] [blame] | 155 | if name == prevname: |
| 156 | continue |
| 157 | prevname = name |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 158 | cmd=name[3:] |
| 159 | if help.has_key(cmd): |
| 160 | cmds_doc.append(cmd) |
| 161 | del help[cmd] |
| 162 | else: |
| 163 | cmds_undoc.append(cmd) |
Guido van Rossum | b9f4860 | 1998-08-27 19:02:51 +0000 | [diff] [blame] | 164 | print self.doc_leader |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 165 | self.print_topics(self.doc_header, cmds_doc, 15,80) |
| 166 | self.print_topics(self.misc_header, help.keys(),15,80) |
| 167 | self.print_topics(self.undoc_header, cmds_undoc, 15,80) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 168 | |
| 169 | def print_topics(self, header, cmds, cmdlen, maxcol): |
| 170 | if cmds: |
| 171 | print header; |
Guido van Rossum | 8088407 | 1998-06-29 17:58:55 +0000 | [diff] [blame] | 172 | if self.ruler: |
| 173 | print self.ruler * len(header) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 174 | (cmds_per_line,junk)=divmod(maxcol,cmdlen) |
| 175 | col=cmds_per_line |
| 176 | for cmd in cmds: |
| 177 | if col==0: print |
| 178 | print (("%-"+`cmdlen`+"s") % cmd), |
| 179 | col = (col+1) % cmds_per_line |
| 180 | print "\n" |