annotate sqlpyPlus.py @ 150:b00a020b81c6

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