/usr/lib/python3/dist-packages/skytools/dbstruct.py is in python3-skytools 3.3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 | """Find table structure and allow CREATE/DROP elements from it.
"""
from __future__ import division, absolute_import, print_function
import re
import skytools
from skytools import quote_ident, quote_fqident
__all__ = ['TableStruct', 'SeqStruct',
'T_TABLE', 'T_CONSTRAINT', 'T_INDEX', 'T_TRIGGER',
'T_RULE', 'T_GRANT', 'T_OWNER', 'T_PKEY', 'T_ALL',
'T_SEQUENCE', 'T_PARENT', 'T_DEFAULT']
T_TABLE = 1 << 0
T_CONSTRAINT = 1 << 1
T_INDEX = 1 << 2
T_TRIGGER = 1 << 3
T_RULE = 1 << 4
T_GRANT = 1 << 5
T_OWNER = 1 << 6
T_SEQUENCE = 1 << 7
T_PARENT = 1 << 8
T_DEFAULT = 1 << 9
T_PKEY = 1 << 20 # special, one of constraints
T_ALL = (T_TABLE | T_CONSTRAINT | T_INDEX | T_SEQUENCE
| T_TRIGGER | T_RULE | T_GRANT | T_OWNER | T_DEFAULT)
#
# Utility functions
#
def find_new_name(curs, name):
"""Create new object name for case the old exists.
Needed when creating a new table besides old one.
"""
# cut off previous numbers
m = re.search('_[0-9]+$', name)
if m:
name = name[:m.start()]
# now loop
for i in range(1, 1000):
tname = "%s_%d" % (name, i)
q = "select count(1) from pg_class where relname = %s"
curs.execute(q, [tname])
if curs.fetchone()[0] == 0:
return tname
# failed
raise Exception('find_new_name failed')
def rx_replace(rx, sql, new_part):
"""Find a regex match and replace that part with new_part."""
m = re.search(rx, sql, re.I)
if not m:
raise Exception('rx_replace failed: rx=%r sql=%r new=%r' % (rx, sql, new_part))
p1 = sql[:m.start()]
p2 = sql[m.end():]
return p1 + new_part + p2
#
# Schema objects
#
class TElem(object):
"""Keeps info about one metadata object."""
SQL = ""
type = 0
def get_create_sql(self, curs, new_name=None):
"""Return SQL statement for creating or None if not supported."""
return None
def get_drop_sql(self, curs):
"""Return SQL statement for dropping or None of not supported."""
return None
@classmethod
def get_load_sql(cls, pgver):
"""Return SQL statement for finding objects."""
return cls.SQL
class TConstraint(TElem):
"""Info about constraint."""
type = T_CONSTRAINT
SQL = """
SELECT c.conname as name, pg_get_constraintdef(c.oid) as def, c.contype,
i.indisclustered as is_clustered
FROM pg_constraint c LEFT JOIN pg_index i ON
c.conrelid = i.indrelid AND
c.conname = (SELECT r.relname FROM pg_class r WHERE r.oid = i.indexrelid)
WHERE c.conrelid = %(oid)s AND c.contype != 'f'
"""
def __init__(self, table_name, row):
"""Init constraint."""
self.table_name = table_name
self.name = row['name']
self.defn = row['def']
self.contype = row['contype']
self.is_clustered = row['is_clustered']
# tag pkeys
if self.contype == 'p':
self.type += T_PKEY
def get_create_sql(self, curs, new_table_name=None):
"""Generate creation SQL."""
# no ONLY here as table with childs (only case that matters)
# cannot have contraints that childs do not have
fmt = "ALTER TABLE %s ADD CONSTRAINT %s\n %s;"
if new_table_name:
name = self.name
if self.contype in ('p', 'u'):
name = find_new_name(curs, self.name)
qtbl = quote_fqident(new_table_name)
qname = quote_ident(name)
else:
qtbl = quote_fqident(self.table_name)
qname = quote_ident(self.name)
sql = fmt % (qtbl, qname, self.defn)
if self.is_clustered:
sql += ' ALTER TABLE ONLY %s\n CLUSTER ON %s;' % (qtbl, qname)
return sql
def get_drop_sql(self, curs):
"""Generate removal sql."""
fmt = "ALTER TABLE ONLY %s\n DROP CONSTRAINT %s;"
sql = fmt % (quote_fqident(self.table_name), quote_ident(self.name))
return sql
class TIndex(TElem):
"""Info about index."""
type = T_INDEX
SQL = """
SELECT n.nspname || '.' || c.relname as name,
pg_get_indexdef(i.indexrelid) as defn,
c.relname as local_name,
i.indisclustered as is_clustered
FROM pg_index i, pg_class c, pg_namespace n
WHERE c.oid = i.indexrelid AND i.indrelid = %(oid)s
AND n.oid = c.relnamespace
AND NOT EXISTS
(select objid from pg_depend
where classid = %(pg_class_oid)s
and objid = c.oid
and deptype = 'i')
"""
def __init__(self, table_name, row):
self.name = row['name']
self.defn = row['defn'].replace(' USING ', '\n USING ', 1) + ';'
self.is_clustered = row['is_clustered']
self.table_name = table_name
self.local_name = row['local_name']
def get_create_sql(self, curs, new_table_name=None):
"""Generate creation SQL."""
if new_table_name:
# fixme: seems broken
iname = find_new_name(curs, self.name)
tname = new_table_name
pnew = "INDEX %s ON %s " % (quote_ident(iname), quote_fqident(tname))
rx = r"\bINDEX[ ][a-z0-9._]+[ ]ON[ ][a-z0-9._]+[ ]"
sql = rx_replace(rx, self.defn, pnew)
else:
sql = self.defn
iname = self.local_name
tname = self.table_name
if self.is_clustered:
sql += ' ALTER TABLE ONLY %s\n CLUSTER ON %s;' % (
quote_fqident(tname), quote_ident(iname))
return sql
def get_drop_sql(self, curs):
return 'DROP INDEX %s;' % quote_fqident(self.name)
class TRule(TElem):
"""Info about rule."""
type = T_RULE
SQL = """SELECT rw.*, pg_get_ruledef(rw.oid) as def
FROM pg_rewrite rw
WHERE rw.ev_class = %(oid)s AND rw.rulename <> '_RETURN'::name
"""
def __init__(self, table_name, row, new_name=None):
self.table_name = table_name
self.name = row['rulename']
self.defn = row['def']
self.enabled = row.get('ev_enabled', 'O')
def get_create_sql(self, curs, new_table_name=None):
"""Generate creation SQL."""
if not new_table_name:
sql = self.defn
table = self.table_name
else:
idrx = r'''([a-z0-9._]+|"([^"]+|"")+")+'''
# fixme: broken / quoting
rx = r"\bTO[ ]" + idrx
rc = re.compile(rx, re.X)
m = rc.search(self.defn)
if not m:
raise Exception('Cannot find table name in rule')
old_tbl = m.group(1)
new_tbl = quote_fqident(new_table_name)
sql = self.defn.replace(old_tbl, new_tbl)
table = new_table_name
if self.enabled != 'O':
# O - rule fires in origin and local modes
# D - rule is disabled
# R - rule fires in replica mode
# A - rule fires always
action = {'R': 'ENABLE REPLICA',
'A': 'ENABLE ALWAYS',
'D': 'DISABLE'}[self.enabled]
sql += ('\nALTER TABLE %s %s RULE %s;' % (table, action, self.name))
return sql
def get_drop_sql(self, curs):
return 'DROP RULE %s ON %s' % (quote_ident(self.name), quote_fqident(self.table_name))
class TTrigger(TElem):
"""Info about trigger."""
type = T_TRIGGER
def __init__(self, table_name, row):
self.table_name = table_name
self.name = row['name']
self.defn = row['def'] + ';'
self.defn = self.defn.replace('FOR EACH', '\n FOR EACH', 1)
def get_create_sql(self, curs, new_table_name=None):
"""Generate creation SQL."""
if not new_table_name:
return self.defn
# fixme: broken / quoting
rx = r"\bON[ ][a-z0-9._]+[ ]"
pnew = "ON %s " % new_table_name
return rx_replace(rx, self.defn, pnew)
def get_drop_sql(self, curs):
return 'DROP TRIGGER %s ON %s' % (quote_ident(self.name), quote_fqident(self.table_name))
@classmethod
def get_load_sql(cls, pg_vers):
"""Return SQL statement for finding objects."""
sql = "SELECT tgname as name, pg_get_triggerdef(oid) as def "\
" FROM pg_trigger "\
" WHERE tgrelid = %(oid)s AND "
if pg_vers >= 90000:
sql += "NOT tgisinternal"
else:
sql += "NOT tgisconstraint"
return sql
class TParent(TElem):
"""Info about trigger."""
type = T_PARENT
SQL = """
SELECT n.nspname||'.'||c.relname AS name
FROM pg_inherits i
JOIN pg_class c ON i.inhparent = c.oid
JOIN pg_namespace n ON c.relnamespace = n.oid
WHERE i.inhrelid = %(oid)s
"""
def __init__(self, table_name, row):
self.name = table_name
self.parent_name = row['name']
def get_create_sql(self, curs, new_table_name=None):
return 'ALTER TABLE ONLY %s\n INHERIT %s' % (quote_fqident(self.name), quote_fqident(self.parent_name))
def get_drop_sql(self, curs):
return 'ALTER TABLE ONLY %s\n NO INHERIT %s' % (quote_fqident(self.name), quote_fqident(self.parent_name))
class TOwner(TElem):
"""Info about table owner."""
type = T_OWNER
SQL = """
SELECT pg_get_userbyid(relowner) as owner FROM pg_class
WHERE oid = %(oid)s
"""
def __init__(self, table_name, row, new_name=None):
self.table_name = table_name
self.name = 'Owner'
self.owner = row['owner']
def get_create_sql(self, curs, new_name=None):
"""Generate creation SQL."""
if not new_name:
new_name = self.table_name
return 'ALTER TABLE %s\n OWNER TO %s;' % (quote_fqident(new_name), quote_ident(self.owner))
class TGrant(TElem):
"""Info about permissions."""
type = T_GRANT
SQL = "SELECT relacl FROM pg_class where oid = %(oid)s"
# Sync with: src/include/utils/acl.h
acl_map = {
'a': 'INSERT',
'r': 'SELECT',
'w': 'UPDATE',
'd': 'DELETE',
'D': 'TRUNCATE',
'x': 'REFERENCES',
't': 'TRIGGER',
'X': 'EXECUTE',
'U': 'USAGE',
'C': 'CREATE',
'T': 'TEMPORARY',
'c': 'CONNECT',
# old
'R': 'RULE',
}
def acl_to_grants(self, acl):
if acl == "arwdRxt": # ALL for tables
return "ALL"
i = 0
lst1 = []
lst2 = []
while i < len(acl):
a = self.acl_map[acl[i]]
if i+1 < len(acl) and acl[i+1] == '*':
lst2.append(a)
i += 2
else:
lst1.append(a)
i += 1
return ", ".join(lst1), ", ".join(lst2)
def parse_relacl(self, relacl):
"""Parse ACL to tuple of (user, acl, who)"""
if relacl is None:
return []
tup_list = []
for sacl in skytools.parse_pgarray(relacl):
acl = skytools.parse_acl(sacl)
if not acl:
continue
tup_list.append(acl)
return tup_list
def __init__(self, table_name, row, new_name=None):
self.name = table_name
self.acl_list = self.parse_relacl(row['relacl'])
def get_create_sql(self, curs, new_name=None):
"""Generate creation SQL."""
if not new_name:
new_name = self.name
qtarget = quote_fqident(new_name)
sql_list = []
for role, acl, ___who in self.acl_list:
qrole = quote_ident(role)
astr1, astr2 = self.acl_to_grants(acl)
if astr1:
sql = "GRANT %s ON %s\n TO %s;" % (astr1, qtarget, qrole)
sql_list.append(sql)
if astr2:
sql = "GRANT %s ON %s\n TO %s WITH GRANT OPTION;" % (astr2, qtarget, qrole)
sql_list.append(sql)
return "\n".join(sql_list)
def get_drop_sql(self, curs):
sql_list = []
for user, ___acl, ___who in self.acl_list:
sql = "REVOKE ALL FROM %s ON %s;" % (quote_ident(user), quote_fqident(self.name))
sql_list.append(sql)
return "\n".join(sql_list)
class TColumnDefault(TElem):
"""Info about table column default value."""
type = T_DEFAULT
SQL = """
select a.attname as name, pg_get_expr(d.adbin, d.adrelid) as expr
from pg_attribute a left join pg_attrdef d
on (d.adrelid = a.attrelid and d.adnum = a.attnum)
where a.attrelid = %(oid)s
and not a.attisdropped
and a.atthasdef
and a.attnum > 0
order by a.attnum;
"""
def __init__(self, table_name, row):
self.table_name = table_name
self.name = row['name']
self.expr = row['expr']
def get_create_sql(self, curs, new_name=None):
"""Generate creation SQL."""
tbl = new_name or self.table_name
sql = "ALTER TABLE ONLY %s ALTER COLUMN %s\n SET DEFAULT %s;" % (
quote_fqident(tbl), quote_ident(self.name), self.expr)
return sql
def get_drop_sql(self, curs):
return "ALTER TABLE %s ALTER COLUMN %s\n DROP DEFAULT;" % (
quote_fqident(self.table_name), quote_ident(self.name))
class TColumn(TElem):
"""Info about table column."""
SQL = """
select a.attname as name,
quote_ident(a.attname) as qname,
format_type(a.atttypid, a.atttypmod) as dtype,
a.attnotnull,
(select max(char_length(aa.attname))
from pg_attribute aa where aa.attrelid = %(oid)s) as maxcol,
pg_get_serial_sequence(%(fq2name)s, a.attname) as seqname
from pg_attribute a left join pg_attrdef d
on (d.adrelid = a.attrelid and d.adnum = a.attnum)
where a.attrelid = %(oid)s
and not a.attisdropped
and a.attnum > 0
order by a.attnum;
"""
seqname = None
def __init__(self, table_name, row):
self.name = row['name']
fname = row['qname'].ljust(row['maxcol'] + 3)
self.column_def = fname + ' ' + row['dtype']
if row['attnotnull']:
self.column_def += ' not null'
self.sequence = None
if row['seqname']:
self.seqname = skytools.unquote_fqident(row['seqname'])
class TGPDistKey(TElem):
"""Info about GreenPlum table distribution keys"""
SQL = """
select a.attname as name
from pg_attribute a, gp_distribution_policy p
where p.localoid = %(oid)s
and a.attrelid = %(oid)s
and a.attnum = any(p.attrnums)
order by a.attnum;
"""
def __init__(self, table_name, row):
self.name = row['name']
class TTable(TElem):
"""Info about table only (columns)."""
type = T_TABLE
def __init__(self, table_name, col_list, dist_key_list=None):
self.name = table_name
self.col_list = col_list
self.dist_key_list = dist_key_list
def get_create_sql(self, curs, new_name=None):
"""Generate creation SQL."""
if not new_name:
new_name = self.name
sql = "CREATE TABLE %s (" % quote_fqident(new_name)
sep = "\n "
for c in self.col_list:
sql += sep + c.column_def
sep = ",\n "
sql += "\n)"
if self.dist_key_list is not None:
if self.dist_key_list != []:
sql += "\ndistributed by(%s)" % ','.join(c.name for c
in self.dist_key_list)
else:
sql += '\ndistributed randomly'
sql += ";"
return sql
def get_drop_sql(self, curs):
return "DROP TABLE %s;" % quote_fqident(self.name)
class TSeq(TElem):
"""Info about sequence."""
type = T_SEQUENCE
SQL = """SELECT *, %(owner)s as "owner" from %(fqname)s """
def __init__(self, seq_name, row):
self.name = seq_name
defn = ''
self.owner = row['owner']
if row['increment_by'] != 1:
defn += ' INCREMENT BY %d' % row['increment_by']
if row['min_value'] != 1:
defn += ' MINVALUE %d' % row['min_value']
if row['max_value'] != 9223372036854775807:
defn += ' MAXVALUE %d' % row['max_value']
last_value = row['last_value']
if row['is_called']:
last_value += row['increment_by']
if last_value >= row['max_value']:
raise Exception('duh, seq passed max_value')
if last_value != 1:
defn += ' START %d' % last_value
if row['cache_value'] != 1:
defn += ' CACHE %d' % row['cache_value']
if row['is_cycled']:
defn += ' CYCLE '
if self.owner:
defn += ' OWNED BY %s' % self.owner
self.defn = defn
def get_create_sql(self, curs, new_seq_name=None):
"""Generate creation SQL."""
# we are in table def, forget full def
if self.owner:
sql = "ALTER SEQUENCE %s\n OWNED BY %s;" % (
quote_fqident(self.name), self.owner)
return sql
name = self.name
if new_seq_name:
name = new_seq_name
sql = 'CREATE SEQUENCE %s %s;' % (quote_fqident(name), self.defn)
return sql
def get_drop_sql(self, curs):
if self.owner:
return ''
return 'DROP SEQUENCE %s;' % quote_fqident(self.name)
#
# Main table object, loads all the others
#
class BaseStruct(object):
"""Collects and manages all info about a higher-level db object.
Allow to issue CREATE/DROP statements about any
group of elements.
"""
object_list = []
def __init__(self, curs, name):
"""Initializes class by loading info about table_name from database."""
self.name = name
self.fqname = quote_fqident(name)
def _load_elem(self, curs, name, args, eclass):
"""Fetch element(s) from db."""
elem_list = []
#print "Loading %s, name=%s, args=%s" % (repr(eclass), repr(name), repr(args))
sql = eclass.get_load_sql(curs.connection.server_version)
curs.execute(sql % args)
for row in curs.fetchall():
elem_list.append(eclass(name, row))
return elem_list
def create(self, curs, objs, new_table_name=None, log=None):
"""Issues CREATE statements for requested set of objects.
If new_table_name is giver, creates table under that name
and also tries to rename all indexes/constraints that conflict
with existing table.
"""
for o in self.object_list:
if o.type & objs:
sql = o.get_create_sql(curs, new_table_name)
if not sql:
continue
if log:
log.info('Creating %s' % o.name)
log.debug(sql)
curs.execute(sql)
def drop(self, curs, objs, log=None):
"""Issues DROP statements for requested set of objects."""
# make sure the creating & dropping happen in reverse order
olist = self.object_list[:]
olist.reverse()
for o in olist:
if o.type & objs:
sql = o.get_drop_sql(curs)
if not sql:
continue
if log:
log.info('Dropping %s' % o.name)
log.debug(sql)
curs.execute(sql)
def get_create_sql(self, objs):
res = []
for o in self.object_list:
if o.type & objs:
sql = o.get_create_sql(None, None)
if sql:
res.append(sql)
return "".join(res)
class TableStruct(BaseStruct):
"""Collects and manages all info about table.
Allow to issue CREATE/DROP statements about any
group of elements.
"""
def __init__(self, curs, table_name):
"""Initializes class by loading info about table_name from database."""
super(TableStruct, self).__init__(curs, table_name)
self.table_name = table_name
# fill args
schema, name = skytools.fq_name_parts(table_name)
args = {
'schema': schema,
'table': name,
'fqname': self.fqname,
'fq2name': skytools.quote_literal(self.fqname),
'oid': skytools.get_table_oid(curs, table_name),
'pg_class_oid': skytools.get_table_oid(curs, 'pg_catalog.pg_class'),
}
# load table struct
self.col_list = self._load_elem(curs, self.name, args, TColumn)
# if db is GP then read also table distribution keys
if skytools.exists_table(curs, "pg_catalog.gp_distribution_policy"):
self.dist_key_list = self._load_elem(curs, self.name, args, TGPDistKey)
else:
self.dist_key_list = None
self.object_list = [TTable(table_name, self.col_list, self.dist_key_list)]
self.seq_list = []
# load seqs
for col in self.col_list:
if col.seqname:
fqname = quote_fqident(col.seqname)
owner = self.fqname + '.' + quote_ident(col.name)
seq_args = {'fqname': fqname, 'owner': skytools.quote_literal(owner)}
self.seq_list += self._load_elem(curs, col.seqname, seq_args, TSeq)
self.object_list += self.seq_list
# load additional objects
to_load = [TColumnDefault, TConstraint, TIndex, TTrigger,
TRule, TGrant, TOwner, TParent]
for eclass in to_load:
self.object_list += self._load_elem(curs, self.name, args, eclass)
def get_column_list(self):
"""Returns list of column names the table has."""
res = []
for c in self.col_list:
res.append(c.name)
return res
class SeqStruct(BaseStruct):
"""Collects and manages all info about sequence.
Allow to issue CREATE/DROP statements about any
group of elements.
"""
def __init__(self, curs, seq_name):
"""Initializes class by loading info about table_name from database."""
super(SeqStruct, self).__init__(curs, seq_name)
# fill args
args = {'fqname': self.fqname, 'owner': 'null'}
# load table struct
self.object_list = self._load_elem(curs, seq_name, args, TSeq)
def manual_check():
from skytools import connect_database
db = connect_database("dbname=fooz")
curs = db.cursor()
s = TableStruct(curs, "public.data1")
s.drop(curs, T_ALL)
s.create(curs, T_ALL)
s.create(curs, T_ALL, "data1_new")
s.create(curs, T_PKEY)
if __name__ == '__main__':
manual_check()
|