author | Radek Brich <brich.radek@ifortuna.cz> |
Thu, 08 Aug 2013 15:26:24 +0200 | |
changeset 85 | 11a282e23e0d |
parent 68 | b0d972be2631 |
child 86 | b61b54aa9f96 |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
2 |
# |
|
3 |
# PgBrowser - browse database schema and metadata |
|
4 |
# |
|
5 |
# Some of the queries came from psql. |
|
6 |
# |
|
7 |
# Copyright (c) 2011 Radek Brich <radek.brich@devl.cz> |
|
8 |
# |
|
9 |
# Permission is hereby granted, free of charge, to any person obtaining a copy |
|
10 |
# of this software and associated documentation files (the "Software"), to deal |
|
11 |
# in the Software without restriction, including without limitation the rights |
|
12 |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
13 |
# copies of the Software, and to permit persons to whom the Software is |
|
14 |
# furnished to do so, subject to the following conditions: |
|
15 |
# |
|
16 |
# The above copyright notice and this permission notice shall be included in |
|
17 |
# all copies or substantial portions of the Software. |
|
18 |
# |
|
19 |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
20 |
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
21 |
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
22 |
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
23 |
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
24 |
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
25 |
# THE SOFTWARE. |
|
26 |
||
27 |
||
28 |
from collections import OrderedDict |
|
29 |
||
30 |
||
31 |
class Column: |
|
32 |
def __init__(self, browser, table, |
|
33 |
name, type, notnull, hasdefault, default, description): |
|
34 |
self.browser = browser # Browser instance |
|
35 |
self.table = table # Table instance |
|
36 |
self.name = name |
|
37 |
self.type = type |
|
38 |
self.notnull = notnull |
|
39 |
self.hasdefault = hasdefault |
|
40 |
self.default = default |
|
41 |
self.description = description |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
42 |
|
0 | 43 |
|
44 |
class Constraint: |
|
40
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
45 |
def __init__(self, browser, table, name, type, fname, fschema, definition): |
0 | 46 |
self.browser = browser |
47 |
self.table = table |
|
48 |
self.name = name |
|
49 |
self.type = type |
|
40
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
50 |
self.fname = fname # foreign table name |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
51 |
self.fschema = fschema # foreign table schema |
0 | 52 |
self.definition = definition |
53 |
||
54 |
||
55 |
class Index: |
|
56 |
def __init__(self, browser, table, |
|
57 |
name, primary, unique, clustered, valid, definition): |
|
58 |
self.browser = browser |
|
59 |
self.table = table |
|
60 |
self.name = name |
|
61 |
self.primary = primary |
|
62 |
self.unique = unique |
|
63 |
self.clustered = clustered |
|
64 |
self.valid = valid |
|
65 |
self.definition = definition |
|
66 |
||
67 |
||
68 |
class Table: |
|
68 | 69 |
def __init__(self, browser, schema, name, owner, size, description, options): |
0 | 70 |
self._columns = None |
71 |
self._constraints = None |
|
72 |
self._indexes = None |
|
73 |
self.browser = browser # Browser instance |
|
74 |
self.schema = schema # Schema instance |
|
75 |
self.name = name # table name, str |
|
76 |
self.owner = owner |
|
77 |
self.size = size |
|
78 |
self.description = description |
|
68 | 79 |
self.options = options or [] |
0 | 80 |
|
81 |
def refresh(self): |
|
82 |
self.refresh_columns() |
|
83 |
self.refresh_constraints() |
|
84 |
self.refresh_indexes() |
|
85 |
||
86 |
def refresh_columns(self): |
|
87 |
rows = self.browser.list_columns(self.name, self.schema.name) |
|
88 |
self._columns = OrderedDict([(x['name'], Column(self.browser, self, **x)) for x in rows]) |
|
89 |
||
90 |
def refresh_constraints(self): |
|
91 |
rows = self.browser.list_constraints(self.name, self.schema.name) |
|
92 |
self._constraints = OrderedDict([(x['name'], Constraint(self.browser, self, **x)) for x in rows]) |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
93 |
|
0 | 94 |
def refresh_indexes(self): |
95 |
rows = self.browser.list_indexes(self.name, self.schema.name) |
|
96 |
self._indexes = OrderedDict([(x['name'], Index(self.browser, self, **x)) for x in rows]) |
|
97 |
||
98 |
def getcolumns(self): |
|
99 |
if self._columns is None: |
|
100 |
self.refresh_columns() |
|
101 |
return self._columns |
|
102 |
columns = property(getcolumns) |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
103 |
|
0 | 104 |
def getconstraints(self): |
105 |
if self._constraints is None: |
|
106 |
self.refresh_constraints() |
|
107 |
return self._constraints |
|
108 |
constraints = property(getconstraints) |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
109 |
|
0 | 110 |
def getindexes(self): |
111 |
if self._indexes is None: |
|
112 |
self.refresh_indexes() |
|
113 |
return self._indexes |
|
114 |
indexes = property(getindexes) |
|
115 |
||
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
116 |
|
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
117 |
class Argument: |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
118 |
def __init__(self, browser, function, name, type, mode, default): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
119 |
# PgBrowser instance |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
120 |
self.browser = browser |
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
121 |
# Function instance |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
122 |
self.function = function |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
123 |
self.name = name |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
124 |
self.type = type |
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
125 |
self.mode = mode |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
126 |
self.default = default |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
127 |
|
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
128 |
class Function: |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
129 |
def __init__(self, browser, schema, oid, name, function_name, type, result, source): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
130 |
self.browser = browser |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
131 |
self.schema = schema |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
132 |
self.oid = oid |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
133 |
#: unique name - function name + arg types |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
134 |
self.name = name |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
135 |
#: pure function name without args |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
136 |
self.function_name = function_name |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
137 |
self.type = type |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
138 |
self.result = result |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
139 |
self.source = source |
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
140 |
self._arguments = None |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
141 |
self._definition = None |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
142 |
|
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
143 |
def refresh(self): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
144 |
self.refresh_args() |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
145 |
|
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
146 |
def refresh_args(self): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
147 |
rows = self.browser.list_function_args(self.oid) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
148 |
self._arguments = OrderedDict([(x['name'], Argument(self.browser, self, **x)) for x in rows]) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
149 |
|
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
150 |
@property |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
151 |
def arguments(self): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
152 |
if self._arguments is None: |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
153 |
self.refresh_args() |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
154 |
return self._arguments |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
155 |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
156 |
@property |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
157 |
def definition(self): |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
158 |
"""Get full function definition including CREATE command.""" |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
159 |
if not self._definition: |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
160 |
self._definition = self.browser.get_function_definition(self.oid) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
161 |
return self._definition |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
162 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
163 |
|
85
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
164 |
class Type: |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
165 |
def __init__(self, browser, schema, name, type, elements, description): |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
166 |
self.browser = browser |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
167 |
self.schema = schema |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
168 |
self.name = name |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
169 |
self.type = type |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
170 |
self.elements = elements |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
171 |
self.description = description |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
172 |
|
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
173 |
|
0 | 174 |
class Schema: |
175 |
def __init__(self, browser, name, owner, acl, description, system): |
|
176 |
self._tables = None |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
177 |
self._functions = None |
85
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
178 |
self._types = None |
0 | 179 |
self.browser = browser |
180 |
self.name = name |
|
181 |
self.owner = owner |
|
182 |
self.acl = acl |
|
183 |
self.description = description |
|
184 |
self.system = system |
|
185 |
||
186 |
def refresh(self): |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
187 |
self.refresh_tables() |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
188 |
self.refresh_functions() |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
189 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
190 |
def refresh_tables(self): |
0 | 191 |
rows = self.browser.list_tables(self.name) |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
192 |
self._tables = OrderedDict([(x['name'], Table(self.browser, self, **x)) for x in rows]) |
0 | 193 |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
194 |
def refresh_functions(self): |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
195 |
rows = self.browser.list_functions(self.name) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
196 |
self._functions = OrderedDict([(x['name'], Function(self.browser, self, **x)) for x in rows]) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
197 |
|
85
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
198 |
def refresh_types(self): |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
199 |
rows = self.browser.list_types(self.name) |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
200 |
self._types = OrderedDict([(x['name'], Type(self.browser, self, **x)) for x in rows]) |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
201 |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
202 |
@property |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
203 |
def tables(self): |
0 | 204 |
if self._tables is None: |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
205 |
self.refresh_tables() |
0 | 206 |
return self._tables |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
207 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
208 |
@property |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
209 |
def functions(self): |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
210 |
if self._functions is None: |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
211 |
self.refresh_functions() |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
212 |
return self._functions |
0 | 213 |
|
85
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
214 |
@property |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
215 |
def types(self): |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
216 |
if self._types is None: |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
217 |
self.refresh_types() |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
218 |
return self._types |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
219 |
|
0 | 220 |
|
221 |
class PgBrowser: |
|
222 |
def __init__(self, conn=None): |
|
223 |
self._schemas = None |
|
224 |
self.conn = conn |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
225 |
|
0 | 226 |
def setconn(self, conn=None): |
227 |
self.conn = conn |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
228 |
|
0 | 229 |
def refresh(self): |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
230 |
self.refresh_schemas() |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
231 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
232 |
def refresh_schemas(self): |
0 | 233 |
rows = self.list_schemas() |
234 |
self._schemas = OrderedDict([(x['name'], Schema(self, **x)) for x in rows]) |
|
235 |
||
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
236 |
@property |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
237 |
def schemas(self): |
0 | 238 |
if self._schemas is None: |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
239 |
self.refresh_schemas() |
0 | 240 |
return self._schemas |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
241 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
242 |
def _query(self, query, args): |
0 | 243 |
try: |
244 |
curs = self.conn.cursor() |
|
245 |
curs.execute(query, args) |
|
246 |
curs.connection.commit() |
|
247 |
rows = curs.fetchall() |
|
248 |
return [dict(zip([desc[0] for desc in curs.description], row)) for row in rows] |
|
249 |
finally: |
|
250 |
curs.close() |
|
251 |
||
252 |
def list_databases(self): |
|
253 |
return self._query(''' |
|
254 |
SELECT |
|
255 |
d.datname as "name", |
|
256 |
pg_catalog.pg_get_userbyid(d.datdba) as "owner", |
|
257 |
pg_catalog.pg_encoding_to_char(d.encoding) as "encoding", |
|
258 |
d.datcollate as "collation", |
|
259 |
d.datctype as "ctype", |
|
260 |
d.datacl AS "acl", |
|
261 |
CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT') |
|
262 |
THEN pg_catalog.pg_database_size(d.datname) |
|
263 |
ELSE -1 -- No access |
|
264 |
END as "size", |
|
265 |
t.spcname as "tablespace", |
|
266 |
pg_catalog.shobj_description(d.oid, 'pg_database') as "description" |
|
267 |
FROM pg_catalog.pg_database d |
|
268 |
JOIN pg_catalog.pg_tablespace t on d.dattablespace = t.oid |
|
269 |
ORDER BY 1; |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
270 |
''', []) |
0 | 271 |
|
272 |
def list_schemas(self): |
|
273 |
return self._query(''' |
|
274 |
SELECT |
|
275 |
n.nspname AS "name", |
|
276 |
pg_catalog.pg_get_userbyid(n.nspowner) AS "owner", |
|
277 |
n.nspacl AS "acl", |
|
278 |
pg_catalog.obj_description(n.oid, 'pg_namespace') AS "description", |
|
279 |
CASE WHEN n.nspname IN ('information_schema', 'pg_catalog', 'pg_toast') |
|
280 |
OR n.nspname ~ '^pg_temp_' OR n.nspname ~ '^pg_toast_temp_' |
|
281 |
THEN TRUE |
|
282 |
ELSE FALSE |
|
283 |
END AS "system" |
|
284 |
FROM pg_catalog.pg_namespace n |
|
285 |
ORDER BY 1; |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
286 |
''', []) |
0 | 287 |
|
288 |
def list_tables(self, schema='public'): |
|
289 |
return self._query(''' |
|
290 |
SELECT |
|
291 |
c.relname as "name", |
|
292 |
pg_catalog.pg_get_userbyid(c.relowner) as "owner", |
|
293 |
pg_catalog.pg_relation_size(c.oid) as "size", |
|
68 | 294 |
pg_catalog.obj_description(c.oid, 'pg_class') as "description", |
295 |
c.reloptions as "options" |
|
0 | 296 |
FROM pg_catalog.pg_class c |
297 |
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace |
|
298 |
WHERE n.nspname = %s AND c.relkind IN ('r','s','') |
|
299 |
ORDER BY 1; |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
300 |
''', [schema]) |
0 | 301 |
|
12 | 302 |
def list_columns(self, table, schema='public', order=2): |
0 | 303 |
return self._query(''' |
304 |
SELECT |
|
40
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
305 |
--a.attrelid, |
0 | 306 |
a.attname as "name", |
307 |
format_type(a.atttypid, a.atttypmod) AS "type", |
|
308 |
a.attnotnull as "notnull", |
|
309 |
a.atthasdef as "hasdefault", |
|
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
310 |
pg_catalog.pg_get_expr(d.adbin, d.adrelid) as "default", |
0 | 311 |
pg_catalog.col_description(a.attrelid, a.attnum) AS "description" |
312 |
FROM pg_catalog.pg_attribute a |
|
313 |
LEFT JOIN pg_catalog.pg_class c ON a.attrelid = c.oid |
|
314 |
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace |
|
315 |
LEFT JOIN pg_catalog.pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum |
|
316 |
WHERE n.nspname = %s AND c.relname = %s AND a.attnum > 0 AND NOT a.attisdropped |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
317 |
ORDER BY ''' + str(order), [schema, table]) |
0 | 318 |
|
319 |
def list_constraints(self, table, schema='public'): |
|
320 |
return self._query(''' |
|
321 |
SELECT |
|
35
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
322 |
r.conname AS "name", |
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
323 |
r.contype AS "type", |
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
324 |
cf.relname AS "fname", |
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
325 |
nf.nspname AS "fschema", |
0 | 326 |
pg_catalog.pg_get_constraintdef(r.oid, true) as "definition" |
327 |
FROM pg_catalog.pg_constraint r |
|
328 |
JOIN pg_catalog.pg_class c ON r.conrelid = c.oid |
|
329 |
JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace |
|
35
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
330 |
LEFT JOIN pg_catalog.pg_class cf ON r.confrelid = cf.oid |
e7f79c4a27ce
TableCopyTool: order tables with respect to references.
Radek Brich <radek.brich@devl.cz>
parents:
32
diff
changeset
|
331 |
LEFT JOIN pg_catalog.pg_namespace nf ON nf.oid = cf.relnamespace |
0 | 332 |
WHERE n.nspname = %s AND c.relname = %s |
333 |
ORDER BY 1 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
334 |
''', [schema, table]) |
0 | 335 |
|
336 |
def list_indexes(self, table, schema='public'): |
|
337 |
return self._query(''' |
|
338 |
SELECT |
|
339 |
c2.relname as "name", |
|
340 |
i.indisprimary as "primary", |
|
341 |
i.indisunique as "unique", |
|
342 |
i.indisclustered as "clustered", |
|
343 |
i.indisvalid as "valid", |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
344 |
pg_catalog.pg_get_indexdef(i.indexrelid, 0, true) as "definition", |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
345 |
ARRAY(SELECT a.attname FROM pg_catalog.pg_attribute a WHERE a.attrelid = c2.oid ORDER BY attnum) AS "columns" |
0 | 346 |
--c2.reltablespace as "tablespace_oid" |
347 |
FROM pg_catalog.pg_class c |
|
348 |
JOIN pg_catalog.pg_index i ON c.oid = i.indrelid |
|
349 |
JOIN pg_catalog.pg_class c2 ON i.indexrelid = c2.oid |
|
350 |
JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
351 |
WHERE n.nspname = %(schema)s AND c.relname = %(table)s |
0 | 352 |
ORDER BY i.indisprimary DESC, i.indisunique DESC, c2.relname |
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
353 |
''', {'schema': schema, 'table': table}) |
0 | 354 |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
355 |
def list_functions(self, schema='public'): |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
356 |
'''List functions in schema.''' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
357 |
return self._query(''' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
358 |
SELECT |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
359 |
p.oid as "oid", |
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
360 |
p.proname || '(' || array_to_string( |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
361 |
array(SELECT pg_catalog.format_type(unnest(p.proargtypes), NULL)), |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
362 |
', ' |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
363 |
) || ')' as "name", |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
364 |
p.proname as "function_name", |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
365 |
pg_catalog.pg_get_function_result(p.oid) as "result", |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
366 |
p.prosrc as "source", |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
367 |
CASE |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
368 |
WHEN p.proisagg THEN 'agg' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
369 |
WHEN p.proiswindow THEN 'window' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
370 |
WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN 'trigger' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
371 |
ELSE 'normal' |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
372 |
END as "type" |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
373 |
FROM pg_catalog.pg_proc p |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
374 |
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace |
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
375 |
WHERE n.nspname = %s |
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
376 |
ORDER BY 1, 2, 4; |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
377 |
''', [schema]) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
378 |
|
59
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
379 |
def list_function_args(self, oid): |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
380 |
"""List function arguments. |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
381 |
|
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
382 |
Notes about query: |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
383 |
type: Use allargtypes if present, argtypes otherwise. |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
384 |
The trick with [0:999] moves lower bound from 0 to default 1 |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
385 |
by slicing all elements (slices has always lower bound 1). |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
386 |
mode: This trick makes array of NULLs of same length as argnames, |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
387 |
in case argmodes is NULL. |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
388 |
default: Use pg_get_expr, split output by ', ' |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
389 |
FIXME: will fail if ', ' is present in default value string. |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
390 |
""" |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
391 |
return self._query(''' |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
392 |
SELECT |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
393 |
unnest(p.proargnames) AS "name", |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
394 |
pg_catalog.format_type(unnest( |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
395 |
COALESCE(p.proallargtypes, (p.proargtypes::oid[])[0:999]) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
396 |
), NULL) AS "type", |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
397 |
unnest( |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
398 |
COALESCE( |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
399 |
p.proargmodes::text[], |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
400 |
array(SELECT NULL::text FROM generate_series(1, array_upper(p.proargnames, 1))) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
401 |
) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
402 |
) AS "mode", |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
403 |
unnest(array_cat( |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
404 |
array_fill(NULL::text, array[COALESCE(array_upper(p.proargnames,1),0) - p.pronargdefaults]), |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
405 |
string_to_array(pg_get_expr(p.proargdefaults, 'pg_proc'::regclass, true), ', ') |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
406 |
)) AS "default" |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
407 |
FROM pg_proc p |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
408 |
WHERE p.oid = %s''', [oid]) |
65efd0c6919f
PgBrowser: add function arguments as another level in hierarchy. PgDiff: compare function arguments one by one.
Radek Brich <radek.brich@devl.cz>
parents:
58
diff
changeset
|
409 |
|
58
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
410 |
def get_function_definition(self, oid): |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
411 |
"""Get full function definition, including CREATE command etc. |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
412 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
413 |
Args: |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
414 |
oid: function oid from pg_catalog.pg_proc (returned by list_functions) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
415 |
|
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
416 |
""" |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
417 |
return self._query('''select pg_get_functiondef(%s);''', [oid]) |
0bcc13460dae
PgBrowser: Add functions. PgDiff: Compare functions.
Radek Brich <radek.brich@devl.cz>
parents:
52
diff
changeset
|
418 |
|
85
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
419 |
def list_types(self, schema='public'): |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
420 |
"""List types in schema.""" |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
421 |
return self._query(''' |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
422 |
SELECT |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
423 |
t.typname AS "name", |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
424 |
CASE |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
425 |
WHEN t.typtype = 'b' THEN 'base'::text |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
426 |
WHEN t.typtype = 'c' THEN 'composite'::text |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
427 |
WHEN t.typtype = 'd' THEN 'domain'::text |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
428 |
WHEN t.typtype = 'e' THEN 'enum'::text |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
429 |
WHEN t.typtype = 'p' THEN 'pseudo'::text |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
430 |
END AS "type", |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
431 |
ARRAY( |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
432 |
SELECT e.enumlabel |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
433 |
FROM pg_catalog.pg_enum e |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
434 |
WHERE e.enumtypid = t.oid |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
435 |
ORDER BY e.oid |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
436 |
) AS "elements", |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
437 |
pg_catalog.obj_description(t.oid, 'pg_type') AS "description" |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
438 |
FROM pg_catalog.pg_type t |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
439 |
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
440 |
WHERE (t.typrelid = 0 OR (SELECT c.relkind = 'c' FROM pg_catalog.pg_class c WHERE c.oid = t.typrelid)) |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
441 |
AND NOT EXISTS(SELECT 1 FROM pg_catalog.pg_type el WHERE el.oid = t.typelem AND el.typarray = t.oid) |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
442 |
AND n.nspname <> 'pg_catalog' |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
443 |
AND n.nspname <> 'information_schema' |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
444 |
AND n.nspname = %(schema)s |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
445 |
ORDER BY 1, 2; |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
446 |
''', {'schema': schema}) |
11a282e23e0d
Add basic support for types in browser and schema diff.
Radek Brich <brich.radek@ifortuna.cz>
parents:
68
diff
changeset
|
447 |
|
40
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
448 |
def list_sequences(self, schema=None): |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
449 |
'''List sequences in schema.''' |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
450 |
return self._query(''' |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
451 |
SELECT |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
452 |
nc.nspname AS "sequence_schema", |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
453 |
c.relname AS "sequence_name", |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
454 |
t.relname AS "related_table", |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
455 |
a.attname AS "related_column", |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
456 |
format_type(a.atttypid, a.atttypmod) AS "related_column_type" |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
457 |
FROM pg_class c |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
458 |
JOIN pg_namespace nc ON nc.oid = c.relnamespace |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
459 |
JOIN pg_depend d ON d.objid = c.oid |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
460 |
JOIN pg_class t ON d.refobjid = t.oid |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
461 |
JOIN pg_attribute a ON (d.refobjid, d.refobjsubid) = (a.attrelid, a.attnum) |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
462 |
WHERE c.relkind = 'S' AND NOT pg_is_other_temp_schema(nc.oid) |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
463 |
''' + (schema and ' AND nc.nspname = %(schema)s' or '') + ''' |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
464 |
''', {'schema': schema}) |
922d7fb63384
Add listserial tool. PgBrowser: Add list_sequences.
Radek Brich <radek.brich@devl.cz>
parents:
35
diff
changeset
|
465 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
466 |
def list_column_usage(self, table, column, schema='public'): |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
467 |
'''List objects using the column. |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
468 |
|
32
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
469 |
Currently shows views and constraints which use the column. |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
470 |
|
32
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
471 |
This is useful to find which views block alteration of column type etc. |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
472 |
|
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
473 |
''' |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
474 |
return self._query(''' |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
475 |
SELECT |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
476 |
'view' AS type, view_schema AS schema, view_name AS name |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
477 |
FROM information_schema.view_column_usage |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
478 |
WHERE table_schema=%(schema)s AND table_name=%(table)s AND column_name=%(column)s |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
479 |
|
32
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
480 |
UNION |
52
26121a8fe78b
Update analyzeall tool: add REINDEX option. Add ibrowser tool (useful for PgBrowser testing). Fix PgBrowser.list_columns default value.
Radek Brich <radek.brich@devl.cz>
parents:
40
diff
changeset
|
481 |
|
32
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
482 |
SELECT |
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
483 |
'constraint' AS type, constraint_schema AS schema, constraint_name AS name |
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
484 |
FROM information_schema.constraint_column_usage |
d59c473c9ad7
Add batchupdate tool. PgBrowser: add constraints to list_column_usage().
Radek Brich <radek.brich@devl.cz>
parents:
31
diff
changeset
|
485 |
WHERE table_schema=%(schema)s AND table_name=%(table)s AND column_name=%(column)s |
31
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
486 |
''', {'schema':schema, 'table':table, 'column':column}) |
c2e6e24b83d9
Add browser - database schema browser using tuikit (curses UI). Add listdepends - tool which shows depending views for column. Update pgdatadiff - allow composite primary key. Update pgmanager - RowDict is now OrderedDict. Drop support for Python2.x.
Radek Brich <radek.brich@devl.cz>
parents:
12
diff
changeset
|
487 |