Mercurial > python-cmd2
annotate cmd2.py @ 209:6dc79bf15fc6
trying move of shortcut expansion
author | catherine@dellzilla |
---|---|
date | Tue, 10 Mar 2009 09:48:04 -0400 |
parents | f10bd1f0c7e3 |
children | 3f8fac776845 |
rev | line source |
---|---|
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
1 """Variant on standard library's cmd with extra features. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
2 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
3 To use, simply import cmd2.Cmd instead of cmd.Cmd; use precisely as though you |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
4 were using the standard library's cmd, while enjoying the extra features. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
5 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
6 Searchable command history (commands: "hi", "li", "run") |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
7 Load commands from file, save to file, edit commands in file |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
8 Multi-line commands |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
9 Case-insensitive commands |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
10 Special-character shortcut commands (beyond cmd's "@" and "!") |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
11 Settable environment parameters |
13 | 12 Parsing commands with `optparse` options (flags) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
13 Redirection to file with >, >>; input from file with < |
112
e3b8eaadea56
going to collapse down out of overdone package structure
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
14 Easy transcript-based testing of applications (see example/example.py) |
13 | 15 |
84
416ea36af789
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
83
diff
changeset
|
16 Note that redirection with > and | will only work if `self.stdout.write()` |
416ea36af789
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
83
diff
changeset
|
17 is used in place of `print`. The standard library's `cmd` module is |
416ea36af789
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
83
diff
changeset
|
18 written to use `self.stdout.write()`, |
416ea36af789
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
83
diff
changeset
|
19 |
14 | 20 - Catherine Devlin, Jan 03 2008 - catherinedevlin.blogspot.com |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
21 |
126 | 22 mercurial repository at http://www.assembla.com/wiki/show/python-cmd2 |
14 | 23 CHANGES: |
24 As of 0.3.0, options should be specified as `optparse` options. See README.txt. | |
25 flagReader.py options are still supported for backward compatibility | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
26 """ |
192
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
27 import cmd, re, os, sys, optparse, subprocess, tempfile, pyparsing, doctest |
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
28 import unittest, string, datetime |
10 | 29 from optparse import make_option |
204 | 30 __version__ = '0.4.7' |
10 | 31 |
11 | 32 class OptionParser(optparse.OptionParser): |
33 def exit(self, status=0, msg=None): | |
38 | 34 self.values._exit = True |
11 | 35 if msg: |
15 | 36 print msg |
11 | 37 |
38 def error(self, msg): | |
39 """error(msg : string) | |
40 | |
41 Print a usage message incorporating 'msg' to stderr and exit. | |
42 If you override this in a subclass, it should not return -- it | |
43 should either exit or raise an exception. | |
44 """ | |
15 | 45 raise |
11 | 46 |
187 | 47 def remainingArgs(oldArgs, newArgList): |
48 ''' | |
49 >>> remainingArgs('-f bar bar cow', ['bar', 'cow']) | |
50 'bar cow' | |
51 ''' | |
189 | 52 pattern = '\s+'.join(re.escape(a) for a in newArgList) + '\s*$' |
187 | 53 matchObj = re.search(pattern, oldArgs) |
54 return oldArgs[matchObj.start():] | |
55 | |
10 | 56 def options(option_list): |
57 def option_setup(func): | |
11 | 58 optionParser = OptionParser() |
10 | 59 for opt in option_list: |
60 optionParser.add_option(opt) | |
12 | 61 optionParser.set_usage("%s [options] arg" % func.__name__.strip('do_')) |
10 | 62 def newFunc(instance, arg): |
63 try: | |
190 | 64 opts, newArgList = optionParser.parse_args(arg.split()) # doesn't understand quoted strings shouldn't be dissected! |
65 newArgs = remainingArgs(arg, newArgList) # should it permit flags after args? | |
20 | 66 except (optparse.OptionValueError, optparse.BadOptionError, |
67 optparse.OptionError, optparse.AmbiguousOptionError, | |
68 optparse.OptionConflictError), e: | |
10 | 69 print e |
70 optionParser.print_help() | |
38 | 71 return |
72 if hasattr(opts, '_exit'): | |
73 return None | |
187 | 74 terminator = arg.parsed.terminator |
75 try: | |
76 if arg.parsed.terminator[0] == '\n': | |
77 terminator = arg.parsed.terminator[0] | |
78 except IndexError: | |
79 pass | |
80 arg = arg.parser('%s %s%s%s' % (arg.parsed.command, newArgs, terminator, arg.parsed.suffix)) | |
37
a974e2f44cbe
made redirectors work with app-specific StatementEndPattern
catherine@localhost
parents:
36
diff
changeset
|
81 result = func(instance, arg, opts) |
159 | 82 return result |
10 | 83 newFunc.__doc__ = '%s\n%s' % (func.__doc__, optionParser.format_help()) |
84 return newFunc | |
85 return option_setup | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
86 |
27 | 87 class PasteBufferError(EnvironmentError): |
88 if sys.platform[:3] == 'win': | |
89 errmsg = """Redirecting to or from paste buffer requires pywin32 | |
90 to be installed on operating system. | |
91 Download from http://sourceforge.net/projects/pywin32/""" | |
92 else: | |
93 errmsg = """Redirecting to or from paste buffer requires xclip | |
94 to be installed on operating system. | |
95 On Debian/Ubuntu, 'sudo apt-get install xclip' will install it.""" | |
28
28b3fb301d3d
almost working, but problem with check_call
catherine@cordelia
parents:
27
diff
changeset
|
96 def __init__(self): |
27 | 97 Exception.__init__(self, self.errmsg) |
98 | |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
99 '''check here if functions exist; otherwise, stub out''' |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
100 pastebufferr = """Redirecting to or from paste buffer requires %s |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
101 to be installed on operating system. |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
102 %s""" |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
103 if subprocess.mswindows: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
104 try: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
105 import win32clipboard |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
106 def getPasteBuffer(): |
28
28b3fb301d3d
almost working, but problem with check_call
catherine@cordelia
parents:
27
diff
changeset
|
107 win32clipboard.OpenClipboard(0) |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
108 try: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
109 result = win32clipboard.GetClipboardData() |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
110 except TypeError: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
111 result = '' #non-text |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
112 win32clipboard.CloseClipboard() |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
113 return result |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
114 def writeToPasteBuffer(txt): |
28
28b3fb301d3d
almost working, but problem with check_call
catherine@cordelia
parents:
27
diff
changeset
|
115 win32clipboard.OpenClipboard(0) |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
116 win32clipboard.EmptyClipboard() |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
117 win32clipboard.SetClipboardText(txt) |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
118 win32clipboard.CloseClipboard() |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
119 except ImportError: |
106 | 120 def getPasteBuffer(*args): |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
121 raise OSError, pastebufferr % ('pywin32', 'Download from http://sourceforge.net/projects/pywin32/') |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
122 setPasteBuffer = getPasteBuffer |
27 | 123 else: |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
124 can_clip = False |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
125 try: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
126 subprocess.check_call('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
127 can_clip = True |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
128 except AttributeError: # check_call not defined, Python < 2.5 |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
129 teststring = 'Testing for presence of xclip.' |
31 | 130 xclipproc = subprocess.Popen('xclip -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
131 xclipproc.stdin.write(teststring) |
31 | 132 xclipproc.stdin.close() |
133 xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
134 if xclipproc.stdout.read() == teststring: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
135 can_clip = True |
56
f844b6c78192
fixing (hopefully) broken pipe error for headless systems
catherine.devlin@gmail.com
parents:
54
diff
changeset
|
136 except (subprocess.CalledProcessError, OSError, IOError): |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
137 pass |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
138 if can_clip: |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
139 def getPasteBuffer(): |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
140 xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
141 return xclipproc.stdout.read() |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
142 def writeToPasteBuffer(txt): |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
143 xclipproc = subprocess.Popen('xclip -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
144 xclipproc.stdin.write(txt) |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
145 xclipproc.stdin.close() |
83
2176ce847939
merged copy to both clipboards in
catherine@Elli.myhome.westell.com
parents:
82
diff
changeset
|
146 # but we want it in both the "primary" and "mouse" clipboards |
2176ce847939
merged copy to both clipboards in
catherine@Elli.myhome.westell.com
parents:
82
diff
changeset
|
147 xclipproc = subprocess.Popen('xclip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
2176ce847939
merged copy to both clipboards in
catherine@Elli.myhome.westell.com
parents:
82
diff
changeset
|
148 xclipproc.stdin.write(txt) |
2176ce847939
merged copy to both clipboards in
catherine@Elli.myhome.westell.com
parents:
82
diff
changeset
|
149 xclipproc.stdin.close() |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
150 else: |
106 | 151 def getPasteBuffer(*args): |
29
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
152 raise OSError, pastebufferr % ('xclip', 'On Debian/Ubuntu, install with "sudo apt-get install xclip"') |
c4bd5f1a6968
paste buffer working on linux and windows
catherine@cordelia
parents:
28
diff
changeset
|
153 setPasteBuffer = getPasteBuffer |
106 | 154 writeToPasteBuffer = getPasteBuffer |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
155 |
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
156 pyparsing.ParserElement.setDefaultWhitespaceChars(' \t') |
154 | 157 |
157 | 158 class ParsedString(str): |
159 pass | |
160 | |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
161 class SkipToLast(pyparsing.SkipTo): |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
162 def parseImpl( self, instring, loc, doActions=True ): |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
163 resultStore = [] |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
164 startLoc = loc |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
165 instrlen = len(instring) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
166 expr = self.expr |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
167 failParse = False |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
168 while loc <= instrlen: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
169 try: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
170 if self.failOn: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
171 failParse = True |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
172 self.failOn.tryParse(instring, loc) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
173 failParse = False |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
174 loc = expr._skipIgnorables( instring, loc ) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
175 expr._parse( instring, loc, doActions=False, callPreParse=False ) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
176 skipText = instring[startLoc:loc] |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
177 if self.includeMatch: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
178 loc,mat = expr._parse(instring,loc,doActions,callPreParse=False) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
179 if mat: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
180 skipRes = ParseResults( skipText ) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
181 skipRes += mat |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
182 resultStore.append((loc, [ skipRes ])) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
183 else: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
184 resultStore,append((loc, [ skipText ])) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
185 else: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
186 resultStore.append((loc, [ skipText ])) |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
187 loc += 1 |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
188 except (pyparsing.ParseException,IndexError): |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
189 if failParse: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
190 raise |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
191 else: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
192 loc += 1 |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
193 if resultStore: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
194 return resultStore[-1] |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
195 else: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
196 exc = self.myException |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
197 exc.loc = loc |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
198 exc.pstr = instring |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
199 raise exc |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
200 |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
201 def replace_with_file_contents(fname): |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
202 if fname: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
203 try: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
204 result = open(os.path.expanduser(fname[0])).read() |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
205 except IOError: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
206 result = '< %s' % fname[0] # wasn't a file after all |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
207 else: |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
208 result = getPasteBuffer() |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
209 return result |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
210 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
211 class Cmd(cmd.Cmd): |
103 | 212 echo = False |
207 | 213 case_insensitive = True |
214 continuation_prompt = '> ' | |
192
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
215 timing = False |
166
a3414ac38677
so close - now problem with terminator in string
catherine@dellzilla
parents:
165
diff
changeset
|
216 legalChars = '!#$%.:?@_' + pyparsing.alphanums + pyparsing.alphas8bit # make sure your terminators are not in here! |
137 | 217 shortcuts = {'?': 'help', '!': 'shell', '@': 'load' } |
106 | 218 excludeFromHistory = '''run r list l history hi ed edit li eof'''.split() |
219 noSpecialParse = 'set ed edit exit'.split() | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
220 defaultExtension = 'txt' |
207 | 221 default_file_name = 'command.txt' |
222 settable = ['prompt', 'continuation_prompt', 'default_file_name', 'editor', 'case_insensitive', | |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
223 'echo', 'timing'] |
199 | 224 settable.sort() |
169 | 225 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
226 editor = os.environ.get('EDITOR') |
42 | 227 _STOP_AND_EXIT = 2 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
228 if not editor: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
229 if sys.platform[:3] == 'win': |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
230 editor = 'notepad' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
231 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
232 for editor in ['gedit', 'kate', 'vim', 'emacs', 'nano', 'pico']: |
47 | 233 if not os.system('which %s' % (editor)): |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
234 break |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
235 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
236 def do_cmdenvironment(self, args): |
193 | 237 '''Summary report of interactive parameters.''' |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
238 self.stdout.write(""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
239 Commands are %(casesensitive)scase-sensitive. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
240 Commands may be terminated with: %(terminators)s |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
241 Settable parameters: %(settable)s |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
242 """ % |
207 | 243 { 'casesensitive': (self.case_insensitive and 'not ') or '', |
171 | 244 'terminators': str(self.terminators), |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
245 'settable': ' '.join(self.settable) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
246 }) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
247 |
10 | 248 def do_help(self, arg): |
249 cmd.Cmd.do_help(self, arg) | |
250 try: | |
251 fn = getattr(self, 'do_' + arg) | |
252 if fn and fn.optionParser: | |
253 fn.optionParser.print_help(file=self.stdout) | |
254 except AttributeError: | |
255 pass | |
256 | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
257 def __init__(self, *args, **kwargs): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
258 cmd.Cmd.__init__(self, *args, **kwargs) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
259 self.history = History() |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
260 self._init_parser() |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
261 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
262 def do_shortcuts(self, args): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
263 """Lists single-key shortcuts available.""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
264 result = "\n".join('%s: %s' % (sc[0], sc[1]) for sc in self.shortcuts.items()) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
265 self.stdout.write("Single-key shortcuts for other commands:\n%s\n" % (result)) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
266 |
137 | 267 commentGrammars = pyparsing.Or([pyparsing.pythonStyleComment, pyparsing.cStyleComment]) |
153 | 268 commentGrammars.addParseAction(lambda x: '') |
136 | 269 commentInProgress = pyparsing.Literal('/*') + pyparsing.SkipTo(pyparsing.stringEnd) |
171 | 270 terminators = [';'] |
271 blankLinesAllowed = False | |
153 | 272 multilineCommands = [] |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
273 |
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
274 def _init_parser(self): |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
275 r''' |
146 | 276 >>> c = Cmd() |
153 | 277 >>> c.multilineCommands = ['multiline'] |
207 | 278 >>> c.case_insensitive = True |
153 | 279 >>> c._init_parser() |
158 | 280 >>> print c.parser.parseString('').dump() |
281 [] | |
282 >>> print c.parser.parseString('/* empty command */').dump() | |
283 [] | |
284 >>> print c.parser.parseString('plainword').dump() | |
285 ['plainword', ''] | |
286 - command: plainword | |
287 - statement: ['plainword', ''] | |
288 - command: plainword | |
157 | 289 >>> print c.parser.parseString('termbare;').dump() |
158 | 290 ['termbare', '', ';', ''] |
291 - command: termbare | |
292 - statement: ['termbare', '', ';'] | |
293 - command: termbare | |
294 - terminator: ; | |
295 - terminator: ; | |
157 | 296 >>> print c.parser.parseString('termbare; suffx').dump() |
158 | 297 ['termbare', '', ';', 'suffx'] |
298 - command: termbare | |
299 - statement: ['termbare', '', ';'] | |
300 - command: termbare | |
301 - terminator: ; | |
302 - suffix: suffx | |
303 - terminator: ; | |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
304 >>> print c.parser.parseString('barecommand').dump() |
153 | 305 ['barecommand', ''] |
306 - command: barecommand | |
307 - statement: ['barecommand', ''] | |
308 - command: barecommand | |
309 >>> print c.parser.parseString('COMmand with args').dump() | |
157 | 310 ['command', 'with args'] |
311 - args: with args | |
153 | 312 - command: command |
157 | 313 - statement: ['command', 'with args'] |
314 - args: with args | |
153 | 315 - command: command |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
316 >>> print c.parser.parseString('command with args and terminator; and suffix').dump() |
158 | 317 ['command', 'with args and terminator', ';', 'and suffix'] |
153 | 318 - args: with args and terminator |
319 - command: command | |
320 - statement: ['command', 'with args and terminator', ';'] | |
321 - args: with args and terminator | |
322 - command: command | |
323 - terminator: ; | |
158 | 324 - suffix: and suffix |
325 - terminator: ; | |
153 | 326 >>> print c.parser.parseString('simple | piped').dump() |
157 | 327 ['simple', '', '|', ' piped'] |
153 | 328 - command: simple |
157 | 329 - pipeTo: piped |
153 | 330 - statement: ['simple', ''] |
331 - command: simple | |
199 | 332 >>> print c.parser.parseString('double-pipe || is not a pipe').dump() |
333 ['double', '-pipe || is not a pipe'] | |
334 - args: -pipe || is not a pipe | |
335 - command: double | |
336 - statement: ['double', '-pipe || is not a pipe'] | |
337 - args: -pipe || is not a pipe | |
338 - command: double | |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
339 >>> print c.parser.parseString('command with args, terminator;sufx | piped').dump() |
157 | 340 ['command', 'with args, terminator', ';', 'sufx', '|', ' piped'] |
153 | 341 - args: with args, terminator |
342 - command: command | |
157 | 343 - pipeTo: piped |
153 | 344 - statement: ['command', 'with args, terminator', ';'] |
345 - args: with args, terminator | |
346 - command: command | |
347 - terminator: ; | |
348 - suffix: sufx | |
155 | 349 - terminator: ; |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
350 >>> print c.parser.parseString('output into > afile.txt').dump() |
157 | 351 ['output', 'into', '>', 'afile.txt'] |
153 | 352 - args: into |
353 - command: output | |
354 - output: > | |
155 | 355 - outputTo: afile.txt |
157 | 356 - statement: ['output', 'into'] |
357 - args: into | |
358 - command: output | |
359 >>> print c.parser.parseString('output into;sufx | pipethrume plz > afile.txt').dump() | |
360 ['output', 'into', ';', 'sufx', '|', ' pipethrume plz', '>', 'afile.txt'] | |
361 - args: into | |
362 - command: output | |
363 - output: > | |
364 - outputTo: afile.txt | |
365 - pipeTo: pipethrume plz | |
153 | 366 - statement: ['output', 'into', ';'] |
367 - args: into | |
368 - command: output | |
369 - terminator: ; | |
370 - suffix: sufx | |
371 - terminator: ; | |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
372 >>> print c.parser.parseString('output to paste buffer >> ').dump() |
157 | 373 ['output', 'to paste buffer', '>>', ''] |
374 - args: to paste buffer | |
153 | 375 - command: output |
376 - output: >> | |
157 | 377 - statement: ['output', 'to paste buffer'] |
378 - args: to paste buffer | |
153 | 379 - command: output |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
380 >>> print c.parser.parseString('ignore the /* commented | > */ stuff;').dump() |
153 | 381 ['ignore', 'the /* commented | > */ stuff', ';', ''] |
382 - args: the /* commented | > */ stuff | |
383 - command: ignore | |
384 - statement: ['ignore', 'the /* commented | > */ stuff', ';'] | |
385 - args: the /* commented | > */ stuff | |
386 - command: ignore | |
387 - terminator: ; | |
388 - terminator: ; | |
389 >>> print c.parser.parseString('has > inside;').dump() | |
390 ['has', '> inside', ';', ''] | |
391 - args: > inside | |
392 - command: has | |
393 - statement: ['has', '> inside', ';'] | |
394 - args: > inside | |
395 - command: has | |
396 - terminator: ; | |
397 - terminator: ; | |
398 >>> print c.parser.parseString('multiline has > inside an unfinished command').dump() | |
173 | 399 ['multiline', ' has > inside an unfinished command'] |
153 | 400 - multilineCommand: multiline |
401 >>> print c.parser.parseString('multiline has > inside;').dump() | |
402 ['multiline', 'has > inside', ';', ''] | |
403 - args: has > inside | |
404 - multilineCommand: multiline | |
405 - statement: ['multiline', 'has > inside', ';'] | |
406 - args: has > inside | |
407 - multilineCommand: multiline | |
408 - terminator: ; | |
409 - terminator: ; | |
410 >>> print c.parser.parseString('multiline command /* with comment in progress;').dump() | |
173 | 411 ['multiline', ' command /* with comment in progress;'] |
153 | 412 - multilineCommand: multiline |
413 >>> print c.parser.parseString('multiline command /* with comment complete */ is done;').dump() | |
414 ['multiline', 'command /* with comment complete */ is done', ';', ''] | |
415 - args: command /* with comment complete */ is done | |
416 - multilineCommand: multiline | |
417 - statement: ['multiline', 'command /* with comment complete */ is done', ';'] | |
418 - args: command /* with comment complete */ is done | |
419 - multilineCommand: multiline | |
420 - terminator: ; | |
158 | 421 - terminator: ; |
186 | 422 >>> print c.parser.parseString('multiline command ends\n\n').dump() |
423 ['multiline', 'command ends', '\n', '\n'] | |
424 - args: command ends | |
425 - multilineCommand: multiline | |
426 - statement: ['multiline', 'command ends', '\n', '\n'] | |
427 - args: command ends | |
428 - multilineCommand: multiline | |
429 - terminator: ['\n', '\n'] | |
430 - terminator: ['\n', '\n'] | |
153 | 431 ''' |
195
455ebe415d5e
do not interpret => as having the redirector >
catherine@dellzilla
parents:
194
diff
changeset
|
432 outputParser = (pyparsing.Literal('>>') | (pyparsing.WordStart() + '>') | pyparsing.Regex('[^=]>'))('output') |
455ebe415d5e
do not interpret => as having the redirector >
catherine@dellzilla
parents:
194
diff
changeset
|
433 |
171 | 434 terminatorParser = pyparsing.Or([(hasattr(t, 'parseString') and t) or pyparsing.Literal(t) for t in self.terminators])('terminator') |
152
693d11072e8e
hmm, complications with gt within statements
catherine@Elli.myhome.westell.com
parents:
151
diff
changeset
|
435 stringEnd = pyparsing.stringEnd ^ '\nEOF' |
207 | 436 self.multilineCommand = pyparsing.Or([pyparsing.Keyword(c, caseless=self.case_insensitive) for c in self.multilineCommands])('multilineCommand') |
186 | 437 oneLineCommand = (~self.multilineCommand + pyparsing.Word(self.legalChars))('command') |
160 | 438 pipe = pyparsing.Keyword('|', identChars='|') |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
439 self.commentGrammars.ignore(pyparsing.quotedString).setParseAction(lambda x: '') |
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
440 self.commentInProgress.ignore(pyparsing.quotedString).ignore(pyparsing.cStyleComment) |
153 | 441 afterElements = \ |
160 | 442 pyparsing.Optional(pipe + pyparsing.SkipTo(outputParser ^ stringEnd)('pipeTo')) + \ |
155 | 443 pyparsing.Optional(outputParser + pyparsing.SkipTo(stringEnd).setParseAction(lambda x: x[0].strip())('outputTo')) |
207 | 444 if self.case_insensitive: |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
445 self.multilineCommand.setParseAction(lambda x: x[0].lower()) |
153 | 446 oneLineCommand.setParseAction(lambda x: x[0].lower()) |
171 | 447 if self.blankLinesAllowed: |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
448 self.blankLineTerminationParser = pyparsing.NoMatch |
171 | 449 else: |
186 | 450 self.blankLineTerminator = (pyparsing.lineEnd + pyparsing.lineEnd)('terminator') |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
451 self.blankLineTerminator.setResultsName('terminator') |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
452 self.blankLineTerminationParser = ((self.multilineCommand ^ oneLineCommand) + pyparsing.SkipTo(self.blankLineTerminator).setParseAction(lambda x: x[0].strip())('args') + self.blankLineTerminator)('statement') |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
453 self.multilineParser = (((self.multilineCommand ^ oneLineCommand) + SkipToLast(terminatorParser).setParseAction(lambda x: x[0].strip())('args') + terminatorParser)('statement') + |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
454 pyparsing.SkipTo(outputParser ^ pipe ^ stringEnd).setParseAction(lambda x: x[0].strip())('suffix') + afterElements) |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
455 self.singleLineParser = ((oneLineCommand + pyparsing.SkipTo(terminatorParser ^ stringEnd ^ pipe ^ outputParser).setParseAction(lambda x:x[0].strip())('args'))('statement') + |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
456 pyparsing.Optional(terminatorParser) + afterElements) |
186 | 457 #self.multilineParser = self.multilineParser.setResultsName('multilineParser') |
458 #self.singleLineParser = self.singleLineParser.setResultsName('singleLineParser') | |
459 #self.blankLineTerminationParser = self.blankLineTerminationParser.setResultsName('blankLineTerminatorParser') | |
153 | 460 self.parser = ( |
173 | 461 stringEnd | |
184
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
462 self.multilineParser | |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
463 self.singleLineParser | |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
464 self.blankLineTerminationParser | |
d1a87c14675b
putting parsing variables under self
catherine@Elli.myhome.westell.com
parents:
183
diff
changeset
|
465 self.multilineCommand + pyparsing.SkipTo(stringEnd) |
153 | 466 ) |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
467 self.parser.ignore(pyparsing.quotedString).ignore(self.commentGrammars).ignore(self.commentInProgress) |
169 | 468 |
154 | 469 inputMark = pyparsing.Literal('<') |
470 inputMark.setParseAction(lambda x: '') | |
204 | 471 fileName = pyparsing.Word(self.legalChars + '/\\') |
472 inputFrom = fileName('inputFrom') | |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
473 inputFrom.setParseAction(replace_with_file_contents) |
204 | 474 # a not-entirely-satisfactory way of distinguishing < as in "import from" from < |
475 # as in "lesser than" | |
476 self.inputParser = inputMark + pyparsing.Optional(inputFrom) + pyparsing.Optional('>') + \ | |
477 pyparsing.Optional(fileName) + (pyparsing.stringEnd | '|') | |
203
68a609fc516b
limit < infile slurp to cases where infile found
catherine@dellzilla
parents:
202
diff
changeset
|
478 self.inputParser.ignore(pyparsing.quotedString).ignore(self.commentGrammars).ignore(self.commentInProgress) |
153 | 479 |
165 | 480 def parsed(self, raw, **kwargs): |
162
c50615cf814f
merged with changes from work
catherine@Elli.myhome.westell.com
parents:
161
diff
changeset
|
481 if isinstance(raw, ParsedString): |
165 | 482 p = raw |
483 else: | |
171 | 484 s = self.inputParser.transformString(raw.lstrip()) |
209 | 485 ''' |
165 | 486 for (shortcut, expansion) in self.shortcuts.items(): |
201 | 487 if s.lower().startswith(shortcut): |
165 | 488 s = s.replace(shortcut, expansion + ' ', 1) |
489 break | |
209 | 490 ''' |
165 | 491 result = self.parser.parseString(s) |
492 result['command'] = result.multilineCommand or result.command | |
493 result['raw'] = raw | |
494 result['clean'] = self.commentGrammars.transformString(result.args) | |
495 result['expanded'] = s | |
166
a3414ac38677
so close - now problem with terminator in string
catherine@dellzilla
parents:
165
diff
changeset
|
496 p = ParsedString(result.clean) |
165 | 497 p.parsed = result |
498 p.parser = self.parsed | |
499 for (key, val) in kwargs.items(): | |
500 p.parsed[key] = val | |
157 | 501 return p |
502 | |
166
a3414ac38677
so close - now problem with terminator in string
catherine@dellzilla
parents:
165
diff
changeset
|
503 def onecmd(self, line): |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
504 """Interpret the argument as though it had been typed in response |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
505 to the prompt. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
506 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
507 This may be overridden, but should not normally need to be; |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
508 see the precmd() and postcmd() methods for useful execution hooks. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
509 The return value is a flag indicating whether interpretation of |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
510 commands by the interpreter should stop. |
157 | 511 |
512 This (`cmd2`) version of `onecmd` already override's `cmd`'s `onecmd`. | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
513 |
3 | 514 """ |
83
2176ce847939
merged copy to both clipboards in
catherine@Elli.myhome.westell.com
parents:
82
diff
changeset
|
515 if not line: |
157 | 516 return self.emptyline() |
209 | 517 for (shortcut, expansion) in self.shortcuts.items(): |
518 if line.lower().lstrip().startswith(shortcut): | |
519 line = line.replace(shortcut, expansion + ' ', 1) | |
520 break | |
135
7c0a89fccf2b
broken; midway through comments
catherine@Elli.myhome.westell.com
parents:
134
diff
changeset
|
521 if not pyparsing.Or(self.commentGrammars).setParseAction(lambda x: '').transformString(line): |
179
321e0cc35661
oh no... must accept prompt changes
catherine@Elli.myhome.westell.com
parents:
177
diff
changeset
|
522 return 0 # command was empty except for comments |
154 | 523 try: |
524 statement = self.parsed(line) | |
170
310ebf4baa7a
\n endings still squirrely; watch blank spaces in saved files
catherine@dellzilla
parents:
169
diff
changeset
|
525 while statement.parsed.multilineCommand and (statement.parsed.terminator == ''): |
192
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
526 statement = '%s\n%s' % (statement.parsed.raw, |
207 | 527 self.pseudo_raw_input(self.continuation_prompt)) |
192
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
528 statement = self.parsed(statement) |
154 | 529 except Exception, e: |
530 print e | |
531 return 0 | |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
532 |
177 | 533 if not statement.parsed.command: |
175 | 534 return 0 |
535 | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
536 statekeeper = None |
25 | 537 stop = 0 |
154 | 538 |
157 | 539 if statement.parsed.pipeTo: |
540 redirect = subprocess.Popen(statement.parsed.pipeTo, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) | |
51 | 541 statekeeper = Statekeeper(self, ('stdout',)) |
47 | 542 self.stdout = redirect.stdin |
157 | 543 elif statement.parsed.output: |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
544 statekeeper = Statekeeper(self, ('stdout',)) |
157 | 545 if statement.parsed.outputTo: |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
546 mode = 'w' |
157 | 547 if statement.parsed.output == '>>': |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
548 mode = 'a' |
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
549 try: |
202 | 550 self.stdout = open(os.path.expanduser(statement.parsed.outputTo), mode) |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
551 except OSError, e: |
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
552 print e |
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
553 return 0 |
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
554 else: |
51 | 555 statekeeper = Statekeeper(self, ('stdout',)) |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
556 self.stdout = tempfile.TemporaryFile() |
157 | 557 if statement.parsed.output == '>>': |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
558 self.stdout.write(getPasteBuffer()) |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
559 try: |
157 | 560 # "heart" of the command, replace's cmd's onecmd() |
561 self.lastcmd = statement.parsed.expanded | |
562 try: | |
563 func = getattr(self, 'do_' + statement.parsed.command) | |
564 except AttributeError: | |
565 return self.default(statement) | |
192
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
566 timestart = datetime.datetime.now() |
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
567 stop = func(statement) |
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
568 if self.timing: |
c0d4c7ba14a9
added settable timings param
catherine@Elli.myhome.westell.com
parents:
191
diff
changeset
|
569 print 'Elapsed: %s' % str(datetime.datetime.now() - timestart) |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
570 except Exception, e: |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
571 print e |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
572 try: |
157 | 573 if statement.parsed.command not in self.excludeFromHistory: |
574 self.history.append(statement.parsed.raw) | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
575 finally: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
576 if statekeeper: |
157 | 577 if statement.parsed.output and not statement.parsed.outputTo: |
27 | 578 self.stdout.seek(0) |
134
c28ae4f75c15
incorporated changes from branch at work
catherine@Elli.myhome.westell.com
parents:
133
diff
changeset
|
579 try: |
c28ae4f75c15
incorporated changes from branch at work
catherine@Elli.myhome.westell.com
parents:
133
diff
changeset
|
580 writeToPasteBuffer(self.stdout.read()) |
c28ae4f75c15
incorporated changes from branch at work
catherine@Elli.myhome.westell.com
parents:
133
diff
changeset
|
581 except Exception, e: |
c28ae4f75c15
incorporated changes from branch at work
catherine@Elli.myhome.westell.com
parents:
133
diff
changeset
|
582 print str(e) |
157 | 583 elif statement.parsed.pipeTo: |
52
49de899a05a8
new unified pipe and redirect works on wc
catherine@localhost
parents:
51
diff
changeset
|
584 for result in redirect.communicate(): |
49de899a05a8
new unified pipe and redirect works on wc
catherine@localhost
parents:
51
diff
changeset
|
585 statekeeper.stdout.write(result or '') |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
586 self.stdout.close() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
587 statekeeper.restore() |
52
49de899a05a8
new unified pipe and redirect works on wc
catherine@localhost
parents:
51
diff
changeset
|
588 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
589 return stop |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
590 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
591 def pseudo_raw_input(self, prompt): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
592 """copied from cmd's cmdloop; like raw_input, but accounts for changed stdin, stdout""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
593 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
594 if self.use_rawinput: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
595 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
596 line = raw_input(prompt) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
597 except EOFError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
598 line = 'EOF' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
599 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
600 self.stdout.write(prompt) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
601 self.stdout.flush() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
602 line = self.stdin.readline() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
603 if not len(line): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
604 line = 'EOF' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
605 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
606 if line[-1] == '\n': # this was always true in Cmd |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
607 line = line[:-1] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
608 return line |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
609 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
610 def cmdloop(self, intro=None): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
611 """Repeatedly issue a prompt, accept input, parse an initial prefix |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
612 off the received input, and dispatch to action methods, passing them |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
613 the remainder of the line as argument. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
614 """ |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
615 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
616 # An almost perfect copy from Cmd; however, the pseudo_raw_input portion |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
617 # has been split out so that it can be called separately |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
618 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
619 self.preloop() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
620 if self.use_rawinput and self.completekey: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
621 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
622 import readline |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
623 self.old_completer = readline.get_completer() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
624 readline.set_completer(self.complete) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
625 readline.parse_and_bind(self.completekey+": complete") |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
626 except ImportError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
627 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
628 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
629 if intro is not None: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
630 self.intro = intro |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
631 if self.intro: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
632 self.stdout.write(str(self.intro)+"\n") |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
633 stop = None |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
634 while not stop: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
635 if self.cmdqueue: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
636 line = self.cmdqueue.pop(0) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
637 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
638 line = self.pseudo_raw_input(self.prompt) |
103 | 639 if (self.echo) and (isinstance(self.stdin, file)): |
640 self.stdout.write(line + '\n') | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
641 line = self.precmd(line) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
642 stop = self.onecmd(line) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
643 stop = self.postcmd(stop, line) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
644 self.postloop() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
645 finally: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
646 if self.use_rawinput and self.completekey: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
647 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
648 import readline |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
649 readline.set_completer(self.old_completer) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
650 except ImportError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
651 pass |
43 | 652 return stop |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
653 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
654 def do_EOF(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
655 return True |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
656 do_eof = do_EOF |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
657 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
658 def showParam(self, param): |
206 | 659 any_shown = False |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
660 param = param.strip().lower() |
199 | 661 for p in self.settable: |
662 if p.startswith(param): | |
663 val = getattr(self, p) | |
664 self.stdout.write('%s: %s\n' % (p, str(getattr(self, p)))) | |
206 | 665 any_shown = True |
666 if not any_shown: | |
667 print "Parameter '%s' not supported (type 'show' for list of parameters)." % param | |
199 | 668 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
669 def do_quit(self, arg): |
43 | 670 return self._STOP_AND_EXIT |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
671 do_exit = do_quit |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
672 do_q = do_quit |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
673 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
674 def do_show(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
675 'Shows value of a parameter' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
676 if arg.strip(): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
677 self.showParam(arg) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
678 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
679 for param in self.settable: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
680 self.showParam(param) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
681 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
682 def do_set(self, arg): |
199 | 683 '''Sets a cmd2 parameter. Accepts abbreviated parameter names so long as there is no ambiguity. |
684 Call without arguments for a list of settable parameters with their values.''' | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
685 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
686 paramName, val = arg.split(None, 1) |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
687 paramName = paramName.strip().lower() |
199 | 688 hits = [paramName in p for p in self.settable] |
689 if hits.count(True) == 1: | |
690 paramName = self.settable[hits.index(True)] | |
691 currentVal = getattr(self, paramName) | |
692 if (val[0] == val[-1]) and val[0] in ("'", '"'): | |
693 val = val[1:-1] | |
694 else: | |
695 val = cast(currentVal, val) | |
696 setattr(self, paramName, val) | |
697 self.stdout.write('%s - was: %s\nnow: %s\n' % (paramName, currentVal, val)) | |
698 else: | |
699 self.do_show(paramName) | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
700 except (ValueError, AttributeError, NotSettableError), e: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
701 self.do_show(arg) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
702 |
182
1c21db096f49
switched literal newline to lineEnd
catherine@Elli.myhome.westell.com
parents:
181
diff
changeset
|
703 def do_pause(self, arg): |
1c21db096f49
switched literal newline to lineEnd
catherine@Elli.myhome.westell.com
parents:
181
diff
changeset
|
704 'Displays the specified text then waits for the user to press RETURN.' |
1c21db096f49
switched literal newline to lineEnd
catherine@Elli.myhome.westell.com
parents:
181
diff
changeset
|
705 raw_input(arg + '\n') |
1c21db096f49
switched literal newline to lineEnd
catherine@Elli.myhome.westell.com
parents:
181
diff
changeset
|
706 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
707 def do_shell(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
708 'execute a command as if at the OS prompt.' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
709 os.system(arg) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
710 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
711 def do_history(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
712 """history [arg]: lists past commands issued |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
713 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
714 no arg -> list all |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
715 arg is integer -> list one history item, by index |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
716 arg is string -> string search |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
717 arg is /enclosed in forward-slashes/ -> regular expression search |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
718 """ |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
719 if arg: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
720 history = self.history.get(arg) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
721 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
722 history = self.history |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
723 for hi in history: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
724 self.stdout.write(hi.pr()) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
725 def last_matching(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
726 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
727 if arg: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
728 return self.history.get(arg)[-1] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
729 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
730 return self.history[-1] |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
731 except IndexError: |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
732 return None |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
733 def do_list(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
734 """list [arg]: lists last command issued |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
735 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
736 no arg -> list absolute last |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
737 arg is integer -> list one history item, by index |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
738 - arg, arg - (integer) -> list up to or after #arg |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
739 arg is string -> list last command matching string search |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
740 arg is /enclosed in forward-slashes/ -> regular expression search |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
741 """ |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
742 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
743 self.stdout.write(self.last_matching(arg).pr()) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
744 except: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
745 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
746 do_hi = do_history |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
747 do_l = do_list |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
748 do_li = do_list |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
749 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
750 def do_ed(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
751 """ed: edit most recent command in text editor |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
752 ed [N]: edit numbered command from history |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
753 ed [filename]: edit specified file name |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
754 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
755 commands are run after editor is closed. |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
756 "set edit (program-name)" or set EDITOR environment variable |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
757 to control which editing program is used.""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
758 if not self.editor: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
759 print "please use 'set editor' to specify your text editing program of choice." |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
760 return |
207 | 761 filename = self.default_file_name |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
762 if arg: |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
763 try: |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
764 buffer = self.last_matching(int(arg)) |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
765 except ValueError: |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
766 filename = arg |
133
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
767 buffer = '' |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
768 else: |
31674148b13c
just beginning to make comments work
catherine@Elli.myhome.westell.com
parents:
126
diff
changeset
|
769 buffer = self.history[-1] |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
770 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
771 if buffer: |
202 | 772 f = open(os.path.expanduser(filename), 'w') |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
773 f.write(buffer or '') |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
774 f.close() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
775 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
776 os.system('%s %s' % (self.editor, filename)) |
48 | 777 self.do__load(filename) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
778 do_edit = do_ed |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
779 |
91 | 780 saveparser = (pyparsing.Optional(pyparsing.Word(pyparsing.nums)^'*')("idx") + |
157 | 781 pyparsing.Optional(pyparsing.Word(legalChars + '/\\'))("fname") + |
91 | 782 pyparsing.stringEnd) |
783 def do_save(self, arg): | |
784 """`save [N] [filename.ext]` | |
785 Saves command from history to file. | |
786 N => Number of command (from history), or `*`; | |
787 most recent command if omitted""" | |
788 | |
789 try: | |
790 args = self.saveparser.parseString(arg) | |
791 except pyparsing.ParseException: | |
792 print self.do_save.__doc__ | |
793 return | |
207 | 794 fname = args.fname or self.default_file_name |
91 | 795 if args.idx == '*': |
796 saveme = '\n\n'.join(self.history[:]) | |
797 elif args.idx: | |
798 saveme = self.history[int(args.idx)-1] | |
799 else: | |
800 saveme = self.history[-1] | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
801 try: |
202 | 802 f = open(os.path.expanduser(fname), 'w') |
91 | 803 f.write(saveme) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
804 f.close() |
91 | 805 print 'Saved to %s' % (fname) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
806 except Exception, e: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
807 print 'Error saving %s: %s' % (fname, str(e)) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
808 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
809 def do_load(self, fname=None): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
810 """Runs command(s) from a file.""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
811 if fname is None: |
207 | 812 fname = self.default_file_name |
200
05c0e28306d3
expanding ~ in file names
catherine@Elli.myhome.westell.com
parents:
199
diff
changeset
|
813 fname = os.path.expanduser(fname) |
207 | 814 keepstate = Statekeeper(self, ('stdin','use_rawinput','prompt','continuation_prompt')) |
41 | 815 if isinstance(fname, file): |
816 self.stdin = fname | |
817 else: | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
818 try: |
202 | 819 self.stdin = open(os.path.expanduser(fname), 'r') |
41 | 820 except IOError, e: |
821 try: | |
202 | 822 self.stdin = open('%s.%s' % (os.path.expanduser(fname), self.defaultExtension), 'r') |
41 | 823 except IOError: |
824 print 'Problem opening file %s: \n%s' % (fname, e) | |
825 keepstate.restore() | |
826 return | |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
827 self.use_rawinput = False |
207 | 828 self.prompt = self.continuation_prompt = '' |
42 | 829 stop = self.cmdloop() |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
830 self.stdin.close() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
831 keepstate.restore() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
832 self.lastcmd = '' |
48 | 833 return (stop == self._STOP_AND_EXIT) and self._STOP_AND_EXIT |
834 do__load = do_load # avoid an unfortunate legacy use of do_load from sqlpython | |
43 | 835 |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
836 def do_run(self, arg): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
837 """run [arg]: re-runs an earlier command |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
838 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
839 no arg -> run most recent command |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
840 arg is integer -> run one history item, by index |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
841 arg is string -> run most recent command by string search |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
842 arg is /enclosed in forward-slashes/ -> run most recent by regex |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
843 """ |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
844 'run [N]: runs the SQL that was run N commands ago' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
845 runme = self.last_matching(arg) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
846 print runme |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
847 if runme: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
848 runme = self.precmd(runme) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
849 stop = self.onecmd(runme) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
850 stop = self.postcmd(stop, runme) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
851 do_r = do_run |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
852 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
853 def fileimport(self, statement, source): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
854 try: |
202 | 855 f = open(os.path.expanduser(source)) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
856 except IOError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
857 self.stdout.write("Couldn't read from file %s\n" % source) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
858 return '' |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
859 data = f.read() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
860 f.close() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
861 return data |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
862 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
863 class HistoryItem(str): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
864 def __init__(self, instr): |
121
fe432d010ecc
going to attempt 2.4 and 2.6 compatibility
catherine@dellzilla
parents:
119
diff
changeset
|
865 str.__init__(self) |
0
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
866 self.lowercase = self.lower() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
867 self.idx = None |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
868 def pr(self): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
869 return '-------------------------[%d]\n%s\n' % (self.idx, str(self)) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
870 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
871 class History(list): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
872 rangeFrom = re.compile(r'^([\d])+\s*\-$') |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
873 def append(self, new): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
874 new = HistoryItem(new) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
875 list.append(self, new) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
876 new.idx = len(self) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
877 def extend(self, new): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
878 for n in new: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
879 self.append(n) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
880 def get(self, getme): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
881 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
882 getme = int(getme) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
883 if getme < 0: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
884 return self[:(-1 * getme)] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
885 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
886 return [self[getme-1]] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
887 except IndexError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
888 return [] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
889 except (ValueError, TypeError): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
890 getme = getme.strip() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
891 mtch = self.rangeFrom.search(getme) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
892 if mtch: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
893 return self[(int(mtch.group(1))-1):] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
894 if getme.startswith(r'/') and getme.endswith(r'/'): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
895 finder = re.compile(getme[1:-1], re.DOTALL | re.MULTILINE | re.IGNORECASE) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
896 def isin(hi): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
897 return finder.search(hi) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
898 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
899 def isin(hi): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
900 return (getme.lower() in hi.lowercase) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
901 return [itm for itm in self if isin(itm)] |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
902 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
903 class NotSettableError(Exception): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
904 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
905 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
906 def cast(current, new): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
907 """Tries to force a new value into the same type as the current.""" |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
908 typ = type(current) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
909 if typ == bool: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
910 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
911 return bool(int(new)) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
912 except ValueError, TypeError: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
913 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
914 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
915 new = new.lower() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
916 except: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
917 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
918 if (new=='on') or (new[0] in ('y','t')): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
919 return True |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
920 if (new=='off') or (new[0] in ('n','f')): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
921 return False |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
922 else: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
923 try: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
924 return typ(new) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
925 except: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
926 pass |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
927 print "Problem setting parameter (now %s) to %s; incorrect type?" % (current, new) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
928 return current |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
929 |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
930 class Statekeeper(object): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
931 def __init__(self, obj, attribs): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
932 self.obj = obj |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
933 self.attribs = attribs |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
934 self.save() |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
935 def save(self): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
936 for attrib in self.attribs: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
937 setattr(self, attrib, getattr(self.obj, attrib)) |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
938 def restore(self): |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
939 for attrib in self.attribs: |
febfdc79550b
moved repository to Assembla
catherine@DellZilla.myhome.westell.com
parents:
diff
changeset
|
940 setattr(self.obj, attrib, getattr(self, attrib)) |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
941 |
104 | 942 class Borg(object): |
943 '''All instances of any Borg subclass will share state. | |
944 from Python Cookbook, 2nd Ed., recipe 6.16''' | |
945 _shared_state = {} | |
946 def __new__(cls, *a, **k): | |
947 obj = object.__new__(cls, *a, **k) | |
948 obj.__dict__ = cls._shared_state | |
949 return obj | |
950 | |
951 class OutputTrap(Borg): | |
952 '''Instantiate an OutputTrap to divert/capture ALL stdout output. For use in unit testing. | |
953 Call `tearDown()` to return to normal output.''' | |
954 def __init__(self): | |
105 | 955 self.old_stdout = sys.stdout |
104 | 956 self.trap = tempfile.TemporaryFile() |
957 sys.stdout = self.trap | |
105 | 958 def read(self): |
104 | 959 self.trap.seek(0) |
960 result = self.trap.read() | |
105 | 961 self.trap.truncate(0) |
962 return result.strip('\x00') | |
104 | 963 def tearDown(self): |
964 sys.stdout = self.old_stdout | |
965 | |
966 class Cmd2TestCase(unittest.TestCase): | |
967 '''Subclass this, setting CmdApp and transcriptFileName, to make a unittest.TestCase class | |
109 | 968 that will execute the commands in transcriptFileName and expect the results shown. |
969 See example.py''' | |
104 | 970 CmdApp = None |
971 transcriptFileName = '' | |
972 def setUp(self): | |
973 if self.CmdApp: | |
105 | 974 self.outputTrap = OutputTrap() |
104 | 975 self.cmdapp = self.CmdApp() |
173 | 976 try: |
202 | 977 tfile = open(os.path.expanduser(self.transcriptFileName)) |
180 | 978 self.transcript = iter(tfile.readlines()) |
173 | 979 tfile.close() |
980 except IOError: | |
981 self.transcript = [] | |
181
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
982 def assertEqualEnough(self, got, expected, message): |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
983 got = got.strip().splitlines() |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
984 expected = expected.strip().splitlines() |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
985 self.assertEqual(len(got), len(expected), message) |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
986 for (linegot, lineexpected) in zip(got, expected): |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
987 matchme = re.escape(lineexpected.strip()).replace('\\*', '.*'). \ |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
988 replace('\\ ', ' ') |
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
989 self.assert_(re.match(matchme, linegot.strip()), message) |
104 | 990 def testall(self): |
180 | 991 if self.CmdApp: |
992 lineNum = 0 | |
993 try: | |
994 line = self.transcript.next() | |
995 while True: | |
996 while not line.startswith(self.cmdapp.prompt): | |
997 line = self.transcript.next() | |
998 command = [line[len(self.cmdapp.prompt):]] | |
999 line = self.transcript.next() | |
207 | 1000 while line.startswith(self.cmdapp.continuation_prompt): |
1001 command.append(line[len(self.cmdapp.continuation_prompt):]) | |
180 | 1002 line = self.transcript.next() |
1003 command = ''.join(command) | |
1004 self.cmdapp.onecmd(command) | |
1005 result = self.outputTrap.read() | |
1006 if line.startswith(self.cmdapp.prompt): | |
181
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
1007 self.assertEqualEnough(result.strip(), '', |
180 | 1008 '\nFile %s, line %d\nCommand was:\n%s\nExpected: (nothing) \nGot:\n%s\n' % |
1009 (self.transcriptFileName, lineNum, command, result)) | |
1010 continue | |
1011 expected = [] | |
1012 while not line.startswith(self.cmdapp.prompt): | |
1013 expected.append(line) | |
1014 line = self.transcript.next() | |
1015 expected = ''.join(expected) | |
181
24eff658997b
accepts wildcards in tests, maybe?
catherine@Elli.myhome.westell.com
parents:
180
diff
changeset
|
1016 self.assertEqualEnough(expected.strip(), result.strip(), |
180 | 1017 '\nFile %s, line %d\nCommand was:\n%s\nExpected:\n%s\nGot:\n%s\n' % |
1018 (self.transcriptFileName, lineNum, command, expected, result)) | |
1019 # this needs to account for a line-by-line strip()ping | |
1020 except StopIteration: | |
1021 pass | |
1022 # catch the final output? | |
104 | 1023 def tearDown(self): |
1024 if self.CmdApp: | |
1025 self.outputTrap.tearDown() | |
1026 | |
79
f583663c610f
switch to pyparsing worked
catherine@Elli.myhome.westell.com
parents:
56
diff
changeset
|
1027 if __name__ == '__main__': |
158 | 1028 doctest.testmod(optionflags = doctest.NORMALIZE_WHITESPACE) |
1029 #c = Cmd() |