revamped Pg DBI parser to query system tables. This still doesn't work
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / DBI / PostgreSQL.pm
CommitLineData
80ae061a 1package SQL::Translator::Parser::DBI::PostgreSQL;
2
3# -------------------------------------------------------------------
d2522b19 4# $Id: PostgreSQL.pm,v 1.8 2005-10-06 20:33:07 scottcain Exp $
80ae061a 5# -------------------------------------------------------------------
90075866 6# Copyright (C) 2002-4 SQLFairy Authors
80ae061a 7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20# 02111-1307 USA
21# -------------------------------------------------------------------
22
23=head1 NAME
24
25SQL::Translator::Parser::DBI::PostgreSQL - parser for DBD::Pg
26
27=head1 SYNOPSIS
28
29See SQL::Translator::Parser::DBI.
30
31=head1 DESCRIPTION
32
d2522b19 33Uses DBI to query PostgreSQL system tables to determine schema structure.
80ae061a 34
35=cut
36
37use strict;
38use DBI;
80ae061a 39use Data::Dumper;
40use SQL::Translator::Schema::Constants;
41
42use vars qw[ $DEBUG $VERSION @EXPORT_OK ];
d2522b19 43$VERSION = sprintf "%d.%02d", q$Revision: 1.8 $ =~ /(\d+)\.(\d+)/;
80ae061a 44$DEBUG = 0 unless defined $DEBUG;
45
46# -------------------------------------------------------------------
47sub parse {
48 my ( $tr, $dbh ) = @_;
49
638e82c2 50 my $schema = $tr->schema;
80ae061a 51
d2522b19 52 my $column_select = $dbh->prepare(
53 "SELECT a.attname, t.typname, a.attnum,a.atttypmod as length,
54 a.attnotnull, a.atthasdef, d.adsrc
55 FROM pg_type t,pg_attribute a
56 LEFT JOIN pg_attrdef d ON (d.adrelid = a.attrelid AND a.attnum = d.adnum)
57 WHERE a.attrelid=? AND attnum>0
58 AND a.atttypid=t.oid
59 ORDER BY a.attnum"
60 );
61
62 my $index_select = $dbh->prepare(
63 "SELECT oid, c.relname, i.indkey, i.indnatts, i.indisunique,
64 i.indisprimary, pg_get_indexdef(oid) AS create_string
65 FROM pg_class c,pg_index i
66 WHERE c.relnamespace=2200 AND c.relkind='i'
67 AND c.oid=i.indexrelid AND i.indrelid=?"
68 );
69
70 my $table_select = $dbh->prepare(
71 "SELECT oid,relname FROM pg_class WHERE relnamespace IN
72 (SELECT oid FROM pg_namespace WHERE nspname='public')
73 AND relkind='r';"
74 );
75 $table_select->execute();
76
77 while ( my $tablehash = $table_select->fetchrow_hashref ) {
78
79 my $table_name = $$tablehash{'relname'};
80 my $table_oid = $$tablehash{'oid'};
81
82 my $table = $schema->add_table(
83 name => $table_name,
84 #what is type? type => $table_info->{TABLE_TYPE},
638e82c2 85 ) || die $schema->error;
80ae061a 86
d2522b19 87 $column_select->execute($table_oid);
88
89 while (my $columnhash = $column_select->fetchrow_hashref ) {
638e82c2 90
d2522b19 91 $table->add_field(
92 name => $$columnhash{'attname'},
93 default_value => $$columnhash{'adsrc'},
94 data_type => $$columnhash{'typename'},
95 order => $$columnhash{'attnum'},
96 size => $$columnhash{'length'},
97 nullable => $$columnhash{'attnotnull'} eq 't'
98 ? 0 : 1,
99 ) || die $table->error;
100 }
638e82c2 101
d2522b19 102 $index_select->execute($table_oid);
103
104 my @column_names = $table->field_names();
105 while (my $indexhash = $index_select->fetchrow_hashref ) {
106 #don't deal with function indexes at the moment
107 next if ($$indexhash{'indkey'} eq ''
108 or !defined($$indexhash{'indkey'}) );
109
110 my $type;
111 if ($$indexhash{'indisprimary'} eq 't') {
112 $type = PRIMARY_KEY;
113 } elsif ($$indexhash{'indisunique'} eq 't') {
114 $type = UNIQUE;
115 } else {
116 $type = NORMAL;
117 }
638e82c2 118
d2522b19 119 my @column_ids = split /\s+/, $$indexhash{'indkey'};
120 my @columns;
121 foreach my $col (@column_ids) {
122 push @columns, $column_names[($col - 1)];
638e82c2 123 }
d2522b19 124
125 $table->add_index(
126 name => $$indexhash{'relname'},
127 type => $type,
128 fields => @columns,
129 ) || die $table->error;
638e82c2 130 }
80ae061a 131 }
132
133 return 1;
134}
135
1361;
137
138# -------------------------------------------------------------------
13b0b70f 139# Time is a waste of money.
140# Oscar Wilde
80ae061a 141# -------------------------------------------------------------------
142
143=pod
144
145=head1 AUTHOR
146
d2522b19 147Scott Cain E<lt>cain@cshl.eduE<gt>, previous author:
13b0b70f 148Paul Harrington E<lt>harringp@deshaw.comE<gt>.
80ae061a 149
150=head1 SEE ALSO
151
13b0b70f 152SQL::Translator, DBD::Pg.
80ae061a 153
154=cut