Mercurial > sqlpython
annotate sqlpyPlus.py @ 131:2b7ce838120d
experimenting with completion
author | catherine@Elli.myhome.westell.com |
---|---|
date | Wed, 27 Aug 2008 19:35:28 -0400 |
parents | 40bbe808e98a |
children | 2baecb3d5356 |
rev | line source |
---|---|
0 | 1 """sqlpyPlus - extra features (inspired by Oracle SQL*Plus) for Luca Canali's sqlpython.py |
2 | |
3 Features include: | |
4 - SQL*Plus-style bind variables | |
5 - Query result stored in special bind variable ":_" if one row, one item | |
6 - SQL buffer with list, run, ed, get, etc.; unlike SQL*Plus, buffer stores session's full history | |
7 - @script.sql loads and runs (like SQL*Plus) | |
8 - ! runs operating-system command | |
9 - show and set to control sqlpython parameters | |
10 - SQL*Plus-style describe, spool | |
11 - write sends query result directly to file | |
12 - comments shows table and column comments | |
13 - compare ... to ... graphically compares results of two queries | |
14 - commands are case-insensitive | |
80 | 15 |
0 | 16 Use 'help' within sqlpython for details. |
17 | |
18 Set bind variables the hard (SQL*Plus) way | |
19 exec :b = 3 | |
20 or with a python-like shorthand | |
21 :b = 3 | |
22 | |
23 - catherinedevlin.blogspot.com May 31, 2006 | |
24 """ | |
25 # note in cmd.cmd about supporting emacs commands? | |
26 | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
27 descQueries = { |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
28 'TABLE': (""" |
80 | 29 atc.column_name, |
30 CASE atc.nullable WHEN 'Y' THEN 'NULL' ELSE 'NOT NULL' END "Null?", | |
31 atc.data_type || | |
32 CASE atc.data_type WHEN 'DATE' THEN '' | |
33 ELSE '(' || | |
34 CASE atc.data_type WHEN 'NUMBER' THEN TO_CHAR(atc.data_precision) || | |
35 CASE atc.data_scale WHEN 0 THEN '' | |
36 ELSE ',' || TO_CHAR(atc.data_scale) END | |
37 ELSE TO_CHAR(atc.data_length) END | |
38 END || | |
39 CASE atc.data_type WHEN 'DATE' THEN '' ELSE ')' END | |
40 data_type | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
41 FROM all_tab_columns atc |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
42 WHERE atc.table_name = :object_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
43 AND atc.owner = :owner |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
44 ORDER BY atc.column_id;""",), |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
45 'PROCEDURE': (""" |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
46 NVL(argument_name, 'Return Value') argument_name, |
80 | 47 data_type, |
48 in_out, | |
49 default_value | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
50 FROM all_arguments |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
51 WHERE object_name = :object_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
52 AND owner = :owner |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
53 AND package_name IS NULL |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
54 ORDER BY sequence;""",), |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
55 'PackageObjects':(""" |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
56 SELECT DISTINCT object_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
57 FROM all_arguments |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
58 WHERE package_name = :package_name |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
59 AND owner = :owner""",), |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
60 'PackageObjArgs':(""" |
80 | 61 object_name, |
62 argument_name, | |
63 data_type, | |
64 in_out, | |
65 default_value | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
66 FROM all_arguments |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
67 WHERE package_name = :package_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
68 AND object_name = :object_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
69 AND owner = :owner |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
70 AND argument_name IS NOT NULL |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
71 ORDER BY sequence""",), |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
72 'TRIGGER':(""" |
80 | 73 description |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
74 FROM all_triggers |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
75 WHERE owner = :owner |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
76 AND trigger_name = :object_name |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
77 """, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
78 """ |
80 | 79 table_owner, |
80 base_object_type, | |
81 table_name, | |
82 column_name, | |
83 when_clause, | |
84 status, | |
85 action_type, | |
86 crossedition | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
87 FROM all_triggers |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
88 WHERE owner = :owner |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
89 AND trigger_name = :object_name |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
90 \\t |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
91 """, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
92 ), |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
93 'INDEX':(""" |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
94 index_type, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
95 table_owner, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
96 table_name, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
97 table_type, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
98 uniqueness, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
99 compression, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
100 partitioned, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
101 temporary, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
102 generated, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
103 secondary, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
104 dropped, |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
105 visibility |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
106 FROM all_indexes |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
107 WHERE owner = :owner |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
108 AND index_name = :object_name |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
109 \\t |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
110 """,) |
80 | 111 } |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
112 descQueries['VIEW'] = descQueries['TABLE'] |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
113 descQueries['FUNCTION'] = descQueries['PROCEDURE'] |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
114 |
0 | 115 queries = { |
116 'resolve': """ | |
117 SELECT object_type, object_name, owner FROM ( | |
80 | 118 SELECT object_type, object_name, user owner, 1 priority |
119 FROM user_objects | |
120 WHERE object_name = :objName | |
121 UNION ALL | |
122 SELECT ao.object_type, ao.object_name, ao.owner, 2 priority | |
123 FROM all_objects ao | |
124 JOIN user_synonyms us ON (us.table_owner = ao.owner AND us.table_name = ao.object_name) | |
125 WHERE us.synonym_name = :objName | |
126 AND ao.object_type != 'SYNONYM' | |
127 UNION ALL | |
128 SELECT ao.object_type, ao.object_name, ao.owner, 3 priority | |
129 FROM all_objects ao | |
130 JOIN all_synonyms asyn ON (asyn.table_owner = ao.owner AND asyn.table_name = ao.object_name) | |
131 WHERE asyn.synonym_name = :objName | |
132 AND ao.object_type != 'SYNONYM' | |
133 AND asyn.owner = 'PUBLIC' | |
134 UNION ALL | |
135 SELECT 'DIRECTORY' object_type, dir.directory_name, dir.owner, 6 priority | |
136 FROM all_directories dir | |
137 WHERE dir.directory_name = :objName | |
138 UNION ALL | |
139 SELECT 'DATABASE LINK' object_type, db_link, owner, 7 priority | |
140 FROM all_db_links dbl | |
141 WHERE dbl.db_link = :objName | |
127 | 142 ) ORDER BY priority ASC, |
143 length(object_type) ASC, | |
144 object_type DESC""", # preference: PACKAGE before PACKAGE BODY, TABLE before INDEX | |
0 | 145 'tabComments': """ |
146 SELECT comments | |
147 FROM all_tab_comments | |
148 WHERE owner = :owner | |
149 AND table_name = :table_name""", | |
150 'colComments': """ | |
151 atc.column_name, | |
80 | 152 acc.comments |
0 | 153 FROM all_tab_columns atc |
154 JOIN all_col_comments acc ON (atc.owner = acc.owner and atc.table_name = acc.table_name and atc.column_name = acc.column_name) | |
155 WHERE atc.table_name = :object_name | |
156 AND atc.owner = :owner | |
157 ORDER BY atc.column_id;""", | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
158 #thanks to Senora.pm for "refs" |
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
159 'refs': """ |
80 | 160 NULL referenced_by, |
161 c2.table_name references, | |
162 c1.constraint_name constraint | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
163 FROM |
80 | 164 user_constraints c1, |
165 user_constraints c2 | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
166 WHERE |
80 | 167 c1.table_name = :object_name |
168 and c1.constraint_type ='R' | |
169 and c1.r_constraint_name = c2.constraint_name | |
170 and c1.r_owner = c2.owner | |
171 and c1.owner = :owner | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
172 UNION |
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
173 SELECT c1.table_name referenced_by, |
80 | 174 NULL references, |
175 c1.constraint_name constraint | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
176 FROM |
80 | 177 user_constraints c1, |
178 user_constraints c2 | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
179 WHERE |
80 | 180 c2.table_name = :object_name |
181 and c1.constraint_type ='R' | |
182 and c1.r_constraint_name = c2.constraint_name | |
183 and c1.r_owner = c2.owner | |
184 and c1.owner = :owner | |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
185 """ |
0 | 186 } |
187 | |
39
5d29e6a21c6f
ready to package cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
34
diff
changeset
|
188 import sys, os, re, sqlpython, cx_Oracle, pyparsing |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
189 from cmd2 import Cmd, make_option, options, Statekeeper |
0 | 190 |
191 if float(sys.version[:3]) < 2.3: | |
192 def enumerate(lst): | |
193 return zip(range(len(lst)), lst) | |
80 | 194 |
0 | 195 class SoftwareSearcher(object): |
196 def __init__(self, softwareList, purpose): | |
197 self.softwareList = softwareList | |
198 self.purpose = purpose | |
199 self.software = None | |
200 def invoke(self, *args): | |
201 if not self.software: | |
202 (self.software, self.invokeString) = self.find() | |
203 argTuple = tuple([self.software] + list(args)) | |
204 os.system(self.invokeString % argTuple) | |
205 def find(self): | |
206 if self.purpose == 'text editor': | |
207 software = os.environ.get('EDITOR') | |
208 if software: | |
209 return (software, '%s %s') | |
210 for (n, (software, invokeString)) in enumerate(self.softwareList): | |
211 if os.path.exists(software): | |
212 if n > (len(self.softwareList) * 0.7): | |
213 print """ | |
80 | 214 |
215 Using %s. Note that there are better options available for %s, | |
216 but %s couldn't find a better one in your PATH. | |
217 Feel free to open up %s | |
218 and customize it to find your favorite %s program. | |
219 | |
220 """ % (software, self.purpose, __file__, __file__, self.purpose) | |
0 | 221 return (software, invokeString) |
222 stem = os.path.split(software)[1] | |
223 for p in os.environ['PATH'].split(os.pathsep): | |
224 if os.path.exists(os.sep.join([p, stem])): | |
225 return (stem, invokeString) | |
226 raise (OSError, """Could not find any %s programs. You will need to install one, | |
80 | 227 or customize %s to make it aware of yours. |
228 Looked for these programs: | |
229 %s""" % (self.purpose, __file__, "\n".join([s[0] for s in self.softwareList]))) | |
0 | 230 #v2.4: %s""" % (self.purpose, __file__, "\n".join(s[0] for s in self.softwareList))) |
231 | |
232 softwareLists = { | |
233 'diff/merge': [ | |
80 | 234 ('/usr/bin/meld',"%s %s %s"), |
235 ('/usr/bin/kdiff3',"%s %s %s"), | |
236 (r'C:\Program Files\Araxis\Araxis Merge v6.5\Merge.exe','"%s" %s %s'), | |
237 (r'C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe', '"%s" /base:"%s" /mine:"%s"'), | |
238 ('FileMerge','%s %s %s'), | |
239 ('kompare','%s %s %s'), | |
240 ('WinMerge','%s %s %s'), | |
241 ('xxdiff','%s %s %s'), | |
242 ('fldiff','%s %s %s'), | |
243 ('gtkdiff','%s %s %s'), | |
244 ('tkdiff','%s %s %s'), | |
245 ('gvimdiff','%s %s %s'), | |
246 ('diff',"%s %s %s"), | |
247 (r'c:\windows\system32\comp.exe',"%s %s %s")], | |
248 'text editor': [ | |
249 ('gedit', '%s %s'), | |
250 ('textpad', '%s %s'), | |
251 ('notepad.exe', '%s %s'), | |
252 ('pico', '%s %s'), | |
253 ('emacs', '%s %s'), | |
254 ('vim', '%s %s'), | |
255 ('vi', '%s %s'), | |
256 ('ed', '%s %s'), | |
257 ('edlin', '%s %s') | |
258 ] | |
0 | 259 } |
260 | |
261 diffMergeSearcher = SoftwareSearcher(softwareLists['diff/merge'],'diff/merge') | |
262 editSearcher = SoftwareSearcher(softwareLists['text editor'], 'text editor') | |
263 editor = os.environ.get('EDITOR') | |
264 if editor: | |
265 editSearcher.find = lambda: (editor, "%s %s") | |
266 | |
267 class CaselessDict(dict): | |
268 """dict with case-insensitive keys. | |
269 | |
270 Posted to ASPN Python Cookbook by Jeff Donner - http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66315""" | |
271 def __init__(self, other=None): | |
272 if other: | |
273 # Doesn't do keyword args | |
274 if isinstance(other, dict): | |
275 for k,v in other.items(): | |
276 dict.__setitem__(self, k.lower(), v) | |
277 else: | |
278 for k,v in other: | |
279 dict.__setitem__(self, k.lower(), v) | |
280 def __getitem__(self, key): | |
281 return dict.__getitem__(self, key.lower()) | |
282 def __setitem__(self, key, value): | |
283 dict.__setitem__(self, key.lower(), value) | |
284 def __contains__(self, key): | |
285 return dict.__contains__(self, key.lower()) | |
286 def has_key(self, key): | |
287 return dict.has_key(self, key.lower()) | |
288 def get(self, key, def_val=None): | |
289 return dict.get(self, key.lower(), def_val) | |
290 def setdefault(self, key, def_val=None): | |
291 return dict.setdefault(self, key.lower(), def_val) | |
292 def update(self, other): | |
293 for k,v in other.items(): | |
294 dict.__setitem__(self, k.lower(), v) | |
295 def fromkeys(self, iterable, value=None): | |
296 d = CaselessDict() | |
297 for k in iterable: | |
298 dict.__setitem__(d, k.lower(), value) | |
299 return d | |
300 def pop(self, key, def_val=None): | |
301 return dict.pop(self, key.lower(), def_val) | |
302 | |
303 class Parser(object): | |
304 comment_def = "--" + pyparsing.ZeroOrMore(pyparsing.CharsNotIn("\n")) | |
305 def __init__(self, scanner, retainSeparator=True): | |
306 self.scanner = scanner | |
307 self.scanner.ignore(pyparsing.sglQuotedString) | |
308 self.scanner.ignore(pyparsing.dblQuotedString) | |
309 self.scanner.ignore(self.comment_def) | |
310 self.scanner.ignore(pyparsing.cStyleComment) | |
311 self.retainSeparator = retainSeparator | |
312 def separate(self, txt): | |
313 itms = [] | |
314 for (sqlcommand, start, end) in self.scanner.scanString(txt): | |
315 if sqlcommand: | |
316 if type(sqlcommand[0]) == pyparsing.ParseResults: | |
317 if self.retainSeparator: | |
318 itms.append("".join(sqlcommand[0])) | |
319 else: | |
320 itms.append(sqlcommand[0][0]) | |
321 else: | |
322 if sqlcommand[0]: | |
323 itms.append(sqlcommand[0]) | |
324 return itms | |
325 | |
131
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
326 bindScanner = Parser(pyparsing.Literal(':') + pyparsing.Word( pyparsing.alphanums + "_$#" )) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
327 |
0 | 328 def findBinds(target, existingBinds, givenBindVars = {}): |
329 result = givenBindVars | |
330 for finding, startat, endat in bindScanner.scanner.scanString(target): | |
331 varname = finding[1] | |
332 try: | |
333 result[varname] = existingBinds[varname] | |
334 except KeyError: | |
335 if not givenBindVars.has_key(varname): | |
336 print 'Bind variable %s not defined.' % (varname) | |
337 return result | |
80 | 338 |
0 | 339 class sqlpyPlus(sqlpython.sqlpython): |
21
8b55aaa52ce9
working on load, and preserving stdin/out
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
20
diff
changeset
|
340 defaultExtension = 'sql' |
92 | 341 sqlpython.sqlpython.shortcuts.update({':': 'setbind', '\\': 'psql', '@': '_load'}) |
21
8b55aaa52ce9
working on load, and preserving stdin/out
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
20
diff
changeset
|
342 multilineCommands = '''select insert update delete tselect |
80 | 343 create drop alter'''.split() |
42
05c20d6bcec4
picking up from hiatus
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
41
diff
changeset
|
344 defaultFileName = 'afiedt.buf' |
0 | 345 def __init__(self): |
346 sqlpython.sqlpython.__init__(self) | |
347 self.binds = CaselessDict() | |
348 self.sqlBuffer = [] | |
123
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
349 self.settable = ['maxtselctrows', 'maxfetch', 'autobind', |
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
350 'failover', 'timeout', 'commit_on_exit'] # settables must be lowercase |
0 | 351 self.stdoutBeforeSpool = sys.stdout |
352 self.spoolFile = None | |
353 self.autobind = False | |
354 self.failover = False | |
355 def default(self, arg, do_everywhere=False): | |
356 sqlpython.sqlpython.default(self, arg, do_everywhere) | |
357 self.sqlBuffer.append(self.query) | |
358 | |
359 # overrides cmd's parseline | |
360 def parseline(self, line): | |
361 """Parse the line into a command name and a string containing | |
362 the arguments. Returns a tuple containing (command, args, line). | |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
363 'command' and 'args' may be None if the line couldn't be parsed. |
0 | 364 Overrides cmd.cmd.parseline to accept variety of shortcuts..""" |
80 | 365 |
41
33c9bc61db66
separation surgery successful?
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
40
diff
changeset
|
366 cmd, arg, line = sqlpython.sqlpython.parseline(self, line) |
20
d6d64c2e3b98
shortcuts
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
16
diff
changeset
|
367 if cmd in ('select', 'sleect', 'insert', 'update', 'delete', 'describe', |
80 | 368 'desc', 'comments', 'pull', 'refs', 'desc', 'triggers', 'find') \ |
369 and not hasattr(self, 'curs'): | |
0 | 370 print 'Not connected.' |
371 return '', '', '' | |
372 return cmd, arg, line | |
92 | 373 |
374 do__load = Cmd.do_load | |
80 | 375 |
7
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
376 def onecmd_plus_hooks(self, line): |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
377 line = self.precmd(line) |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
378 stop = self.onecmd(line) |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
379 stop = self.postcmd(stop, line) |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
380 |
0 | 381 def do_shortcuts(self,arg): |
382 """Lists available first-character shortcuts | |
383 (i.e. '!dir' is equivalent to 'shell dir')""" | |
384 for (scchar, scto) in self.shortcuts.items(): | |
58 | 385 print '%s: %s' % (scchar, scto) |
0 | 386 |
387 def colnames(self): | |
388 return [d[0] for d in curs.description] | |
389 | |
390 def sql_format_itm(self, itm, needsquotes): | |
391 if itm is None: | |
392 return 'NULL' | |
393 if needsquotes: | |
394 return "'%s'" % str(itm) | |
395 return str(itm) | |
105 | 396 def str_or_empty(self, itm): |
397 if itm is None: | |
398 return '' | |
399 return str(itm) | |
0 | 400 def output_as_insert_statements(self): |
401 usequotes = [d[1] != cx_Oracle.NUMBER for d in self.curs.description] | |
402 def formatRow(row): | |
403 return ','.join(self.sql_format_itm(itm, useq) | |
404 for (itm, useq) in zip(row, usequotes)) | |
405 result = ['INSERT INTO %s (%s) VALUES (%s);' % | |
406 (self.tblname, ','.join(self.colnames), formatRow(row)) | |
407 for row in self.rows] | |
408 return '\n'.join(result) | |
80 | 409 |
0 | 410 def output_row_as_xml(self, row): |
411 result = [' <%s>\n %s\n </%s>' % | |
105 | 412 (colname.lower(), self.str_or_empty(itm), colname.lower()) |
0 | 413 for (itm, colname) in zip(row, self.colnames)] |
414 return '\n'.join(result) | |
415 def output_as_xml(self): | |
416 result = ['<%s>\n%s\n</%s>' % | |
417 (self.tblname, self.output_row_as_xml(row), self.tblname) | |
418 for row in self.rows] | |
419 return '\n'.join(result) | |
111
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
420 |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
421 html_template = """<html> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
422 <head> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
423 <title py:content="tblname">Table Name</title> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
424 </head> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
425 <body> |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
426 <table py:attr="{'id':tblname}"> |
111
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
427 <tr> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
428 <th py:for="colname in colnames"> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
429 <span py:replace="colname">Column Name</span> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
430 </th> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
431 </tr> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
432 <tr py:for="row in rows"> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
433 <td py:for="itm in row"> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
434 <span py:replace="str_or_empty(itm)">Value</span> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
435 </td> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
436 </tr> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
437 </table> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
438 </body> |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
439 </html>""" |
0 | 440 def output_as_html_table(self): |
441 result = ''.join('<th>%s</th>' % c for c in self.colnames) | |
442 result = [' <tr>\n %s\n </tr>' % result] | |
443 for row in self.rows: | |
444 result.append(' <tr>\n %s\n </tr>' % | |
445 (''.join('<td>%s</td>' % | |
105 | 446 self.str_or_empty(itm) |
80 | 447 for itm in row))) |
1
8fa146b9a2d7
reworking multiline
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
0
diff
changeset
|
448 result = '''<table id="%s"> |
0 | 449 %s |
450 </table>''' % (self.tblname, '\n'.join(result)) | |
1
8fa146b9a2d7
reworking multiline
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
0
diff
changeset
|
451 return result |
111
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
452 |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
453 #TODO: use serious templating to make these user-tweakable |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
454 |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
455 def output_as_markup(self, genshi_template): |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
456 return None |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
457 #self.tblname, self.colnames, self.rows |
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
458 |
0 | 459 def output_as_list(self, align): |
460 result = [] | |
461 colnamelen = max(len(colname) for colname in self.colnames) + 1 | |
462 for (idx, row) in enumerate(self.rows): | |
463 result.append('\n**** Row: %d' % (idx+1)) | |
464 for (itm, colname) in zip(row, self.colnames): | |
465 if align: | |
466 colname = colname.ljust(colnamelen) | |
467 result.append('%s: %s' % (colname, itm)) | |
468 return '\n'.join(result) | |
469 | |
470 tableNameFinder = re.compile(r'from\s+([\w$#_"]+)', re.IGNORECASE | re.MULTILINE | re.DOTALL) | |
471 def output(self, outformat, rowlimit): | |
472 self.tblname = self.tableNameFinder.search(self.curs.statement).group(1) | |
473 self.colnames = [d[0] for d in self.curs.description] | |
474 if outformat == '\\i': | |
475 result = self.output_as_insert_statements() | |
476 elif outformat == '\\x': | |
477 result = self.output_as_xml() | |
478 elif outformat == '\\g': | |
479 result = self.output_as_list(align=False) | |
480 elif outformat == '\\G': | |
481 result = self.output_as_list(align=True) | |
482 elif outformat in ('\\s', '\\S', '\\c', '\\C'): #csv | |
483 result = [] | |
484 if outformat in ('\\s', '\\c'): | |
485 result.append(','.join('"%s"' % colname for colname in self.colnames)) | |
486 for row in self.rows: | |
106 | 487 result.append(','.join('"%s"' % self.str_or_empty(itm) for itm in row)) |
0 | 488 result = '\n'.join(result) |
489 elif outformat == '\\h': | |
490 result = self.output_as_html_table() | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
491 elif outformat == '\\t': |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
492 rows = [self.colnames] |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
493 rows.extend(list(self.rows)) |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
494 transpr = [[rows[y][x] for y in range(len(rows))]for x in range(len(rows[0]))] # matrix transpose |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
495 newdesc = [['ROW N.'+str(y),10] for y in range(len(rows))] |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
496 for x in range(len(self.curs.description)): |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
497 if str(self.curs.description[x][1]) == "<type 'cx_Oracle.BINARY'>": # handles RAW columns |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
498 rname = transpr[x][0] |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
499 transpr[x] = map(binascii.b2a_hex, transpr[x]) |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
500 transpr[x][0] = rname |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
501 newdesc[0][0] = 'COLUMN NAME' |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
502 result = '\n' + sqlpython.pmatrix(transpr,newdesc) |
0 | 503 else: |
504 result = sqlpython.pmatrix(self.rows, self.curs.description, self.maxfetch) | |
505 return result | |
80 | 506 |
42
05c20d6bcec4
picking up from hiatus
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
41
diff
changeset
|
507 legalOracle = re.compile('[a-zA-Z_$#]') |
80 | 508 |
131
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
509 def complete_select(self, text, line, begidx, endidx): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
510 completions = [] |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
511 for statement in """SELECT column_name FROM all_tab_columns WHERE column_name LIKE '%s%%' |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
512 SELECT table_name FROM all_tables WHERE table_name LIKE '%s%%' |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
513 SELECT DISTINCT owner FROM all_tables WHERE owner LIKE '%%%s'""".splitlines(): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
514 self.curs.execute(statement % text.upper()) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
515 completions.extend([r[0] for r in self.curs.fetchall()]) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
516 return completions |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
517 |
116
6e346ae994b9
beginning adaptation to new cmd2
catherine@Elli.myhome.westell.com
parents:
111
diff
changeset
|
518 rowlimitPattern = pyparsing.Word(pyparsing.nums)('rowlimit') |
119 | 519 terminatorPattern = (pyparsing.oneOf('; \\s \\S \\c \\C \\t \\x \\h') |
130
40bbe808e98a
seems to have fixed editing of hanging files
catherine@Elli.myhome.westell.com
parents:
129
diff
changeset
|
520 ^ pyparsing.Literal('\n/') ^ \ |
40bbe808e98a
seems to have fixed editing of hanging files
catherine@Elli.myhome.westell.com
parents:
129
diff
changeset
|
521 (pyparsing.Literal('\nEOF') + pyparsing.stringEnd)) \ |
40bbe808e98a
seems to have fixed editing of hanging files
catherine@Elli.myhome.westell.com
parents:
129
diff
changeset
|
522 ('terminator') + \ |
117 | 523 pyparsing.Optional(rowlimitPattern) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
524 def do_select(self, arg, bindVarsIn=None, override_terminator=None): |
0 | 525 """Fetch rows from a table. |
80 | 526 |
0 | 527 Limit the number of rows retrieved by appending |
528 an integer after the terminator | |
529 (example: SELECT * FROM mytable;10 ) | |
80 | 530 |
0 | 531 Output may be formatted by choosing an alternative terminator |
532 ("help terminators" for details) | |
533 """ | |
534 bindVarsIn = bindVarsIn or {} | |
116
6e346ae994b9
beginning adaptation to new cmd2
catherine@Elli.myhome.westell.com
parents:
111
diff
changeset
|
535 statement = self.parsed('select ' + arg) |
117 | 536 self.query = statement.unterminated |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
537 if override_terminator: |
116
6e346ae994b9
beginning adaptation to new cmd2
catherine@Elli.myhome.westell.com
parents:
111
diff
changeset
|
538 statement['terminator'] = override_terminator |
6e346ae994b9
beginning adaptation to new cmd2
catherine@Elli.myhome.westell.com
parents:
111
diff
changeset
|
539 statement['rowlimit'] = int(statement.rowlimit or 0) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
540 try: |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
541 self.varsUsed = findBinds(self.query, self.binds, bindVarsIn) |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
542 self.curs.execute(self.query, self.varsUsed) |
116
6e346ae994b9
beginning adaptation to new cmd2
catherine@Elli.myhome.westell.com
parents:
111
diff
changeset
|
543 self.rows = self.curs.fetchmany(min(self.maxfetch, (statement.rowlimit or self.maxfetch))) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
544 self.desc = self.curs.description |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
545 self.rc = self.curs.rowcount |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
546 if self.rc > 0: |
117 | 547 self.stdout.write('\n%s\n' % (self.output(statement.terminator, statement.rowlimit))) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
548 if self.rc == 0: |
47
46b7b31dc395
feedback should print, not stdout
catherine.devlin@gmail.com
parents:
46
diff
changeset
|
549 print '\nNo rows Selected.\n' |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
550 elif self.rc == 1: |
47
46b7b31dc395
feedback should print, not stdout
catherine.devlin@gmail.com
parents:
46
diff
changeset
|
551 print '\n1 row selected.\n' |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
552 if self.autobind: |
42
05c20d6bcec4
picking up from hiatus
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
41
diff
changeset
|
553 self.binds.update(dict(zip([''.join(l for l in d[0] if l.isalnum()) for d in self.desc], self.rows[0]))) |
05c20d6bcec4
picking up from hiatus
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
41
diff
changeset
|
554 if len(self.desc) == 1: |
05c20d6bcec4
picking up from hiatus
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
41
diff
changeset
|
555 self.binds['_'] = self.rows[0][0] |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
556 elif self.rc < self.maxfetch: |
47
46b7b31dc395
feedback should print, not stdout
catherine.devlin@gmail.com
parents:
46
diff
changeset
|
557 print '\n%d rows selected.\n' % self.rc |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
558 else: |
47
46b7b31dc395
feedback should print, not stdout
catherine.devlin@gmail.com
parents:
46
diff
changeset
|
559 print '\nSelected Max Num rows (%d)' % self.rc |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
560 except Exception, e: |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
561 print e |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
562 import traceback |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
563 traceback.print_exc(file=sys.stdout) |
0 | 564 self.sqlBuffer.append(self.query) |
565 | |
131
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
566 |
82 | 567 @options([make_option('-f', '--full', action='store_true', help='get dependent objects as well')]) |
81 | 568 def do_pull(self, arg, opts): |
569 """Displays source code.""" | |
80 | 570 |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
571 arg = self.parsed(arg).unterminated |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
572 object_type, owner, object_name = self.resolve(arg.upper()) |
79
01d578f4e6e7
prevent crash when pull unresolved
catherine@DellZilla.myhome.westell.com
parents:
78
diff
changeset
|
573 if not object_type: |
01d578f4e6e7
prevent crash when pull unresolved
catherine@DellZilla.myhome.westell.com
parents:
78
diff
changeset
|
574 return |
46
ad41f6a577f7
think terminators are working now
catherine.devlin@gmail.com
parents:
45
diff
changeset
|
575 self.stdout.write("%s %s.%s\n" % (object_type, owner, object_name)) |
63 | 576 self.stdout.write(str(self.curs.callfunc('DBMS_METADATA.GET_DDL', cx_Oracle.CLOB, |
80 | 577 [object_type, object_name, owner]))) |
81 | 578 if opts.full: |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
579 for dependent_type in ('OBJECT_GRANT', 'CONSTRAINT', 'TRIGGER'): |
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
580 try: |
63 | 581 self.stdout.write(str(self.curs.callfunc('DBMS_METADATA.GET_DEPENDENT_DDL', cx_Oracle.CLOB, |
80 | 582 [dependent_type, object_name, owner]))) |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
583 except cx_Oracle.DatabaseError: |
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
584 pass |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
585 |
129 | 586 @options([make_option('-a','--all',action='store_true', help='Find in all schemas (not just my own)'), |
587 make_option('-i', '--insensitive', action='store_true', help='case-insensitive search'), | |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
588 make_option('-c', '--col', action='store_true', help='find column'), |
129 | 589 make_option('-t', '--table', action='store_true', help='find table')]) |
81 | 590 def do_find(self, arg, opts): |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
591 """Finds argument in source code or (with -c) in column definitions.""" |
80 | 592 |
129 | 593 arg = self.parsed(arg).unterminated.upper() |
594 | |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
595 if opts.col: |
129 | 596 sql = "owner, table_name, column_name from all_tab_columns where column_name like '%%%s%%'" % (arg) |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
597 elif opts.table: |
129 | 598 sql = "owner, table_name from all_tables where table_name like '%%%s%%'" % (arg) |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
599 else: |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
600 if opts.insensitive: |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
601 searchfor = "LOWER(text)" |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
602 arg = arg.lower() |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
603 else: |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
604 searchfor = "text" |
129 | 605 sql = "* from all_source where %s like '%%%s%%'" % (searchfor, arg) |
606 if not opts.all: | |
607 sql = '%s and owner = user' % (sql) | |
608 self.do_select(sql) | |
80 | 609 |
83 | 610 @options([make_option('-a','--all',action='store_true', |
611 help='Describe all objects (not just my own)')]) | |
612 def do_describe(self, arg, opts): | |
0 | 613 "emulates SQL*Plus's DESCRIBE" |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
614 |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
615 arg = self.parsed(arg).unterminated.upper() |
83 | 616 if opts.all: |
617 which_view = (', owner', 'all') | |
618 else: | |
619 which_view = ('', 'user') | |
80 | 620 |
77 | 621 if not arg: |
83 | 622 self.do_select("""object_name, object_type%s FROM %s_objects WHERE object_type IN ('TABLE','VIEW','INDEX') ORDER BY object_name""" % which_view) |
77 | 623 return |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
624 object_type, owner, object_name = self.resolve(arg) |
77 | 625 if not object_type: |
87 | 626 self.do_select("""object_name, object_type%s FROM %s_objects |
627 WHERE object_type IN ('TABLE','VIEW','INDEX') | |
628 AND object_name LIKE '%%%s%%' | |
629 ORDER BY object_name""" % | |
630 (which_view[0], which_view[1], arg.upper()) ) | |
77 | 631 return |
46
ad41f6a577f7
think terminators are working now
catherine.devlin@gmail.com
parents:
45
diff
changeset
|
632 self.stdout.write("%s %s.%s\n" % (object_type, owner, object_name)) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
633 descQ = descQueries.get(object_type) |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
634 if descQ: |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
635 for q in descQ: |
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
636 self.do_select(q,bindVarsIn={'object_name':object_name, 'owner':owner}) |
0 | 637 elif object_type == 'PACKAGE': |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
638 self.curs.execute(descQueries['PackageObjects'][0], {'package_name':object_name, 'owner':owner}) |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
639 packageContents = self.curs.fetchall() |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
640 for (packageObj_name,) in packageContents: |
111
289b0a472b65
print results in describe
catherine@Elli.myhome.westell.com
parents:
109
diff
changeset
|
641 self.stdout.write(packageObj_name + '\n') |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
642 self.do_select(descQueries['PackageObjArgs'][0],bindVarsIn={'package_name':object_name, 'owner':owner, 'object_name':packageObj_name}) |
0 | 643 do_desc = do_describe |
80 | 644 |
645 def do_deps(self, arg): | |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
646 arg = self.parsed(arg).unterminated.upper() |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
647 object_type, owner, object_name = self.resolve(arg) |
80 | 648 if object_type == 'PACKAGE BODY': |
649 q = "and (type != 'PACKAGE BODY' or name != :object_name)'" | |
650 object_type = 'PACKAGE' | |
651 else: | |
652 q = "" | |
653 q = """ name, | |
654 type | |
655 from user_dependencies | |
656 where | |
657 referenced_name like :object_name | |
658 and referenced_type like :object_type | |
659 and referenced_owner like :owner | |
660 %s""" % (q) | |
661 self.do_select(q, {'object_name':object_name, 'object_type':object_type, 'owner':owner}) | |
662 | |
0 | 663 def do_comments(self, arg): |
664 'Prints comments on a table and its columns.' | |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
665 arg = self.parsed(arg).unterminated.upper() |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
666 object_type, owner, object_name = self.resolve(arg) |
0 | 667 if object_type: |
668 self.curs.execute(queries['tabComments'],{'table_name':object_name, 'owner':owner}) | |
46
ad41f6a577f7
think terminators are working now
catherine.devlin@gmail.com
parents:
45
diff
changeset
|
669 self.stdout.write("%s %s.%s: %s\n" % (object_type, owner, object_name, self.curs.fetchone()[0])) |
5
65ae6cec71c6
expanded desc good so far
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
4
diff
changeset
|
670 self.do_select(queries['colComments'],bindVarsIn={'owner':owner, 'object_name': object_name}) |
0 | 671 |
672 def resolve(self, identifier): | |
673 """Checks (my objects).name, (my synonyms).name, (public synonyms).name | |
674 to resolve a database object's name. """ | |
675 parts = identifier.split('.') | |
676 try: | |
677 if len(parts) == 2: | |
678 owner, object_name = parts | |
679 self.curs.execute('SELECT object_type FROM all_objects WHERE owner = :owner AND object_name = :object_name', | |
680 {'owner': owner, 'object_name': object_name}) | |
681 object_type = self.curs.fetchone()[0] | |
682 elif len(parts) == 1: | |
683 object_name = parts[0] | |
684 self.curs.execute(queries['resolve'], {'objName':object_name}) | |
685 object_type, object_name, owner = self.curs.fetchone() | |
686 except TypeError: | |
687 print 'Could not resolve object %s.' % identifier | |
688 object_type, owner, object_name = '', '', '' | |
689 return object_type, owner, object_name | |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
690 #todo: resolve not finding cwm$ table |
0 | 691 |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
692 def do_resolve(self, arg): |
46
ad41f6a577f7
think terminators are working now
catherine.devlin@gmail.com
parents:
45
diff
changeset
|
693 self.stdout.write(self.resolve(arg)+'\n') |
80 | 694 |
0 | 695 def spoolstop(self): |
696 if self.spoolFile: | |
88 | 697 self.stdout = self.stdoutBeforeSpool |
0 | 698 print 'Finished spooling to ', self.spoolFile.name |
699 self.spoolFile.close() | |
700 self.spoolFile = None | |
80 | 701 |
0 | 702 def do_spool(self, arg): |
703 """spool [filename] - begins redirecting output to FILENAME.""" | |
704 self.spoolstop() | |
705 arg = arg.strip() | |
706 if not arg: | |
707 arg = 'output.lst' | |
708 if arg.lower() != 'off': | |
709 if '.' not in arg: | |
710 arg = '%s.lst' % arg | |
711 print 'Sending output to %s (until SPOOL OFF received)' % (arg) | |
712 self.spoolFile = open(arg, 'w') | |
88 | 713 self.stdout = self.spoolFile |
80 | 714 |
0 | 715 def do_write(self, args): |
88 | 716 print 'Use (query) > outfilename instead.' |
717 return | |
80 | 718 |
0 | 719 def do_compare(self, args): |
720 """COMPARE query1 TO query2 - uses external tool to display differences. | |
80 | 721 |
58 | 722 Sorting is recommended to avoid false hits. |
723 Will attempt to use a graphical diff/merge tool like kdiff3, meld, or Araxis Merge, | |
724 if they are installed.""" | |
0 | 725 fnames = [] |
726 args2 = args.split(' to ') | |
88 | 727 if len(args2) < 2: |
728 print self.do_compare.__doc__ | |
729 return | |
0 | 730 for n in range(len(args2)): |
731 query = args2[n] | |
732 fnames.append('compare%s.txt' % n) | |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
733 #TODO: update this terminator-stripping |
0 | 734 if query.rstrip()[-1] != self.terminator: |
735 query = '%s%s' % (query, self.terminator) | |
88 | 736 self.onecmd_plus_hooks('%s > %s' % (query, fnames[n])) |
0 | 737 diffMergeSearcher.invoke(fnames[0], fnames[1]) |
738 | |
739 bufferPosPattern = re.compile('\d+') | |
740 rangeIndicators = ('-',':') | |
16
2776755a3a7e
beginning separation of cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
15
diff
changeset
|
741 |
0 | 742 def do_psql(self, arg): |
743 '''Shortcut commands emulating psql's backslash commands. | |
80 | 744 |
0 | 745 \c connect |
746 \d desc | |
747 \e edit | |
748 \g run | |
749 \h help | |
92 | 750 \i load |
0 | 751 \o spool |
752 \p list | |
77 | 753 \q quit |
0 | 754 \w save |
61 | 755 \db _dir_tablespaces |
756 \dd comments | |
757 \dn _dir_schemas | |
758 \dt _dir_tables | |
759 \dv _dir_views | |
760 \di _dir_indexes | |
0 | 761 \? help psql''' |
762 commands = {} | |
763 for c in self.do_psql.__doc__.splitlines()[2:]: | |
764 (abbrev, command) = c.split(None, 1) | |
765 commands[abbrev[1:]] = command | |
766 words = arg.split(None,1) | |
80 | 767 try: |
768 abbrev = words[0] | |
769 except IndexError: | |
770 return | |
0 | 771 try: |
772 args = words[1] | |
773 except IndexError: | |
774 args = '' | |
775 try: | |
77 | 776 return self.onecmd('%s %s' % (commands[abbrev], args)) |
0 | 777 except KeyError: |
61 | 778 print 'psql command \%s not yet supported.' % abbrev |
77 | 779 |
83 | 780 @options([make_option('-a','--all',action='store_true', |
781 help='Describe all objects (not just my own)')]) | |
84 | 782 def do__dir_tables(self, arg, opts): |
83 | 783 if opts.all: |
784 which_view = (', owner', 'all') | |
785 else: | |
786 which_view = ('', 'user') | |
787 self.do_select("""table_name, 'TABLE' as type%s FROM %s_tables WHERE table_name LIKE '%%%s%%'""" % | |
788 (which_view[0], which_view[1], arg.upper())) | |
80 | 789 |
83 | 790 @options([make_option('-a','--all',action='store_true', |
791 help='Describe all objects (not just my own)')]) | |
84 | 792 def do__dir_views(self, arg, opts): |
83 | 793 if opts.all: |
794 which_view = (', owner', 'all') | |
795 else: | |
796 which_view = ('', 'user') | |
797 self.do_select("""view_name, 'VIEW' as type%s FROM %s_views WHERE view_name LIKE '%%%s%%'""" % | |
798 (which_view[0], which_view[1], arg.upper())) | |
61 | 799 |
83 | 800 @options([make_option('-a','--all',action='store_true', |
801 help='Describe all objects (not just my own)')]) | |
84 | 802 def do__dir_indexes(self, arg, opts): |
83 | 803 if opts.all: |
804 which_view = (', owner', 'all') | |
805 else: | |
806 which_view = ('', 'user') | |
807 self.do_select("""index_name, index_type%s FROM %s_indexes WHERE index_name LIKE '%%%s%%' OR table_name LIKE '%%%s%%'""" % | |
808 (which_view[0], which_view[1], arg.upper(), arg.upper())) | |
61 | 809 |
810 def do__dir_tablespaces(self, arg): | |
811 self.do_select("""tablespace_name, file_name from dba_data_files""") | |
812 | |
813 def do__dir_schemas(self, arg): | |
814 self.do_select("""owner, count(*) AS objects FROM all_objects GROUP BY owner ORDER BY owner""") | |
80 | 815 |
62 | 816 def do_head(self, arg): |
817 nrows = 10 | |
818 args = arg.split() | |
819 if len(args) > 1: | |
820 for a in args: | |
821 if a[0] == '-': | |
822 try: | |
823 nrows = int(a[1:]) | |
824 args.remove(a) | |
825 except: | |
826 pass | |
827 arg = ' '.join(args) | |
828 self.do_select('* from %s;%d' % (arg, nrows)) | |
80 | 829 |
0 | 830 def do_print(self, arg): |
831 'print VARNAME: Show current value of bind variable VARNAME.' | |
832 if arg: | |
833 if arg[0] == ':': | |
834 arg = arg[1:] | |
835 try: | |
95 | 836 self.stdout.write(str(self.binds[arg])+'\n') |
0 | 837 except KeyError: |
46
ad41f6a577f7
think terminators are working now
catherine.devlin@gmail.com
parents:
45
diff
changeset
|
838 self.stdout.write('No bind variable %s\n' % arg) |
0 | 839 else: |
840 for (var, val) in self.binds.items(): | |
841 print ':%s = %s' % (var, val) | |
80 | 842 |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
843 assignmentScanner = Parser(pyparsing.Literal(':=') ^ '=') |
0 | 844 def do_setbind(self, arg): |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
845 arg = self.parsed(arg).unterminated |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
846 try: |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
847 assigner, startat, endat = self.assignmentScanner.scanner.scanString(arg).next() |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
848 except StopIteration: |
72 | 849 self.do_print(arg) |
118 | 850 return |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
851 var, val = arg[:startat].strip(), arg[endat:].strip() |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
852 if val[0] == val[-1] == "'" and len(val) > 1: |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
853 self.binds[var] = val[1:-1] |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
854 return |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
855 try: |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
856 self.binds[var] = int(val) |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
857 return |
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
858 except ValueError: |
74 | 859 try: |
122
61e2a824b66b
wow, assignment from function call working?
catherine@Elli.myhome.westell.com
parents:
121
diff
changeset
|
860 self.binds[var] = float(val) |
80 | 861 return |
74 | 862 except ValueError: |
123
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
863 statekeeper = Statekeeper(self, ('autobind',)) |
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
864 self.autobind = True |
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
865 self.do_select('%s AS %s FROM dual;' % (val, var)) |
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
866 statekeeper.restore() |
80 | 867 |
0 | 868 def do_exec(self, arg): |
869 if arg[0] == ':': | |
870 self.do_setbind(arg[1:]) | |
871 else: | |
123
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
872 arg = self.parsed(arg).unterminated |
119 | 873 varsUsed = findBinds(arg, self.binds, {}) |
71 | 874 try: |
119 | 875 self.curs.execute('begin\n%s;end;' % arg, varsUsed) |
71 | 876 except Exception, e: |
877 print e | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
878 |
123
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
879 ''' |
96 | 880 Fails: |
123
898ed97bec38
fixed bug in setting parameters
catherine@Elli.myhome.westell.com
parents:
122
diff
changeset
|
881 select n into :n from test;''' |
96 | 882 |
70 | 883 def anon_plsql(self, line1): |
884 lines = [line1] | |
885 while True: | |
886 line = self.pseudo_raw_input(self.continuationPrompt) | |
887 if line.strip() == '/': | |
888 try: | |
889 self.curs.execute('\n'.join(lines)) | |
890 except Exception, e: | |
891 print e | |
892 return | |
893 lines.append(line) | |
80 | 894 |
70 | 895 def do_begin(self, arg): |
896 self.anon_plsql('begin ' + arg) | |
897 | |
898 def do_declare(self, arg): | |
899 self.anon_plsql('declare ' + arg) | |
80 | 900 |
87 | 901 #def do_create(self, arg): |
902 # self.anon_plsql('create ' + arg) | |
78 | 903 |
119 | 904 @options([make_option('-l', '--long', action='store_true', help='long descriptions'), |
905 make_option('-a', '--all', action='store_true', help="all schemas' objects")]) | |
81 | 906 def do_ls(self, arg, opts): |
78 | 907 where = '' |
908 if arg: | |
909 where = """\nWHERE object_type || '/' || object_name | |
80 | 910 LIKE '%%%s%%'""" % (arg.upper().replace('*','%')) |
78 | 911 else: |
912 where = '' | |
119 | 913 if opts.all: |
914 owner = 'owner' | |
915 whose = 'all' | |
916 else: | |
917 owner = "'' AS owner" | |
918 whose = 'user' | |
78 | 919 result = [] |
920 statement = '''SELECT object_type, object_name, | |
119 | 921 status, last_ddl_time, %s |
922 FROM %s_objects %s | |
923 ORDER BY object_type, object_name''' % (owner, whose, where) | |
78 | 924 self.curs.execute(statement) |
119 | 925 for (object_type, object_name, status, last_ddl_time, owner) in self.curs.fetchall(): |
926 if opts.all: | |
927 qualified_name = '%s.%s' % (owner, object_name) | |
928 else: | |
929 qualified_name = object_name | |
81 | 930 if opts.long: |
119 | 931 result.append('%s\t%s\t%s/%s' % (status, last_ddl_time, object_type, qualified_name)) |
78 | 932 else: |
119 | 933 result.append('%s/%s' % (object_type, qualified_name)) |
78 | 934 self.stdout.write('\n'.join(result) + '\n') |
80 | 935 |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
936 def do_cat(self, arg): |
128 | 937 '''cat TABLENAME --> SELECT * FROM equivalent''' |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
938 targets = arg.split() |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
939 for target in targets: |
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
940 self.do_select('* from %s' % target) |
80 | 941 |
86 | 942 @options([make_option('-i', '--ignore-case', dest='ignorecase', action='store_true', help='Case-insensitive search')]) |
943 def do_grep(self, arg, opts): | |
944 """grep PATTERN TABLE - search for term in any of TABLE's fields""" | |
128 | 945 |
946 arg = self.parsed(arg) | |
947 targetnames = arg.unterminated.split() | |
948 pattern = targetnames.pop(0) | |
949 targets = [] | |
950 for target in targetnames: | |
86 | 951 if '*' in target: |
128 | 952 self.curs.execute("SELECT owner, table_name FROM all_tables WHERE table_name LIKE '%s'%s" % |
953 (target.upper().replace('*','%')), arg.terminator) | |
86 | 954 for row in self.curs: |
955 targets.append('%s.%s' % row) | |
956 else: | |
957 targets.append(target) | |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
958 for target in targets: |
86 | 959 print target |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
960 target = target.rstrip(';') |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
961 sql = [] |
7
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
962 try: |
128 | 963 self.curs.execute('select * from %s where 1=0' % target) # just to fill description |
86 | 964 if opts.ignorecase: |
965 sql = ' or '.join("LOWER(%s) LIKE '%%%s%%'" % (d[0], pattern.lower()) for d in self.curs.description) | |
966 else: | |
967 sql = ' or '.join("%s LIKE '%%%s%%'" % (d[0], pattern) for d in self.curs.description) | |
7
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
968 sql = '* FROM %s WHERE %s' % (target, sql) |
128 | 969 self.do_select('%s%s%s' % (sql, arg.terminator, arg.rowlimit)) |
7
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
970 except Exception, e: |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
971 print e |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
972 import traceback |
d44784122203
more history tweaks
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
6
diff
changeset
|
973 traceback.print_exc(file=sys.stdout) |
4
23c3a58d7804
about to strip out tselect
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
3
diff
changeset
|
974 |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
975 def do_refs(self, arg): |
121
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
976 arg = self.parsed(arg).unterminated.upper() |
3dd852ab45c0
fixing terminator stripping
catherine@Elli.myhome.westell.com
parents:
120
diff
changeset
|
977 object_type, owner, object_name = self.resolve(arg) |
40
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
978 if object_type == 'TABLE': |
1fb9f7dee7d8
tearing out cmd2
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
39
diff
changeset
|
979 self.do_select(queries['refs'],bindVarsIn={'object_name':object_name, 'owner':owner}) |
10
2ef0e2608123
reworking pull
devlinjs@FA7CZA6N1254998.wrightpatterson.afmc.ds.af.mil
parents:
8
diff
changeset
|
980 |
131
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
981 sqlStyleComment = pyparsing.Literal("--") + pyparsing.ZeroOrMore(pyparsing.CharsNotIn("\n")) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
982 keywords = {'order by': pyparsing.Keyword('order', caseless=True) + |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
983 pyparsing.Keyword('by', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
984 'select': pyparsing.Keyword('select', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
985 'from': pyparsing.Keyword('from', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
986 'having': pyparsing.Keyword('having', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
987 'update': pyparsing.Keyword('update', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
988 'set': pyparsing.Keyword('set', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
989 'delete': pyparsing.Keyword('delete', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
990 'insert into': pyparsing.Keyword('insert', caseless=True) + |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
991 pyparsing.Keyword('into', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
992 'values': pyparsing.Keyword('values', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
993 'group by': pyparsing.Keyword('group', caseless=True) + |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
994 pyparsing.Keyword('by', caseless=True), |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
995 'where': pyparsing.Keyword('where', caseless=True)} |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
996 for (name, parser) in keywords.items(): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
997 parser.ignore(pyparsing.sglQuotedString) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
998 parser.ignore(pyparsing.dblQuotedString) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
999 parser.ignore(pyparsing.cStyleComment) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1000 parser.ignore(sqlStyleComment) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1001 parser.name = name |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1002 |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1003 def orderedParseResults(parsers, statement): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1004 results = [] |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1005 for parser in parsers: |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1006 results.extend(parser.scanString(statement)) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1007 results.sort(cmp=lambda x,y:cmp(x[1],y[1])) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1008 return results |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1009 |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1010 def whichSqlPhrase(statement): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1011 results = orderedParseResults(keywords.values(), statement) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1012 if results: |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1013 return ' '.join(results[-1][0]) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1014 else: |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1015 return None |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1016 |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1017 oracleIdentifierCharacters = pyparsing.alphanums + '_#$' |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1018 def wordInProgress(statement): |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1019 result = [] |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1020 letters = list(statement) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1021 letters.reverse() |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1022 for letter in letters: |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1023 if letter not in oracleIdentifierCharacters: |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1024 result.reverse() |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1025 return ''.join(result) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1026 result.append(letter) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1027 result.reverse() |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1028 return ''.join(result) |
2b7ce838120d
experimenting with completion
catherine@Elli.myhome.westell.com
parents:
130
diff
changeset
|
1029 |
0 | 1030 def _test(): |
1031 import doctest | |
1032 doctest.testmod() | |
80 | 1033 |
0 | 1034 if __name__ == "__main__": |
1035 "Silent return implies that all unit tests succeeded. Use -v to see details." | |
109 | 1036 _test() |