annotate sqlpython/sqlpyPlus.py @ 464:26f60d5910a0

doubledashcomment moved into sqlpyPlus to define parser after local comment definition
author catherine@Drou
date Mon, 01 Mar 2010 23:26:38 -0500
parents 317c0bb8afa4
children 0be350ab306c
rev   line source
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1 """sqlpyPlus - extra features (inspired by Oracle SQL*Plus) for Luca Canali's sqlpython.py
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
2
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
3 Features include:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
4 - SQL*Plus-style bind variables
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
5 - `set autobind on` stores single-line result sets in bind variables automatically
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
6 - SQL buffer with list, run, ed, get, etc.; unlike SQL*Plus, buffer stores session's full history
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
7 - @script.sql loads and runs (like SQL*Plus)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
8 - ! runs operating-system command
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
9 - show and set to control sqlpython parameters
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
10 - SQL*Plus-style describe, spool
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
11 - write sends query result directly to file
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
12 - comments shows table and column comments
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
13 - compare ... to ... graphically compares results of two queries
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
14 - commands are case-insensitive
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
15 - context-sensitive tab-completion for table names, column names, etc.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
16
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
17 Use 'help' within sqlpython for details.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
18
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
19 Set bind variables the hard (SQL*Plus) way
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
20 exec :b = 3
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
21 or with a python-like shorthand
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
22 :b = 3
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
23
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
24 - catherinedevlin.blogspot.com May 31, 2006
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
25 """
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
26 import sys, os, re, sqlpython, pyparsing, re, completion
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
27 import datetime, pickle, binascii, subprocess, time, itertools, hashlib
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
28 import traceback, operator
464
26f60d5910a0 doubledashcomment moved into sqlpyPlus to define parser after local comment definition
catherine@Drou
parents: 463
diff changeset
29 from cmd2 import Cmd, make_option, options, Statekeeper, Cmd2TestCase, options_defined
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
30 from output_templates import output_templates
317
f200a222a936 beginning to set up metadata.py
Catherine Devlin <catherine.devlin@gmail.com>
parents: 315
diff changeset
31 from metadata import metaqueries
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
32 from plothandler import Plot
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
33 from sqlpython import Parser, cx_Oracle, psycopg2
457
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
34 try:
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
35 import psycopg2.extensions
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
36 except ImportError:
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
37 pass
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
38 import imagedetect
359
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
39 import warnings
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
40 warnings.filterwarnings('ignore', 'BaseException.message', DeprecationWarning)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
41 try:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
42 import pylab
198
b2d8bf5f89db merged with changes from work
catherine@Elli.myhome.westell.com
parents: 196
diff changeset
43 except (RuntimeError, ImportError):
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
44 pass
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
45
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
46 queries = {
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
47 'resolve': """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
48 SELECT object_type, object_name, owner FROM (
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
49 SELECT object_type, object_name, user AS owner, 1 priority
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
50 FROM user_objects
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
51 WHERE object_name = :objName
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
52 UNION ALL
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
53 SELECT ao.object_type, ao.object_name, ao.owner, 2 priority
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
54 FROM all_objects ao
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
55 JOIN user_synonyms us ON (us.table_owner = ao.owner AND us.table_name = ao.object_name)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
56 WHERE us.synonym_name = :objName
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
57 AND ao.object_type != 'SYNONYM'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
58 UNION ALL
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
59 SELECT ao.object_type, ao.object_name, ao.owner, 3 priority
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
60 FROM all_objects ao
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
61 JOIN all_synonyms asyn ON (asyn.table_owner = ao.owner AND asyn.table_name = ao.object_name)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
62 WHERE asyn.synonym_name = :objName
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
63 AND ao.object_type != 'SYNONYM'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
64 AND asyn.owner = 'PUBLIC'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
65 UNION ALL
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
66 SELECT 'DIRECTORY' object_type, dir.directory_name, dir.owner, 6 priority
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
67 FROM all_directories dir
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
68 WHERE dir.directory_name = :objName
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
69 UNION ALL
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
70 SELECT 'DATABASE LINK' object_type, db_link, owner, 7 priority
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
71 FROM all_db_links dbl
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
72 WHERE dbl.db_link = :objName
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
73 ) ORDER BY priority ASC,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
74 length(object_type) ASC,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
75 object_type DESC""", # preference: PACKAGE before PACKAGE BODY, TABLE before INDEX
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
76 'tabComments': """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
77 SELECT comments
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
78 FROM all_tab_comments
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
79 WHERE owner = :owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
80 AND table_name = :table_name""",
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
81 'colComments': """
193
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
82 SELECT
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
83 atc.column_name,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
84 acc.comments
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
85 FROM all_tab_columns atc
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
86 JOIN all_col_comments acc ON (atc.owner = acc.owner and atc.table_name = acc.table_name and atc.column_name = acc.column_name)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
87 WHERE atc.table_name = :object_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
88 AND atc.owner = :owner
193
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
89 ORDER BY atc.column_id;""",
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
90 'oneColComments': """
371
e0750f7967d7 prevent die on logon failure
catherine@cordelia
parents: 370
diff changeset
91 SELECT atc.column_name,
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
92 acc.comments
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
93 FROM all_tab_columns atc
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
94 JOIN all_col_comments acc ON (atc.owner = acc.owner and atc.table_name = acc.table_name and atc.column_name = acc.column_name)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
95 WHERE atc.table_name = :object_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
96 AND atc.owner = :owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
97 AND acc.column_name = :column_name
193
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
98 ORDER BY atc.column_id;""",
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
99 #thanks to Senora.pm for "refs"
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
100 'refs': """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
101 NULL referenced_by,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
102 c2.table_name references,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
103 c1.constraint_name constraint
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
104 FROM
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
105 user_constraints c1,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
106 user_constraints c2
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
107 WHERE
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
108 c1.table_name = :object_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
109 and c1.constraint_type ='R'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
110 and c1.r_constraint_name = c2.constraint_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
111 and c1.r_owner = c2.owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
112 and c1.owner = :owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
113 UNION
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
114 SELECT c1.table_name referenced_by,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
115 NULL references,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
116 c1.constraint_name constraint
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
117 FROM
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
118 user_constraints c1,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
119 user_constraints c2
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
120 WHERE
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
121 c2.table_name = :object_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
122 and c1.constraint_type ='R'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
123 and c1.r_constraint_name = c2.constraint_name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
124 and c1.r_owner = c2.owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
125 and c1.owner = :owner
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
126 """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
127 }
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
128
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
129 class SoftwareSearcher(object):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
130 def __init__(self, softwareList, purpose):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
131 self.softwareList = softwareList
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
132 self.purpose = purpose
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
133 self.software = None
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
134 def invoke(self, *args):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
135 if not self.software:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
136 (self.software, self.invokeString) = self.find()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
137 argTuple = tuple([self.software] + list(args))
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
138 os.system(self.invokeString % argTuple)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
139 def find(self):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
140 if self.purpose == 'text editor':
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
141 software = os.environ.get('EDITOR')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
142 if software:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
143 return (software, '%s %s')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
144 for (n, (software, invokeString)) in enumerate(self.softwareList):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
145 if os.path.exists(software):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
146 if n > (len(self.softwareList) * 0.7):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
147 print """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
148
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
149 Using %s. Note that there are better options available for %s,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
150 but %s couldn't find a better one in your PATH.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
151 Feel free to open up %s
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
152 and customize it to find your favorite %s program.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
153
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
154 """ % (software, self.purpose, __file__, __file__, self.purpose)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
155 return (software, invokeString)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
156 stem = os.path.split(software)[1]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
157 for p in os.environ['PATH'].split(os.pathsep):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
158 if os.path.exists(os.sep.join([p, stem])):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
159 return (stem, invokeString)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
160 raise (OSError, """Could not find any %s programs. You will need to install one,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
161 or customize %s to make it aware of yours.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
162 Looked for these programs:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
163 %s""" % (self.purpose, __file__, "\n".join([s[0] for s in self.softwareList])))
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
164
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
165 softwareLists = {
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
166 'diff/merge': [
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
167 ('/usr/bin/meld',"%s %s %s"),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
168 ('/usr/bin/kdiff3',"%s %s %s"),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
169 (r'C:\Program Files\Araxis\Araxis Merge v6.5\Merge.exe','"%s" %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
170 (r'C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe', '"%s" /base:"%s" /mine:"%s"'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
171 ('FileMerge','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
172 ('kompare','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
173 ('WinMerge','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
174 ('xxdiff','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
175 ('fldiff','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
176 ('gtkdiff','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
177 ('tkdiff','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
178 ('gvimdiff','%s %s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
179 ('diff',"%s %s %s"),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
180 (r'c:\windows\system32\comp.exe',"%s %s %s")],
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
181 'text editor': [
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
182 ('gedit', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
183 ('textpad', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
184 ('notepad.exe', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
185 ('pico', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
186 ('emacs', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
187 ('vim', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
188 ('vi', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
189 ('ed', '%s %s'),
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
190 ('edlin', '%s %s')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
191 ]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
192 }
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
193
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
194 diffMergeSearcher = SoftwareSearcher(softwareLists['diff/merge'],'diff/merge')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
195 editSearcher = SoftwareSearcher(softwareLists['text editor'], 'text editor')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
196 editor = os.environ.get('EDITOR')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
197 if editor:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
198 editSearcher.find = lambda: (editor, "%s %s")
394
58e6d66794b0 refactoring _matching_database_objects to return MetaData
catherine@DellZilla
parents: 393
diff changeset
199
58e6d66794b0 refactoring _matching_database_objects to return MetaData
catherine@DellZilla
parents: 393
diff changeset
200
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
201 class CaselessDict(dict):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
202 """dict with case-insensitive keys.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
203
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
204 Posted to ASPN Python Cookbook by Jeff Donner - http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66315"""
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
205 def __init__(self, other=None):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
206 if other:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
207 # Doesn't do keyword args
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
208 if isinstance(other, dict):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
209 for k,v in other.items():
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
210 dict.__setitem__(self, k.lower(), v)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
211 else:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
212 for k,v in other:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
213 dict.__setitem__(self, k.lower(), v)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
214 def __getitem__(self, key):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
215 return dict.__getitem__(self, key.lower())
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
216 def __setitem__(self, key, value):
273
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
217 try:
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
218 key = key.lower()
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
219 except AttributeError:
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
220 pass
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
221 dict.__setitem__(self, key, value)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
222 def __contains__(self, key):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
223 return dict.__contains__(self, key.lower())
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
224 def has_key(self, key):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
225 return dict.has_key(self, key.lower())
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
226 def get(self, key, def_val=None):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
227 return dict.get(self, key.lower(), def_val)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
228 def setdefault(self, key, def_val=None):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
229 return dict.setdefault(self, key.lower(), def_val)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
230 def update(self, other):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
231 for k,v in other.items():
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
232 dict.__setitem__(self, k.lower(), v)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
233 def fromkeys(self, iterable, value=None):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
234 d = CaselessDict()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
235 for k in iterable:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
236 dict.__setitem__(d, k.lower(), value)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
237 return d
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
238 def pop(self, key, def_val=None):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
239 return dict.pop(self, key.lower(), def_val)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
240
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
241 class ResultSet(list):
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
242 pass
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
243
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
244 class Result(tuple):
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
245 def __str__(self):
272
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
246 return '\n'.join('%s: %s' % (colname, self[idx])
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
247 for (idx, colname) in enumerate(self.resultset.colnames))
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
248 def __getattr__(self, attr):
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
249 attr = attr.lower()
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
250 try:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
251 return self[self.resultset.colnames.index(attr)]
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
252 except ValueError:
307
e804c08292b3 several bugs out
catherine@dellzilla
parents: 306
diff changeset
253 if attr in ('colnames', 'statement', 'bindvars', 'resultset'):
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
254 return getattr(self.resultset, attr)
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
255 else:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
256 raise AttributeError, "available columns are: " + ", ".join(self.resultset.colnames)
273
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
257 def bind(self):
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
258 for (idx, colname) in enumerate(self.resultset.colnames):
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
259 self.resultset.pystate['binds'][colname] = self[idx]
277
6ffe31149306 now passing tests
catherine@Elli.myhome.westell.com
parents: 275
diff changeset
260 self.resultset.pystate['binds'][str(idx+1)] = self[idx]
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
261
288
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
262 def centeredSlice(lst, center=0, width=1):
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
263 width = max(width, -1)
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
264 if center < 0:
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
265 end = center + width + 1
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
266 if end >= 0:
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
267 end = None
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
268 return lst[center-width:end]
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
269 else:
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
270 return lst[max(center-width,0):center+width+1]
e7578e7ff9dd sliced pull almost working...
catherine@dellzilla
parents: 286
diff changeset
271
360
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
272
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
273 def offset_to_line(instring, offset):
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
274 r"""
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
275 >>> offset_to_line('abcdefghijkl', 5)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
276 (0, 'abcdefghijkl', 5)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
277 >>> offset_to_line('ab\ncd\nefg', 6)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
278 (2, 'efg', 0)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
279 >>> offset_to_line('ab\ncd\nefg', 5)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
280 (1, 'cd\n', 2)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
281 >>> offset_to_line('abcdefghi\njkl', 5)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
282 (0, 'abcdefghi\n', 5)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
283 >>> offset_to_line('abcdefghi\njkl', 700)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
284
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
285 """
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
286 lineNum = 0
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
287 for line in instring.splitlines(True):
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
288 if offset < len(line):
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
289 return lineNum, line, offset
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
290 lineNum += 1
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
291 offset -= len(line)
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
292
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
293 class BlobDisplayer(object):
366
39a88f53a03a saving pics as hashes
catherine@cordelia
parents: 364
diff changeset
294 folder_name = 'sqlpython_blob_store'
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
295 imgwidth = 400
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
296 def folder_ok(self):
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
297 if not os.access(self.folder_name, os.F_OK):
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
298 try:
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
299 os.mkdir(self.folder_name)
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
300 readme = open(os.path.join(self.folder_name, 'README.txt'),'w')
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
301 readme.write('''
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
302 Temporary files for display of BLOBs from within
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
303 sqlpython. Delete when sqlpython is closed.''')
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
304 readme.close()
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
305 except:
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
306 return False
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
307 return True
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
308 def __init__(self, blob, under_limit):
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
309 self.url = ''
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
310 if under_limit:
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
311 self.blob = blob.read()
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
312 self.hashed = hashlib.md5(self.blob).hexdigest()
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
313 self.extension = imagedetect.extension_from_data(self.blob)
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
314 if self.folder_ok():
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
315 self.file_name = '%s/%s%s' % (
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
316 os.path.join(os.getcwd(), self.folder_name),
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
317 self.hashed, self.extension)
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
318 self.url = 'file://%s' % self.file_name
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
319 if not os.access(self.file_name, os.F_OK):
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
320 outfile = open(self.file_name, 'wb')
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
321 outfile.write(self.blob)
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
322 outfile.close()
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
323 def __str__(self):
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
324 if self.url:
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
325 return '(BLOB at %s)' % self.url
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
326 else:
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
327 return '(BLOB)'
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
328 def html(self):
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
329 if self.url:
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
330 return '<a href="%s"><img src="%s" width="%d" /></a>' % (
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
331 self.url, self.url, self.imgwidth)
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
332 else:
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
333 return '(BLOB not saved, check bloblimit)'
457
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
334
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
335 class BlobDisplayer_postgresql(BlobDisplayer):
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
336 imgwidth = 400
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
337 def __init__(self, blob_oid, under_limit, sqlpython_instance):
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
338 self.url = ''
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
339 if under_limit:
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
340 if self.folder_ok():
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
341 self.lobject = psycopg2.extensions.lobject(conn=sqlpython_instance.current_instance.connection, oid=blob_oid)
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
342 self.blob = self.lobject.read()
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
343 self.extension = imagedetect.extension_from_data(self.blob)
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
344 self.file_name = '%s/%d%s' % (
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
345 os.path.join(os.getcwd(), self.folder_name),
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
346 blob_oid, self.extension)
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
347 self.url = 'file://%s' % self.file_name
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
348 self.lobject.export(self.file_name)
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
349 self.lobject.close()
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
350
407
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
351 class Abbreviatable_List(list):
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
352 def match(self, target):
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
353 target = target.lower()
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
354 result = [i for i in self if i.startswith(target)]
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
355 if len(result) == 0:
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
356 raise ValueError, 'None of %s start with %s' % (str(self), target)
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
357 elif len(result) > 1:
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
358 raise ValueError, 'Too many matches: %s' % str(result)
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
359 return result[0]
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
360
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
361 class sqlpyPlus(sqlpython.sqlpython):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
362 defaultExtension = 'sql'
289
3cade02da892 replacing manual abbreviations with abbrev param
catherine@Elli.myhome.westell.com
parents: 285
diff changeset
363 abbrev = True
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
364 sqlpython.sqlpython.shortcuts.update({':': 'setbind',
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
365 '\\': 'psql',
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
366 '@': 'get'})
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
367 multilineCommands = '''select insert update delete tselect
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
368 create drop alter _multiline_comment'''.split()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
369 sqlpython.sqlpython.noSpecialParse.append('spool')
428
6cd30b785885 continuing connection transition
catherine@dellzilla
parents: 425
diff changeset
370 prefixParser = pyparsing.Optional(pyparsing.Word(pyparsing.nums)('instance_number')
259
c0847a4c7f49 one-shot connection changes
catherine@Elli.myhome.westell.com
parents: 257
diff changeset
371 + ':')
309
0d16630d8e04 added table comment to desc -l
catherine@Elli.myhome.westell.com
parents: 308
diff changeset
372 reserved_words = [
0d16630d8e04 added table comment to desc -l
catherine@Elli.myhome.westell.com
parents: 308
diff changeset
373 'alter', 'begin', 'comment', 'create', 'delete', 'drop', 'end', 'for', 'grant',
0d16630d8e04 added table comment to desc -l
catherine@Elli.myhome.westell.com
parents: 308
diff changeset
374 'insert', 'intersect', 'lock', 'minus', 'on', 'order', 'rename',
0d16630d8e04 added table comment to desc -l
catherine@Elli.myhome.westell.com
parents: 308
diff changeset
375 'resource', 'revoke', 'select', 'share', 'start', 'union', 'update',
0d16630d8e04 added table comment to desc -l
catherine@Elli.myhome.westell.com
parents: 308
diff changeset
376 'where', 'with']
247
f0f293d83337 begin docs
catherine@dellzilla
parents: 246
diff changeset
377 default_file_name = 'afiedt.buf'
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
378 settable = sqlpython.sqlpython.settable + '''
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
379 autobind Always fill bind variables from final row
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
380 bloblimit Max # of BLOBs to copy to disk for each query
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
381 colors colorize query results (*nix only)
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
382 commit_on_exit automatically COMMIT when exiting program
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
383 default_rdbms
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
384 maxfetch limit # of rows fetched
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
385 maxtselctrows max # rows in transposed results
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
386 rows_remembered # rows stored in ``r`` for python access
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
387 scan interpolate substitution variables
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
388 serveroutput send dbms_output.put_line to screen (Oracle)
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
389 sql_echo echo SQL commands
416
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
390 timeout
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
391 heading
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
392 wildsql Accept wildcards, position #s in column names
449
63b9db1814e0 tweak to settable
catherine@dellzilla
parents: 446
diff changeset
393 version'''
463
317c0bb8afa4 restrict commands by rdbms
cat@eee
parents: 461
diff changeset
394
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
395 def __init__(self):
464
26f60d5910a0 doubledashcomment moved into sqlpyPlus to define parser after local comment definition
catherine@Drou
parents: 463
diff changeset
396 # override commentGrammars before top-level __init__, or they won't affect self.parser
26f60d5910a0 doubledashcomment moved into sqlpyPlus to define parser after local comment definition
catherine@Drou
parents: 463
diff changeset
397 self.doubleDashComment = pyparsing.NotAny(pyparsing.Or(options_defined)) + pyparsing.Literal('--') + pyparsing.restOfLine
26f60d5910a0 doubledashcomment moved into sqlpyPlus to define parser after local comment definition
catherine@Drou
parents: 463
diff changeset
398 self.commentGrammars = pyparsing.Or([pyparsing.cStyleComment, self.doubleDashComment])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
399 sqlpython.sqlpython.__init__(self)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
400 self.binds = CaselessDict()
451
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
401 if self.settable.has_key('case_insensitive'):
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
402 self.settable.pop('case_insensitive')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
403 self.stdoutBeforeSpool = sys.stdout
249
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
404 self.sql_echo = False
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
405 self.spoolFile = None
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
406 self.autobind = False
229
411f78dc1e07 accept SET HEADING
catherine@dellzilla
parents: 228
diff changeset
407 self.heading = True
240
6d9a65b442b5 negative wildcards fixed
catherine@Elli.myhome.westell.com
parents: 239
diff changeset
408 self.wildsql = False
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
409 self.serveroutput = True
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
410 self.scan = True
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
411 self.substvars = {}
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
412 self.result_history = []
330
8dd71d47f3cb merged with rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 329 328
diff changeset
413 self.rows_remembered = 10000
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
414 self.bloblimit = 5
407
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
415 self.default_rdbms = 'oracle'
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
416 self.rdbms_supported = Abbreviatable_List('oracle postgres mysql'.split())
370
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
417 self.version = 'SQLPython %s' % sqlpython.__version__
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
418 self.pystate = {'r': [], 'binds': self.binds, 'substs': self.substvars}
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
419
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
420 # overrides cmd's parseline
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
421 def parseline(self, line):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
422 """Parse the line into a command name and a string containing
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
423 the arguments. Returns a tuple containing (command, args, line).
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
424 'command' and 'args' may be None if the line couldn't be parsed.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
425 Overrides cmd.cmd.parseline to accept variety of shortcuts.."""
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
426
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
427 cmd, arg, line = sqlpython.sqlpython.parseline(self, line)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
428 if cmd in ('select', 'sleect', 'insert', 'update', 'delete', 'describe',
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
429 'desc', 'comments', 'pull', 'refs', 'desc', 'triggers', 'find') \
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
430 and not hasattr(self, 'curs'):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
431 self.perror('Not connected.')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
432 return '', '', ''
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
433 return cmd, arg, line
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
434
359
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
435 def perror(self, err, statement=None):
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
436 if self.debug:
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
437 traceback.print_exc()
359
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
438 try:
360
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
439 linenum, line, offset = offset_to_line(statement.parsed.raw, err.message.offset)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
440 print line.strip()
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
441 print '%s*' % (' ' * offset)
692ce3ee80d2 error location reporting working
catherine@cordelia
parents: 359
diff changeset
442 print 'ERROR at line %d:' % (linenum + 1)
359
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
443 except AttributeError:
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
444 pass
359
f42f92dc7464 silencing baseexception warnings
catherine@cordelia
parents: 357
diff changeset
445 print str(err)
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
446 def dbms_output(self):
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
447 "Dumps contents of Oracle's DBMS_OUTPUT buffer (where PUT_LINE goes)"
261
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
448 try:
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
449 line = self.curs.var(cx_Oracle.STRING) # TODO: would regular string and number work?
261
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
450 status = self.curs.var(cx_Oracle.NUMBER)
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
451 self.curs.callproc('dbms_output.get_line', [line, status])
261
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
452 while not status.getvalue():
356
c86177642f75 replacing stdout with poutput; no bracketing partial pulls with remarks
catherine@cordelia
parents: 355
diff changeset
453 self.poutput(line.getvalue())
c86177642f75 replacing stdout with poutput; no bracketing partial pulls with remarks
catherine@cordelia
parents: 355
diff changeset
454 self.poutput('\n')
261
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
455 self.curs.callproc('dbms_output.get_line', [line, status])
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
456 except AttributeError:
0044cfa5867a disconnections worked out
catherine@dellzilla
parents: 259
diff changeset
457 pass
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
458
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
459 def postcmd(self, stop, line):
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
460 """Hook method executed just after a command dispatch is finished."""
371
e0750f7967d7 prevent die on logon failure
catherine@cordelia
parents: 370
diff changeset
461 if ( hasattr(self, 'rdbms')
e0750f7967d7 prevent die on logon failure
catherine@cordelia
parents: 370
diff changeset
462 and (self.rdbms == 'oracle')
e0750f7967d7 prevent die on logon failure
catherine@cordelia
parents: 370
diff changeset
463 and self.serveroutput):
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
464 self.dbms_output()
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
465 return stop
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
466
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
467 def do_remark(self, line):
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
468 '''
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
469 REMARK is one way to denote a comment in SQL*Plus.
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
470
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
471 Wrapping a *single* SQL or PL/SQL statement in `REMARK BEGIN` and `REMARK END`
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
472 tells sqlpython to submit the enclosed code directly to Oracle as a single
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
473 unit of code.
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
474
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
475 Without these markers, sqlpython fails to properly distinguish the beginning
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
476 and end of all but the simplest PL/SQL blocks, causing errors. sqlpython also
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
477 slows down when parsing long SQL statements as it tries to determine whether
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
478 the statement has ended yet; `REMARK BEGIN` and `REMARK END` allow it to skip this
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
479 parsing.
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
480
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
481 Standard SQL*Plus interprets REMARK BEGIN and REMARK END as comments, so it is
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
482 safe to include them in SQL*Plus scripts.
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
483 '''
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
484 if not line.lower().strip().startswith('begin'):
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
485 return
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
486 statement = []
247
f0f293d83337 begin docs
catherine@dellzilla
parents: 246
diff changeset
487 next = self.pseudo_raw_input(self.continuation_prompt)
245
05c90f80815c trying REMARK BEGIN / REMARK END
catherine@Elli.myhome.westell.com
parents: 244
diff changeset
488 while next.lower().split()[:2] != ['remark','end']:
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
489 statement.append(next)
247
f0f293d83337 begin docs
catherine@dellzilla
parents: 246
diff changeset
490 next = self.pseudo_raw_input(self.continuation_prompt)
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
491 return self.onecmd_plus_hooks('\n'.join(statement))
272
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
492
292
d727f209acf9 py really working right now
catherine@dellzilla
parents: 291
diff changeset
493 def do_py(self, arg):
272
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
494 '''
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
495 py <command>: Executes a Python command.
297
f4e8919c5cdf adjust docstring for windows
catherine@dellzilla
parents: 296
diff changeset
496 py: Enters interactive Python mode.
f4e8919c5cdf adjust docstring for windows
catherine@dellzilla
parents: 296
diff changeset
497 End with `Ctrl-D` (Unix) / `Ctrl-Z` (Windows), `quit()`, 'exit()`.
292
d727f209acf9 py really working right now
catherine@dellzilla
parents: 291
diff changeset
498 Past SELECT results are exposed as list `r`;
275
df78546969c9 spacing change in py doc
catherine@Elli.myhome.westell.com
parents: 274
diff changeset
499 most recent resultset is `r[-1]`.
292
d727f209acf9 py really working right now
catherine@dellzilla
parents: 291
diff changeset
500 SQL bind, substitution variables are exposed as `binds`, `substs`.
296
ba5d5483e0db shortened docstring to avoid word wrap
catherine@dellzilla
parents: 293
diff changeset
501 SQL and sqlpython commands can be issued with `sql("your command")`.
459
77ec18c38ff8 prepare to release 1.7.0
cat@eee
parents: 457
diff changeset
502 Run python code from external files with ``run("filename.py")``
272
fee766daa57b yay py works fully
catherine@Elli.myhome.westell.com
parents: 271
diff changeset
503 '''
292
d727f209acf9 py really working right now
catherine@dellzilla
parents: 291
diff changeset
504 return Cmd.do_py(self, arg)
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
505
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
506 def do_get(self, args):
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
507 """
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
508 `get {script.sql}` or `@{script.sql}` runs the command(s) in {script.sql}.
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
509 If additional arguments are supplied, they are assigned to &1, &2, etc.
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
510 """
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
511 fname, args = args.split()[0], args.split()[1:]
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
512 for (idx, arg) in enumerate(args):
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
513 self.substvars[str(idx+1)] = arg
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
514 return Cmd.do__load(self, fname)
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
515
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
516 def _onchange_serveroutput(self, old, new):
317
f200a222a936 beginning to set up metadata.py
Catherine Devlin <catherine.devlin@gmail.com>
parents: 315
diff changeset
517 if (self.rdbms == 'oracle'):
315
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
518 if new:
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
519 self.curs.callproc('dbms_output.enable', [])
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
520 else:
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
521 self.curs.callproc('dbms_output.disable', [])
257
6d4d90fb2082 dbms_output.put_line working
catherine@Elli.myhome.westell.com
parents: 254
diff changeset
522
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
523 def do_shortcuts(self,arg):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
524 """Lists available first-character shortcuts
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
525 (i.e. '!dir' is equivalent to 'shell dir')"""
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
526 for (scchar, scto) in self.shortcuts:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
527 self.poutput('%s: %s' % (scchar, scto))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
528
254
b61e21386383 oops, restore lines of code after sql_format_item
catherine@Elli.myhome.westell.com
parents: 253
diff changeset
529 tableNameFinder = re.compile(r'from\s+([\w$#_"]+)', re.IGNORECASE | re.MULTILINE | re.DOTALL)
322
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
530 def formattedForSql(self, datum):
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
531 if datum is None:
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
532 return 'NULL'
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
533 elif isinstance(datum, basestring):
334
1e199ea5b846 fixed single-quote inclusion
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
534 return "'%s'" % datum.replace("'","''")
322
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
535 try:
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
536 return datum.strftime("TO_DATE('%Y-%m-%d %H:%M:%S', 'YYYY-MM-DD HH24:MI:SS')")
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
537 except AttributeError:
334
1e199ea5b846 fixed single-quote inclusion
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
538 return str(datum)
322
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
539
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
540 def tabular_output(self, outformat, tblname=None):
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
541 if tblname:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
542 self.tblname = tblname
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
543 else:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
544 try:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
545 self.tblname = self.tableNameFinder.search(self.querytext).group(1)
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
546 except AttributeError:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
547 self.tblname = ''
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
548 if outformat in output_templates:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
549 self.colnamelen = max(len(colname) for colname in self.colnames)
322
d791333902f7 handle NULLs and apostrophes in \i inserts
Catherine Devlin <catherine.devlin@gmail.com>
parents: 318
diff changeset
550 result = output_templates[outformat].generate(formattedForSql=self.formattedForSql, **self.__dict__)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
551 elif outformat == '\\t': # transposed
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
552 rows = [self.colnames]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
553 rows.extend(list(self.rows))
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
554 transpr = [[rows[y][x] for y in range(len(rows))]for x in range(len(rows[0]))] # matrix transpose
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
555 newdesc = [['ROW N.'+str(y),10] for y in range(len(rows))]
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
556 for x in range(len(self.coltypes)):
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
557 if str(self.coltypes[x]) == "<type 'cx_Oracle.BINARY'>": # handles RAW columns
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
558 rname = transpr[x][0]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
559 transpr[x] = map(binascii.b2a_hex, transpr[x])
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
560 transpr[x][0] = rname
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
561 self.colnames = ['ROW N.%d' % y for y in range(len(rows))]
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
562 self.colnames[0] = 'COLUMN NAME'
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
563 self.coltypes = [str] * len(self.colnames)
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
564 result = '\n' + self.pmatrix(transpr)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
565 elif outformat in ('\\l', '\\L', '\\p', '\\b'):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
566 plot = Plot()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
567 plot.build(self, outformat)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
568 plot.shelve()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
569 plot.draw()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
570 return ''
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
571 else:
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
572 result = self.pmatrix(self.rows,
337
Catherine Devlin <catherine.devlin@gmail.com>
parents: 333
diff changeset
573 self.maxfetch, heading=self.heading,
Catherine Devlin <catherine.devlin@gmail.com>
parents: 333
diff changeset
574 restructuredtext = (outformat == '\\r'))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
575 return result
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
576
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
577 legalOracle = re.compile('[a-zA-Z_$#]')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
578
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
579 def select_scalar_list(self, sql, binds={}):
249
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
580 self._execute(sql, binds)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
581 return [r[0] for r in self.curs.fetchall()]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
582
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
583 columnNameRegex = re.compile(
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
584 r'select\s+(.*)from',
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
585 re.IGNORECASE | re.DOTALL | re.MULTILINE)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
586 def completedefault(self, text, line, begidx, endidx):
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
587 (username, gerald_schema) = self.metadata()
419
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
588 segment = completion.whichSegment(line)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
589 text = text.upper()
406
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
590 if segment in ('select', 'where', 'having', 'set', 'order by', 'group by'):
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
591 completions = [c for c in schemas[username].column_names if c.startswith(text)] \
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
592 or [c for c in schemas.qual_column_names if c.startswith(text)]
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
593 # TODO: the latter not working
406
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
594 elif segment in ('from', 'update', 'insert into'):
419
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
595 # print schemas[username].table_names
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
596 # TODO: from postgres, these table names are jrrt.fishies, etc.
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
597 completions = [t for t in schemas[username].table_names if t.startswith(text)]
406
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
598 elif segment == 'beginning':
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
599 completions = [n for n in self.get_names() if n.startswith('do_')] + [
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
600 'insert', 'update', 'delete', 'drop', 'alter', 'begin', 'declare', 'create']
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
601 completions = [c for c in completions if c.startswith(text)]
407
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
602 elif segment:
188c86d4a11e struggling with option parsing
catherine@DellZilla
parents: 406
diff changeset
603 completions = [t for t in schemas[username].table_names if t.startswith(text)]
406
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
604 else:
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
605 completions = [r for r in completion.reserved if r.startswith(text)]
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
606 return completions
406
4b481c4293b8 beginning completions not working
catherine@cordelia
parents: 405
diff changeset
607
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
608 columnlistPattern = pyparsing.SkipTo(pyparsing.CaselessKeyword('from'))('columns') + \
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
609 pyparsing.SkipTo(pyparsing.stringEnd)('remainder')
233
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
610
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
611 negator = pyparsing.Literal('!')('exclude')
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
612 colNumber = pyparsing.Optional(negator) + pyparsing.Literal('#') + pyparsing.Word('-' + pyparsing.nums, pyparsing.nums)('column_number')
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
613 colName = negator + pyparsing.Word('$_#' + pyparsing.alphas, '$_#' + pyparsing.alphanums)('column_name')
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
614 wildColName = pyparsing.Optional(negator) + pyparsing.Word('?*%$_#' + pyparsing.alphas, '?*%$_#' + pyparsing.alphanums, min=2)('column_name')
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
615 colNumber.ignore(pyparsing.cStyleComment).ignore(Parser.comment_def). \
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
616 ignore(pyparsing.sglQuotedString).ignore(pyparsing.dblQuotedString)
235
8e5f58d504d4 tightening up wildcard pyparsing
catherine@dellzilla
parents: 234
diff changeset
617 wildSqlParser = colNumber ^ colName ^ wildColName
8e5f58d504d4 tightening up wildcard pyparsing
catherine@dellzilla
parents: 234
diff changeset
618 wildSqlParser.ignore(pyparsing.cStyleComment).ignore(Parser.comment_def). \
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
619 ignore(pyparsing.sglQuotedString).ignore(pyparsing.dblQuotedString)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
620 emptyCommaRegex = re.compile(',\s*,', re.DOTALL)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
621 deadStarterCommaRegex = re.compile('^\s*,', re.DOTALL)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
622 deadEnderCommaRegex = re.compile(',\s*$', re.DOTALL)
233
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
623 def expandWildSql(self, arg):
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
624 try:
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
625 columnlist = self.columnlistPattern.parseString(arg)
233
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
626 except pyparsing.ParseException:
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
627 return arg
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
628 parseresults = list(self.wildSqlParser.scanString(columnlist.columns))
239
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
629 # I would rather exclude non-wild column names in the grammar,
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
630 # but can't figure out how
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
631 parseresults = [p for p in parseresults if
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
632 p[0].column_number or
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
633 '*' in p[0].column_name or
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
634 '%' in p[0].column_name or
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
635 '?' in p[0].column_name or
239
4c563c2218e6 catching standard names caught
catherine@Elli.myhome.westell.com
parents: 238
diff changeset
636 p[0].exclude]
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
637 if not parseresults:
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
638 return arg
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
639 self.curs.execute('select * ' + columnlist.remainder, self.varsUsed)
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
640 columns_available = [d[0] for d in self.curs.description]
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
641 replacers = {}
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
642 included = set()
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
643 excluded = set()
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
644 for (col, startpos, endpos) in parseresults:
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
645 replacers[arg[startpos:endpos]] = []
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
646 if col.column_name:
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
647 finder = col.column_name.replace('*','.*')
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
648 finder = finder.replace('%','.*')
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
649 finder = finder.replace('?','.')
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
650 colnames = [c for c in columns_available if re.match(finder + '$', c, re.IGNORECASE)]
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
651 elif col.column_number:
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
652 idx = int(col.column_number)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
653 if idx > 0:
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
654 idx -= 1
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
655 colnames = [columns_available[idx]]
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
656 if not colnames:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
657 self.pfeedback('No columns found matching criteria.')
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
658 return 'null from dual'
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
659 for colname in colnames:
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
660 if col.exclude:
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
661 included.discard(colname)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
662 include_here = columns_available[:]
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
663 include_here.remove(colname)
240
6d9a65b442b5 negative wildcards fixed
catherine@Elli.myhome.westell.com
parents: 239
diff changeset
664 replacers[arg[startpos:endpos]].extend(i for i in include_here if i not in replacers[arg[startpos:endpos]])
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
665 excluded.add(colname)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
666 else:
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
667 excluded.discard(colname)
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
668 replacers[arg[startpos:endpos]].append(colname)
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
669
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
670 replacers = sorted(replacers.items(), key=len, reverse=True)
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
671 result = columnlist.columns
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
672 for (target, replacement) in replacers:
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
673 cols = [r for r in replacement if r not in excluded and r not in included]
238
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
674 replacement = ', '.join(cols)
254fb9d3f4c3 must fix catching regular cols as wilds, repeating on eqdbw/mtndew@orcl
catherine@Elli.myhome.westell.com
parents: 237
diff changeset
675 included.update(cols)
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
676 result = result.replace(target, replacement)
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
677 # some column names could get wiped out completely, so we fix their dangling commas
236
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
678 result = self.emptyCommaRegex.sub(',', result)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
679 result = self.deadStarterCommaRegex.sub('', result)
7f999b141fcd debugging streamlined wild sql
catherine@dellzilla
parents: 235
diff changeset
680 result = self.deadEnderCommaRegex.sub('', result)
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
681 if not result.strip():
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
682 self.pfeedback('No columns found matching criteria.')
242
8866fe0706c3 message when all columns excluded
catherine@dellzilla
parents: 241
diff changeset
683 return 'null from dual'
237
95070e01907d not col num works
catherine@Elli.myhome.westell.com
parents: 236
diff changeset
684 return result + ' ' + columnlist.remainder
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
685
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
686 do_prompt = Cmd.poutput
233
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
687
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
688 def do_accept(self, args):
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
689 try:
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
690 prompt = args[args.lower().index('prompt ')+7:]
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
691 except ValueError:
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
692 prompt = ''
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
693 varname = args.lower().split()[0]
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
694 self.substvars[varname] = self.pseudo_raw_input(prompt)
416
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
695
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
696 def ampersand_substitution(self, raw, regexpr, isglobal):
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
697 subst = regexpr.search(raw)
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
698 while subst:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
699 fullexpr, var = subst.group(1), subst.group(2)
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
700 self.pfeedback('Substitution variable %s found in:' % fullexpr)
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
701 self.pfeedback(raw[max(subst.start()-20, 0):subst.end()+20])
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
702 if var in self.substvars:
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
703 val = self.substvars[var]
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
704 else:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
705 val = raw_input('Substitution for %s (SET SCAN OFF to halt substitution): ' % fullexpr)
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
706 if val.lower().split() == ['set','scan','off']:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
707 self.scan = False
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
708 return raw
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
709 if isglobal:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
710 self.substvars[var] = val
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
711 raw = raw.replace(fullexpr, val)
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
712 self.pfeedback('Substituted %s for %s' % (val, fullexpr))
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
713 subst = regexpr.search(raw) # do not FINDALL b/c we don't want to ask twice
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
714 return raw
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
715
419
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
716 doublenumericampre = re.compile('(&&(\d+))')
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
717 numericampre = re.compile('(&(\d+))')
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
718 doubleampre = re.compile('(&&([a-zA-Z\d_$#]+))', re.IGNORECASE)
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
719 singleampre = re.compile( '(&([a-zA-Z\d_$#]+))', re.IGNORECASE)
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
720 def preparse(self, raw, **kwargs):
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
721 if self.scan:
419
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
722 raw = self.ampersand_substitution(raw, regexpr=self.doublenumericampre, isglobal=True)
8d9e0c5c37a5 double numeric ampersand ok
catherine@bothari
parents: 418
diff changeset
723 if self.scan:
284
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
724 raw = self.ampersand_substitution(raw, regexpr=self.numericampre, isglobal=False)
ad20675a17f7 working on adding accept, prompt
catherine@dellzilla
parents: 281
diff changeset
725 if self.scan:
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
726 raw = self.ampersand_substitution(raw, regexpr=self.doubleampre, isglobal=True)
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
727 if self.scan:
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
728 raw = self.ampersand_substitution(raw, regexpr=self.singleampre, isglobal=False)
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
729 return raw
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
730
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
731 rowlimitPattern = pyparsing.Word(pyparsing.nums)('rowlimit')
308
4d24fea42364 py scripts working again
catherine@Elli.myhome.westell.com
parents: 307
diff changeset
732 terminators = '; \\C \\t \\i \\p \\l \\L \\b \\r'.split() + output_templates.keys()
199
09592342a33d ugh - parsing stripping command causes real trouble
catherine@dellzilla
parents: 198
diff changeset
733
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
734 @options([make_option('-r', '--row', type="int", default=-1,
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
735 help='Bind row #ROW instead of final row (zero-based)')])
314
0473ad96ddb7 transcript tests work
catherine@Elli.myhome.westell.com
parents: 313
diff changeset
736 def do_bind(self, arg, opts):
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
737 '''
416
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
738 Inserts the results from the final row in the last completed
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
739 SELECT statement into bind variables with names corresponding
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
740 to the column names. When the optional `autobind` setting is
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
741 on, this will be issued automatically after every query that
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
742 returns exactly one row.
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
743 '''
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
744 try:
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
745 self.pystate['r'][-1][opts.row].bind()
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
746 except IndexError:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
747 self.poutput(self.do_bind.__doc__)
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
748
327
7cc5cc19891f added rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 326
diff changeset
749 def age_out_resultsets(self):
7cc5cc19891f added rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 326
diff changeset
750 total_len = sum(len(rs) for rs in self.pystate['r'])
328
b2fbb9de8845 avoid infinite loop when r[-1] > rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 327
diff changeset
751 for (i, rset) in enumerate(self.pystate['r'][:-1]):
b2fbb9de8845 avoid infinite loop when r[-1] > rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 327
diff changeset
752 if total_len <= self.rows_remembered:
b2fbb9de8845 avoid infinite loop when r[-1] > rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 327
diff changeset
753 return
b2fbb9de8845 avoid infinite loop when r[-1] > rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 327
diff changeset
754 total_len -= len(rset)
b2fbb9de8845 avoid infinite loop when r[-1] > rows_remembered
Catherine Devlin <catherine.devlin@gmail.com>
parents: 327
diff changeset
755 self.pystate['r'][i] = []
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
756
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
757 def rowlimit(self, arg):
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
758 try:
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
759 rowlimit = int(arg.parsed.suffix)
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
760 except (TypeError, ValueError):
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
761 rowlimit = None
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
762 if arg.parsed.terminator == '\\t':
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
763 rowlimit = rowlimit or self.maxtselctrows
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
764 return rowlimit
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
765
192
6bb8a112af6b accept special terminators on most anything
catherine@dellzilla
parents: 191
diff changeset
766 def do_select(self, arg, bindVarsIn=None, terminator=None):
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
767 """Fetch rows from a table.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
768
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
769 Limit the number of rows retrieved by appending
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
770 an integer after the terminator
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
771 (example: SELECT * FROM mytable;10 )
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
772
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
773 Output may be formatted by choosing an alternative terminator
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
774 ("help terminators" for details)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
775 """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
776 bindVarsIn = bindVarsIn or {}
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
777 rowlimit = self.rowlimit(arg)
340
001d01eeac90 bind vars for postgres
Catherine Devlin <catherine.devlin@gmail.com>
parents: 339
diff changeset
778 self.varsUsed = self.findBinds(arg, bindVarsIn)
233
dc7683970717 beginning wildsql
catherine@Elli.myhome.westell.com
parents: 232
diff changeset
779 if self.wildsql:
234
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
780 selecttext = self.expandWildSql(arg)
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
781 else:
a86efbca3da9 ha ha ha - wildcards in selects working now
catherine@dellzilla
parents: 233
diff changeset
782 selecttext = arg
315
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
783 self.querytext = 'select ' + selecttext
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
784 if self.varsUsed:
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
785 self.curs.execute(self.querytext, self.varsUsed)
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
786 else: # this is an ugly workaround for the evil paramstyle curse upon DB-API2
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
787 self.curs.execute(self.querytext)
194
932893dcf0c9 useTerminatorFrom
catherine@dellzilla
parents: 193
diff changeset
788 self.rows = self.curs.fetchmany(min(self.maxfetch, (rowlimit or self.maxfetch)))
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
789 self.colnames = [d[0] for d in self.curs.description]
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
790 self.coltypes = [d[1] for d in self.curs.description]
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
791 #TODO: Other databases can have BLOBs, too
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
792 if cx_Oracle and (cx_Oracle.BLOB in self.coltypes):
364
ea6d35cb6c73 images work, except brackets get escaped
catherine@cordelia
parents: 361
diff changeset
793 self.rows = [
367
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
794 [( (coltype == cx_Oracle.BLOB)
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
795 and BlobDisplayer(datum, (rownum < self.bloblimit)))
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
796 or datum
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
797 for (datum, coltype) in zip(row, self.coltypes)]
c632618f461c bloblimit implemented
catherine@cordelia
parents: 366
diff changeset
798 for (rownum, row) in enumerate(self.rows)]
457
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
799 '''
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
800 TODO: Segfault! Drat!
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
801 elif psycopg2 and set(psycopg2.ROWID.values).intersection(set(self.coltypes)):
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
802 self.rows = [
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
803 [( (coltype in psycopg2.ROWID.values)
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
804 and BlobDisplayer_postgresql(datum, (rownum < self.bloblimit), self))
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
805 or datum
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
806 for (datum, coltype) in zip(row, self.coltypes)]
67f23ccba6f5 unused stub for postgres blob display. segfaults
catherine@dellzilla
parents: 453
diff changeset
807 for (rownum, row) in enumerate(self.rows)] '''
326
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
808 self.rc = len(self.rows)
315
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
809 if self.rc != 0:
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
810 resultset = ResultSet()
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
811 resultset.colnames = [d[0].lower() for d in self.curs.description]
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
812 resultset.pystate = self.pystate
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
813 resultset.statement = 'select ' + selecttext
273
9d67065ea030 data into/out of py via binds
catherine@Elli.myhome.westell.com
parents: 272
diff changeset
814 resultset.varsUsed = self.varsUsed
271
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
815 resultset.extend([Result(r) for r in self.rows])
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
816 for row in resultset:
fbe23b635300 py object manipulation almost done
catherine@dellzilla
parents: 265
diff changeset
817 row.resultset = resultset
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
818 self.pystate['r'].append(resultset)
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
819 self.age_out_resultsets()
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
820 self.poutput('\n%s\n' % (self.tabular_output(arg.parsed.terminator)))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
821 if self.rc == 0:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
822 self.pfeedback('\nNo rows Selected.\n')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
823 elif self.rc == 1:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
824 self.pfeedback('\n1 row selected.\n')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
825 if self.autobind:
314
0473ad96ddb7 transcript tests work
catherine@Elli.myhome.westell.com
parents: 313
diff changeset
826 self.do_bind('')
315
a0a36232983a url_connect
catherine@Elli.myhome.westell.com
parents: 314
diff changeset
827 elif (self.rc < self.maxfetch and self.rc > 0):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
828 self.pfeedback('\n%d rows selected.\n' % self.rc)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
829 else:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
830 self.pfeedback('\nSelected Max Num rows (%d)' % self.rc)
193
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
831
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
832 def do_cat(self, arg):
361
catherine@cordelia
parents: 360
diff changeset
833 '''Shortcut for SELECT * FROM
200
54cd1e802fa0 terminators + suffixes now preserved
catherine@dellzilla
parents: 199
diff changeset
834 return self.do_select(self.parsed('SELECT * FROM %s;' % arg,
54cd1e802fa0 terminators + suffixes now preserved
catherine@dellzilla
parents: 199
diff changeset
835 terminator = arg.parsed.terminator or ';',
361
catherine@cordelia
parents: 360
diff changeset
836 suffix = arg.parsed.suffix))'''
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
837 statement = 'SELECT * FROM %s%s%s' % (arg, arg.parsed.terminator or ';',
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
838 arg.parsed.suffix or '')
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
839 return self.onecmd(self.parsed(statement))
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
840
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
841 @options([make_option('-d', '--dump', action='store_true', help='dump results to files'),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
842 make_option('-f', '--full', action='store_true', help='get dependent objects as well'),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
843 make_option('-l', '--lines', action='store_true', help='print line numbers'),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
844 make_option('-n', '--num', type='int', help='only code near line #num'),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
845 make_option('-w', '--width', type='int', default=5,
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
846 help='# of lines before and after --lineNo'),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
847 make_option('-a', '--all', action='store_true', help="all schemas' objects"),
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
848 #make_option('-x', '--exact', action='store_true', help="match object name exactly")
397
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
849 ])
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
850 def do_pull(self, arg, opts):
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
851 """Displays source code."""
397
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
852 self._pull(arg, opts)
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
853
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
854 def _pull(self, arg, opts, vc=None):
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
855 opts.exact = True
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
856 statekeeper = Statekeeper(opts.dump and self, ('stdout',))
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
857 (username, gerald_schema) = self.metadata()
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
858 try:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
859 for description in self._matching_database_objects(arg, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
860 self.poutput(description.path)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
861 txt = description.dbobj.get_ddl()
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
862 if opts.get('lines'):
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
863 txt = self._with_line_numbers(txt)
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
864 if opts.dump:
442
5497ae28bc70 hg working again
catherine@dellzilla
parents: 438
diff changeset
865 owner = description.owner or self.current_instance.username
5497ae28bc70 hg working again
catherine@dellzilla
parents: 438
diff changeset
866 path = os.path.join(owner.lower(), description.type.lower()) \
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
867 .replace(' ', '_')
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
868 try:
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
869 os.makedirs(path)
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
870 except OSError:
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
871 pass
442
5497ae28bc70 hg working again
catherine@dellzilla
parents: 438
diff changeset
872 filename = os.path.join(path, '%s.sql' % description.unqualified_name.lower())
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
873 self.stdout = open(filename, 'w')
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
874 if opts.get('num') is not None:
397
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
875 txt = txt.splitlines()
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
876 txt = centeredSlice(txt, center=opts.num+1, width=opts.width)
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
877 txt = '\n'.join(txt)
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
878 else:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
879 txt = 'REMARK BEGIN %s\n%s\nREMARK END\n' % (description.path, txt)
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
880
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
881 self.poutput(txt)
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
882 if opts.full:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
883 for dependent_type in ('constraints', 'triggers', 'indexes'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
884 if hasattr(description.dbobj, dependent_type):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
885 for (depname, depobj) in getattr(description.dbobj, dependent_type).items():
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
886 self.poutput('REMARK BEGIN\n%s\nREMARK END\n\n' % depobj.get_ddl())
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
887 if opts.dump:
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
888 self.stdout.close()
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
889 if vc:
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
890 subprocess.call(vc + [filename])
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
891 except:
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
892 statekeeper.restore()
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
893 raise
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
894 statekeeper.restore()
393
9bbca36ec371 not functioning - midway through expanding pull
catherine@cordelia
parents: 392
diff changeset
895
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
896 def _with_line_numbers(self, txt):
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
897 txt = txt.splitlines()
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
898 template = "%%-%dd:%%s" % len(str(len(txt)))
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
899 txt = '\n'.join(template % (n+1, line) for (n, line) in
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
900 enumerate(txt))
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
901 return txt
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
902
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
903 def _show_shortcut(self, shortcut, argpieces):
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
904 try:
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
905 newarg = argpieces[1]
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
906 if newarg == 'on':
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
907 try:
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
908 newarg = argpieces[2]
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
909 except IndexError:
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
910 pass
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
911 except IndexError:
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
912 newarg = ''
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
913 return self.onecmd(self.parsed(shortcut + ' ' + newarg))
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
914
221
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
915 def do_show(self, arg):
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
916 '''
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
917 show - display value of all sqlpython parameters
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
918 show (parameter name) - display value of a sqlpython parameter
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
919 show parameter (parameter name) - display value of an ORACLE parameter
265
041c656dc8e5 show err working nicely now
catherine@Elli.myhome.westell.com
parents: 264
diff changeset
920 show err (object type/name) - errors from latest PL/SQL object compilation.
041c656dc8e5 show err working nicely now
catherine@Elli.myhome.westell.com
parents: 264
diff changeset
921 show all err (type/name) - all compilation errors from the user's PL/SQL objects.
356
c86177642f75 replacing stdout with poutput; no bracketing partial pulls with remarks
catherine@cordelia
parents: 355
diff changeset
922 show (index/schema/tablespace/trigger/view/constraint/comment) on (table)
221
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
923 '''
418
25ac6fd9b0a0 no SHOW PARAM outside Oracle
catherine@bothari
parents: 417
diff changeset
924 if arg.startswith('param') and self.rdbms == 'oracle':
221
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
925 try:
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
926 paramname = arg.split()[1].lower()
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
927 except IndexError:
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
928 paramname = ''
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
929 self.onecmd(self.parsed("""SELECT name,
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
930 CASE type WHEN 1 THEN 'BOOLEAN'
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
931 WHEN 2 THEN 'STRING'
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
932 WHEN 3 THEN 'INTEGER'
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
933 WHEN 4 THEN 'PARAMETER FILE'
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
934 WHEN 5 THEN 'RESERVED'
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
935 WHEN 6 THEN 'BIG INTEGER' END type,
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
936 value
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
937 FROM v$parameter
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
938 WHERE name LIKE '%%%s%%';""" % paramname))
221
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
939 else:
264
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
940 argpieces = arg.lower().split()
370
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
941 argpieces = [a for a in argpieces if not a.startswith('-')]
264
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
942 try:
370
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
943 for (kwd, shortcut) in (
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
944 ('ind', '\\di'), ('schema', '\\dn'),
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
945 ('tablesp', '\\db'), ('trig', '\\dg'),
370
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
946 ('view', '\\dv'), ('cons', '\\dc'),
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
947 ('comm', '\\dd'), ('ref', 'ref')):
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
948 if argpieces[0].lower().startswith(kwd):
388ee8fa5664 fixed raw SHOW bug
catherine@cordelia
parents: 367
diff changeset
949 return self._show_shortcut(shortcut, argpieces)
264
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
950 if argpieces[0][:3] == 'err':
265
041c656dc8e5 show err working nicely now
catherine@Elli.myhome.westell.com
parents: 264
diff changeset
951 return self._show_errors(all_users=False, limit=1, targets=argpieces[1:])
450
abf71d72f467 make SHOW TABLES work
catherine@dellzilla
parents: 449
diff changeset
952 elif argpieces[0][:3] == 'tab':
abf71d72f467 make SHOW TABLES work
catherine@dellzilla
parents: 449
diff changeset
953 return self.do_ls('table/*')
264
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
954 elif (argpieces[0], argpieces[1][:3]) == ('all','err'):
265
041c656dc8e5 show err working nicely now
catherine@Elli.myhome.westell.com
parents: 264
diff changeset
955 return self._show_errors(all_users=False, limit=None, targets=argpieces[2:])
264
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
956 except IndexError:
a8deaa38f11e show errors works. limiting ls
catherine@Elli.myhome.westell.com
parents: 261
diff changeset
957 pass
221
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
958 return Cmd.do_show(self, arg)
3a59ca05f980 added show parameter
catherine@Elli.myhome.westell.com
parents: 220
diff changeset
959
224
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
960 def _vc(self, arg, opts, program):
248
230447ce6e60 end wed
catherine@dellzilla
parents: 247
diff changeset
961 if not os.path.exists('.%s' % program):
230447ce6e60 end wed
catherine@dellzilla
parents: 247
diff changeset
962 create = raw_input('%s repository not yet in current directory (%s). Create (y/N)? ' %
230447ce6e60 end wed
catherine@dellzilla
parents: 247
diff changeset
963 (program, os.getcwd()))
230447ce6e60 end wed
catherine@dellzilla
parents: 247
diff changeset
964 if not create.strip().lower().startswith('y'):
230447ce6e60 end wed
catherine@dellzilla
parents: 247
diff changeset
965 return
416
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
966 try:
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
967 subprocess.call([program, 'init'])
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
968 except OSError:
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
969 self.perror('Call to %s failed; is it installed and in PATH?' % program)
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
970 return
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
971 opts.dump = True
397
510b6e2f0ae5 bzr works with gerald
catherine@DellZilla
parents: 396
diff changeset
972 self._pull(arg, opts, vc=[program, 'add'])
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
973 subprocess.call([program, 'commit', '-m', '"%s"' % opts.message or 'committed from sqlpython'])
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
974
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
975 @options([
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
976 make_option('-f', '--full', action='store_true', help='get dependent objects as well'),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
977 make_option('-a', '--all', action='store_true', help="all schemas' objects"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
978 make_option('-x', '--exact', action='store_true', help="match object name exactly"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
979 make_option('-m', '--message', action='store', type='string', dest='message', help="message to save to hg log during commit")])
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
980 def do_hg(self, arg, opts):
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
981 '''hg (opts) (objects):
226
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
982 Stores DDL on disk and puts files under Mercurial version control.
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
983 Args specify which objects to store, same format as `ls`.'''
224
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
984 self._vc(arg, opts, 'hg')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
985
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
986 @options([
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
987 make_option('-f', '--full', action='store_true', help='get dependent objects as well'),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
988 make_option('-a', '--all', action='store_true', help="all schemas' objects"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
989 make_option('-x', '--exact', action='store_true', help="match object name exactly"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
990 make_option('-m', '--message', action='store', type='string', dest='message', help="message to save to hg log during commit")])
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
991 def do_bzr(self, arg, opts):
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
992 '''bzr (opts) (objects):
226
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
993 Stores DDL on disk and puts files under Bazaar version control.
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
994 Args specify which objects to store, same format as `ls`.'''
224
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
995 self._vc(arg, opts, 'bzr')
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
996
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
997 @options([
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
998 make_option('-f', '--full', action='store_true', help='get dependent objects as well'),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
999 make_option('-a', '--all', action='store_true', help="all schemas' objects"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
1000 make_option('-x', '--exact', action='store_true', help="match object name exactly"),
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
1001 make_option('-m', '--message', action='store', type='string', dest='message', help="message to save to hg log during commit")])
224
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
1002 def do_git(self, arg, opts):
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
1003 '''git (opts) (objects):
226
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
1004 Stores DDL on disk and puts files under git version control.
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
1005 Args specify which objects to store, same format as `ls`.'''
224
582c84365f6a svn sucks - supporting git instead
catherine@dellzilla
parents: 223
diff changeset
1006 self._vc(arg, opts, 'git')
220
01af6bfbe78f hg works
catherine@Elli.myhome.westell.com
parents: 219
diff changeset
1007
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1008 all_users_option = make_option('-a', '--all', action='store_const', dest="scope",
222
catherine@dellzilla
parents: 221
diff changeset
1009 default={'col':'', 'view':'user', 'schemas':'user', 'firstcol': ''},
catherine@dellzilla
parents: 221
diff changeset
1010 const={'col':', owner', 'view':'all', 'schemas':'all', 'firstcol': 'owner, '},
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1011 )
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1012 all_users_option = make_option('-a', '--all', action='store_true', help='Describe all objects (not just my own)')
194
932893dcf0c9 useTerminatorFrom
catherine@dellzilla
parents: 193
diff changeset
1013 @options([all_users_option,
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1014 make_option('-c', '--col', action='store_true', help='find column'),
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1015 ])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1016 def do_find(self, arg, opts):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1017 """Finds argument in source code or (with -c) in column definitions."""
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1018
435
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1019 seek = re.compile(self._regex_form_of_search_pattern(arg, exact=opts.col),
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1020 re.IGNORECASE)
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1021 qualified = opts.get('all')
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1022 for descrip in self._matching_database_objects('*', opts):
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1023 if opts.col:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1024 if hasattr(descrip.dbobj, 'columns'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1025 for col in descrip.dbobj.columns:
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1026 if seek.search(col):
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1027 self.poutput('%s.%s' % (m.fullname, col))
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1028 else:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1029 if hasattr(descrip.dbobj, 'source'):
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1030 name_printed = False
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1031 for (line_num, line) in descrip.dbobj.source:
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1032 if seek.search(line):
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1033 if not name_printed:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1034 self.poutput(descrip.fullname)
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1035 name_printed = True
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1036 self.poutput('%d: %s' % (line_num, line))
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1037
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1038 def _col_type_descriptor(self, col):
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1039 #if col['type'] in ('integer',):
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1040 # return col['type']
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1041 if ('length' in col) and (col['length'] is not None):
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1042 if ('precision' in col) and (col['precision'] is not None):
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1043 return '%s(%d,%d)' % (col['type'], col['length'], col['precision'])
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1044 else:
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1045 return '%s(%d)' % (col['type'], col['length'])
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1046 else:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1047 return col['type']
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1048
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1049 def _key_columns(self, tbl, type):
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1050 columns = [c['columns'] for c in tbl.constraints.values() if c['type'] == type]
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1051 if columns:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1052 return reduce(list.extend, columns)
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1053 #TODO: in postgres, _key_columns returns 'fishies_pkey' instead of 'n'
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1054 else:
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1055 return []
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1056
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1057 @options([all_users_option,
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1058 make_option('-l', '--long', action='store_true', help='include column #, comments'),
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1059 make_option('-A', '--alpha', action='store_true', help='List columns alphabetically')])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1060 def do_describe(self, arg, opts):
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1061 opts.exact = True
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1062 rowlimit = self.rowlimit(arg)
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1063 if opts.alpha:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1064 sortkey = operator.itemgetter('name')
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1065 else:
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1066 sortkey = operator.itemgetter('sequence')
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1067 for descrip in self._matching_database_objects(arg, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1068 self.tblname = descrip.fullname
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1069 self.pfeedback(self.tblname)
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1070 if opts.long and hasattr(descrip.dbobj, 'comments'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1071 if descrip.dbobj.comments:
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1072 self.poutput(descrip.dbobj.comments)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1073 if hasattr(descrip.dbobj, 'columns'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1074 cols = sorted(descrip.dbobj.columns.values(), key=sortkey)[:rowlimit]
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1075 if opts.long and hasattr(descrip.dbobj, 'constraints'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1076 primary_key_columns = self._key_columns(descrip.dbobj, 'Primary')
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1077 unique_key_columns = self._key_columns(descrip.dbobj, 'Unique')
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1078 self.colnames = 'N Name Nullable Type Key Default Comments'.split()
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1079 self.rows = [(col['sequence'], col['name'], (col['nullable'] and 'NULL') or 'NOT NULL',
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1080 self._col_type_descriptor(col),
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1081 ((col['name'] in primary_key_columns) and 'P') or
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1082 ((col['name'] in unique_key_columns) and 'U') or '',
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1083 col.get('default') or '', col.get('comment') or '')
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1084 for col in cols]
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1085 else:
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1086 self.colnames = 'Name Nullable Type'.split()
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1087 self.rows = [(col['name'], (col['nullable'] and 'NULL') or 'NOT NULL', self._col_type_descriptor(col))
399
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1088 for col in cols]
7fcb0ddc75a6 going to make changes to pmatrix
catherine@DellZilla
parents: 398
diff changeset
1089 self.coltypes = [str] * len(self.colnames)
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1090 self.poutput('%s\n\n' % self.tabular_output(arg.parsed.terminator, self.tblname))
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1091 elif hasattr(descrip.dbobj, 'increment_by'):
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1092 self.colnames = 'name min_value max_value increment_by'.split()
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1093 self.coltypes = [str, int, int, int]
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1094 self.rows = [(getattr(descrip.dbobj, p) for p in self.colnames)]
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1095 self.poutput('%s\n\n' % self.tabular_output(arg.parsed.terminator, self.tblname))
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1096 elif hasattr(descrip.dbobj, 'source'):
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1097 end_heading = re.compile(r'\bDECLARE|BEGIN\b', re.IGNORECASE)
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1098 for (index, (ln, line)) in enumerate(descrip.dbobj.source):
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1099 if end_heading.search(line):
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1100 break
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1101 self.poutput(''.join(l for (ln, l) in descrip.dbobj.source[:index]))
400
8903d24575f0 desc works on code
catherine@DellZilla
parents: 399
diff changeset
1102
416
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
1103 @options([all_users_option])
e7769bc81960 several changes to settables - incomplete
catherine@bothari
parents: 415
diff changeset
1104 def do_deps(self, arg, opts):
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1105 '''Lists all objects that are dependent upon the object.'''
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1106 #TODO: doesn't account for views; don't know about primary keys
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1107 for descrip in self._matching_database_objects(arg, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1108 for deptype in ('indexes', 'constraints', 'triggers'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1109 if hasattr(descrip.dbobj, deptype):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1110 for (depname, depobj) in getattr(descrip.dbobj, deptype).items():
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1111 self.poutput('%s %s' % (deptype, depname))
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1112
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1113 @options([all_users_option])
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1114 def do_comments(self, arg, opts):
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1115 'Prints comments on a table and its columns.'
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1116 qualified = opts.get('all')
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1117 for descrip in self._matching_database_objects(arg, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1118 if hasattr(descrip.dbobj, 'comments'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1119 self.poutput(descrip.fullname)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1120 self.poutput(descrip.dbobj.comments)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1121 if hasattr(descrip.dbobj, 'columns'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1122 columns = descrip.dbobj.columns.values()
401
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1123 columns.sort(key=operator.itemgetter('sequence'))
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1124 for col in columns:
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1125 comment = col.get('comment')
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1126 if comment:
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1127 self.poutput('%s: %s' % (col['name'], comment))
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1128 else:
0cc91493a1d4 messed-up transposition fixed
catherine@DellZilla
parents: 400
diff changeset
1129 self.poutput(col['name'])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1130
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1131 def _resolve(self, identifier):
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1132 parts = identifier.split('.')
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1133 if len(parts) == 2:
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1134 owner, object_name = parts
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1135 object_type = self.select_scalar_list('SELECT object_type FROM all_objects WHERE owner = :owner AND object_name = :object_name',
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1136 {'owner': owner, 'object_name': object_name.upper()}
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1137 )[0]
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1138 elif len(parts) == 1:
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1139 object_name = parts[0]
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1140 self._execute(queries['resolve'], {'objName':object_name.upper()})
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1141 object_type, object_name, owner = self.curs.fetchone()
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1142 return object_type, owner, object_name
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1143
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1144 def resolve(self, identifier):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1145 """Checks (my objects).name, (my synonyms).name, (public synonyms).name
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1146 to resolve a database object's name. """
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1147 try:
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1148 return self._resolve(identifier)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1149 except (TypeError, IndexError):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1150 self.pfeedback('Could not resolve object %s.' % identifier)
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1151 return '', '', ''
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1152
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1153 def spoolstop(self):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1154 if self.spoolFile:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1155 self.stdout = self.stdoutBeforeSpool
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1156 self.pfeedback('Finished spooling to ', self.spoolFile.name)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1157 self.spoolFile.close()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1158 self.spoolFile = None
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1159
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1160 def do_spool(self, arg):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1161 """spool [filename] - begins redirecting output to FILENAME."""
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1162 self.spoolstop()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1163 arg = arg.strip()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1164 if not arg:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1165 arg = 'output.lst'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1166 if arg.lower() != 'off':
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1167 if '.' not in arg:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1168 arg = '%s.lst' % arg
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1169 self.pfeedback('Sending output to %s (until SPOOL OFF received)' % (arg))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1170 self.spoolFile = open(arg, 'w')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1171 self.stdout = self.spoolFile
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1172
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1173 def sqlfeedback(self, arg):
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1174 if self.sql_echo:
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1175 self.pfeedback(arg)
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1176
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1177 def do_write(self, args):
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
1178 'Obsolete command. Use (query) > outfilename instead.'
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1179 self.poutput(self.do_write.__doc__)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1180 return
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1181
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1182 def do_compare(self, args):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1183 """COMPARE query1 TO query2 - uses external tool to display differences.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1184
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1185 Sorting is recommended to avoid false hits.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1186 Will attempt to use a graphical diff/merge tool like kdiff3, meld, or Araxis Merge,
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1187 if they are installed."""
193
01548a399ccf big switch to ParsedString
catherine@dellzilla
parents: 192
diff changeset
1188 #TODO: Update this to use pyparsing
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1189 fnames = []
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1190 args2 = args.split(' to ')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1191 if len(args2) < 2:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1192 self.pfeedback(self.do_compare.__doc__)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1193 return
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1194 for n in range(len(args2)):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1195 query = args2[n]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1196 fnames.append('compare%s.txt' % n)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1197 #TODO: update this terminator-stripping
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1198 if query.rstrip()[-1] != self.terminator:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1199 query = '%s%s' % (query, self.terminator)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1200 self.onecmd_plus_hooks('%s > %s' % (query, fnames[n]))
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
1201 #TODO: Does this stumble on output redirection?
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1202 diffMergeSearcher.invoke(fnames[0], fnames[1])
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1203
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1204 bufferPosPattern = re.compile('\d+')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1205 rangeIndicators = ('-',':')
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1206
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1207 def do_psql(self, arg):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1208 '''Shortcut commands emulating psql's backslash commands.
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1209
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1210 \c connect
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1211 \d desc
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1212 \e edit
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1213 \g run
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1214 \h help
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1215 \i load
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1216 \o spool
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1217 \p list
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1218 \q quit
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1219 \w save
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1220 \db _dir_tablespaces
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1221 \dc _dir_constraints
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1222 \dd comments
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1223 \dg _dir_triggers
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1224 \dn _dir_schemas
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1225 \dt _dir_tables
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1226 \dv _dir_views
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1227 \di _dir_indexes
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1228 \? help psql'''
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1229 commands = {}
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1230 for c in self.do_psql.__doc__.splitlines()[2:]:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1231 (abbrev, command) = c.split(None, 1)
411
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1232 commands[abbrev] = command
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1233 parts = arg.parsed.raw.split(None,1)
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1234 abbrev = parts[0]
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1235 try:
411
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1236 remainder = parts[1]
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1237 except IndexError:
411
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1238 remainder = ''
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1239 if abbrev in commands:
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1240 newcommand = '%s %s' % (commands[abbrev], remainder)
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
1241 return self.onecmd(self.parsed(newcommand))
411
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1242 else:
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1243 self.perror('No abbreviated command for %s' % abbrev)
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1244 self.perror(self.do_psql.__doc__)
83185d382d10 changed do_psql
catherine@DellZilla
parents: 410
diff changeset
1245
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1246 def _do_dir(self, type, arg, opts):
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1247 self.do_ls("%s/%s%s%s" % (type, str(arg), arg.parsed.terminator, arg.parsed.suffix), opts)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1248
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1249 standard_options = [
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1250 all_users_option,
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1251 make_option('-l', '--long', action='store_true', help='long descriptions'),
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1252 make_option('-r', '--reverse', action='store_true', help="Reverse order while sorting")]
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1253
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1254 @options(standard_options)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1255 def do__dir_tables(self, arg, opts):
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1256 'Shortcut for ``ls table/``'
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1257 self._do_dir('table', arg, opts)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1258
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1259 @options(standard_options)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1260 def do__dir_views(self, arg, opts):
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1261 'Shortcut for ``ls table/``'
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1262 self._do_dir('view', arg, opts)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1263
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1264 @options(standard_options)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1265 def do__dir_(self, arg, opts):
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1266 'Shortcut for ``ls table/``'
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1267 self._do_dir('', arg, opts)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1268
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1269 @options(standard_options)
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1270 def do__dir_(self, arg, opts):
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1271 'Shortcut for ``ls table/``'
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1272 self._do_dir('', arg, opts)
194
932893dcf0c9 useTerminatorFrom
catherine@dellzilla
parents: 193
diff changeset
1273
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1274 def _str_index(self, idx, long=False):
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1275 return '%s (%s) %s %s' % (idx['name'], ','.join(idx['columns']),
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1276 idx['type'], (idx['unique'] and 'unique') or '')
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1277
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1278 def _str_constraint(self, cons, long=False):
421
dd9aab264798 mysql logons mostly work
catherine@bothari
parents: 419
diff changeset
1279 #TODO: this is way too unclear right now
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1280 if 'condition' in cons:
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1281 details = '(%s)' % cons['condition']
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1282 elif 'reftable' in cons:
425
06713eb8954e connect2 changes in progress
catherine@bothari
parents: 421
diff changeset
1283 details = 'columns (%s) in table "%s"' % (','.join(cons['columns']), cons['reftable'])
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1284 elif 'columns' in cons:
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1285 details = '(%s)' % ','.join(cons['columns'])
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1286 else:
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1287 details = ''
425
06713eb8954e connect2 changes in progress
catherine@bothari
parents: 421
diff changeset
1288 return '%7s key "%s": %s %s' % (cons['type'], cons['name'], details,
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1289 ((not cons['enabled']) and 'DISABLED') or '')
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1290
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1291
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1292 def _str_trigger(self, trig, long=False):
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1293 result = 'Trigger %s %s %s for each %s' % (trig.name, trig.scope, ','.join(trig.events), trig.level)
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1294 if long:
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1295 result = '%s\n\n%s\n\n' % (result, trig.sql)
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1296 return result
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1297
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1298 def do__dir_(self, arg, opts, plural_name, str_function):
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1299 long = opts.get('long')
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1300 reverse = opts.get('reverse') or False
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1301 for descrip in self._matching_database_objects(arg, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1302 if hasattr(descrip.dbobj, plural_name):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1303 self.pfeedback('%s on %s' % (plural_name.title(), descrip.fullname))
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1304 result = [str_function(depobj, long) for depobj in getattr(descrip.dbobj, plural_name).values()]
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1305 result.sort(reverse=opts.get('reverse') or False)
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1306 self.poutput('\n'.join(result))
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1307
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1308 @options(standard_options)
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1309 def do__dir_indexes(self, arg, opts):
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1310 '''
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1311 Called with an exact table name, lists the indexes of that table.
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1312 Otherwise, acts as shortcut for `ls index/*(arg)*`
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1313 '''
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1314 self.do__dir_(arg, opts, 'indexes', self._str_index)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1315
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1316 @options(standard_options)
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1317 def do__dir_constraints(self, arg, opts):
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1318 '''
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1319 Lists constaints of a table.
403
dff2ac907331 genericizing _dir_indexes, _dir_constraints'
catherine@DellZilla
parents: 402
diff changeset
1320 '''
404
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1321 self.do__dir_(arg, opts, 'constraints', self._str_constraint)
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1322
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1323 @options(standard_options)
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1324 def do__dir_triggers(self, arg, opts):
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1325 '''
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1326 Called with an exact table name, lists the indexes of that table.
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1327 Otherwise, acts as shortcut for `ls index/*(arg)*`
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1328 '''
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1329 self.do__dir_(arg, opts, 'triggers', self._str_trigger)
20ea81921cd3 show triggers working
catherine@DellZilla
parents: 403
diff changeset
1330
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1331 def do__dir_tablespaces(self, arg):
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1332 '''
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1333 Lists all tablespaces.
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1334 '''
194
932893dcf0c9 useTerminatorFrom
catherine@dellzilla
parents: 193
diff changeset
1335 sql = """SELECT tablespace_name, file_name from dba_data_files;"""
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1336 self.sqlfeedback(sql)
200
54cd1e802fa0 terminators + suffixes now preserved
catherine@dellzilla
parents: 199
diff changeset
1337 self.do_select(self.parsed(sql, terminator=arg.parsed.terminator or ';', suffix=arg.parsed.suffix))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1338
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1339 def do__dir_schemas(self, arg):
251
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1340 '''
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1341 Lists all object owners, together with the number of objects they own.
aa33f495a289 reworked \di - not truly better?
catherine@Elli.myhome.westell.com
parents: 250
diff changeset
1342 '''
194
932893dcf0c9 useTerminatorFrom
catherine@dellzilla
parents: 193
diff changeset
1343 sql = """SELECT owner, count(*) AS objects FROM all_objects GROUP BY owner ORDER BY owner;"""
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1344 self.sqlfeedback(sql)
200
54cd1e802fa0 terminators + suffixes now preserved
catherine@dellzilla
parents: 199
diff changeset
1345 self.do_select(self.parsed(sql, terminator=arg.parsed.terminator or ';', suffix=arg.parsed.suffix))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1346
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1347 def do_head(self, arg):
226
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
1348 '''Shortcut for SELECT * FROM <arg>;10
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
1349 The terminator (\\t, \\g, \\x, etc.) and number of rows can
6701c3f097f9 more comments
catherine@Elli.myhome.westell.com
parents: 224
diff changeset
1350 be changed as for any other SELECT statement.'''
200
54cd1e802fa0 terminators + suffixes now preserved
catherine@dellzilla
parents: 199
diff changeset
1351 sql = self.parsed('SELECT * FROM %s;' % arg, terminator=arg.parsed.terminator or ';', suffix=arg.parsed.suffix)
195
4a3af9ac215f wow, parsing is broken
catherine@dellzilla
parents: 194
diff changeset
1352 sql.parsed['suffix'] = sql.parsed.suffix or '10'
196
7940955920a8 little fixes
catherine@dellzilla
parents: 195
diff changeset
1353 self.do_select(self.parsed(sql))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1354
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1355 def do_print(self, arg):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1356 'print VARNAME: Show current value of bind variable VARNAME.'
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1357 if arg:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1358 if arg[0] == ':':
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1359 arg = arg[1:]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1360 try:
356
c86177642f75 replacing stdout with poutput; no bracketing partial pulls with remarks
catherine@cordelia
parents: 355
diff changeset
1361 self.poutput(str(self.binds[arg])+'\n')
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1362 except KeyError:
356
c86177642f75 replacing stdout with poutput; no bracketing partial pulls with remarks
catherine@cordelia
parents: 355
diff changeset
1363 self.poutput('No bind variable %s\n' % arg)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1364 else:
250
aec778ef82b6 print full help on -h
catherine@Elli.myhome.westell.com
parents: 249
diff changeset
1365 for (var, val) in sorted(self.binds.items()):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1366 self.poutput(':%s = %s' % (var, val))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1367
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1368 def split_on_parser(self, parser, arg):
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1369 try:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1370 assigner, startat, endat = parser.scanner.scanString(arg).next()
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1371 return (arg[:startat].strip(), arg[endat:].strip())
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1372 except StopIteration:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1373 return ''.join(arg.split()[:1]), ''
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1374
355
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1375 assignmentSplitter = re.compile(':?=')
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1376 def interpret_variable_assignment(self, arg):
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1377 '''
374
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1378 Accepts strings like `foo = 'bar'` or `baz := 22`,
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1379 returns (assigned? (T/F), variable, new-value)
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1380
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1381 '''
459
77ec18c38ff8 prepare to release 1.7.0
cat@eee
parents: 457
diff changeset
1382 #TODO: quoted assignments currently failing?
374
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1383 arg = self.parsed(arg)
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1384 try:
446
1cf1f69b2470 must puzzle out parsing of quoted strings
catherine@Drou
parents: 445
diff changeset
1385 var, val = self.assignmentSplitter.split(arg, maxsplit=1)
355
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1386 except ValueError:
446
1cf1f69b2470 must puzzle out parsing of quoted strings
catherine@Drou
parents: 445
diff changeset
1387 return False, str(arg).split()[-1] or None, None
355
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1388 var = var.split()[-1]
374
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1389 val = val.strip()
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1390 if (len(val) > 1) and ((val[0] == val[-1] == "'") or (val[0] == val[-1] == '"')):
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1391 return True, var, val[1:-1]
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1392 try:
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1393 return True, var, int(val)
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1394 except ValueError:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1395 try:
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1396 return True, var, float(val)
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1397 except ValueError:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1398 # use the conversions implicit in cx_Oracle's select to
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1399 # cast the value into an appropriate type (dates, for instance)
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1400 try:
355
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1401 if self.rdbms == 'oracle':
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1402 sql = 'SELECT %s FROM dual'
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1403 else:
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1404 sql = 'SELECT %s'
c66240c3341a fixed setbind bug
catherine@cordelia
parents: 340
diff changeset
1405 self.curs.execute(sql % val)
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1406 return True, var, self.curs.fetchone()[0]
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1407 except: # TODO: should not be bare - should catch cx_Oracle.DatabaseError, etc.
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1408 return True, var, val # we give up and assume it's a string
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1409
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1410 def do_setbind(self, arg):
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1411 '''Sets or shows values of bind (`:`) variables.'''
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1412 if not arg:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1413 return self.do_print(arg)
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1414 assigned, var, val = self.interpret_variable_assignment(arg)
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1415 if not assigned:
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1416 return self.do_print(var)
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1417 else:
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1418 self.binds[var] = val
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1419
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1420 def do_define(self, arg):
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1421 '''Sets or shows values of substitution (`&`) variables.'''
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1422 if not arg:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1423 for (substvar, val) in sorted(self.substvars.items()):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1424 self.poutput('DEFINE %s = "%s" (%s)' % (substvar, val, type(val)))
329
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1425 assigned, var, val = self.interpret_variable_assignment(arg)
3efffbf7481f fixed bug in assigning 0, null to bind vars
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1426 if assigned:
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1427 self.substvars[var] = val
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1428 else:
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1429 if var in self.substvars:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1430 self.poutput('DEFINE %s = "%s" (%s)' % (var, self.substvars[var], type(self.substvars[var])))
285
316abf2191a4 substvar define working now
catherine@dellzilla
parents: 284
diff changeset
1431
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1432 def do_exec(self, arg):
213
a3eeea9ee8cc synched with cmd2 0.4.5
catherine@Elli.myhome.westell.com
parents: 211
diff changeset
1433 if arg.startswith(':'):
374
05758f4bcac1 bugfixes in setbind
catherine@DellZilla
parents: 371
diff changeset
1434 self.do_setbind(arg.parsed.expanded.split(':',1)[1])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1435 else:
340
001d01eeac90 bind vars for postgres
Catherine Devlin <catherine.devlin@gmail.com>
parents: 339
diff changeset
1436 varsUsed = self.findBinds(arg, {})
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1437 try:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1438 self.curs.execute('begin\n%s;end;' % arg, varsUsed)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1439 except Exception, e:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1440 self.perror(e)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1441
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1442 '''
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1443 Fails:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1444 select n into :n from test;'''
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1445
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1446 def anon_plsql(self, line1):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1447 lines = [line1]
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1448 while True:
247
f0f293d83337 begin docs
catherine@dellzilla
parents: 246
diff changeset
1449 line = self.pseudo_raw_input(self.continuation_prompt)
311
38ac0fbb2b63 history on plsql
catherine@Elli.myhome.westell.com
parents: 310
diff changeset
1450 self.history[-1] = '%s\n%s' % (self.history[-1], line)
241
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
1451 if line == 'EOF':
d1f1022d2387 trying remark_begin
catherine@Elli.myhome.westell.com
parents: 240
diff changeset
1452 return
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1453 if line.strip() == '/':
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1454 try:
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1455 self.curs.execute('\n'.join(lines))
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1456 except Exception, e:
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1457 self.perror(e)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1458 return
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1459 lines.append(line)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1460
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1461 def do_begin(self, arg):
281
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
1462 '''
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
1463 PL/SQL blocks can be used normally in sqlpython, though enclosing statements in
701f0aae837a got maxtselctrows working again
catherine@dellzilla
parents: 280
diff changeset
1464 REMARK BEGIN... REMARK END statements can help with parsing speed.'''
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1465 self.anon_plsql('begin ' + arg)
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1466
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1467 def do_declare(self, arg):
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1468 self.anon_plsql('declare ' + arg)
216
c5a49947eedc going to try multiple pull
catherine@Elli.myhome.westell.com
parents: 213
diff changeset
1469
326
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1470 def ls_where_clause(self, arg, opts):
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1471 where = ['WHERE (1=1) ']
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1472 if arg:
280
8ea39093ddf2 struggling with catching terminator after /*
catherine@dellzilla
parents: 277
diff changeset
1473 target = arg.upper().replace('*','%')
313
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1474 if target in self.object_types:
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1475 target += '/%'
326
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1476 where.append("""
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
1477 AND( UPPER(object_type) || '/' || UPPER(object_name) LIKE '%s'
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
1478 OR UPPER(object_name) LIKE '%s')""" % (target, target))
326
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1479 if not opts.all:
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
1480 where.append("AND owner = my_own")
326
82937b8dcbfe very basic multi-RDBMS ls in place
Catherine Devlin <catherine.devlin@gmail.com>
parents: 322
diff changeset
1481 return '\n'.join(where)
216
c5a49947eedc going to try multiple pull
catherine@Elli.myhome.westell.com
parents: 213
diff changeset
1482
c5a49947eedc going to try multiple pull
catherine@Elli.myhome.westell.com
parents: 213
diff changeset
1483 def resolve_many(self, arg, opts):
331
a6cbcf24f148 oops, needed to fix resolve_many
Catherine Devlin <catherine.devlin@gmail.com>
parents: 330
diff changeset
1484 statement = """SELECT owner, object_name, object_type FROM (%s)
a6cbcf24f148 oops, needed to fix resolve_many
Catherine Devlin <catherine.devlin@gmail.com>
parents: 330
diff changeset
1485 %s""" % (metaqueries['ls'][self.rdbms], self.ls_where_clause(arg, opts))
249
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
1486 self._execute(statement)
216
c5a49947eedc going to try multiple pull
catherine@Elli.myhome.westell.com
parents: 213
diff changeset
1487 return self.curs.fetchall()
313
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1488
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1489 object_types = (
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
1490 'BASE TABLE',
313
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1491 'CLUSTER',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1492 'CONSUMER GROUP',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1493 'CONTEXT',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1494 'DIRECTORY',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1495 'EDITION',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1496 'EVALUATION CONTEXT',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1497 'FUNCTION',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1498 'INDEX',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1499 'INDEX PARTITION',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1500 'INDEXTYPE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1501 'JAVA CLASS',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1502 'JAVA DATA',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1503 'JAVA RESOURCE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1504 'JOB',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1505 'JOB CLASS',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1506 'LIBRARY',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1507 'MATERIALIZED VIEW',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1508 'OPERATOR',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1509 'PACKAGE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1510 'PACKAGE BODY',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1511 'PROCEDURE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1512 'PROGRAM',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1513 'RULE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1514 'RULE SET',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1515 'SCHEDULE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1516 'SEQUENCE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1517 'SYNONYM',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1518 'TABLE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1519 'TABLE PARTITION',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1520 'TRIGGER',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1521 'TYPE',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1522 'TYPE BODY',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1523 'VIEW',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1524 'WINDOW',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1525 'WINDOW GROUP',
22fc9a350eaa finally, ls working right
catherine@Elli.myhome.westell.com
parents: 311
diff changeset
1526 'XML SCHEMA')
377
2bbf953ef231 basic ls works under postgres
catherine@cordelia
parents: 376
diff changeset
1527
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1528 def metadata(self):
429
76bf7f767c10 continuing connection transition
catherine@dellzilla
parents: 428
diff changeset
1529 username = self.current_instance.username
415
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1530 if self.rdbms == 'oracle':
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1531 username = username.upper()
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1532 elif self.rdbms == 'postgres':
3a2db0db302f must synch
catherine@bothari
parents: 414
diff changeset
1533 username = username.lower()
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1534 return (username, self.current_instance.gerald)
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1535
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1536 def _to_sql_wildcards(self, original):
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1537 return original.replace('*','%').replace('?','_')
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1538 #hmm... but these should be escape-able?
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1539
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1540 def _to_re_wildcards(self, original):
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1541 result = re.escape(original)
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1542 return result.replace('\\*','.*').replace('\\?','.')
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1543
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1544 def _regex_form_of_search_pattern(self, s, exact=False):
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1545 if not s:
435
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1546 return '^[^\.]*$'
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1547 if '.' in s:
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1548 seekpatt = r'[/\\]?%s[/\\]?' % (
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1549 s.replace('*', '.*').replace('?','.').replace('%', '.*'))
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1550 else:
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1551 seekpatt = r'[/\\]?%s[/\\]?' % (
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1552 s.replace('*', '[^\.]*').replace('?','[^\.]').replace('%', '[^\.]*'))
398
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1553 if exact:
b38368484d82 find works with gerald
catherine@DellZilla
parents: 397
diff changeset
1554 seekpatt = '^%s$' % seekpatt
435
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1555 return seekpatt
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
1556
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1557 def do_refresh(self, arg):
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
1558 '''Refreshes metadata for the specified schema; only required
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1559 if table structures, etc. have changed.'''
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1560 if self.current_instance.gerald.complete and self.current_instance.gerald.current:
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1561 self.current_instance.discover_metadata()
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
1562 else:
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1563 self.pfeedback('Metadata discovery is already underway.')
405
1e3179b31a1e nice progress on tab completion
catherine@cordelia
parents: 404
diff changeset
1564
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1565 def _print_gerald_status_warning(self, gerald_schema):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1566 if not gerald_schema.complete:
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1567 self.pfeedback('Metadata is not available yet - still gathering')
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1568 elif not gerald_schema.current:
436
f441f2eb52e0 pickling gerald data
catherine@dellzilla
parents: 435
diff changeset
1569 self.pfeedback('Metadata is stale - requested refresh still underway')
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1570
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1571 def _matching_database_objects(self, arg, opts):
392
b49e917fa689 pull to gerald
catherine@cordelia
parents: 391
diff changeset
1572 # doesn't get java$options
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1573
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1574 (username, gerald_schema) = self.metadata()
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1575 self._print_gerald_status_warning(gerald_schema)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1576 if not gerald_schema.complete:
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
1577 raise StopIteration
394
58e6d66794b0 refactoring _matching_database_objects to return MetaData
catherine@DellZilla
parents: 393
diff changeset
1578
435
5443c5d5ed8c fixes to ls
catherine@dellzilla
parents: 434
diff changeset
1579 seek = str(arg) and self._regex_form_of_search_pattern(arg, opts.get('exact'))
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1580 for (name, descrip) in gerald_schema.descriptions.items():
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1581 if descrip.match_pattern(seek, specific_owner = ((not opts.all) and username)):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1582 yield descrip
402
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1583
d4c045f50864 struggling to flatten the schema
catherine@DellZilla
parents: 401
diff changeset
1584 @options(standard_options)
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1585 def do_ls(self, arg, opts):
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1586 '''
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1587 Lists objects as through they were in an {object_type}/{object_name} UNIX
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1588 directory structure. `*` and `%` may be used as wildcards.
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1589 '''
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
1590 opts.exact = True
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1591 (username, schemas) = self.metadata()
433
439621c917c4 changes to match refactored cmd2
catherine@dellzilla
parents: 432
diff changeset
1592 result = [descrip.path for descrip in self._matching_database_objects(arg, opts)]
387
e3dd9e4467d1 first-pass metadata collection working
catherine@DellZilla
parents: 384
diff changeset
1593 if result:
e3dd9e4467d1 first-pass metadata collection working
catherine@DellZilla
parents: 384
diff changeset
1594 result.sort(reverse=bool(opts.reverse))
e3dd9e4467d1 first-pass metadata collection working
catherine@DellZilla
parents: 384
diff changeset
1595 self.poutput('\n'.join(result))
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1596
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1597 @options([make_option('-i', '--ignore-case', dest='ignorecase', action='store_true', help='Case-insensitive search'),
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1598 make_option('-a', '--all', action='store_true', help="all schemas' objects")])
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1599
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1600 def do_grep(self, arg, opts):
314
0473ad96ddb7 transcript tests work
catherine@Elli.myhome.westell.com
parents: 313
diff changeset
1601 """grep {target} {table} [{table2,...}]
0473ad96ddb7 transcript tests work
catherine@Elli.myhome.westell.com
parents: 313
diff changeset
1602 search for {target} in any of {table}'s fields"""
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1603 arg = self.parsed(arg)
396
9c724e555c91 re.match is betraying me
catherine@DellZilla
parents: 395
diff changeset
1604 opts.exact = True
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1605 args = arg.split()
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1606 if len(args) < 2:
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1607 self.perror(self.do_grep.__doc__)
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1608 return
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1609 pattern, targets = args[0], args[1:]
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1610 if opts.ignorecase:
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1611 pattern = pattern.lower()
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1612 comparitor = "OR LOWER(%s) LIKE '%%%%%%s%%%%'" % self._cast_as_char()
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1613 else:
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1614 comparitor = "OR %s LIKE '%%%%%%s%%%%'" % self._cast_as_char()
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1615 sql_pattern = self._to_sql_wildcards(pattern)
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1616 re_pattern = re.compile(self._to_re_wildcards(pattern),
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1617 (opts.ignorecase and re.IGNORECASE) or 0)
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1618 for target in targets:
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1619 for descrip in self._matching_database_objects(target, opts):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1620 self.pfeedback(descrip.fullname)
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1621 if hasattr(descrip.dbobj, 'columns'):
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1622 clauses = []
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1623 for col in descrip.dbobj.columns:
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1624 clauses.append(comparitor % (col, sql_pattern))
437
6ba7087f1a34 allow qualified or unqualified object names in gerald
catherine@dellzilla
parents: 436
diff changeset
1625 sql = "SELECT * FROM %s WHERE 1=0\n%s;" % (descrip.fullname, ' '.join(clauses))
6ba7087f1a34 allow qualified or unqualified object names in gerald
catherine@dellzilla
parents: 436
diff changeset
1626 sql = self.parsed(sql, terminator=arg.parsed.terminator or ';',
6ba7087f1a34 allow qualified or unqualified object names in gerald
catherine@dellzilla
parents: 436
diff changeset
1627 suffix=arg.parsed.suffix)
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1628 self.do_select(sql)
432
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1629 elif hasattr(descrip.dbobj, 'source'):
26b09e1481e7 beginning to reimplement threaded metadata discovery
catherine@dellzilla
parents: 429
diff changeset
1630 for (line_num, line) in descrip.dbobj.source:
391
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1631 if re_pattern.search(line):
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1632 self.poutput('%4d: %s' % (line_num, line))
5fd44394d789 grep moved to gerald
catherine@cordelia
parents: 390
diff changeset
1633
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1634
417
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1635 def _cast_as_char(self):
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1636 'self._cast_as_char() => Returns the RDBMS-equivalent "CAST(%s AS VARCHAR) expression.'
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1637 converter = {'oracle': 'TO_CHAR(%s)'}.get(self.rdbms, 'CAST(%s AS VARCHAR)')
fc3e99c9e3e5 grep fixed on postgresql
catherine@bothari
parents: 416
diff changeset
1638 return converter
335
00b183a103b3 bare prefix switches connection
Catherine Devlin <catherine.devlin@gmail.com>
parents: 334
diff changeset
1639
249
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
1640 def _execute(self, sql, bindvars={}):
333
1cde0ec62e61 send up
Catherine Devlin <catherine.devlin@gmail.com>
parents: 332
diff changeset
1641 self.sqlfeedback(sql)
249
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
1642 self.curs.execute(sql, bindvars)
9e3e49c95abf added sql_echo
catherine@Elli.myhome.westell.com
parents: 248
diff changeset
1643
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1644 #@options([make_option('-l', '--long', action='store_true',
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1645 # help='Wordy, easy-to-understand form'),])
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1646 def do_refs(self, arg):
286
abb4c6524113 adding ioug paper
catherine@dellzilla
parents: 285
diff changeset
1647 '''Lists referential integrity (foreign key constraints) on an object or referring to it.'''
211
catherine@Elli.myhome.westell.com
parents: 210
diff changeset
1648
421
dd9aab264798 mysql logons mostly work
catherine@bothari
parents: 419
diff changeset
1649 # TODO: needs much polish
dd9aab264798 mysql logons mostly work
catherine@bothari
parents: 419
diff changeset
1650 return self.do__dir_constraints(arg)
dd9aab264798 mysql logons mostly work
catherine@bothari
parents: 419
diff changeset
1651
451
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1652 def run_commands_at_invocation(self, callargs):
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1653 connection_args = []
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1654 while True:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1655 try:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1656 arg = callargs.pop(0)
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1657 connection_args.append(arg)
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1658 if ';' in arg:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1659 break
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1660 except IndexError:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1661 break
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1662 if connection_args:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1663 self.do_connect(' '.join(connection_args))
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1664 sqlpython.sqlpython.run_commands_at_invocation(self, callargs)
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1665 for arg in callargs:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1666 connection_args.append(callargs.pop())
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1667 for initial_command in callargs:
452
f87f804aab3b works with rearranged output redirection
catherine@Drou
parents: 451
diff changeset
1668 if self.onecmd_plus_hooks(initial_command + '\n') == app._STOP_AND_EXIT:
451
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1669 return
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1670
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1671 def cmdloop(self):
453
da3317c8fbc0 must stop development
catherine@Drou
parents: 452
diff changeset
1672 # TODO: args past ; don't even get into sys.argv
461
c27cab20ec4a don't die when no connect arg
cat@eee
parents: 459
diff changeset
1673 if (len(sys.argv) > 1) and sys.argv[1] in ('--test', '-t'):
451
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1674 self.runTranscriptTests(sys.argv[2:])
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1675 else:
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1676 self.run_commands_at_invocation(sys.argv[1:])
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1677 self._cmdloop()
fd86d22fe00d mostly compatible with cmd2 0.6 - minor transcript test problem
catherine@Drou
parents: 450
diff changeset
1678
189
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1679 def _test():
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1680 import doctest
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1681 doctest.testmod()
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1682
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1683 if __name__ == "__main__":
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1684 "Silent return implies that all unit tests succeeded. Use -v to see details."
c5398d87498e cat bug
catherine@dellzilla
parents:
diff changeset
1685 _test()