Mercurial > python-cmd2
annotate cmd2.py @ 360:4530fc11d743 0.6.0
released 0.6.0
author | catherine@Drou |
---|---|
date | Thu, 18 Feb 2010 01:32:50 -0500 |
parents | d275d3beceff |
children | 0816cdb5a7db |
rev | line source |
---|---|
230 | 1 """Variant on standard library's cmd with extra features. |
2 | |
3 To use, simply import cmd2.Cmd instead of cmd.Cmd; use precisely as though you | |
4 were using the standard library's cmd, while enjoying the extra features. | |
5 | |
6 Searchable command history (commands: "hi", "li", "run") | |
7 Load commands from file, save to file, edit commands in file | |
8 Multi-line commands | |
9 Case-insensitive commands | |
10 Special-character shortcut commands (beyond cmd's "@" and "!") | |
11 Settable environment parameters | |
12 Optional _onchange_{paramname} called when environment parameter changes | |
13 Parsing commands with `optparse` options (flags) | |
14 Redirection to file with >, >>; input from file with < | |
15 Easy transcript-based testing of applications (see example/example.py) | |
310 | 16 Bash-style ``select`` available |
230 | 17 |
18 Note that redirection with > and | will only work if `self.stdout.write()` | |
19 is used in place of `print`. The standard library's `cmd` module is | |
20 written to use `self.stdout.write()`, | |
21 | |
22 - Catherine Devlin, Jan 03 2008 - catherinedevlin.blogspot.com | |
23 | |
24 mercurial repository at http://www.assembla.com/wiki/show/python-cmd2 | |
25 """ | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
26 import cmd |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
27 import re |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
28 import os |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
29 import sys |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
30 import optparse |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
31 import subprocess |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
32 import tempfile |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
33 import doctest |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
34 import unittest |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
35 import datetime |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
36 import urllib |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
37 import glob |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
38 import traceback |
312 | 39 import platform |
323 | 40 import copy |
339 | 41 from code import InteractiveConsole, InteractiveInterpreter |
230 | 42 from optparse import make_option |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
43 |
309 | 44 if sys.version_info[0] > 2: |
45 import pyparsing_py3 as pyparsing | |
343 | 46 raw_input = input |
309 | 47 else: |
48 import pyparsing | |
49 | |
312 | 50 __version__ = '0.6.0' |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
51 |
230 | 52 class OptionParser(optparse.OptionParser): |
53 def exit(self, status=0, msg=None): | |
54 self.values._exit = True | |
55 if msg: | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
56 print (msg) |
230 | 57 |
58 def print_help(self, *args, **kwargs): | |
59 try: | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
60 print (self._func.__doc__) |
230 | 61 except AttributeError: |
62 pass | |
63 optparse.OptionParser.print_help(self, *args, **kwargs) | |
64 | |
65 def error(self, msg): | |
66 """error(msg : string) | |
67 | |
68 Print a usage message incorporating 'msg' to stderr and exit. | |
69 If you override this in a subclass, it should not return -- it | |
70 should either exit or raise an exception. | |
71 """ | |
72 raise | |
73 | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
74 def remaining_args(oldArgs, newArgList): |
230 | 75 ''' |
285 | 76 Preserves the spacing originally in the argument after |
77 the removal of options. | |
78 | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
79 >>> remaining_args('-f bar bar cow', ['bar', 'cow']) |
230 | 80 'bar cow' |
81 ''' | |
82 pattern = '\s+'.join(re.escape(a) for a in newArgList) + '\s*$' | |
83 matchObj = re.search(pattern, oldArgs) | |
84 return oldArgs[matchObj.start():] | |
280 | 85 |
86 def _attr_get_(obj, attr): | |
87 '''Returns an attribute's value, or None (no error) if undefined. | |
286 | 88 Analagous to .get() for dictionaries. Useful when checking for |
89 value of options that may not have been defined on a given | |
90 method.''' | |
280 | 91 try: |
92 return getattr(obj, attr) | |
93 except AttributeError: | |
94 return None | |
283 | 95 |
96 optparse.Values.get = _attr_get_ | |
97 | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
98 options_defined = [] # used to distinguish --options from SQL-style --comments |
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
99 |
230 | 100 def options(option_list): |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
101 '''Used as a decorator and passed a list of optparse-style options, |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
102 alters a cmd2 methodo populate its ``opts`` argument from its |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
103 raw text argument. |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
104 |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
105 Example: transform |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
106 def do_something(self, arg): |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
107 |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
108 into |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
109 @options([make_option('-q', '--quick', action="store_true", |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
110 help="Makes things fast")]) |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
111 def do_something(self, arg, opts): |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
112 if opts.quick: |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
113 self.fast_button = True |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
114 ''' |
296 | 115 if not isinstance(option_list, list): |
298 | 116 option_list = [option_list] |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
117 for opt in option_list: |
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
118 options_defined.append(pyparsing.Literal(opt.get_opt_string())) |
230 | 119 def option_setup(func): |
120 optionParser = OptionParser() | |
121 for opt in option_list: | |
122 optionParser.add_option(opt) | |
356 | 123 optionParser.set_usage("%s [options] arg" % func.__name__[3:]) |
230 | 124 optionParser._func = func |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
125 def new_func(instance, arg): |
230 | 126 try: |
302 | 127 opts, newArgList = optionParser.parse_args(arg.split()) |
285 | 128 # Must find the remaining args in the original argument list, but |
129 # mustn't include the command itself | |
302 | 130 #if hasattr(arg, 'parsed') and newArgList[0] == arg.parsed.command: |
131 # newArgList = newArgList[1:] | |
132 newArgs = remaining_args(arg, newArgList) | |
301 | 133 if isinstance(arg, ParsedString): |
134 arg = arg.with_args_replaced(newArgs) | |
135 else: | |
136 arg = newArgs | |
230 | 137 except (optparse.OptionValueError, optparse.BadOptionError, |
138 optparse.OptionError, optparse.AmbiguousOptionError, | |
139 optparse.OptionConflictError), e: | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
140 print (e) |
230 | 141 optionParser.print_help() |
142 return | |
143 if hasattr(opts, '_exit'): | |
144 return None | |
145 result = func(instance, arg, opts) | |
146 return result | |
289 | 147 new_func.__doc__ = '%s\n%s' % (func.__doc__, optionParser.format_help()) |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
148 return new_func |
230 | 149 return option_setup |
150 | |
151 class PasteBufferError(EnvironmentError): | |
152 if sys.platform[:3] == 'win': | |
153 errmsg = """Redirecting to or from paste buffer requires pywin32 | |
154 to be installed on operating system. | |
155 Download from http://sourceforge.net/projects/pywin32/""" | |
156 else: | |
157 errmsg = """Redirecting to or from paste buffer requires xclip | |
158 to be installed on operating system. | |
159 On Debian/Ubuntu, 'sudo apt-get install xclip' will install it.""" | |
160 def __init__(self): | |
161 Exception.__init__(self, self.errmsg) | |
162 | |
163 pastebufferr = """Redirecting to or from paste buffer requires %s | |
164 to be installed on operating system. | |
165 %s""" | |
286 | 166 |
230 | 167 if subprocess.mswindows: |
168 try: | |
169 import win32clipboard | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
170 def get_paste_buffer(): |
230 | 171 win32clipboard.OpenClipboard(0) |
172 try: | |
173 result = win32clipboard.GetClipboardData() | |
174 except TypeError: | |
175 result = '' #non-text | |
176 win32clipboard.CloseClipboard() | |
177 return result | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
178 def write_to_paste_buffer(txt): |
230 | 179 win32clipboard.OpenClipboard(0) |
180 win32clipboard.EmptyClipboard() | |
181 win32clipboard.SetClipboardText(txt) | |
182 win32clipboard.CloseClipboard() | |
183 except ImportError: | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
184 def get_paste_buffer(*args): |
230 | 185 raise OSError, pastebufferr % ('pywin32', 'Download from http://sourceforge.net/projects/pywin32/') |
354 | 186 write_to_paste_buffer = get_paste_buffer |
230 | 187 else: |
188 can_clip = False | |
189 try: | |
190 subprocess.check_call('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
191 can_clip = True | |
192 except AttributeError: # check_call not defined, Python < 2.5 | |
193 teststring = 'Testing for presence of xclip.' | |
194 xclipproc = subprocess.Popen('xclip -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
195 xclipproc.stdin.write(teststring) | |
196 xclipproc.stdin.close() | |
197 xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
198 if xclipproc.stdout.read() == teststring: | |
199 can_clip = True | |
200 except (subprocess.CalledProcessError, OSError, IOError): | |
201 pass | |
202 if can_clip: | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
203 def get_paste_buffer(): |
230 | 204 xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
205 return xclipproc.stdout.read() | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
206 def write_to_paste_buffer(txt): |
230 | 207 xclipproc = subprocess.Popen('xclip -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
208 xclipproc.stdin.write(txt) | |
209 xclipproc.stdin.close() | |
210 # but we want it in both the "primary" and "mouse" clipboards | |
211 xclipproc = subprocess.Popen('xclip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
212 xclipproc.stdin.write(txt) | |
213 xclipproc.stdin.close() | |
214 else: | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
215 def get_paste_buffer(*args): |
230 | 216 raise OSError, pastebufferr % ('xclip', 'On Debian/Ubuntu, install with "sudo apt-get install xclip"') |
354 | 217 write_to_paste_buffer = get_paste_buffer |
230 | 218 |
219 pyparsing.ParserElement.setDefaultWhitespaceChars(' \t') | |
220 | |
221 class ParsedString(str): | |
300
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
222 def full_parsed_statement(self): |
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
223 new = ParsedString('%s %s' % (self.parsed.command, self.parsed.args)) |
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
224 new.parsed = self.parsed |
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
225 new.parser = self.parser |
301 | 226 return new |
227 def with_args_replaced(self, newargs): | |
228 new = ParsedString(newargs) | |
229 new.parsed = self.parsed | |
230 new.parser = self.parser | |
231 new.parsed['args'] = newargs | |
232 new.parsed.statement['args'] = newargs | |
233 return new | |
230 | 234 |
235 class SkipToLast(pyparsing.SkipTo): | |
236 def parseImpl( self, instring, loc, doActions=True ): | |
237 resultStore = [] | |
238 startLoc = loc | |
239 instrlen = len(instring) | |
240 expr = self.expr | |
241 failParse = False | |
242 while loc <= instrlen: | |
243 try: | |
244 if self.failOn: | |
245 failParse = True | |
246 self.failOn.tryParse(instring, loc) | |
247 failParse = False | |
248 loc = expr._skipIgnorables( instring, loc ) | |
249 expr._parse( instring, loc, doActions=False, callPreParse=False ) | |
250 skipText = instring[startLoc:loc] | |
251 if self.includeMatch: | |
252 loc,mat = expr._parse(instring,loc,doActions,callPreParse=False) | |
253 if mat: | |
254 skipRes = ParseResults( skipText ) | |
255 skipRes += mat | |
256 resultStore.append((loc, [ skipRes ])) | |
257 else: | |
258 resultStore,append((loc, [ skipText ])) | |
259 else: | |
260 resultStore.append((loc, [ skipText ])) | |
261 loc += 1 | |
262 except (pyparsing.ParseException,IndexError): | |
263 if failParse: | |
264 raise | |
265 else: | |
266 loc += 1 | |
267 if resultStore: | |
268 return resultStore[-1] | |
269 else: | |
270 exc = self.myException | |
271 exc.loc = loc | |
272 exc.pstr = instring | |
273 raise exc | |
274 | |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
275 class StubbornDict(dict): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
276 '''Dictionary that tolerates many input formats. |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
277 Create it with stubbornDict(arg) factory function. |
319
c58cd7e48db7
begin to switch settable to TextLineList
catherine@dellzilla
parents:
317
diff
changeset
|
278 |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
279 >>> d = StubbornDict(large='gross', small='klein') |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
280 >>> sorted(d.items()) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
281 [('large', 'gross'), ('small', 'klein')] |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
282 >>> d.append(['plain', ' plaid']) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
283 >>> sorted(d.items()) |
333 | 284 [('large', 'gross'), ('plaid', ''), ('plain', ''), ('small', 'klein')] |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
285 >>> d += ' girl Frauelein, Maedchen\\n\\n shoe schuh' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
286 >>> sorted(d.items()) |
333 | 287 [('girl', 'Frauelein, Maedchen'), ('large', 'gross'), ('plaid', ''), ('plain', ''), ('shoe', 'schuh'), ('small', 'klein')] |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
288 ''' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
289 def update(self, arg): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
290 dict.update(self, StubbornDict.to_dict(arg)) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
291 append = update |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
292 def __iadd__(self, arg): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
293 self.update(arg) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
294 return self |
323 | 295 def __add__(self, arg): |
296 selfcopy = copy.copy(self) | |
297 selfcopy.update(stubbornDict(arg)) | |
298 return selfcopy | |
299 def __radd__(self, arg): | |
300 selfcopy = copy.copy(self) | |
301 selfcopy.update(stubbornDict(arg)) | |
302 return selfcopy | |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
303 |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
304 @classmethod |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
305 def to_dict(cls, arg): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
306 'Generates dictionary from string or list of strings' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
307 if hasattr(arg, 'splitlines'): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
308 arg = arg.splitlines() |
340
43569db3ebdb
detect lists with __reversed__ not __getslice__
catherine@Drou
parents:
339
diff
changeset
|
309 if hasattr(arg, '__reversed__'): |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
310 result = {} |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
311 for a in arg: |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
312 a = a.strip() |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
313 if a: |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
314 key_val = a.split(None, 1) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
315 key = key_val[0] |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
316 if len(key_val) > 1: |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
317 val = key_val[1] |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
318 else: |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
319 val = '' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
320 result[key] = val |
319
c58cd7e48db7
begin to switch settable to TextLineList
catherine@dellzilla
parents:
317
diff
changeset
|
321 else: |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
322 result = arg |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
323 return result |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
324 |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
325 def stubbornDict(*arg, **kwarg): |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
326 ''' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
327 >>> sorted(stubbornDict('cow a bovine\\nhorse an equine').items()) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
328 [('cow', 'a bovine'), ('horse', 'an equine')] |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
329 >>> sorted(stubbornDict(['badger', 'porcupine a poky creature']).items()) |
333 | 330 [('badger', ''), ('porcupine', 'a poky creature')] |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
331 >>> sorted(stubbornDict(turtle='has shell', frog='jumpy').items()) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
332 [('frog', 'jumpy'), ('turtle', 'has shell')] |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
333 ''' |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
334 result = {} |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
335 for a in arg: |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
336 result.update(StubbornDict.to_dict(a)) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
337 result.update(kwarg) |
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
338 return StubbornDict(result) |
319
c58cd7e48db7
begin to switch settable to TextLineList
catherine@dellzilla
parents:
317
diff
changeset
|
339 |
230 | 340 def replace_with_file_contents(fname): |
341 if fname: | |
342 try: | |
343 result = open(os.path.expanduser(fname[0])).read() | |
344 except IOError: | |
345 result = '< %s' % fname[0] # wasn't a file after all | |
346 else: | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
347 result = get_paste_buffer() |
233 | 348 return result |
349 | |
234 | 350 class EmbeddedConsoleExit(Exception): |
351 pass | |
352 | |
348 | 353 class EmptyStatement(Exception): |
354 pass | |
355 | |
290 | 356 def ljust(x, width, fillchar=' '): |
357 'analogous to str.ljust, but works for lists' | |
358 if hasattr(x, 'ljust'): | |
359 return x.ljust(width, fillchar) | |
360 else: | |
361 if len(x) < width: | |
362 x = (x + [fillchar] * width)[:width] | |
363 return x | |
364 | |
230 | 365 class Cmd(cmd.Cmd): |
366 echo = False | |
286 | 367 case_insensitive = True # Commands recognized regardless of case |
230 | 368 continuation_prompt = '> ' |
286 | 369 timing = False # Prints elapsed time for each command |
370 # make sure your terminators are not in legalChars! | |
371 legalChars = '!#$%.:?@_' + pyparsing.alphanums + pyparsing.alphas8bit | |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
372 shortcuts = {'?': 'help', '!': 'shell', '@': 'load', '@@': '_relative_load'} |
230 | 373 excludeFromHistory = '''run r list l history hi ed edit li eof'''.split() |
331 | 374 default_to_shell = False |
230 | 375 noSpecialParse = 'set ed edit exit'.split() |
286 | 376 defaultExtension = 'txt' # For ``save``, ``load``, etc. |
377 default_file_name = 'command.txt' # For ``save``, ``load``, etc. | |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
378 abbrev = True # Abbreviated commands recognized |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
379 current_script_dir = None |
245 | 380 reserved_words = [] |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
381 feedback_to_output = False # Do include nonessentials in >, | output |
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
382 quiet = False # Do not suppress nonessential output |
360 | 383 debug = False |
339 | 384 locals_in_py = True |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
385 kept_state = None |
320
b9f19255d4b7
transcript test stuck in infinite loop?
catherine@dellzilla
parents:
319
diff
changeset
|
386 settable = stubbornDict(''' |
290 | 387 prompt |
312 | 388 colors Colorized output (*nix only) |
331 | 389 continuation_prompt On 2nd+ line of input |
390 debug Show full error stack on error | |
391 default_file_name for ``save``, ``load``, etc. | |
392 editor Program used by ``edit`` | |
290 | 393 case_insensitive upper- and lower-case both OK |
394 feedback_to_output include nonessentials in `|`, `>` results | |
331 | 395 quiet Don't print nonessential feedback |
290 | 396 echo Echo command issued into output |
397 timing Report execution times | |
398 abbrev Accept abbreviated commands | |
319
c58cd7e48db7
begin to switch settable to TextLineList
catherine@dellzilla
parents:
317
diff
changeset
|
399 ''') |
230 | 400 |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
401 def poutput(self, msg): |
284 | 402 if msg: |
403 self.stdout.write(msg) | |
404 if msg[-1] != '\n': | |
405 self.stdout.write('\n') | |
276 | 406 def perror(self, errmsg, statement=None): |
282 | 407 if self.debug: |
408 traceback.print_exc() | |
341 | 409 print (str(errmsg)) |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
410 def pfeedback(self, msg): |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
411 """For printing nonessential feedback. Can be silenced with `quiet`. |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
412 Inclusion in redirected output is controlled by `feedback_to_output`.""" |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
413 if not self.quiet: |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
414 if self.feedback_to_output: |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
415 self.poutput(msg) |
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
416 else: |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
417 print (msg) |
355 | 418 _STOP_AND_EXIT = True # distinguish end of script file from actual exit |
419 _STOP_SCRIPT_NO_EXIT = -999 | |
230 | 420 editor = os.environ.get('EDITOR') |
421 if not editor: | |
422 if sys.platform[:3] == 'win': | |
423 editor = 'notepad' | |
424 else: | |
425 for editor in ['gedit', 'kate', 'vim', 'emacs', 'nano', 'pico']: | |
426 if not os.system('which %s' % (editor)): | |
427 break | |
312 | 428 |
429 colorcodes = {'bold':{True:'\x1b[1m',False:'\x1b[22m'}, | |
430 'cyan':{True:'\x1b[36m',False:'\x1b[39m'}, | |
431 'blue':{True:'\x1b[34m',False:'\x1b[39m'}, | |
432 'red':{True:'\x1b[31m',False:'\x1b[39m'}, | |
433 'magenta':{True:'\x1b[35m',False:'\x1b[39m'}, | |
434 'green':{True:'\x1b[32m',False:'\x1b[39m'}, | |
435 'underline':{True:'\x1b[4m',False:'\x1b[24m'}} | |
436 colors = (platform.system() != 'Windows') | |
437 def colorize(self, val, color): | |
336 | 438 '''Given a string (``val``), returns that string wrapped in UNIX-style |
439 special characters that turn on (and then off) text color and style. | |
440 If the ``colors`` environment paramter is ``False``, or the application | |
441 is running on Windows, will return ``val`` unchanged. | |
442 Available colors/styles: red/blue/green/cyan/magenta, bold, underline''' | |
312 | 443 if self.colors and (self.stdout == self.initial_stdout): |
444 return self.colorcodes[color][True] + val + self.colorcodes[color][False] | |
445 return val | |
446 | |
230 | 447 def do_cmdenvironment(self, args): |
448 '''Summary report of interactive parameters.''' | |
449 self.stdout.write(""" | |
450 Commands are %(casesensitive)scase-sensitive. | |
451 Commands may be terminated with: %(terminators)s | |
237 | 452 Settable parameters: %(settable)s\n""" % \ |
230 | 453 { 'casesensitive': (self.case_insensitive and 'not ') or '', |
454 'terminators': str(self.terminators), | |
455 'settable': ' '.join(self.settable) | |
456 }) | |
457 | |
458 def do_help(self, arg): | |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
459 if arg: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
460 funcname = self.func_named(arg) |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
461 if funcname: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
462 fn = getattr(self, funcname) |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
463 try: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
464 fn.optionParser.print_help(file=self.stdout) |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
465 except AttributeError: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
466 cmd.Cmd.do_help(self, funcname[3:]) |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
467 else: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
468 cmd.Cmd.do_help(self, arg) |
230 | 469 |
470 def __init__(self, *args, **kwargs): | |
471 cmd.Cmd.__init__(self, *args, **kwargs) | |
271 | 472 self.initial_stdout = sys.stdout |
230 | 473 self.history = History() |
474 self._init_parser() | |
475 self.pystate = {} | |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
476 self.shortcuts = sorted(self.shortcuts.items(), reverse=True) |
247
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
477 self.keywords = self.reserved_words + [fname[3:] for fname in dir(self) |
290 | 478 if fname.startswith('do_')] |
317 | 479 def linelist(arg): |
480 result = [] | |
481 | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
482 self.doubleDashComment = pyparsing.NotAny(pyparsing.Or(options_defined)) + pyparsing.Literal('--') + pyparsing.restOfLine |
290 | 483 |
230 | 484 def do_shortcuts(self, args): |
485 """Lists single-key shortcuts available.""" | |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
486 result = "\n".join('%s: %s' % (sc[0], sc[1]) for sc in sorted(self.shortcuts)) |
230 | 487 self.stdout.write("Single-key shortcuts for other commands:\n%s\n" % (result)) |
488 | |
489 prefixParser = pyparsing.Empty() | |
490 commentGrammars = pyparsing.Or([pyparsing.pythonStyleComment, pyparsing.cStyleComment]) | |
491 commentGrammars.addParseAction(lambda x: '') | |
288
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
492 commentInProgress = pyparsing.Literal('/*') + pyparsing.SkipTo( |
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
493 pyparsing.stringEnd ^ '*/') |
230 | 494 terminators = [';'] |
495 blankLinesAllowed = False | |
496 multilineCommands = [] | |
497 | |
498 def _init_parser(self): | |
499 r''' | |
500 >>> c = Cmd() | |
501 >>> c.multilineCommands = ['multiline'] | |
502 >>> c.case_insensitive = True | |
503 >>> c._init_parser() | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
504 >>> print (c.parser.parseString('').dump()) |
313 | 505 [] |
506 >>> print (c.parser.parseString('').dump()) | |
230 | 507 [] |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
508 >>> print (c.parser.parseString('/* empty command */').dump()) |
230 | 509 [] |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
510 >>> print (c.parser.parseString('plainword').dump()) |
230 | 511 ['plainword', ''] |
512 - command: plainword | |
513 - statement: ['plainword', ''] | |
514 - command: plainword | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
515 >>> print (c.parser.parseString('termbare;').dump()) |
230 | 516 ['termbare', '', ';', ''] |
517 - command: termbare | |
518 - statement: ['termbare', '', ';'] | |
519 - command: termbare | |
520 - terminator: ; | |
521 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
522 >>> print (c.parser.parseString('termbare; suffx').dump()) |
230 | 523 ['termbare', '', ';', 'suffx'] |
524 - command: termbare | |
525 - statement: ['termbare', '', ';'] | |
526 - command: termbare | |
527 - terminator: ; | |
528 - suffix: suffx | |
529 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
530 >>> print (c.parser.parseString('barecommand').dump()) |
230 | 531 ['barecommand', ''] |
532 - command: barecommand | |
533 - statement: ['barecommand', ''] | |
534 - command: barecommand | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
535 >>> print (c.parser.parseString('COMmand with args').dump()) |
230 | 536 ['command', 'with args'] |
537 - args: with args | |
538 - command: command | |
539 - statement: ['command', 'with args'] | |
540 - args: with args | |
541 - command: command | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
542 >>> print (c.parser.parseString('command with args and terminator; and suffix').dump()) |
230 | 543 ['command', 'with args and terminator', ';', 'and suffix'] |
544 - args: with args and terminator | |
545 - command: command | |
546 - statement: ['command', 'with args and terminator', ';'] | |
547 - args: with args and terminator | |
548 - command: command | |
549 - terminator: ; | |
550 - suffix: and suffix | |
551 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
552 >>> print (c.parser.parseString('simple | piped').dump()) |
230 | 553 ['simple', '', '|', ' piped'] |
554 - command: simple | |
555 - pipeTo: piped | |
556 - statement: ['simple', ''] | |
557 - command: simple | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
558 >>> print (c.parser.parseString('double-pipe || is not a pipe').dump()) |
230 | 559 ['double', '-pipe || is not a pipe'] |
560 - args: -pipe || is not a pipe | |
561 - command: double | |
562 - statement: ['double', '-pipe || is not a pipe'] | |
563 - args: -pipe || is not a pipe | |
564 - command: double | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
565 >>> print (c.parser.parseString('command with args, terminator;sufx | piped').dump()) |
230 | 566 ['command', 'with args, terminator', ';', 'sufx', '|', ' piped'] |
567 - args: with args, terminator | |
568 - command: command | |
569 - pipeTo: piped | |
570 - statement: ['command', 'with args, terminator', ';'] | |
571 - args: with args, terminator | |
572 - command: command | |
573 - terminator: ; | |
574 - suffix: sufx | |
575 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
576 >>> print (c.parser.parseString('output into > afile.txt').dump()) |
230 | 577 ['output', 'into', '>', 'afile.txt'] |
578 - args: into | |
579 - command: output | |
580 - output: > | |
581 - outputTo: afile.txt | |
582 - statement: ['output', 'into'] | |
583 - args: into | |
584 - command: output | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
585 >>> print (c.parser.parseString('output into;sufx | pipethrume plz > afile.txt').dump()) |
230 | 586 ['output', 'into', ';', 'sufx', '|', ' pipethrume plz', '>', 'afile.txt'] |
587 - args: into | |
588 - command: output | |
589 - output: > | |
590 - outputTo: afile.txt | |
591 - pipeTo: pipethrume plz | |
592 - statement: ['output', 'into', ';'] | |
593 - args: into | |
594 - command: output | |
595 - terminator: ; | |
596 - suffix: sufx | |
597 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
598 >>> print (c.parser.parseString('output to paste buffer >> ').dump()) |
230 | 599 ['output', 'to paste buffer', '>>', ''] |
600 - args: to paste buffer | |
601 - command: output | |
602 - output: >> | |
603 - statement: ['output', 'to paste buffer'] | |
604 - args: to paste buffer | |
605 - command: output | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
606 >>> print (c.parser.parseString('ignore the /* commented | > */ stuff;').dump()) |
230 | 607 ['ignore', 'the /* commented | > */ stuff', ';', ''] |
608 - args: the /* commented | > */ stuff | |
609 - command: ignore | |
610 - statement: ['ignore', 'the /* commented | > */ stuff', ';'] | |
611 - args: the /* commented | > */ stuff | |
612 - command: ignore | |
613 - terminator: ; | |
614 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
615 >>> print (c.parser.parseString('has > inside;').dump()) |
230 | 616 ['has', '> inside', ';', ''] |
617 - args: > inside | |
618 - command: has | |
619 - statement: ['has', '> inside', ';'] | |
620 - args: > inside | |
621 - command: has | |
622 - terminator: ; | |
623 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
624 >>> print (c.parser.parseString('multiline has > inside an unfinished command').dump()) |
230 | 625 ['multiline', ' has > inside an unfinished command'] |
626 - multilineCommand: multiline | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
627 >>> print (c.parser.parseString('multiline has > inside;').dump()) |
230 | 628 ['multiline', 'has > inside', ';', ''] |
629 - args: has > inside | |
630 - multilineCommand: multiline | |
631 - statement: ['multiline', 'has > inside', ';'] | |
632 - args: has > inside | |
633 - multilineCommand: multiline | |
634 - terminator: ; | |
635 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
636 >>> print (c.parser.parseString('multiline command /* with comment in progress;').dump()) |
272 | 637 ['multiline', ' command'] |
638 - multilineCommand: multiline | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
639 >>> print (c.parser.parseString('multiline command /* with comment complete */ is done;').dump()) |
230 | 640 ['multiline', 'command /* with comment complete */ is done', ';', ''] |
641 - args: command /* with comment complete */ is done | |
642 - multilineCommand: multiline | |
643 - statement: ['multiline', 'command /* with comment complete */ is done', ';'] | |
644 - args: command /* with comment complete */ is done | |
645 - multilineCommand: multiline | |
646 - terminator: ; | |
647 - terminator: ; | |
311
54e2dd53ba38
excluded --options from --comments with .NotAny
catherine@bothari
parents:
310
diff
changeset
|
648 >>> print (c.parser.parseString('multiline command ends\n\n').dump()) |
230 | 649 ['multiline', 'command ends', '\n', '\n'] |
650 - args: command ends | |
651 - multilineCommand: multiline | |
652 - statement: ['multiline', 'command ends', '\n', '\n'] | |
653 - args: command ends | |
654 - multilineCommand: multiline | |
655 - terminator: ['\n', '\n'] | |
656 - terminator: ['\n', '\n'] | |
657 ''' | |
288
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
658 tstr = 'multiline command /* with comment complete */ is done;' |
230 | 659 outputParser = (pyparsing.Literal('>>') | (pyparsing.WordStart() + '>') | pyparsing.Regex('[^=]>'))('output') |
660 | |
661 terminatorParser = pyparsing.Or([(hasattr(t, 'parseString') and t) or pyparsing.Literal(t) for t in self.terminators])('terminator') | |
662 stringEnd = pyparsing.stringEnd ^ '\nEOF' | |
663 self.multilineCommand = pyparsing.Or([pyparsing.Keyword(c, caseless=self.case_insensitive) for c in self.multilineCommands])('multilineCommand') | |
664 oneLineCommand = (~self.multilineCommand + pyparsing.Word(self.legalChars))('command') | |
665 pipe = pyparsing.Keyword('|', identChars='|') | |
285 | 666 self.commentGrammars.ignore(pyparsing.quotedString).setParseAction(lambda x: '') |
230 | 667 afterElements = \ |
668 pyparsing.Optional(pipe + pyparsing.SkipTo(outputParser ^ stringEnd)('pipeTo')) + \ | |
669 pyparsing.Optional(outputParser + pyparsing.SkipTo(stringEnd).setParseAction(lambda x: x[0].strip())('outputTo')) | |
670 if self.case_insensitive: | |
671 self.multilineCommand.setParseAction(lambda x: x[0].lower()) | |
672 oneLineCommand.setParseAction(lambda x: x[0].lower()) | |
673 if self.blankLinesAllowed: | |
674 self.blankLineTerminationParser = pyparsing.NoMatch | |
675 else: | |
676 self.blankLineTerminator = (pyparsing.lineEnd + pyparsing.lineEnd)('terminator') | |
677 self.blankLineTerminator.setResultsName('terminator') | |
678 self.blankLineTerminationParser = ((self.multilineCommand ^ oneLineCommand) + pyparsing.SkipTo(self.blankLineTerminator).setParseAction(lambda x: x[0].strip())('args') + self.blankLineTerminator)('statement') | |
679 self.multilineParser = (((self.multilineCommand ^ oneLineCommand) + SkipToLast(terminatorParser).setParseAction(lambda x: x[0].strip())('args') + terminatorParser)('statement') + | |
680 pyparsing.SkipTo(outputParser ^ pipe ^ stringEnd).setParseAction(lambda x: x[0].strip())('suffix') + afterElements) | |
250 | 681 self.multilineParser.ignore(self.commentInProgress) |
230 | 682 self.singleLineParser = ((oneLineCommand + pyparsing.SkipTo(terminatorParser ^ stringEnd ^ pipe ^ outputParser).setParseAction(lambda x:x[0].strip())('args'))('statement') + |
683 pyparsing.Optional(terminatorParser) + afterElements) | |
288
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
684 #self.multilineParser = self.multilineParser.setResultsName('multilineParser') |
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
685 #self.singleLineParser = self.singleLineParser.setResultsName('singleLineParser') |
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
686 self.blankLineTerminationParser = self.blankLineTerminationParser.setResultsName('statement') |
266
584f970ca66a
permit bare prefix
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
687 self.parser = self.prefixParser + ( |
230 | 688 stringEnd | |
266
584f970ca66a
permit bare prefix
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
689 self.multilineParser | |
584f970ca66a
permit bare prefix
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
690 self.singleLineParser | |
584f970ca66a
permit bare prefix
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
691 self.blankLineTerminationParser | |
584f970ca66a
permit bare prefix
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
692 self.multilineCommand + pyparsing.SkipTo(stringEnd) |
230 | 693 ) |
249
55a12d77a4fa
finally, ls working right
catherine@Elli.myhome.westell.com
parents:
248
diff
changeset
|
694 self.parser.ignore(pyparsing.quotedString).ignore(self.commentGrammars) |
230 | 695 |
696 inputMark = pyparsing.Literal('<') | |
697 inputMark.setParseAction(lambda x: '') | |
698 fileName = pyparsing.Word(self.legalChars + '/\\') | |
699 inputFrom = fileName('inputFrom') | |
700 inputFrom.setParseAction(replace_with_file_contents) | |
701 # a not-entirely-satisfactory way of distinguishing < as in "import from" from < | |
702 # as in "lesser than" | |
703 self.inputParser = inputMark + pyparsing.Optional(inputFrom) + pyparsing.Optional('>') + \ | |
704 pyparsing.Optional(fileName) + (pyparsing.stringEnd | '|') | |
705 self.inputParser.ignore(pyparsing.quotedString).ignore(self.commentGrammars).ignore(self.commentInProgress) | |
706 | |
707 def preparse(self, raw, **kwargs): | |
708 return raw | |
709 | |
710 def parsed(self, raw, **kwargs): | |
711 if isinstance(raw, ParsedString): | |
712 p = raw | |
713 else: | |
292 | 714 # preparse is an overridable hook; default makes no changes |
300
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
715 s = self.preparse(raw, **kwargs) |
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
716 s = self.inputParser.transformString(s.lstrip()) |
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
717 s = self.commentGrammars.transformString(s) |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
718 for (shortcut, expansion) in self.shortcuts: |
230 | 719 if s.lower().startswith(shortcut): |
720 s = s.replace(shortcut, expansion + ' ', 1) | |
721 break | |
722 result = self.parser.parseString(s) | |
300
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
723 result['raw'] = raw |
230 | 724 result['command'] = result.multilineCommand or result.command |
300
1e4773b325d1
assume newfunc does not have to accept unparsed arguments
catherine@dellzilla
parents:
299
diff
changeset
|
725 p = ParsedString(result.args) |
230 | 726 p.parsed = result |
295 | 727 p.parser = self.parsed |
230 | 728 for (key, val) in kwargs.items(): |
729 p.parsed[key] = val | |
730 return p | |
731 | |
732 def postparsing_precmd(self, statement): | |
733 stop = 0 | |
734 return stop, statement | |
735 def postparsing_postcmd(self, stop): | |
736 return stop | |
348 | 737 |
247
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
738 def func_named(self, arg): |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
739 result = None |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
740 target = 'do_' + arg |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
741 if target in dir(self): |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
742 result = target |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
743 else: |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
744 if self.abbrev: # accept shortened versions of commands |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
745 funcs = [fname for fname in self.keywords if fname.startswith(arg)] |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
746 if len(funcs) == 1: |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
747 result = 'do_' + funcs[0] |
3db4166a54ce
abbrevs working with help
catherine@Elli.myhome.westell.com
parents:
246
diff
changeset
|
748 return result |
346 | 749 def onecmd_plus_hooks(self, line): |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
750 stop = 0 |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
751 try: |
353 | 752 statement = self.complete_statement(line) |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
753 (stop, statement) = self.postparsing_precmd(statement) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
754 if stop: |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
755 return self.postparsing_postcmd(stop) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
756 if statement.parsed.command not in self.excludeFromHistory: |
353 | 757 self.history.append(statement.parsed.raw) |
758 try: | |
759 self.redirect_output(statement) | |
760 timestart = datetime.datetime.now() | |
761 statement = self.precmd(statement) | |
762 stop = self.onecmd(statement) | |
763 stop = self.postcmd(stop, statement) | |
764 if self.timing: | |
765 self.pfeedback('Elapsed: %s' % str(datetime.datetime.now() - timestart)) | |
766 finally: | |
767 self.restore_output(statement) | |
768 except EmptyStatement: | |
769 return 0 | |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
770 except Exception, e: |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
771 self.perror(str(e), statement) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
772 finally: |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
773 return self.postparsing_postcmd(stop) |
348 | 774 def complete_statement(self, line): |
775 if (not line) or ( | |
776 not pyparsing.Or(self.commentGrammars). | |
777 setParseAction(lambda x: '').transformString(line)): | |
778 raise EmptyStatement | |
779 statement = self.parsed(line) | |
780 while statement.parsed.multilineCommand and (statement.parsed.terminator == ''): | |
781 statement = '%s\n%s' % (statement.parsed.raw, | |
782 self.pseudo_raw_input(self.continuation_prompt)) | |
783 statement = self.parsed(statement) | |
784 if not statement.parsed.command: | |
785 raise EmptyStatement | |
786 return statement | |
787 | |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
788 def redirect_output(self, statement): |
348 | 789 if statement.parsed.pipeTo: |
354 | 790 self.kept_state = Statekeeper(self, ('stdout',)) |
791 self.kept_sys = Statekeeper(sys, ('stdout',)) | |
350 | 792 self.redirect = subprocess.Popen(statement.parsed.pipeTo, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
354 | 793 sys.stdout = self.stdout = self.redirect.stdin |
348 | 794 elif statement.parsed.output: |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
795 self.kept_state = Statekeeper(self, ('stdout',)) |
354 | 796 self.kept_sys = Statekeeper(sys, ('stdout',)) |
348 | 797 if statement.parsed.outputTo: |
798 mode = 'w' | |
799 if statement.parsed.output == '>>': | |
800 mode = 'a' | |
354 | 801 sys.stdout = self.stdout = open(os.path.expanduser(statement.parsed.outputTo), mode) |
348 | 802 else: |
354 | 803 sys.stdout = self.stdout = tempfile.TemporaryFile() |
348 | 804 if statement.parsed.output == '>>': |
805 self.stdout.write(get_paste_buffer()) | |
350 | 806 |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
807 def restore_output(self, statement): |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
808 if self.kept_state: |
350 | 809 if statement.parsed.output: |
810 if not statement.parsed.outputTo: | |
811 self.stdout.seek(0) | |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
812 write_to_paste_buffer(self.stdout.read()) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
813 elif statement.parsed.pipeTo: |
350 | 814 for result in self.redirect.communicate(): |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
815 self.kept_state.stdout.write(result or '') |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
816 self.stdout.close() |
354 | 817 self.kept_state.restore() |
818 self.kept_sys.restore() | |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
819 self.kept_state = None |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
820 |
230 | 821 def onecmd(self, line): |
822 """Interpret the argument as though it had been typed in response | |
823 to the prompt. | |
824 | |
825 This may be overridden, but should not normally need to be; | |
826 see the precmd() and postcmd() methods for useful execution hooks. | |
827 The return value is a flag indicating whether interpretation of | |
828 commands by the interpreter should stop. | |
829 | |
830 This (`cmd2`) version of `onecmd` already override's `cmd`'s `onecmd`. | |
831 | |
832 """ | |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
833 statement = self.parsed(line) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
834 self.lastcmd = statement.parsed.raw |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
835 funcname = self.func_named(statement.parsed.command) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
836 if not funcname: |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
837 return self._default(statement) |
230 | 838 try: |
349
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
839 func = getattr(self, funcname) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
840 except AttributeError: |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
841 return self._default(statement) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
842 stop = func(statement) |
6116360f6e03
output redirection now wraps around precmd, postcmd
catherine@Drou
parents:
348
diff
changeset
|
843 return stop |
230 | 844 |
330 | 845 def _default(self, statement): |
846 arg = statement.full_parsed_statement() | |
847 if self.default_to_shell: | |
848 result = os.system(arg) | |
849 if not result: | |
850 return self.postparsing_postcmd(None) | |
851 return self.postparsing_postcmd(self.default(arg)) | |
852 | |
230 | 853 def pseudo_raw_input(self, prompt): |
854 """copied from cmd's cmdloop; like raw_input, but accounts for changed stdin, stdout""" | |
855 | |
856 if self.use_rawinput: | |
857 try: | |
858 line = raw_input(prompt) | |
859 except EOFError: | |
860 line = 'EOF' | |
861 else: | |
862 self.stdout.write(prompt) | |
863 self.stdout.flush() | |
864 line = self.stdin.readline() | |
865 if not len(line): | |
866 line = 'EOF' | |
867 else: | |
868 if line[-1] == '\n': # this was always true in Cmd | |
869 line = line[:-1] | |
870 return line | |
282 | 871 |
334 | 872 def _cmdloop(self, intro=None): |
230 | 873 """Repeatedly issue a prompt, accept input, parse an initial prefix |
874 off the received input, and dispatch to action methods, passing them | |
875 the remainder of the line as argument. | |
876 """ | |
877 | |
878 # An almost perfect copy from Cmd; however, the pseudo_raw_input portion | |
879 # has been split out so that it can be called separately | |
880 | |
881 self.preloop() | |
882 if self.use_rawinput and self.completekey: | |
883 try: | |
884 import readline | |
885 self.old_completer = readline.get_completer() | |
886 readline.set_completer(self.complete) | |
887 readline.parse_and_bind(self.completekey+": complete") | |
888 except ImportError: | |
889 pass | |
890 try: | |
891 if intro is not None: | |
892 self.intro = intro | |
893 if self.intro: | |
894 self.stdout.write(str(self.intro)+"\n") | |
895 stop = None | |
896 while not stop: | |
897 if self.cmdqueue: | |
898 line = self.cmdqueue.pop(0) | |
899 else: | |
900 line = self.pseudo_raw_input(self.prompt) | |
901 if (self.echo) and (isinstance(self.stdin, file)): | |
902 self.stdout.write(line + '\n') | |
346 | 903 stop = self.onecmd_plus_hooks(line) |
230 | 904 self.postloop() |
905 finally: | |
906 if self.use_rawinput and self.completekey: | |
907 try: | |
908 import readline | |
909 readline.set_completer(self.old_completer) | |
910 except ImportError: | |
911 pass | |
912 return stop | |
913 | |
914 def do_EOF(self, arg): | |
355 | 915 return self._STOP_SCRIPT_NO_EXIT # End of script; should not exit app |
230 | 916 do_eof = do_EOF |
290 | 917 |
230 | 918 def do_quit(self, arg): |
919 return self._STOP_AND_EXIT | |
920 do_exit = do_quit | |
921 do_q = do_quit | |
922 | |
309 | 923 def select(self, options, prompt='Your choice? '): |
924 '''Presents a numbered menu to the user. Modelled after | |
310 | 925 the bash shell's SELECT. Returns the item chosen. |
926 | |
927 Argument ``options`` can be: | |
332 | 928 |
929 | a single string -> will be split into one-word options | |
930 | a list of strings -> will be offered as options | |
931 | a list of tuples -> interpreted as (value, text), so | |
932 that the return value can differ from | |
933 the text advertised to the user ''' | |
309 | 934 if isinstance(options, basestring): |
310 | 935 options = zip(options.split(), options.split()) |
936 fulloptions = [] | |
937 for opt in options: | |
938 if isinstance(opt, basestring): | |
939 fulloptions.append((opt, opt)) | |
940 else: | |
941 try: | |
942 fulloptions.append((opt[0], opt[1])) | |
943 except IndexError: | |
944 fulloptions.append((opt[0], opt[0])) | |
945 for (idx, (value, text)) in enumerate(fulloptions): | |
946 self.poutput(' %2d. %s\n' % (idx+1, text)) | |
309 | 947 while True: |
948 response = raw_input(prompt) | |
949 try: | |
950 response = int(response) | |
310 | 951 result = fulloptions[response - 1][0] |
309 | 952 break |
953 except ValueError: | |
954 pass # loop and ask again | |
955 return result | |
956 | |
290 | 957 @options([make_option('-l', '--long', action="store_true", |
958 help="describe function of parameter")]) | |
959 def do_show(self, arg, opts): | |
230 | 960 '''Shows value of a parameter.''' |
290 | 961 param = arg.strip().lower() |
962 result = {} | |
963 maxlen = 0 | |
964 for p in self.settable: | |
965 if (not param) or p.startswith(param): | |
966 result[p] = '%s: %s' % (p, str(getattr(self, p))) | |
967 maxlen = max(maxlen, len(result[p])) | |
968 if result: | |
969 for p in sorted(result): | |
970 if opts.long: | |
971 self.poutput('%s # %s' % (result[p].ljust(maxlen), self.settable[p])) | |
972 else: | |
973 self.poutput(result[p]) | |
230 | 974 else: |
290 | 975 self.perror("Parameter '%s' not supported (type 'show' for list of parameters)." % param) |
230 | 976 |
977 def do_set(self, arg): | |
290 | 978 ''' |
979 Sets a cmd2 parameter. Accepts abbreviated parameter names so long | |
980 as there is no ambiguity. Call without arguments for a list of | |
981 settable parameters with their values.''' | |
230 | 982 try: |
291 | 983 statement, paramName, val = arg.parsed.raw.split(None, 2) |
230 | 984 paramName = paramName.strip().lower() |
290 | 985 if paramName not in self.settable: |
291 | 986 hits = [p for p in self.settable if p.startswith(paramName)] |
290 | 987 if len(hits) == 1: |
988 paramName = hits[0] | |
989 else: | |
990 return self.do_show(paramName) | |
991 currentVal = getattr(self, paramName) | |
992 if (val[0] == val[-1]) and val[0] in ("'", '"'): | |
993 val = val[1:-1] | |
994 else: | |
995 val = cast(currentVal, val) | |
996 setattr(self, paramName, val) | |
997 self.stdout.write('%s - was: %s\nnow: %s\n' % (paramName, currentVal, val)) | |
998 if currentVal != val: | |
999 try: | |
1000 onchange_hook = getattr(self, '_onchange_%s' % paramName) | |
1001 onchange_hook(old=currentVal, new=val) | |
1002 except AttributeError: | |
1003 pass | |
230 | 1004 except (ValueError, AttributeError, NotSettableError), e: |
1005 self.do_show(arg) | |
1006 | |
1007 def do_pause(self, arg): | |
1008 'Displays the specified text then waits for the user to press RETURN.' | |
1009 raw_input(arg + '\n') | |
1010 | |
1011 def do_shell(self, arg): | |
1012 'execute a command as if at the OS prompt.' | |
1013 os.system(arg) | |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1014 |
233 | 1015 def do_py(self, arg): |
230 | 1016 ''' |
1017 py <command>: Executes a Python command. | |
242 | 1018 py: Enters interactive Python mode. |
1019 End with `Ctrl-D` (Unix) / `Ctrl-Z` (Windows), `quit()`, 'exit()`. | |
241 | 1020 Non-python commands can be issued with `cmd("your command")`. |
230 | 1021 ''' |
280 | 1022 self.pystate['self'] = self |
274 | 1023 arg = arg.parsed.raw[2:].strip() |
230 | 1024 if arg.strip(): |
235
78ad20c2eed0
py working better now; still needs a iscomplete=True on onecmd
catherine@dellzilla
parents:
234
diff
changeset
|
1025 interp = InteractiveInterpreter(locals=self.pystate) |
233 | 1026 interp.runcode(arg) |
230 | 1027 else: |
328 | 1028 localvars = (self.locals_in_py and self.pystate) or {} |
339 | 1029 interp = InteractiveConsole(locals=localvars) |
233 | 1030 def quit(): |
234 | 1031 raise EmbeddedConsoleExit |
346 | 1032 def onecmd_plus_hooks(arg): |
1033 return self.onecmd_plus_hooks(arg + '\n') | |
233 | 1034 self.pystate['quit'] = quit |
1035 self.pystate['exit'] = quit | |
346 | 1036 self.pystate['cmd'] = onecmd_plus_hooks |
234 | 1037 try: |
240 | 1038 cprt = 'Type "help", "copyright", "credits" or "license" for more information.' |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1039 keepstate = Statekeeper(sys, ('stdin','stdout')) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1040 sys.stdout = self.stdout |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1041 sys.stdin = self.stdin |
240 | 1042 interp.interact(banner= "Python %s on %s\n%s\n(%s)\n%s" % |
1043 (sys.version, sys.platform, cprt, self.__class__.__name__, self.do_py.__doc__)) | |
235
78ad20c2eed0
py working better now; still needs a iscomplete=True on onecmd
catherine@dellzilla
parents:
234
diff
changeset
|
1044 except EmbeddedConsoleExit: |
245 | 1045 pass |
1046 keepstate.restore() | |
233 | 1047 |
230 | 1048 def do_history(self, arg): |
1049 """history [arg]: lists past commands issued | |
1050 | |
314 | 1051 | no arg: list all |
1052 | arg is integer: list one history item, by index | |
1053 | arg is string: string search | |
1054 | arg is /enclosed in forward-slashes/: regular expression search | |
230 | 1055 """ |
1056 if arg: | |
1057 history = self.history.get(arg) | |
1058 else: | |
1059 history = self.history | |
1060 for hi in history: | |
1061 self.stdout.write(hi.pr()) | |
1062 def last_matching(self, arg): | |
1063 try: | |
1064 if arg: | |
1065 return self.history.get(arg)[-1] | |
1066 else: | |
1067 return self.history[-1] | |
1068 except IndexError: | |
1069 return None | |
1070 def do_list(self, arg): | |
1071 """list [arg]: lists last command issued | |
1072 | |
307 | 1073 no arg -> list most recent command |
230 | 1074 arg is integer -> list one history item, by index |
307 | 1075 a..b, a:b, a:, ..b -> list spans from a (or start) to b (or end) |
308 | 1076 arg is string -> list all commands matching string search |
230 | 1077 arg is /enclosed in forward-slashes/ -> regular expression search |
1078 """ | |
1079 try: | |
308 | 1080 history = self.history.span(arg or '-1') |
1081 except IndexError: | |
1082 history = self.history.search(arg) | |
1083 for hi in history: | |
1084 self.poutput(hi.pr()) | |
1085 | |
230 | 1086 do_hi = do_history |
1087 do_l = do_list | |
1088 do_li = do_list | |
1089 | |
1090 def do_ed(self, arg): | |
1091 """ed: edit most recent command in text editor | |
1092 ed [N]: edit numbered command from history | |
1093 ed [filename]: edit specified file name | |
1094 | |
1095 commands are run after editor is closed. | |
1096 "set edit (program-name)" or set EDITOR environment variable | |
1097 to control which editing program is used.""" | |
1098 if not self.editor: | |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1099 self.perror("Please use 'set editor' to specify your text editing program of choice.") |
230 | 1100 return |
1101 filename = self.default_file_name | |
1102 if arg: | |
1103 try: | |
1104 buffer = self.last_matching(int(arg)) | |
1105 except ValueError: | |
1106 filename = arg | |
1107 buffer = '' | |
1108 else: | |
1109 buffer = self.history[-1] | |
1110 | |
1111 if buffer: | |
1112 f = open(os.path.expanduser(filename), 'w') | |
1113 f.write(buffer or '') | |
1114 f.close() | |
1115 | |
1116 os.system('%s %s' % (self.editor, filename)) | |
1117 self.do__load(filename) | |
1118 do_edit = do_ed | |
1119 | |
1120 saveparser = (pyparsing.Optional(pyparsing.Word(pyparsing.nums)^'*')("idx") + | |
1121 pyparsing.Optional(pyparsing.Word(legalChars + '/\\'))("fname") + | |
1122 pyparsing.stringEnd) | |
1123 def do_save(self, arg): | |
1124 """`save [N] [filename.ext]` | |
329 | 1125 |
230 | 1126 Saves command from history to file. |
329 | 1127 |
1128 | N => Number of command (from history), or `*`; | |
1129 | most recent command if omitted""" | |
230 | 1130 |
1131 try: | |
1132 args = self.saveparser.parseString(arg) | |
1133 except pyparsing.ParseException: | |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1134 self.perror(self.do_save.__doc__) |
230 | 1135 return |
1136 fname = args.fname or self.default_file_name | |
1137 if args.idx == '*': | |
1138 saveme = '\n\n'.join(self.history[:]) | |
1139 elif args.idx: | |
1140 saveme = self.history[int(args.idx)-1] | |
1141 else: | |
1142 saveme = self.history[-1] | |
1143 try: | |
1144 f = open(os.path.expanduser(fname), 'w') | |
1145 f.write(saveme) | |
1146 f.close() | |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1147 self.pfeedback('Saved to %s' % (fname)) |
230 | 1148 except Exception, e: |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1149 self.perror('Error saving %s: %s' % (fname, str(e))) |
230 | 1150 |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1151 def read_file_or_url(self, fname): |
288
e743cf74c518
hooray, fixed bad comment parser - all unit tests pass
catherine@bothari
parents:
287
diff
changeset
|
1152 # TODO: not working on localhost |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1153 if isinstance(fname, file): |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
1154 result = open(fname, 'r') |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1155 else: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1156 match = self.urlre.match(fname) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1157 if match: |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
1158 result = urllib.urlopen(match.group(1)) |
230 | 1159 else: |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1160 fname = os.path.expanduser(fname) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1161 try: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1162 result = open(os.path.expanduser(fname), 'r') |
287
1cd23003e8d5
refactoring, but something went wrong with comments
catherine@bothari
parents:
286
diff
changeset
|
1163 except IOError: |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1164 result = open('%s.%s' % (os.path.expanduser(fname), |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1165 self.defaultExtension), 'r') |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1166 return result |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1167 |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1168 def do__relative_load(self, arg=None): |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1169 ''' |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1170 Runs commands in script at file or URL; if this is called from within an |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1171 already-running script, the filename will be interpreted relative to the |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1172 already-running script's directory.''' |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1173 if arg: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1174 arg = arg.split(None, 1) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1175 targetname, args = arg[0], (arg[1:] or [''])[0] |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1176 targetname = os.path.join(self.current_script_dir or '', targetname) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1177 self.do__load('%s %s' % (targetname, args)) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1178 |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1179 urlre = re.compile('(https?://[-\\w\\./]+)') |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1180 def do_load(self, arg=None): |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1181 """Runs script of command(s) from a file or URL.""" |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1182 if arg is None: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1183 targetname = self.default_file_name |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1184 else: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1185 arg = arg.split(None, 1) |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1186 targetname, args = arg[0], (arg[1:] or [''])[0].strip() |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1187 try: |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1188 target = self.read_file_or_url(targetname) |
230 | 1189 except IOError, e: |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1190 self.perror('Problem accessing script from %s: \n%s' % (targetname, e)) |
230 | 1191 return |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1192 keepstate = Statekeeper(self, ('stdin','use_rawinput','prompt', |
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1193 'continuation_prompt','current_script_dir')) |
230 | 1194 self.stdin = target |
1195 self.use_rawinput = False | |
1196 self.prompt = self.continuation_prompt = '' | |
244
e0c60ea7ad5d
midway through py script change
catherine@Elli.myhome.westell.com
parents:
243
diff
changeset
|
1197 self.current_script_dir = os.path.split(targetname)[0] |
334 | 1198 stop = self._cmdloop() |
230 | 1199 self.stdin.close() |
1200 keepstate.restore() | |
1201 self.lastcmd = '' | |
355 | 1202 return stop and (stop != self._STOP_SCRIPT_NO_EXIT) |
230 | 1203 do__load = do_load # avoid an unfortunate legacy use of do_load from sqlpython |
1204 | |
1205 def do_run(self, arg): | |
1206 """run [arg]: re-runs an earlier command | |
1207 | |
1208 no arg -> run most recent command | |
1209 arg is integer -> run one history item, by index | |
1210 arg is string -> run most recent command by string search | |
1211 arg is /enclosed in forward-slashes/ -> run most recent by regex | |
1212 """ | |
1213 'run [N]: runs the SQL that was run N commands ago' | |
1214 runme = self.last_matching(arg) | |
267
3333e61e7103
poutput, perror, pfeedback
Catherine Devlin <catherine.devlin@gmail.com>
parents:
265
diff
changeset
|
1215 self.pfeedback(runme) |
230 | 1216 if runme: |
346 | 1217 stop = self.onecmd_plus_hooks(runme) |
230 | 1218 do_r = do_run |
1219 | |
1220 def fileimport(self, statement, source): | |
1221 try: | |
1222 f = open(os.path.expanduser(source)) | |
1223 except IOError: | |
1224 self.stdout.write("Couldn't read from file %s\n" % source) | |
1225 return '' | |
1226 data = f.read() | |
1227 f.close() | |
1228 return data | |
334 | 1229 |
1230 def runTranscriptTests(self, callargs): | |
1231 class TestMyAppCase(Cmd2TestCase): | |
1232 CmdApp = self.__class__ | |
1233 self.__class__.testfiles = callargs | |
1234 sys.argv = [sys.argv[0]] # the --test argument upsets unittest.main() | |
1235 testcase = TestMyAppCase() | |
1236 runner = unittest.TextTestRunner() | |
1237 result = runner.run(testcase) | |
1238 result.printErrors() | |
1239 | |
335 | 1240 def run_commands_at_invocation(self, callargs): |
1241 for initial_command in callargs: | |
346 | 1242 if self.onecmd_plus_hooks(initial_command + '\n'): |
1243 return self._STOP_AND_EXIT | |
335 | 1244 |
334 | 1245 def cmdloop(self): |
1246 parser = optparse.OptionParser() | |
1247 parser.add_option('-t', '--test', dest='test', | |
1248 action="store_true", | |
1249 help='Test against transcript(s) in FILE (wildcards OK)') | |
1250 (callopts, callargs) = parser.parse_args() | |
1251 if callopts.test: | |
1252 self.runTranscriptTests(callargs) | |
1253 else: | |
346 | 1254 if not self.run_commands_at_invocation(callargs): |
1255 self._cmdloop() | |
230 | 1256 |
1257 class HistoryItem(str): | |
305 | 1258 listformat = '-------------------------[%d]\n%s\n' |
230 | 1259 def __init__(self, instr): |
1260 str.__init__(self) | |
1261 self.lowercase = self.lower() | |
1262 self.idx = None | |
1263 def pr(self): | |
307 | 1264 return self.listformat % (self.idx, str(self)) |
230 | 1265 |
1266 class History(list): | |
305 | 1267 '''A list of HistoryItems that knows how to respond to user requests. |
1268 >>> h = History([HistoryItem('first'), HistoryItem('second'), HistoryItem('third'), HistoryItem('fourth')]) | |
1269 >>> h.span('-2..') | |
1270 ['third', 'fourth'] | |
1271 >>> h.span('2..3') | |
1272 ['second', 'third'] | |
1273 >>> h.span('3') | |
1274 ['third'] | |
1275 >>> h.span(':') | |
1276 ['first', 'second', 'third', 'fourth'] | |
1277 >>> h.span('2..') | |
1278 ['second', 'third', 'fourth'] | |
1279 >>> h.span('-1') | |
1280 ['fourth'] | |
1281 >>> h.span('-2..-3') | |
306 | 1282 ['third', 'second'] |
308 | 1283 >>> h.search('o') |
1284 ['second', 'fourth'] | |
1285 >>> h.search('/IR/') | |
1286 ['first', 'third'] | |
305 | 1287 ''' |
1288 def zero_based_index(self, onebased): | |
1289 result = onebased | |
1290 if result > 0: | |
1291 result -= 1 | |
1292 return result | |
1293 def to_index(self, raw): | |
1294 if raw: | |
1295 result = self.zero_based_index(int(raw)) | |
1296 else: | |
1297 result = None | |
1298 return result | |
308 | 1299 def search(self, target): |
1300 target = target.strip() | |
1301 if target[0] == target[-1] == '/' and len(target) > 1: | |
1302 target = target[1:-1] | |
1303 else: | |
1304 target = re.escape(target) | |
1305 pattern = re.compile(target, re.IGNORECASE) | |
1306 return [s for s in self if pattern.search(s)] | |
305 | 1307 spanpattern = re.compile(r'^\s*(?P<start>\-?\d+)?\s*(?P<separator>:|(\.{2,}))?\s*(?P<end>\-?\d+)?\s*$') |
1308 def span(self, raw): | |
308 | 1309 if raw.lower() in ('*', '-', 'all'): |
1310 raw = ':' | |
305 | 1311 results = self.spanpattern.search(raw) |
307 | 1312 if not results: |
1313 raise IndexError | |
305 | 1314 if not results.group('separator'): |
1315 return [self[self.to_index(results.group('start'))]] | |
1316 start = self.to_index(results.group('start')) | |
1317 end = self.to_index(results.group('end')) | |
1318 reverse = False | |
1319 if end is not None: | |
1320 if end < start: | |
1321 (start, end) = (end, start) | |
1322 reverse = True | |
1323 end += 1 | |
1324 result = self[start:end] | |
1325 if reverse: | |
1326 result.reverse() | |
1327 return result | |
1328 | |
1329 rangePattern = re.compile(r'^\s*(?P<start>[\d]+)?\s*\-\s*(?P<end>[\d]+)?\s*$') | |
230 | 1330 def append(self, new): |
1331 new = HistoryItem(new) | |
1332 list.append(self, new) | |
1333 new.idx = len(self) | |
1334 def extend(self, new): | |
1335 for n in new: | |
1336 self.append(n) | |
305 | 1337 |
1338 def get(self, getme=None, fromEnd=False): | |
1339 if not getme: | |
1340 return self | |
230 | 1341 try: |
1342 getme = int(getme) | |
1343 if getme < 0: | |
1344 return self[:(-1 * getme)] | |
1345 else: | |
1346 return [self[getme-1]] | |
1347 except IndexError: | |
1348 return [] | |
305 | 1349 except ValueError: |
1350 rangeResult = self.rangePattern.search(getme) | |
1351 if rangeResult: | |
1352 start = rangeResult.group('start') or None | |
1353 end = rangeResult.group('start') or None | |
1354 if start: | |
1355 start = int(start) - 1 | |
1356 if end: | |
1357 end = int(end) | |
1358 return self[start:end] | |
1359 | |
230 | 1360 getme = getme.strip() |
305 | 1361 |
230 | 1362 if getme.startswith(r'/') and getme.endswith(r'/'): |
1363 finder = re.compile(getme[1:-1], re.DOTALL | re.MULTILINE | re.IGNORECASE) | |
1364 def isin(hi): | |
1365 return finder.search(hi) | |
1366 else: | |
1367 def isin(hi): | |
1368 return (getme.lower() in hi.lowercase) | |
1369 return [itm for itm in self if isin(itm)] | |
1370 | |
1371 class NotSettableError(Exception): | |
1372 pass | |
1373 | |
1374 def cast(current, new): | |
1375 """Tries to force a new value into the same type as the current.""" | |
1376 typ = type(current) | |
1377 if typ == bool: | |
1378 try: | |
1379 return bool(int(new)) | |
1380 except ValueError, TypeError: | |
1381 pass | |
1382 try: | |
1383 new = new.lower() | |
1384 except: | |
1385 pass | |
1386 if (new=='on') or (new[0] in ('y','t')): | |
1387 return True | |
1388 if (new=='off') or (new[0] in ('n','f')): | |
1389 return False | |
1390 else: | |
1391 try: | |
1392 return typ(new) | |
1393 except: | |
1394 pass | |
341 | 1395 print ("Problem setting parameter (now %s) to %s; incorrect type?" % (current, new)) |
230 | 1396 return current |
1397 | |
1398 class Statekeeper(object): | |
1399 def __init__(self, obj, attribs): | |
1400 self.obj = obj | |
1401 self.attribs = attribs | |
282 | 1402 if self.obj: |
1403 self.save() | |
230 | 1404 def save(self): |
1405 for attrib in self.attribs: | |
1406 setattr(self, attrib, getattr(self.obj, attrib)) | |
1407 def restore(self): | |
282 | 1408 if self.obj: |
1409 for attrib in self.attribs: | |
1410 setattr(self.obj, attrib, getattr(self, attrib)) | |
230 | 1411 |
1412 class Borg(object): | |
1413 '''All instances of any Borg subclass will share state. | |
1414 from Python Cookbook, 2nd Ed., recipe 6.16''' | |
1415 _shared_state = {} | |
1416 def __new__(cls, *a, **k): | |
1417 obj = object.__new__(cls, *a, **k) | |
1418 obj.__dict__ = cls._shared_state | |
1419 return obj | |
1420 | |
1421 class OutputTrap(Borg): | |
1422 '''Instantiate an OutputTrap to divert/capture ALL stdout output. For use in unit testing. | |
1423 Call `tearDown()` to return to normal output.''' | |
1424 def __init__(self): | |
1425 self.old_stdout = sys.stdout | |
1426 self.trap = tempfile.TemporaryFile() | |
1427 sys.stdout = self.trap | |
1428 def read(self): | |
1429 self.trap.seek(0) | |
1430 result = self.trap.read() | |
1431 self.trap.truncate(0) | |
1432 return result.strip('\x00') | |
1433 def tearDown(self): | |
1434 sys.stdout = self.old_stdout | |
1435 | |
261
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1436 |
230 | 1437 class Cmd2TestCase(unittest.TestCase): |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1438 '''Subclass this, setting CmdApp, to make a unittest.TestCase class |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1439 that will execute the commands in a transcript file and expect the results shown. |
230 | 1440 See example.py''' |
1441 CmdApp = None | |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1442 def fetchTranscripts(self): |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1443 self.transcripts = {} |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1444 for fileset in self.CmdApp.testfiles: |
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1445 for fname in glob.glob(fileset): |
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1446 tfile = open(fname) |
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1447 self.transcripts[fname] = iter(tfile.readlines()) |
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1448 tfile.close() |
260
2b69c4d72cd8
unfinished experiments with testing for regular expressions
Catherine Devlin <catherine.devlin@gmail.com>
parents:
259
diff
changeset
|
1449 if not len(self.transcripts): |
2b69c4d72cd8
unfinished experiments with testing for regular expressions
Catherine Devlin <catherine.devlin@gmail.com>
parents:
259
diff
changeset
|
1450 raise StandardError, "No test files found - nothing to test." |
230 | 1451 def setUp(self): |
1452 if self.CmdApp: | |
1453 self.outputTrap = OutputTrap() | |
1454 self.cmdapp = self.CmdApp() | |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1455 self.fetchTranscripts() |
326 | 1456 def runTest(self): # was testall |
230 | 1457 if self.CmdApp: |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1458 its = sorted(self.transcripts.items()) |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1459 for (fname, transcript) in its: |
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1460 self._test_transcript(fname, transcript) |
261
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1461 regexPattern = pyparsing.QuotedString(quoteChar=r'/', escChar='\\', multiline=True, unquoteResults=True) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1462 regexPattern.ignore(pyparsing.cStyleComment) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1463 notRegexPattern = pyparsing.Word(pyparsing.printables) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1464 notRegexPattern.setParseAction(lambda t: re.escape(t[0])) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1465 expectationParser = regexPattern | notRegexPattern |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1466 endStrippingRegex = re.compile(r'[ \t]*\n') |
257
d62bb3dd58a0
multiple test files still not quite working, yet works when run through debugger, aaargh
Catherine Devlin <catherine.devlin@gmail.com>
parents:
255
diff
changeset
|
1467 def _test_transcript(self, fname, transcript): |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1468 lineNum = 0 |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1469 try: |
304
8c96f829ba1b
tweaking transcript test newlines (complete)
catherine@dellzilla
parents:
303
diff
changeset
|
1470 line = transcript.next() |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1471 while True: |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1472 while not line.startswith(self.cmdapp.prompt): |
304
8c96f829ba1b
tweaking transcript test newlines (complete)
catherine@dellzilla
parents:
303
diff
changeset
|
1473 line = transcript.next() |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1474 command = [line[len(self.cmdapp.prompt):]] |
304
8c96f829ba1b
tweaking transcript test newlines (complete)
catherine@dellzilla
parents:
303
diff
changeset
|
1475 line = transcript.next() |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1476 while line.startswith(self.cmdapp.continuation_prompt): |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1477 command.append(line[len(self.cmdapp.continuation_prompt):]) |
304
8c96f829ba1b
tweaking transcript test newlines (complete)
catherine@dellzilla
parents:
303
diff
changeset
|
1478 line = transcript.next() |
345
6fe1e75e3a67
transcript test wasn't running pre and post cmd hooks
catherine@Drou
parents:
343
diff
changeset
|
1479 command = ''.join(command) |
346 | 1480 stop = self.cmdapp.onecmd_plus_hooks(command) |
345
6fe1e75e3a67
transcript test wasn't running pre and post cmd hooks
catherine@Drou
parents:
343
diff
changeset
|
1481 #TODO: should act on ``stop`` |
322 | 1482 result = self.outputTrap.read() |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1483 if line.startswith(self.cmdapp.prompt): |
262
e81378f82c7c
transcript tests with regex now work smoothly
Catherine Devlin <catherine.devlin@gmail.com>
parents:
261
diff
changeset
|
1484 message = '\nFile %s, line %d\nCommand was:\n%s\nExpected: (nothing)\nGot:\n%s\n'%\ |
e81378f82c7c
transcript tests with regex now work smoothly
Catherine Devlin <catherine.devlin@gmail.com>
parents:
261
diff
changeset
|
1485 (fname, lineNum, command, result) |
e81378f82c7c
transcript tests with regex now work smoothly
Catherine Devlin <catherine.devlin@gmail.com>
parents:
261
diff
changeset
|
1486 self.assert_(not(result.strip()), message) |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1487 continue |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1488 expected = [] |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1489 while not line.startswith(self.cmdapp.prompt): |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1490 expected.append(line) |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1491 line = transcript.next() |
322 | 1492 expected = ''.join(expected) |
260
2b69c4d72cd8
unfinished experiments with testing for regular expressions
Catherine Devlin <catherine.devlin@gmail.com>
parents:
259
diff
changeset
|
1493 message = '\nFile %s, line %d\nCommand was:\n%s\nExpected:\n%s\nGot:\n%s\n'%\ |
261
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1494 (fname, lineNum, command, expected, result) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1495 expected = self.expectationParser.transformString(expected) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1496 expected = self.endStrippingRegex.sub('\s*\n', expected) |
57070e181cf7
line end-stripping working in transcript testing
Catherine Devlin <catherine.devlin@gmail.com>
parents:
260
diff
changeset
|
1497 self.assert_(re.match(expected, result, re.MULTILINE | re.DOTALL), message) |
253
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1498 except StopIteration: |
24289178b367
midway through allowing multiple testing files
Catherine Devlin <catherine.devlin@gmail.com>
parents:
251
diff
changeset
|
1499 pass |
230 | 1500 def tearDown(self): |
1501 if self.CmdApp: | |
1502 self.outputTrap.tearDown() | |
325
4172feeddf76
want to incorporate run() for tests - not yet working
catherine@dellzilla
parents:
324
diff
changeset
|
1503 |
230 | 1504 if __name__ == '__main__': |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1505 doctest.testmod(optionflags = doctest.NORMALIZE_WHITESPACE) |
325
4172feeddf76
want to incorporate run() for tests - not yet working
catherine@dellzilla
parents:
324
diff
changeset
|
1506 |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1507 ''' |
327 | 1508 To make your application transcript-testable, replace |
1509 | |
1510 :: | |
1511 | |
1512 app = MyApp() | |
1513 app.cmdloop() | |
1514 | |
1515 with | |
1516 | |
1517 :: | |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1518 |
327 | 1519 app = MyApp() |
1520 cmd2.run(app) | |
1521 | |
1522 Then run a session of your application and paste the entire screen contents | |
1523 into a file, ``transcript.test``, and invoke the test like:: | |
1524 | |
1525 python myapp.py --test transcript.test | |
1526 | |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1527 Wildcards can be used to test against multiple transcript files. |
327 | 1528 ''' |
259
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1529 |
5147fa4166b0
multiple transcript tests working - sinister BASH trick defeated
Catherine Devlin <catherine.devlin@gmail.com>
parents:
258
diff
changeset
|
1530 |