annotate sqlpyPlus.py @ 152:c26bc528cb05

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