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 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
|
#!/usr/bin/env perl
# -- # -*- Perl -*-w
# $Header: /cvsroot/autodoc/autodoc/postgresql_autodoc.pl,v 1.11 2005/05/01 05:13:38 rbt Exp $
# Imported 1.22 2002/02/08 17:09:48 into sourceforge
# Postgres Auto-Doc Version 1.25
# License
# -------
# Copyright (c) 2001-2005, Rod Taylor
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
#
# 3. Neither the name of the InQuent Technologies Inc. nor the names
# of its contributors may be used to endorse or promote products
# derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FREEBSD
# PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# About Project
# -------------
# Various details about the project and related items can be found at
# the website
#
# http://www.rbt.ca/autodoc/
use strict;
use warnings;
use DBI;
# Allows file locking
use Fcntl;
# Allows file templates
use HTML::Template;
sub main($)
{
my ($ARGV) = @_;
my %db;
# The templates path
# @@TEMPLATE-DIR@@ will be replaced by make in the build phase
my $template_path = '@@TEMPLATE-DIR@@';
# Setup the default connection variables based on the environment
my $dbuser = $ENV{'PGUSER'};
$dbuser ||= $ENV{'USER'};
my $database = $ENV{'PGDATABASE'};
$database ||= $dbuser;
my $dbhost = $ENV{'PGHOST'};
$dbhost ||= "";
my $dbport = $ENV{'PGPORT'};
$dbport ||= "";
my $dbpass = "";
my $output_filename_base = $database;
# Tracking variables
my $dbisset = 0;
my $fileisset = 0;
my $only_schema;
my $wanted_output = undef; # means all types
my $statistics = 0;
# Fetch base and dirnames. Useful for Usage()
my $basename = $0;
my $dirname = $0;
$basename =~ s|^.*/([^/]+)$|$1|;
$dirname =~ s|^(.*)/[^/]+$|$1|;
# If template_path isn't defined, lets set it ourselves
$template_path = $dirname if ( !defined($template_path) );
for ( my $i = 0; $i <= $#ARGV; $i++ ) {
ARGPARSE: for ( $ARGV[$i] ) {
# Set the database
/^-d$/ && do {
$database = $ARGV[ ++$i ];
$dbisset = 1;
if ( !$fileisset ) {
$output_filename_base = $database;
}
last;
};
# Set the user
/^-[uU]$/ && do {
$dbuser = $ARGV[ ++$i ];
if ( !$dbisset ) {
$database = $dbuser;
if ( !$fileisset ) {
$output_filename_base = $database;
}
}
last;
};
# Set the hostname
/^-h$/ && do { $dbhost = $ARGV[ ++$i ]; last; };
# Set the Port
/^-p$/ && do { $dbport = $ARGV[ ++$i ]; last; };
# Set the users password
/^--password=/ && do {
$dbpass = $ARGV[$i];
$dbpass =~ s/^--password=//g;
last;
};
# Set the base of the filename. The extensions pulled
# from the templates will be appended to this name
/^-f$/ && do {
$output_filename_base = $ARGV[ ++$i ];
$fileisset = 1;
last;
};
# Set the template directory explicitly
/^(-l|--library)$/ && do {
$template_path = $ARGV[ ++$i ];
last;
};
# Set the output type
/^(-t|--type)$/ && do {
$wanted_output = $ARGV[ ++$i ];
last;
};
# User has requested a single schema dump and provided a pattern
/^(-s|--schema)$/ && do {
$only_schema = $ARGV[ ++$i ];
last;
};
# Check to see if Statistics have been requested
/^--statistics$/ && do {
$statistics = 1;
last;
};
# Help is wanted, redirect user to usage()
/^-\?$/ && do { usage( $basename, $database, $dbuser ); last; };
/^--help$/ && do { usage( $basename, $database, $dbuser ); last; };
}
}
# If no arguments have been provided, connect to the database anyway but
# inform the user of what we're doing.
if ( $#ARGV <= 0 ) {
print <<Msg
No arguments set. Use '$basename --help' for help
Connecting to database '$database' as user '$dbuser'
Msg
;
}
# Database Connection
my $dsn = "dbi:Pg:dbname=$database";
$dsn .= ";host=$dbhost" if ( "$dbhost" ne "" );
$dsn .= ";port=$dbport" if ( "$dbport" ne "" );
my $dbh = DBI->connect( $dsn, $dbuser, $dbpass )
or triggerError("Unable to connect due to: $DBI::errstr");
info_collect( $dbh, \%db, $database, $only_schema, $statistics );
# Write out *ALL* templates
write_using_templates( \%db, $database, $statistics, $template_path,
$output_filename_base, $wanted_output );
} ## end sub main($)
##
# info_collect
#
# Pull out all of the applicable information about a specific database
sub info_collect($$$$$)
{
my ( $dbh, $db, $database, $only_schema, $statistics ) = @_;
my %struct;
$db->{$database}{'STRUCT'} = \%struct;
my $struct = $db->{$database}{'STRUCT'};
# PostgreSQL's version is used to determine what queries are required
# to retrieve a given information set.
my $sql_GetVersion = qq{
SELECT cast(substr(version(), 12, 1) as integer) * 10000
+ cast(substr(version(), 14, 1) as integer) * 100
AS version;
};
my $sth_GetVersion = $dbh->prepare($sql_GetVersion);
$sth_GetVersion->execute();
my $version = $sth_GetVersion->fetchrow_hashref;
my $pgversion = $version->{'version'};
$sth_GetVersion->finish();
# Ensure we only retrieve information for the requested schemas.
#
# system_schema -> The primary system schema for a database.
# Public is used for verions prior to 7.3
#
# system_schema_list -> The list of schemas which we are not supposed
# to gather information for.
# TODO: Merge with system_schema in array form.
#
# schemapattern -> The schema the user provided as a command
# line option.
my $schemapattern = '^';
my $system_schema;
my $system_schema_list;
if ( $pgversion >= 70300 ) {
$system_schema = 'pg_catalog';
$system_schema_list =
'pg_catalog|pg_toast|pg_temp_[0-9]+|information_schema';
if ( defined($only_schema) ) {
$schemapattern = '^' . $only_schema . '$';
}
}
else {
$system_schema = 'public';
$system_schema_list = $system_schema;
}
#
# List of queries which are used to gather information from the
# database. The queries differ based on version but should
# provide similar output. At some point it should be safe to remove
# support for older database versions.
#
my $sql_Columns;
my $sql_Constraint;
my $sql_Database;
my $sql_Foreign_Keys;
my $sql_Foreign_Key_Arg;
my $sql_Function;
my $sql_FunctionArg;
my $sql_Indexes;
my $sql_Primary_Keys;
my $sql_Schema;
my $sql_Tables;
my $sql_Table_Statistics;
# Pull out a list of tables, views and special structures.
if ( $pgversion >= 70300 ) {
$sql_Tables = qq{
SELECT nspname as namespace
, relname as tablename
, pg_catalog.pg_get_userbyid(relowner) AS tableowner
, relhasindex as hasindexes
, relhasrules as hasrules
, reltriggers as hastriggers
, pg_class.oid
, pg_catalog.obj_description(pg_class.oid, 'pg_class') as table_description
, relacl
, CASE
WHEN relkind = 'r' THEN
'table'
WHEN relkind = 's' THEN
'special'
ELSE
'view'
END as reltype
, CASE
WHEN relkind = 'v' THEN
pg_get_viewdef(pg_class.oid)
ELSE
NULL
END as view_definition
FROM pg_catalog.pg_class
JOIN pg_catalog.pg_namespace ON (relnamespace = pg_namespace.oid)
WHERE relkind IN ('r', 's', 'v')
AND nspname !~ '$system_schema_list'
AND nspname ~ '$schemapattern';
};
# - uses pg_class.oid
$sql_Columns = qq{
SELECT attname as column_name
, attlen as column_length
, CASE
WHEN pg_type.typname = 'int4'
AND EXISTS (SELECT TRUE
FROM pg_catalog.pg_depend
JOIN pg_catalog.pg_class ON (pg_class.oid = objid)
WHERE refobjsubid = attnum
AND refobjid = attrelid
AND relkind = 'S') THEN
'serial'
WHEN pg_type.typname = 'int8'
AND EXISTS (SELECT TRUE
FROM pg_catalog.pg_depend
JOIN pg_catalog.pg_class ON (pg_class.oid = objid)
WHERE refobjsubid = attnum
AND refobjid = attrelid
AND relkind = 'S') THEN
'bigserial'
ELSE
pg_catalog.format_type(atttypid, atttypmod)
END as column_type
, CASE
WHEN attnotnull THEN
cast('NOT NULL' as text)
ELSE
cast('' as text)
END as column_null
, CASE
WHEN pg_type.typname IN ('int4', 'int8')
AND EXISTS (SELECT TRUE
FROM pg_catalog.pg_depend
JOIN pg_catalog.pg_class ON (pg_class.oid = objid)
WHERE refobjsubid = attnum
AND refobjid = attrelid
AND relkind = 'S') THEN
NULL
ELSE
adsrc
END as column_default
, pg_catalog.col_description(attrelid, attnum) as column_description
, attnum
FROM pg_catalog.pg_attribute
JOIN pg_catalog.pg_type ON (pg_type.oid = atttypid)
LEFT OUTER JOIN pg_catalog.pg_attrdef ON ( attrelid = adrelid
AND attnum = adnum)
WHERE attnum > 0
AND attisdropped IS FALSE
AND attrelid = ?;
};
}
elsif ( $pgversion >= 70200 ) {
$sql_Tables = qq{
SELECT 'public' as namespace
, relname as tablename
, pg_get_userbyid(relowner) AS tableowner
, relhasindex as hasindexes
, relhasrules as hasrules
, reltriggers as hastriggers
, pg_class.oid
, obj_description(pg_class.oid, 'pg_class') as table_description
, relacl
, CASE
WHEN relkind = 'r' THEN
'table'
WHEN relkind = 's' THEN
'special'
ELSE
'view'
END as reltype
, CASE
WHEN relkind = 'v' THEN
pg_get_viewdef(pg_class.relname)
ELSE
NULL
END as view_definition
FROM pg_class
WHERE relkind in ('r', 's', 'v')
AND relname NOT LIKE 'pg_%';
};
# - uses pg_class.oid
$sql_Columns = qq{
SELECT attname as column_name
, attlen as column_length
, CASE
WHEN pg_type.typname = 'int4'
AND adsrc LIKE 'nextval(%' THEN
'serial'
WHEN pg_type.typname = 'int8'
AND adsrc LIKE 'nextval(%' THEN
'bigserial'
ELSE
format_type(atttypid, atttypmod)
END as column_type
, CASE
WHEN attnotnull IS TRUE THEN
'NOT NULL'::text
ELSE
''::text
END as column_null
, CASE
WHEN pg_type.typname in ('int4', 'int8')
AND adsrc LIKE 'nextval(%' THEN
NULL
ELSE
adsrc
END as column_default
, col_description(attrelid, attnum) as column_description
, attnum
FROM pg_attribute
JOIN pg_type ON (pg_type.oid = pg_attribute.atttypid)
LEFT OUTER JOIN pg_attrdef ON ( pg_attribute.attrelid = pg_attrdef.adrelid
AND pg_attribute.attnum = pg_attrdef.adnum)
WHERE attnum > 0
AND attrelid = ?;
};
}
else {
# 7.1 or earlier has a different description structure
$sql_Tables = qq{
SELECT 'public' as namespace
, relname as tablename
, pg_get_userbyid(relowner) AS tableowner
, relhasindex as hasindexes
, relhasrules as hasrules
, reltriggers as hastriggers
, pg_class.oid
, obj_description(pg_class.oid) as table_description
, 'table' as reltype
, NULL as view_definition
FROM pg_class
WHERE relkind IN ('r', 's')
AND relname NOT LIKE 'pg_%';
};
# - uses pg_class.oid
$sql_Columns = qq{
SELECT attname as column_name
, attlen as column_length
, CASE
WHEN pg_type.typname = 'int4'
AND adsrc LIKE 'nextval(%' THEN
'serial'
WHEN pg_type.typname = 'int8'
AND adsrc LIKE 'nextval(%' THEN
'bigserial'
ELSE
format_type(atttypid, atttypmod)
END as column_type
, CASE
WHEN attnotnull IS TRUE THEN
'NOT NULL'::text
ELSE
''::text
END as column_null
, CASE
WHEN pg_type.typname in ('int4', 'int8')
AND adsrc LIKE 'nextval(%' THEN
NULL
ELSE
adsrc
END as column_default
, description as column_description
, attnum
FROM pg_attribute
JOIN pg_type ON (pg_type.oid = pg_attribute.atttypid)
LEFT OUTER JOIN pg_attrdef ON ( pg_attribute.attrelid = pg_attrdef.adrelid
AND pg_attribute.attnum = pg_attrdef.adnum)
LEFT OUTER JOIN pg_description ON (pg_description.objoid = pg_attribute.oid)
WHERE attnum > 0
AND attrelid = ?;
};
}
if ( $statistics == 1 ) {
if ( $pgversion <= 70300 ) {
triggerError(
"Table statistics supported on PostgreSQL 7.4 and later.\nRemove --statistics flag and try again."
);
}
$sql_Table_Statistics = qq{
SELECT table_len
, tuple_count
, tuple_len
, CAST(tuple_percent AS numeric(20,2)) AS tuple_percent
, dead_tuple_count
, dead_tuple_len
, CAST(dead_tuple_percent AS numeric(20,2)) AS dead_tuple_percent
, CAST(free_space AS numeric(20,2)) AS free_space
, CAST(free_percent AS numeric(20,2)) AS free_percent
FROM pgstattuple(CAST(? AS oid));
};
}
if ( $pgversion >= 70300 ) {
$sql_Indexes = qq{
SELECT schemaname
, tablename
, indexname
, substring( indexdef
FROM position('(' IN indexdef) + 1
FOR length(indexdef) - position('(' IN indexdef) - 1
) AS indexdef
FROM pg_catalog.pg_indexes
WHERE substring(indexdef FROM 8 FOR 6) != 'UNIQUE'
AND schemaname = ?
AND tablename = ?;
};
}
else {
$sql_Indexes = qq{
SELECT NULL AS schemaname
, NULL AS tablename
, NULL AS indexname
, NULL AS indexdef
WHERE TRUE = FALSE AND ? = ?;
};
}
# Fetch the list of PRIMARY and UNIQUE keys
if ( $pgversion >= 70300 ) {
$sql_Primary_Keys = qq{
SELECT conname AS constraint_name
, pg_catalog.pg_get_indexdef(d.objid) AS constraint_definition
, CASE
WHEN contype = 'p' THEN
'PRIMARY KEY'
ELSE
'UNIQUE'
END as constraint_type
FROM pg_catalog.pg_constraint AS c
JOIN pg_catalog.pg_depend AS d ON (d.refobjid = c.oid)
WHERE contype IN ('p', 'u')
AND deptype = 'i'
AND conrelid = ?;
};
}
else {
# - uses pg_class.oid
$sql_Primary_Keys = qq{
SELECT i.relname AS constraint_name
, pg_get_indexdef(pg_index.indexrelid) AS constraint_definition
, CASE
WHEN indisprimary THEN
'PRIMARY KEY'
ELSE
'UNIQUE'
END as constraint_type
FROM pg_index
, pg_class as i
WHERE i.oid = pg_index.indexrelid
AND pg_index.indisunique
AND pg_index.indrelid = ?;
};
}
# FOREIGN KEY fetch
#
# Don't return the constraint name if it was automatically generated by
# PostgreSQL. The $N (where N is an integer) is not a descriptive enough
# piece of information to be worth while including in the various outputs.
if ( $pgversion >= 70300 ) {
$sql_Foreign_Keys = qq{
SELECT pg_constraint.oid
, pg_namespace.nspname AS namespace
, CASE WHEN substring(pg_constraint.conname FROM 1 FOR 1) = '\$' THEN ''
ELSE pg_constraint.conname
END AS constraint_name
, conkey AS constraint_key
, confkey AS constraint_fkey
, confrelid AS foreignrelid
FROM pg_catalog.pg_constraint
JOIN pg_catalog.pg_class ON (pg_class.oid = conrelid)
JOIN pg_catalog.pg_class AS pc ON (pc.oid = confrelid)
JOIN pg_catalog.pg_namespace ON (pg_class.relnamespace = pg_namespace.oid)
JOIN pg_catalog.pg_namespace AS pn ON (pn.oid = pc.relnamespace)
WHERE contype = 'f'
AND conrelid = ?
AND pg_namespace.nspname ~ '$schemapattern'
AND pn.nspname ~ '$schemapattern';
};
$sql_Foreign_Key_Arg = qq{
SELECT attname AS attribute_name
, relname AS relation_name
, nspname AS namespace
FROM pg_catalog.pg_attribute
JOIN pg_catalog.pg_class ON (pg_class.oid = attrelid)
JOIN pg_catalog.pg_namespace ON (relnamespace = pg_namespace.oid)
WHERE attrelid = ?
AND attnum = ?;
};
}
else {
# - uses pg_class.oid
$sql_Foreign_Keys = q{
SELECT oid
, 'public' AS namespace
, CASE WHEN substring(tgname from 1 for 1) = '$' THEN ''
ELSE tgname
END AS constraint_name
, tgnargs AS number_args
, tgargs AS args
FROM pg_trigger
WHERE tgisconstraint = TRUE
AND tgtype = 21
AND tgrelid = ?;
};
$sql_Foreign_Key_Arg = qq{SELECT TRUE WHERE ? = 0 and ? = 0;};
}
# Fetch CHECK constraints
if ( $pgversion >= 70400 ) {
$sql_Constraint = qq{
SELECT pg_get_constraintdef(oid) AS constraint_source
, conname AS constraint_name
FROM pg_constraint
WHERE conrelid = ?
AND contype = 'c';
};
}
elsif ( $pgversion >= 70300 ) {
$sql_Constraint = qq{
SELECT 'CHECK ' || pg_catalog.substr(consrc, 2, length(consrc) - 2) AS constraint_source
, conname AS constraint_name
FROM pg_constraint
WHERE conrelid = ?
AND contype = 'c';
};
}
else {
$sql_Constraint = qq{
SELECT 'CHECK ' || substr(rcsrc, 2, length(rcsrc) - 2) AS constraint_source
, rcname AS constraint_name
FROM pg_relcheck
WHERE rcrelid = ?;
};
}
# Query for function information
if ( $pgversion >= 80000 ) {
$sql_Function = qq{
SELECT proname AS function_name
, nspname AS namespace
, lanname AS language_name
, pg_catalog.obj_description(pg_proc.oid, 'pg_proc') AS comment
, proargtypes AS function_args
, proargnames AS function_arg_names
, prosrc AS source_code
, proretset AS returns_set
, prorettype AS return_type
FROM pg_catalog.pg_proc
JOIN pg_catalog.pg_language ON (pg_language.oid = prolang)
JOIN pg_catalog.pg_namespace ON (pronamespace = pg_namespace.oid)
JOIN pg_catalog.pg_type ON (prorettype = pg_type.oid)
WHERE pg_namespace.nspname !~ '$system_schema_list'
AND pg_namespace.nspname ~ '$schemapattern'
AND proname != 'plpgsql_call_handler';
};
$sql_FunctionArg = qq{
SELECT nspname AS namespace
, replace(pg_catalog.format_type(pg_type.oid, typtypmod)
, nspname ||'.'
, '') AS type_name
FROM pg_catalog.pg_type
JOIN pg_catalog.pg_namespace ON (pg_namespace.oid = typnamespace)
WHERE pg_type.oid = ?;
};
}
elsif ( $pgversion >= 70300 ) {
$sql_Function = qq{
SELECT proname AS function_name
, nspname AS namespace
, lanname AS language_name
, pg_catalog.obj_description(pg_proc.oid, 'pg_proc') AS comment
, proargtypes AS function_args
, NULL AS function_arg_names
, prosrc AS source_code
, proretset AS returns_set
, prorettype AS return_type
FROM pg_catalog.pg_proc
JOIN pg_catalog.pg_language ON (pg_language.oid = prolang)
JOIN pg_catalog.pg_namespace ON (pronamespace = pg_namespace.oid)
JOIN pg_catalog.pg_type ON (prorettype = pg_type.oid)
WHERE pg_namespace.nspname !~ '$system_schema_list'
AND pg_namespace.nspname ~ '$schemapattern'
AND proname != 'plpgsql_call_handler';
};
$sql_FunctionArg = qq{
SELECT nspname AS namespace
, replace(pg_catalog.format_type(pg_type.oid, typtypmod)
, nspname ||'.'
, '') AS type_name
FROM pg_catalog.pg_type
JOIN pg_catalog.pg_namespace ON (pg_namespace.oid = typnamespace)
WHERE pg_type.oid = ?;
};
}
else {
$sql_Function = qq{
SELECT proname AS function_name
, 'public' AS namespace
, lanname AS language_name
, description AS comment
, proargtypes AS function_args
, NULL AS function_arg_names
, prosrc AS source_code
, proretset AS returns_set
, prorettype AS return_type
FROM pg_proc
JOIN pg_language ON (pg_language.oid = prolang)
LEFT OUTER JOIN pg_description ON (objoid = pg_proc.oid)
WHERE pg_proc.oid > 16000
AND proname != 'plpgsql_call_handler';
};
$sql_FunctionArg = qq{
SELECT 'public' AS namespace
, format_type(pg_type.oid, typtypmod) AS type_name
FROM pg_type
WHERE pg_type.oid = ?;
};
}
# Fetch schema information.
if ( $pgversion >= 70300 ) {
$sql_Schema = qq{
SELECT pg_catalog.obj_description(oid, 'pg_namespace') AS comment
, nspname as namespace
FROM pg_catalog.pg_namespace
WHERE pg_namespace.nspname !~ '$system_schema_list'
AND pg_namespace.nspname ~ '$schemapattern';
};
}
else {
# In PostgreSQL 7.2 and prior, schemas were not a part of the system.
# Dummy query returns no rows to prevent added logic later on.
$sql_Schema = qq{SELECT TRUE WHERE TRUE = FALSE;};
}
# Fetch the description of the database
if ( $pgversion >= 70300 ) {
$sql_Database = qq{
SELECT pg_catalog.obj_description(oid, 'pg_database') as comment
FROM pg_catalog.pg_database
WHERE datname = '$database';
};
}
elsif ( $pgversion == 70200 ) {
$sql_Database = qq{
SELECT obj_description(oid, 'pg_database') as comment
FROM pg_database
WHERE datname = '$database';
};
}
else {
# In PostgreSQL 7.1, the database did not have comment support
$sql_Database = qq{ SELECT TRUE as comment WHERE TRUE = FALSE;};
}
my $sth_Columns = $dbh->prepare($sql_Columns);
my $sth_Constraint = $dbh->prepare($sql_Constraint);
my $sth_Database = $dbh->prepare($sql_Database);
my $sth_Foreign_Keys = $dbh->prepare($sql_Foreign_Keys);
my $sth_Foreign_Key_Arg = $dbh->prepare($sql_Foreign_Key_Arg);
my $sth_Function = $dbh->prepare($sql_Function);
my $sth_FunctionArg = $dbh->prepare($sql_FunctionArg);
my $sth_Indexes = $dbh->prepare($sql_Indexes);
my $sth_Primary_Keys = $dbh->prepare($sql_Primary_Keys);
my $sth_Schema = $dbh->prepare($sql_Schema);
my $sth_Tables = $dbh->prepare($sql_Tables);
my $sth_Table_Statistics = $dbh->prepare($sql_Table_Statistics);
# Fetch Database info
$sth_Database->execute();
my $dbinfo = $sth_Database->fetchrow_hashref;
if ( defined($dbinfo) ) {
$db->{$database}{'COMMENT'} = $dbinfo->{'comment'};
}
# Fetch tables and all things bound to tables
$sth_Tables->execute();
while ( my $tables = $sth_Tables->fetchrow_hashref ) {
my $reloid = $tables->{'oid'};
my $relname = $tables->{'tablename'};
my $schema = $tables->{'namespace'};
EXPRESSIONFOUND:
# Store permissions
my $acl = $tables->{'relacl'};
# Empty acl groups cause serious issues.
$acl ||= '';
# Strip array forming 'junk'.
$acl =~ s/^{//g;
$acl =~ s/}$//g;
$acl =~ s/"//g;
# Foreach acl
foreach ( split( /\,/, $acl ) ) {
my ( $user, $raw_permissions ) = split( /=/, $_ );
if ( defined($raw_permissions) ) {
if ( $user eq '' ) {
$user = 'PUBLIC';
}
# The section after the / is the user who granted the permissions
my ( $permissions, $granting_user ) =
split( /\//, $raw_permissions );
# Break down permissions to individual flags
if ( $permissions =~ /a/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'INSERT'} = 1;
}
if ( $permissions =~ /r/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'SELECT'} = 1;
}
if ( $permissions =~ /w/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'UPDATE'} = 1;
}
if ( $permissions =~ /d/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'DELETE'} = 1;
}
if ( $permissions =~ /R/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'RULE'} = 1;
}
if ( $permissions =~ /x/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'REFERENCES'} = 1;
}
if ( $permissions =~ /t/ ) {
$struct->{$schema}{'TABLE'}{$relname}{'ACL'}{$user}
{'TRIGGER'} = 1;
}
}
}
# Primitive Stats, but only if requested
if ( $statistics == 1 ) {
$sth_Table_Statistics->execute($reloid);
my $stats = $sth_Table_Statistics->fetchrow_hashref;
$struct->{$schema}{'TABLE'}{$relname}{'TABLELEN'} =
$stats->{'table_len'};
$struct->{$schema}{'TABLE'}{$relname}{'TUPLECOUNT'} =
$stats->{'tuple_count'};
$struct->{$schema}{'TABLE'}{$relname}{'TUPLELEN'} =
$stats->{'tuple_len'};
$struct->{$schema}{'TABLE'}{$relname}{'DEADTUPLELEN'} =
$stats->{'dead_tuple_len'};
$struct->{$schema}{'TABLE'}{$relname}{'FREELEN'} =
$stats->{'free_space'};
}
# Store the relation type
$struct->{$schema}{'TABLE'}{$relname}{'TYPE'} = $tables->{'reltype'};
# Store table description
$struct->{$schema}{'TABLE'}{$relname}{'DESCRIPTION'} =
$tables->{'table_description'};
# Store the view definition
$struct->{$schema}{'TABLE'}{$relname}{'VIEW_DEF'} =
$tables->{'view_definition'};
# Store constraints
$sth_Constraint->execute($reloid);
while ( my $cols = $sth_Constraint->fetchrow_hashref ) {
my $constraint_name = $cols->{'constraint_name'};
$struct->{$schema}{'TABLE'}{$relname}{'CONSTRAINT'}
{$constraint_name} = $cols->{'constraint_source'};
}
$sth_Columns->execute($reloid);
my $i = 1;
while ( my $cols = $sth_Columns->fetchrow_hashref ) {
my $column_name = $cols->{'column_name'};
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'ORDER'} = $cols->{'attnum'};
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'PRIMARY KEY'} = 0;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'FKTABLE'} = '';
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'TYPE'} = $cols->{'column_type'};
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'NULL'} = $cols->{'column_null'};
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'DESCRIPTION'} = $cols->{'column_description'};
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column_name}
{'DEFAULT'} = $cols->{'column_default'};
}
# Pull out both PRIMARY and UNIQUE keys based on the supplied query
# and the relation OID.
#
# Since there may be multiple UNIQUE indexes on a table, we append a
# number to the end of the the UNIQUE keyword which shows that they
# are a part of a related definition. I.e UNIQUE_1 goes with UNIQUE_1
#
$sth_Primary_Keys->execute($reloid);
my $unqgroup = 0;
while ( my $pricols = $sth_Primary_Keys->fetchrow_hashref ) {
my $index_type = $pricols->{'constraint_type'};
my $con = $pricols->{'constraint_name'};
my $indexdef = $pricols->{'constraint_definition'};
# Fetch the column list
my $column_list = $indexdef;
$column_list =~ s/.*\(([^)]+)\).*/$1/g;
# Split our column list and deal with all PRIMARY KEY fields
my @collist = split( ',', $column_list );
# Store the column number in the indextype field. Anything > 0
# indicates the column has this type of constraint applied to it.
my $column;
my $currentcol = $#collist + 1;
my $numcols = $#collist + 1;
# Bump group number if there are two or more columns
if ( $numcols >= 2 && $index_type eq 'UNIQUE' ) {
$unqgroup++;
}
# Record the data to the structure.
while ( $column = pop(@collist) ) {
$column =~ s/\s$//;
$column =~ s/^\s//;
$column =~ s/^"//;
$column =~ s/"$//;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'TYPE'} = $index_type;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'COLNUM'} = $currentcol--;
# Record group number only when a multi-column
# constraint is involved
if ( $numcols >= 2 && $index_type eq 'UNIQUE' ) {
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}
{'CON'}{$con}{'KEYGROUP'} = $unqgroup;
}
}
}
# FOREIGN KEYS like UNIQUE indexes can appear several times in
# a table in multi-column format. We use the same trick to
# record a numeric association to the foreign key reference.
$sth_Foreign_Keys->execute($reloid);
my $fkgroup = 0;
while ( my $forcols = $sth_Foreign_Keys->fetchrow_hashref ) {
my $column_oid = $forcols->{'oid'};
my $con = $forcols->{'constraint_name'};
# Declare variables for dataload
my @keylist;
my @fkeylist;
my $fschema;
my $ftable;
if ( $pgversion >= 70300 ) {
my $fkey = $forcols->{'constraint_fkey'};
my $keys = $forcols->{'constraint_key'};
my $frelid = $forcols->{'foreignrelid'};
# Since decent array support was not added to 7.4, and
# we want to support 7.3 as well, we parse the text version
# of the array by hand rather than combining this and
# Foreign_Key_Arg query into a single query.
$fkey =~ s/^{//g;
$fkey =~ s/}$//g;
$fkey =~ s/"//g;
$keys =~ s/^{//g;
$keys =~ s/}$//g;
$keys =~ s/"//g;
my @keyset = split( /,/, $keys );
my @fkeyset = split( /,/, $fkey );
# Convert the list of column numbers into column names for the
# local side.
foreach my $k (@keyset) {
$sth_Foreign_Key_Arg->execute( $reloid, $k );
my $row = $sth_Foreign_Key_Arg->fetchrow_hashref;
push( @keylist, $row->{'attribute_name'} );
}
# Convert the list of columns numbers into column names
# for the referenced side. Grab the table and namespace
# while we're here.
foreach my $k (@fkeyset) {
$sth_Foreign_Key_Arg->execute( $frelid, $k );
my $row = $sth_Foreign_Key_Arg->fetchrow_hashref;
push( @fkeylist, $row->{'attribute_name'} );
$fschema = $row->{'namespace'};
$ftable = $row->{'relation_name'};
}
# Deal with common catalog issues.
die "FKEY $con Broken -- fix your PostgreSQL installation"
if $#keylist != $#fkeylist;
}
else {
my $keyname; # Throw away
my $table; # Throw away
my $unspecified; # Throw away
my @columns;
my $nargs = $forcols->{'number_args'};
my $args = $forcols->{'args'};
# This database doesn't support namespaces, so use the default
$fschema = $system_schema;
( $keyname, $table, $ftable, $unspecified, @columns ) =
split( /\000/, $args );
# Account for old versions which don't handle NULL
# but instead return a string of the escape sequence
if ( !defined($ftable) ) {
( $keyname, $table, $ftable, $unspecified, @columns ) =
split( /\\000/, $args );
}
# Push the column list stored into @columns into
# the key and fkey lists
while ( my $column = pop(@columns)
and my $fcolumn = pop(@columns) )
{
push( @keylist, $column );
push( @fkeylist, $fcolumn );
}
}
# Load up the array based on the information discovered
# using the information retrieval methods above.
my $numcols = $#keylist + 1;
my $currentcol = $#keylist + 1;
# Bump group number if there are two or more columns involved
if ( $numcols >= 2 ) {
$fkgroup++;
}
# Record the foreign key to structure
while ( my $column = pop(@keylist)
and my $fkey = pop(@fkeylist) )
{
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'TYPE'} = 'FOREIGN KEY';
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'COLNUM'} = $currentcol--;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'FKTABLE'} = $ftable;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'FKSCHEMA'} = $fschema;
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}{'CON'}
{$con}{'FK-COL NAME'} = $fkey;
# Record group number only when a multi-column
# constraint is involved
if ( $numcols >= 2 ) {
$struct->{$schema}{'TABLE'}{$relname}{'COLUMN'}{$column}
{'CON'}{$con}{'KEYGROUP'} = $fkgroup;
}
}
}
# Pull out index information
$sth_Indexes->execute( $schema, $relname );
while ( my $idx = $sth_Indexes->fetchrow_hashref ) {
$struct->{$schema}{'TABLE'}{$relname}{'INDEX'}
{ $idx->{'indexname'} } = $idx->{'indexdef'};
}
}
# Function Handling
$sth_Function->execute();
while ( my $functions = $sth_Function->fetchrow_hashref ) {
my $functionname = $functions->{'function_name'} . '( ';
my $schema = $functions->{'namespace'};
my $comment = $functions->{'comment'};
my $functionargs = $functions->{'function_args'};
my @types = split( ' ', $functionargs );
my $count = 0;
# Pre-setup argument names when available.
my $argnames = $functions->{'function_arg_names'};
my @names;
if ( defined($argnames) ) {
$argnames =~ s/{(.*)}/$1/;
@names = split( ',', $argnames );
}
# Setup full argument types -- including the name prefix
foreach my $type (@types) {
$sth_FunctionArg->execute($type);
my $hash = $sth_FunctionArg->fetchrow_hashref;
if ( $count > 0 ) {
$functionname .= ', ';
}
if ( scalar(@names) > 0 ) {
$functionname .= $names[$count] . ' ';
}
if ( $hash->{'namespace'} ne $system_schema ) {
$functionname .= $hash->{'namespace'} . '.';
}
$functionname .= $hash->{'type_name'};
$count++;
}
$functionname .= ' )';
my $ret_type = $functions->{'returns_set'} ? 'SET OF ' : '';
$sth_FunctionArg->execute( $functions->{'return_type'} );
my $rhash = $sth_FunctionArg->fetchrow_hashref;
$ret_type .= $rhash->{'type_name'};
$struct->{$schema}{'FUNCTION'}{$functionname}{'COMMENT'} = $comment;
$struct->{$schema}{'FUNCTION'}{$functionname}{'SOURCE'} =
$functions->{'source_code'};
$struct->{$schema}{'FUNCTION'}{$functionname}{'LANGUAGE'} =
$functions->{'language_name'};
$struct->{$schema}{'FUNCTION'}{$functionname}{'RETURNS'} = $ret_type;
}
# Deal with the Schema
$sth_Schema->execute();
while ( my $schema = $sth_Schema->fetchrow_hashref ) {
my $comment = $schema->{'comment'};
my $namespace = $schema->{'namespace'};
$struct->{$namespace}{'SCHEMA'}{'COMMENT'} = $comment;
}
$sth_Columns->finish();
$sth_Constraint->finish();
$sth_Database->finish();
$sth_Foreign_Keys->finish();
$sth_Foreign_Key_Arg->finish();
$sth_Function->finish();
$sth_FunctionArg->finish();
$sth_Indexes->finish();
$sth_Primary_Keys->finish();
$sth_Schema->finish();
$sth_Tables->finish();
$sth_Table_Statistics->finish();
} ## end sub info_collect($$$$$)
#####
# write_using_templates
#
# Generate structure that HTML::Template requires out of the
# $struct for table related information, and $struct for
# the schema and function information
sub write_using_templates($$$$$)
{
my ( $db, $database, $statistics, $template_path, $output_filename_base,
$wanted_output )
= @_;
my $struct = $db->{$database}{'STRUCT'};
my @schemas;
# Start at 0, increment to 1 prior to use.
my $object_id = 0;
my %tableids;
foreach my $schema ( sort keys %{$struct} ) {
my @tables;
foreach my $table ( sort keys %{ $struct->{$schema}{'TABLE'} } ) {
# Column List
my @columns;
foreach my $column (
sort {
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$a}
{'ORDER'} <=> $struct->{$schema}{'TABLE'}{$table}
{'COLUMN'}{$b}{'ORDER'}
} keys %{ $struct->{$schema}{'TABLE'}{$table}{'COLUMN'} }
)
{
my $inferrednotnull = 0;
# Have a shorter default for places that require it
my $shortdefault =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'DEFAULT'};
$shortdefault =~ s/^(.{17}).{5,}(.{5})$/$1 ... $2/g
if ( defined($shortdefault) );
# Deal with column constraints
my @colconstraints;
foreach my $con (
sort keys %{
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}
}
)
{
if ( $struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'TYPE'} eq 'UNIQUE' )
{
my $unq =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'TYPE'};
my $unqcol =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'COLNUM'};
my $unqgroup =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'KEYGROUP'};
push @colconstraints,
{
column_unique => $unq,
column_unique_colnum => $unqcol,
column_unique_keygroup => $unqgroup,
};
}
elsif (
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'TYPE'} eq 'PRIMARY KEY' )
{
$inferrednotnull = 1;
push @colconstraints,
{ column_primary_key => 'PRIMARY KEY', };
}
elsif (
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'TYPE'} eq 'FOREIGN KEY' )
{
my $fksgmlid = sgml_safe_id(
join( '.',
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}
{$column}{'CON'}{$con}{'FKSCHEMA'},
$struct->{$schema}{'TABLE'}{$table}{'TYPE'},
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}
{$column}{'CON'}{$con}{'FKTABLE'} )
);
my $fkgroup =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'KEYGROUP'};
my $fktable =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FKTABLE'};
my $fkcol =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FK-COL NAME'};
my $fkschema =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FKSCHEMA'};
push @colconstraints,
{
column_fk => 'FOREIGN KEY',
column_fk_colnum => $fkcol,
column_fk_keygroup => $fkgroup,
column_fk_schema => $fkschema,
column_fk_schema_dbk => docbook($fkschema),
column_fk_schema_dot => graphviz($fkschema),
column_fk_sgmlid => $fksgmlid,
column_fk_table => $fktable,
column_fk_table_dbk => docbook($fktable),
};
# only have the count if there is more than 1 schema
if ( scalar( keys %{$struct} ) > 1 ) {
$colconstraints[-1]{"number_of_schemas"} =
scalar( keys %{$struct} );
}
}
}
# Generate the Column array
push @columns, {
column => $column,
column_dbk => docbook($column),
column_dot => graphviz($column),
column_default =>
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'DEFAULT'},
column_default_dbk => docbook(
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'DEFAULT'}
),
column_default_short => $shortdefault,
column_default_short_dbk => docbook($shortdefault),
column_comment =>
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'DESCRIPTION'},
column_comment_dbk => docbook(
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'DESCRIPTION'}
),
column_number =>
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'ORDER'},
column_type =>
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'TYPE'},
column_type_dbk => docbook(
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'TYPE'}
),
column_type_dot => graphviz(
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'TYPE'}
),
column_constraints => \@colconstraints,
};
if ( $inferrednotnull == 0 ) {
$columns[-1]{"column_constraint_notnull"} =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'NULL'};
}
}
# Constraint List
my @constraints;
foreach my $constraint (
sort
keys %{ $struct->{$schema}{'TABLE'}{$table}{'CONSTRAINT'} }
)
{
my $shortcon =
$struct->{$schema}{'TABLE'}{$table}{'CONSTRAINT'}
{$constraint};
$shortcon =~ s/^(.{30}).{5,}(.{5})$/$1 ... $2/g;
push @constraints,
{
constraint =>
$struct->{$schema}{'TABLE'}{$table}{'CONSTRAINT'}
{$constraint},
constraint_dbk => docbook(
$struct->{$schema}{'TABLE'}{$table}{'CONSTRAINT'}
{$constraint}
),
constraint_name => $constraint,
constraint_name_dbk => docbook($constraint),
constraint_short => $shortcon,
constraint_short_dbk => docbook($shortcon),
table => $table,
table_dbk => docbook($table),
table_dot => graphviz($table),
};
}
# Index List
my @indexes;
foreach my $index (
sort keys %{ $struct->{$schema}{'TABLE'}{$table}{'INDEX'} } )
{
push @indexes,
{
index_definition =>
$struct->{$schema}{'TABLE'}{$table}{'INDEX'}{$index},
index_definition_dbk => docbook(
$struct->{$schema}{'TABLE'}{$table}{'INDEX'}{$index}
),
index_name => $index,
index_name_dbk => docbook($index),
table => $table,
table_dbk => docbook($table),
table_dot => graphviz($table),
schema => $schema,
schema_dbk => docbook($schema),
schema_dot => graphviz($schema),
};
}
# Foreign Key Discovery
#
# $lastmatch is used to ensure that we only supply a result a
# single time and not once for each link found. Since the
# loops are sorted, we only need to track the last element, and
# not all supplied elements.
my @fk_schemas;
my $lastmatch = '';
foreach my $fk_schema ( sort keys %{$struct} ) {
foreach
my $fk_table ( sort keys %{ $struct->{$fk_schema}{'TABLE'} } )
{
foreach my $fk_column (
sort keys
%{ $struct->{$fk_schema}{'TABLE'}{$fk_table}{'COLUMN'} }
)
{
foreach my $fk_con (
sort keys %{
$struct->{$fk_schema}{'TABLE'}{$fk_table}
{'COLUMN'}{$fk_column}{'CON'}
}
)
{
if ( $struct->{$fk_schema}{'TABLE'}{$fk_table}
{'COLUMN'}{$fk_column}{'CON'}{$fk_con}{'TYPE'}
eq 'FOREIGN KEY'
and $struct->{$fk_schema}{'TABLE'}{$fk_table}
{'COLUMN'}{$fk_column}{'CON'}{$fk_con}
{'FKTABLE'} eq $table
and $struct->{$fk_schema}{'TABLE'}{$fk_table}
{'COLUMN'}{$fk_column}{'CON'}{$fk_con}
{'FKSCHEMA'} eq $schema
and $lastmatch ne "$fk_schema$fk_table" )
{
my $fksgmlid = sgml_safe_id(
join( '.',
$fk_schema,
$struct->{$fk_schema}{'TABLE'}
{$fk_table}{'TYPE'},
$fk_table )
);
push @fk_schemas,
{
fk_column_number =>
$struct->{$fk_schema}{'TABLE'}{$fk_table}
{'COLUMN'}{$fk_column}{'ORDER'},
fk_sgmlid => $fksgmlid,
fk_schema => $fk_schema,
fk_schema_dbk => docbook($fk_schema),
fk_schema_dot => graphviz($fk_schema),
fk_table => $fk_table,
fk_table_dbk => docbook($fk_table),
fk_table_dot => graphviz($fk_table),
};
# only have the count if there is more than 1 schema
if ( scalar( keys %{$struct} ) > 1 ) {
$fk_schemas[-1]{"number_of_schemas"} =
scalar( keys %{$struct} );
}
$lastmatch = "$fk_schema$fk_table";
}
}
}
}
}
# List off permissions
my @permissions;
foreach my $user (
sort keys %{ $struct->{$schema}{'TABLE'}{$table}{'ACL'} } )
{
push @permissions,
{
schema => $schema,
schema_dbk => docbook($schema),
schema_dot => graphviz($schema),
table => $table,
table_dbk => docbook($table),
table_dot => graphviz($table),
user => $user,
user_dbk => docbook($user),
};
# only have the count if there is more than 1 schema
if ( scalar( keys %{$struct} ) > 1 ) {
$permissions[-1]{"number_of_schemas"} =
scalar( keys %{$struct} );
}
foreach my $perm (
keys %{ $struct->{$schema}{'TABLE'}{$table}{'ACL'}{$user} }
)
{
if ( $struct->{$schema}{'TABLE'}{$table}{'ACL'}{$user}
{$perm} == 1 )
{
$permissions[-1]{ lower($perm) } = 1;
}
}
}
# Increment and record the object ID
$tableids{"$schema$table"} = ++$object_id;
my $viewdef =
sql_prettyprint(
$struct->{$schema}{'TABLE'}{$table}{'VIEW_DEF'} );
# Truncate comment for Dia
my $comment_dia =
$struct->{$schema}{'TABLE'}{$table}{'DESCRIPTION'};
$comment_dia =~ s/^(.{35}).{5,}(.{5})$/$1 ... $2/g
if ( defined($comment_dia) );
push @tables, {
object_id => $object_id,
object_id_dbk => docbook($object_id),
schema => $schema,
schema_dbk => docbook($schema),
schema_dot => graphviz($schema),
schema_sgmlid => sgml_safe_id( $schema . ".schema" ),
# Statistics
stats_enabled => $statistics,
stats_dead_bytes => useUnits(
$struct->{$schema}{'TABLE'}{$table}{'DEADTUPLELEN'}
),
stats_dead_bytes_dbk => docbook(
useUnits(
$struct->{$schema}{'TABLE'}{$table}{'DEADTUPLELEN'}
)
),
stats_free_bytes =>
useUnits( $struct->{$schema}{'TABLE'}{$table}{'FREELEN'} ),
stats_free_bytes_dbk => docbook(
useUnits( $struct->{$schema}{'TABLE'}{$table}{'FREELEN'} )
),
stats_table_bytes =>
useUnits( $struct->{$schema}{'TABLE'}{$table}{'TABLELEN'} ),
stats_table_bytes_dbk => docbook(
useUnits( $struct->{$schema}{'TABLE'}{$table}{'TABLELEN'} )
),
stats_tuple_count =>
$struct->{$schema}{'TABLE'}{$table}{'TUPLECOUNT'},
stats_tuple_count_dbk =>
docbook( $struct->{$schema}{'TABLE'}{$table}{'TUPLECOUNT'} ),
stats_tuple_bytes =>
useUnits( $struct->{$schema}{'TABLE'}{$table}{'TUPLELEN'} ),
stats_tuple_bytes_dbk => docbook(
useUnits( $struct->{$schema}{'TABLE'}{$table}{'TUPLELEN'} )
),
table => $table,
table_dbk => docbook($table),
table_dot => graphviz($table),
table_sgmlid => sgml_safe_id(
join( '.',
$schema, $struct->{$schema}{'TABLE'}{$table}{'TYPE'},
$table )
),
table_comment =>
$struct->{$schema}{'TABLE'}{$table}{'DESCRIPTION'},
table_comment_dbk =>
docbook( $struct->{$schema}{'TABLE'}{$table}{'DESCRIPTION'} ),
table_comment_dia => $comment_dia,
view_definition => $viewdef,
view_definition_dbk => docbook($viewdef),
columns => \@columns,
constraints => \@constraints,
fk_schemas => \@fk_schemas,
indexes => \@indexes,
permissions => \@permissions,
};
# only have the count if there is more than 1 schema
if ( scalar( keys %{$struct} ) > 1 ) {
$tables[-1]{"number_of_schemas"} = scalar( keys %{$struct} );
}
}
# Dump out list of functions
my @functions;
foreach my $function ( sort keys %{ $struct->{$schema}{'FUNCTION'} } ) {
push @functions,
{
function => $function,
function_dbk => docbook($function),
function_sgmlid =>
sgml_safe_id( join( '.', $schema, 'function', $function ) ),
function_comment =>
$struct->{$schema}{'FUNCTION'}{$function}{'COMMENT'},
function_comment_dbk => docbook(
$struct->{$schema}{'FUNCTION'}{$function}{'COMMENT'}
),
function_language =>
uc( $struct->{$schema}{'FUNCTION'}{$function}{'LANGUAGE'} ),
function_returns =>
$struct->{$schema}{'FUNCTION'}{$function}{'RETURNS'},
function_source =>
$struct->{$schema}{'FUNCTION'}{$function}{'SOURCE'},
schema => $schema,
schema_dbk => docbook($schema),
schema_dot => graphviz($schema),
schema_sgmlid => sgml_safe_id( $schema . ".schema" ),
};
# only have the count if there is more than 1 schema
if ( scalar( keys %{$struct} ) > 1 ) {
$functions[-1]{"number_of_schemas"} = scalar( keys %{$struct} );
}
}
push @schemas,
{
schema => $schema,
schema_dbk => docbook($schema),
schema_dot => graphviz($schema),
schema_sgmlid => sgml_safe_id( $schema . ".schema" ),
schema_comment => $struct->{$schema}{'SCHEMA'}{'COMMENT'},
schema_comment_dbk =>
docbook( $struct->{$schema}{'SCHEMA'}{'COMMENT'} ),
functions => \@functions,
tables => \@tables,
};
# Build the array of schemas
if ( scalar( keys %{$struct} ) > 1 ) {
$schemas[-1]{"number_of_schemas"} = scalar( keys %{$struct} );
}
}
# Link the various components together via the template.
my @fk_links;
my @fkeys;
foreach my $schema ( sort keys %{$struct} ) {
foreach my $table ( sort keys %{ $struct->{$schema}{'TABLE'} } ) {
foreach my $column (
sort {
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$a}
{'ORDER'} <=> $struct->{$schema}{'TABLE'}{$table}
{'COLUMN'}{$b}{'ORDER'}
}
keys %{ $struct->{$schema}{'TABLE'}{$table}{'COLUMN'} }
)
{
foreach my $con (
sort keys %{
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}
}
)
{
# To prevent a multi-column foreign key from appearing
# several times, we've opted
# to simply display the first column of any given key.
# Since column numbering always starts at 1
# for foreign keys.
if ( $struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'TYPE'} eq 'FOREIGN KEY'
&& $struct->{$schema}{'TABLE'}{$table}{'COLUMN'}
{$column}{'CON'}{$con}{'COLNUM'} == 1 )
{
# Pull out some of the longer keys
my $ref_table =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FKTABLE'};
my $ref_schema =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FKSCHEMA'};
my $ref_column =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}{$column}
{'CON'}{$con}{'FK-COL NAME'};
# Default values cause these elements to attach
# to the bottom in Dia
# If a KEYGROUP is not defined, it's a single column.
# Modify the ref_con and key_con variables to attach
# the to the columns connection point directly.
my $ref_con = 0;
my $key_con = 0;
my $keycon_offset = 0;
if (
!defined(
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}
{$column}{'CON'}{$con}{'KEYGROUP'}
)
)
{
$ref_con =
$struct->{$ref_schema}{'TABLE'}{$ref_table}
{'COLUMN'}{$ref_column}{'ORDER'};
$key_con =
$struct->{$schema}{'TABLE'}{$table}{'COLUMN'}
{$column}{'ORDER'};
$keycon_offset = 1;
}
# Bump object_id
$object_id++;
push @fk_links,
{
fk_link_name => $con,
fk_link_name_dbk => docbook($con),
fk_link_name_dot => graphviz($con),
handle0_connection => $key_con,
handle0_connection_dbk => docbook($key_con),
handle0_connection_dia => 6 + ( $key_con * 2 ),
handle0_name => $table,
handle0_name_dbk => docbook($table),
handle0_schema => $schema,
handle0_to => $tableids{"$schema$table"},
handle0_to_dbk =>
docbook( $tableids{"$schema$table"} ),
handle1_connection => $ref_con,
handle1_connection_dbk => docbook($ref_con),
handle1_connection_dia => 6 + ( $ref_con * 2 ) +
$keycon_offset,
handle1_name => $ref_table,
handle1_name_dbk => docbook($ref_table),
handle1_schema => $ref_schema,
handle1_to => $tableids{"$ref_schema$ref_table"},
handle1_to_dbk =>
docbook( $tableids{"$ref_schema$ref_table"} ),
object_id => $object_id,
object_id_dbk => docbook($object_id),
};
# Build the array of schemas
if ( scalar( keys %{$struct} ) > 1 ) {
$fk_links[-1]{"number_of_schemas"} =
scalar( keys %{$struct} );
}
}
}
}
}
}
# Make database level comment information
my @timestamp = localtime();
my $dumped_on = sprintf( "%04d-%02d-%02d",
$timestamp[5] + 1900,
$timestamp[4] + 1,
$timestamp[3] );
my $database_comment = $db->{$database}{'COMMENT'};
# Loop through each template found in the supplied path.
# Output the results of the template as <filename>.<extension>
# into the current working directory.
my @template_files = glob( $template_path . '/*.tmpl' );
# Ensure we've told the user if we don't find any files.
triggerError("Templates files not found in $template_path")
if ( $#template_files < 0 );
# Process all found templates.
foreach my $template_file (@template_files) {
( my $file_extension = $template_file ) =~
s/^(?:.*\/|)([^\/]+)\.tmpl$/$1/;
next
if ( defined($wanted_output) && $file_extension ne $wanted_output );
my $output_filename = "$output_filename_base.$file_extension";
print "Producing $output_filename from $template_file\n";
my $template = HTML::Template->new(
filename => $template_file,
die_on_bad_params => 0,
global_vars => 0,
strict => 1,
loop_context_vars => 1
);
$template->param(
database => $database,
database_dbk => docbook($database),
database_sgmlid => sgml_safe_id($database),
database_comment => $database_comment,
database_comment_dbk => docbook($database_comment),
dumped_on => $dumped_on,
dumped_on_dbk => docbook($dumped_on),
fk_links => \@fk_links,
schemas => \@schemas,
);
sysopen( FH, $output_filename, O_WRONLY | O_TRUNC | O_CREAT, 0644 )
or die "Can't open $output_filename: $!";
print FH $template->output();
}
} ## end sub write_using_templates($$$$$)
######
# sgml_safe_id
# Safe SGML ID Character replacement
sub sgml_safe_id($)
{
my $string = shift;
# Lets use the keyword ARRAY in place of the square brackets
# to prevent duplicating a non-array equivelent
$string =~ s/\[\]/ARRAY-/g;
# Brackets, spaces, commads, underscores are not valid 'id' characters
# replace with as few -'s as possible.
$string =~ s/[ "',)(_-]+/-/g;
# Don't want a - at the end either. It looks silly.
$string =~ s/-$//g;
return ($string);
}
#####
# lower
# LowerCase the string
sub lower($)
{
my $string = shift;
$string =~ tr/A-Z/a-z/;
return ($string);
}
#####
# useUnits
# Tack on base 2 metric units
sub useUnits($)
{
my ($value) = @_;
return '' if ( !defined($value) );
my @units = ( 'Bytes', 'KiBytes', 'MiBytes', 'GiBytes', 'TiBytes' );
my $loop = 0;
while ( $value >= 1024 ) {
$loop++;
$value = $value / 1024;
}
return ( sprintf( "%.2f %s", $value, $units[$loop] ) );
}
#####
# docbook
# Docbook output is special in that we may or may not want to escape
# the characters inside the string depending on a string prefix.
sub docbook($)
{
my $string = shift;
if ( defined($string) ) {
if ( $string =~ /^\@DOCBOOK/ ) {
$string =~ s/^\@DOCBOOK//;
}
else {
$string =~ s/&(?!(amp|lt|gr|apos|quot);)/&/g;
$string =~ s/</</g;
$string =~ s/>/>/g;
$string =~ s/'/'/g;
$string =~ s/"/"/g;
}
}
else {
# Return an empty string when all else fails
$string = '';
}
return ($string);
}
#####
# graphviz
# GraphViz output requires that special characters (like " and whitespace) must be preceeded
# by a \ when a part of a lable.
sub graphviz($)
{
my $string = shift;
# Ensure we don't return an least a empty string
$string = '' if ( !defined($string) );
$string =~ s/([\s"'])/\\$1/g;
return ($string);
}
#####
# sql_prettyprint
# Clean up SQL into something presentable
sub sql_prettyprint($)
{
my $string = shift;
# If nothing has been sent in, return an empty string
if ( !defined($string) ) {
return '';
}
# Initialize Result string
my $result = '';
# List of tokens to split on
my $tok =
"SELECT|FROM|WHERE|HAVING|GROUP BY|ORDER BY|OR|AND|LEFT JOIN|RIGHT JOIN"
. "|LEFT OUTER JOIN|LEFT INNER JOIN|INNER JOIN|RIGHT OUTER JOIN|RIGHT INNER JOIN"
. "|JOIN|UNION ALL|UNION|EXCEPT|USING|ON|CAST|[\(\),]";
my $key = 0;
my $bracket = 0;
my $depth = 0;
my $indent = 6;
# XXX: Split is wrong -- match would do
foreach my $elem ( split( /(\"[^\"]*\"|'[^']*'|$tok)/, $string ) ) {
my $format;
# Skip junk tokens
if ( $elem =~ /^[\s]?$/ ) {
next;
}
# NOTE: Should we drop leading spaces?
# $elem =~ s/^\s//;
# Close brackets are special
# Bring depth in a level
if ( $elem =~ /\)/ ) {
$depth = $depth - $indent;
if ( $key == 1 or $bracket == 1 ) {
$format = "%s%s";
}
else {
$format = "%s\n%" . $depth . "s";
}
$key = 0;
$bracket = 0;
}
# Open brackets are special
# Bump depth out a level
elsif ( $elem =~ /\(/ ) {
if ( $key == 1 ) {
$format = "%s %s";
}
else {
$format = "%s\n%" . $depth . "s";
}
$depth = $depth + $indent;
$bracket = 1;
$key = 0;
}
# Key element
# Token from our list -- format on left hand side of the equation
# when appropriate.
elsif ( $elem =~ /$tok/ ) {
if ( $key == 1 ) {
$format = "%s%s";
}
else {
$format = "%s\n%" . $depth . "s";
}
$key = 1;
$bracket = 0;
}
# Value
# Format for right hand side of the equation
else {
$format = "%s%s";
$key = 0;
}
# Add the new format string to the result
$result = sprintf( $format, $result, $elem );
}
return $result;
} ## end sub sql_prettyprint($)
##
# triggerError
# Print out a supplied error message and exit the script.
sub triggerError($)
{
my ($error) = @_;
# Test error
if ( !defined($error) || $error eq '' ) {
# Suppress prototype checking in call to self
&triggerError("triggerError: Unknown error");
}
printf( "\n\n%s\n", $error );
exit 2;
}
#####
# usage
sub usage($$$)
{
my ( $basename, $database, $dbuser ) = @_;
print <<USAGE
Usage:
$basename [options] [dbname [username]]
Options:
-d <dbname> Specify database name to connect to (default: $database)
-f <file> Specify output file prefix (default: $database)
-h <host> Specify database server host (default: localhost)
-p <port> Specify database server port (default: 5432)
-u <username> Specify database username (default: $dbuser)
--password=<pw> Specify database password (default: blank)
-l <path> Path to the templates (default: @@TEMPLATE-DIR@@)
-t <output> Type of output wanted (default: All in template library)
-s <schema> Specify a specific schema to match. Technically this is a regular
expression but anything other than a specific name may have unusual
results.
--statistics In 7.4 and later, with the contrib module pgstattuple installed we
can gather statistics on the tables in the database
(average size, free space, disk space used, dead tuple counts, etc.)
This is disk intensive on large databases as all pages must be visited.
USAGE
;
exit 1;
}
##
# Kick off execution of main()
main($ARGV);
|