-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathPostgreSQL.pm
More file actions
410 lines (342 loc) · 12.9 KB
/
Copy pathPostgreSQL.pm
File metadata and controls
410 lines (342 loc) · 12.9 KB
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
package SQL::Translator::Parser::DBI::PostgreSQL;
=head1 NAME
SQL::Translator::Parser::DBI::PostgreSQL - parser for DBD::Pg
=head1 SYNOPSIS
See SQL::Translator::Parser::DBI.
=head1 DESCRIPTION
Uses DBI to query PostgreSQL system tables to determine schema structure.
=head1 CONFIGURATION
You can specify the following for L<SQL::Translator/parser_args> :
=head2 deconstruct_enum_types
If set to a true value, the parser will look for column types which are user-defined Enums,
and generate a column definition like:
{
data_type => 'enum',
extra => {
custom_type_name => 'MyEnumType',
list => [ 'enum_val_1', 'enum_val_2', ... ],
}
}
This makes a proper round-trip with SQL::Translator::Producer::PostgreSQL (which re-creates the
custom enum type if C<< producer_args->{postgres_version} >= 8.003 >>) and can be translated to
other engines.
If the option is false (the default) you would just get
{ data_type => 'MyEnumType' }
with no provided method to translate it to other SQL engines.
=cut
use strict;
use warnings;
use DBI;
use Data::Dumper;
use SQL::Translator::Schema::Constants;
our ($DEBUG, @EXPORT_OK);
our $VERSION = '1.66';
$DEBUG = 0 unless defined $DEBUG;
my $actions = {
c => 'cascade',
r => 'restrict',
a => 'no action',
n => 'set null',
d => 'set default',
};
sub parse {
my ($tr, $dbh) = @_;
my $schema = $tr->schema;
my $deconstruct_enum_types = $tr->parser_args->{deconstruct_enum_types};
my $column_select = $dbh->prepare(
"SELECT a.attname, a.atttypid, t.typtype, format_type(t.oid, a.atttypmod) as typname, a.attnum,
a.atttypmod as length, a.attnotnull, a.atthasdef, pg_get_expr(ad.adbin, ad.adrelid) as adsrc,
d.description
FROM pg_type t, pg_attribute a
LEFT JOIN pg_attrdef ad ON (ad.adrelid = a.attrelid AND a.attnum = ad.adnum)
LEFT JOIN pg_description d ON (a.attrelid=d.objoid AND a.attnum=d.objsubid)
WHERE a.attrelid=? AND attnum>0
AND a.atttypid=t.oid
ORDER BY a.attnum"
);
my $index_select = $dbh->prepare(
"SELECT oid, c.relname, i.indkey, i.indnatts, i.indisunique,
i.indisprimary, pg_get_indexdef(oid) AS create_string
FROM pg_class c,pg_index i
WHERE c.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname='public') AND c.relkind='i'
AND c.oid=i.indexrelid AND i.indrelid=?"
);
my $table_select = $dbh->prepare(
"SELECT c.oid, c.relname, d.description
FROM pg_class c
LEFT JOIN pg_description d ON c.oid=d.objoid AND d.objsubid=0
WHERE relnamespace IN
(SELECT oid FROM pg_namespace WHERE nspname='public')
AND relkind='r';"
);
my $fk_select = $dbh->prepare(
q/
SELECT r.conname,
c.relname,
d.relname AS frelname,
r.conkey,
ARRAY(SELECT column_name::varchar
FROM information_schema.columns
WHERE ordinal_position = ANY (r.conkey)
AND table_schema = n.nspname
AND table_name = c.relname ) AS fields,
r.confkey,
ARRAY(SELECT column_name::varchar
FROM information_schema.columns
WHERE ordinal_position = ANY (r.confkey)
AND table_schema = n.nspname
AND table_name = d.relname ) AS reference_fields,
r.confupdtype,
r.confdeltype,
r.confmatchtype
FROM pg_catalog.pg_constraint r
JOIN pg_catalog.pg_class c
ON c.oid = r.conrelid
AND r.contype = 'f'
JOIN pg_catalog.pg_class d
ON d.oid = r.confrelid
JOIN pg_catalog.pg_namespace n
ON n.oid = c.relnamespace
WHERE pg_catalog.pg_table_is_visible(c.oid)
AND n.nspname = ?
AND c.relname = ?
ORDER BY 1;
/
) or die "Can't prepare: $@";
# Select all user-defined triggers from the Postgres 'public' namespace.
my $trigger_select = $dbh->prepare(<<SQL) or die "Can't prepare trigger query: $@";
SELECT
t.tgname AS trigger_name,
c.relname AS table_name,
p.proname AS function_name,
pg_get_triggerdef(t.oid) AS trigger_definition,
CASE t.tgtype & 66
WHEN 2 THEN 'before'
WHEN 64 THEN 'instead of'
ELSE 'after'
END AS timing,
(CASE WHEN (t.tgtype & 4) = 0 THEN '' ELSE 'insert,' END)
|| (CASE WHEN (t.tgtype & 8) = 0 THEN '' ELSE 'delete,' END)
|| (CASE WHEN (t.tgtype & 16) = 0 THEN '' ELSE 'update,' END)
|| (CASE WHEN (t.tgtype & 32) = 0 THEN '' ELSE 'truncate,' END)
AS events,
CASE t.tgtype & 1
WHEN 1 THEN 'row'
ELSE 'statement'
END AS scope,
t.tgattr AS update_columns,
pg_get_expr(t.tgqual, t.tgrelid) AS condition
FROM pg_trigger t
JOIN pg_class c ON t.tgrelid = c.oid
JOIN pg_proc p ON t.tgfoid = p.oid
JOIN pg_namespace n ON c.relnamespace = n.oid
WHERE NOT t.tgisinternal
AND n.nspname = 'public'
ORDER BY c.relname, t.tgname;
SQL
# Select all user-defined procedures from the Postgres 'public' namespace.
my $procedure_select = $dbh->prepare(<<SQL) or die "Can't prepare procedure query: $@";
SELECT
p.proname AS procedure_name,
pg_get_functiondef(p.oid) AS procedure_definition,
pg_catalog.pg_get_function_arguments(p.oid) AS parameters,
pg_catalog.pg_get_function_result(p.oid) AS return_type,
r.rolname AS owner,
d.description AS comments,
CASE p.prokind
WHEN 'f' THEN 'function'
WHEN 'p' THEN 'procedure'
WHEN 'a' THEN 'aggregate'
WHEN 'w' THEN 'window'
ELSE 'unknown'
END AS procedure_type
FROM pg_proc p
JOIN pg_namespace n ON p.pronamespace = n.oid
LEFT JOIN pg_roles r ON p.proowner = r.oid
LEFT JOIN pg_description d ON p.oid = d.objoid AND d.objsubid = 0
WHERE n.nspname = 'public'
AND p.prokind IN ('f', 'p') -- functions and procedures only
ORDER BY p.proname;
SQL
my %enum_types;
if ($deconstruct_enum_types) {
my $enum_select = $dbh->prepare('SELECT enumtypid, enumlabel FROM pg_enum ORDER BY oid, enumsortorder')
or die "Can't prepare: $@";
$enum_select->execute();
while (my $enumval = $enum_select->fetchrow_hashref) {
push @{ $enum_types{ $enumval->{enumtypid} } }, $enumval->{enumlabel};
}
}
$table_select->execute();
while (my $tablehash = $table_select->fetchrow_hashref) {
my $table_name = $$tablehash{'relname'};
my $table_oid = $$tablehash{'oid'};
my $table = $schema->add_table(
name => $table_name,
#what is type? type => $table_info->{TABLE_TYPE},
) || die $schema->error;
$table->comments($$tablehash{'description'})
if $$tablehash{'description'};
$column_select->execute($table_oid);
my %column_by_attrid;
while (my $columnhash = $column_select->fetchrow_hashref) {
my $type = $$columnhash{'typname'};
# For the case of character varying(50), atttypmod will be 54 and the (50)
# will be listed as part of the type. For numeric(8,5) the atttypmod will
# be a meaningless large number. To make this compatible with the
# rest of SQL::Translator, remove the size from the type and change the
# size to whatever was removed from the type.
my @size = ($type =~ s/\(([0-9,]+)\)$//) ? (split /,/, $1) : ();
my $col = $table->add_field(
name => $$columnhash{'attname'},
data_type => $type,
order => $$columnhash{'attnum'},
) || die $table->error;
$col->size(\@size) if @size;
# default values are a DDL expression. Convert the obvious ones like '...'::text
# to a plain value and let the rest be scalarrefs.
my $default = $$columnhash{'adsrc'};
if (defined $default) {
if ($default =~ /^[0-9.]+$/) { $col->default_value($default) }
elsif ($default =~ /^'(.*?)'(::\Q$type\E)?$/) {
my $str = $1;
$str =~ s/''/'/g;
$col->default_value($str);
} else {
$col->default_value(\$default);
}
}
if ( $deconstruct_enum_types
&& $enum_types{ $columnhash->{atttypid} }) {
$col->extra->{custom_type_name} = $col->data_type;
$col->extra->{list} = [ @{ $enum_types{ $columnhash->{atttypid} } } ];
$col->data_type('enum');
}
$col->is_nullable($$columnhash{'attnotnull'} ? 0 : 1);
$col->comments($$columnhash{'description'})
if $$columnhash{'description'};
$column_by_attrid{ $$columnhash{'attnum'} } = $$columnhash{'attname'};
}
$index_select->execute($table_oid);
while (my $indexhash = $index_select->fetchrow_hashref) {
#don't deal with function indexes at the moment
next
if ($$indexhash{'indkey'} eq ''
or !defined($$indexhash{'indkey'}));
my @columns = map $column_by_attrid{$_}, split /\s+/, $$indexhash{'indkey'};
my $type;
if ($$indexhash{'indisprimary'}) {
$type = UNIQUE; #PRIMARY_KEY;
#tell sqlt that this is the primary key:
for my $column (@columns) {
$table->get_field($column)->{is_primary_key} = 1;
}
} elsif ($$indexhash{'indisunique'}) {
$type = UNIQUE;
} else {
$type = NORMAL;
}
$table->add_index(
name => $$indexhash{'relname'},
type => $type,
fields => \@columns,
) || die $table->error;
}
$fk_select->execute('public', $table_name) or die "Can't execute: $@";
my $fkeys = $fk_select->fetchall_arrayref({});
$DEBUG and print Dumper $fkeys;
for my $con (@$fkeys) {
my $con_name = $con->{conname};
my $fields = $con->{fields};
my $reference_fields = $con->{reference_fields};
my $reference_table = $con->{frelname};
my $on_upd = $con->{confupdtype};
my $on_del = $con->{confdeltype};
$table->add_constraint(
name => $con_name,
type => 'foreign_key',
fields => $fields,
reference_fields => $reference_fields,
reference_table => $reference_table,
on_update => $actions->{$on_upd},
on_delete => $actions->{$on_del},
);
}
}
# Process triggers
$trigger_select->execute() or die "Can't execute trigger query: $@";
while (my $trigger_hash = $trigger_select->fetchrow_hashref) {
my $trigger_name = $trigger_hash->{trigger_name};
my $table_name = $trigger_hash->{table_name};
my $timing = $trigger_hash->{timing};
my $events = $trigger_hash->{events};
my $scope = $trigger_hash->{scope};
my $trigger_def = $trigger_hash->{trigger_definition};
# Get the table object
my $table = $schema->get_table($table_name);
next unless $table;
# Parse events into an array
my @database_events = split /,/, $events;
# Handle update column specifications
my @fields = ();
if ($events =~ /update/ && $trigger_hash->{update_columns}) {
# Parse update column list if present
my $update_cols = $trigger_hash->{update_columns};
if ($update_cols && $update_cols ne '') {
@fields = split /\s+/, $update_cols;
}
}
# Extract just the EXECUTE FUNCTION/PROCEDURE part from the trigger definition
my $action = '';
if ($trigger_def =~ /\bEXECUTE\s+(FUNCTION|PROCEDURE)\s+(.+)$/i) {
$action = "EXECUTE $1 $2";
}
# Fallback: capture everything from 'EXECUTE' onward
elsif ($trigger_def =~ /\b(EXECUTE\b.*)$/i) {
$action = $1;
}
else {
die "Could not parse trigger action from '$trigger_def'";
}
# Add trigger to schema
my $trigger = $schema->add_trigger(
name => $trigger_name,
perform_action_when => $timing,
database_events => \@database_events,
on_table => $table_name,
action => $action,
scope => $scope,
(@fields ? (fields => \@fields) : ()),
) || die $schema->error;
}
# Process stored procedures/functions
$procedure_select->execute() or die "Can't execute procedure query: $@";
while (my $proc_hash = $procedure_select->fetchrow_hashref) {
my $proc_name = $proc_hash->{procedure_name};
my $proc_sql = $proc_hash->{procedure_definition};
my $parameters = $proc_hash->{parameters} || '';
my $owner = $proc_hash->{owner};
my $comments = $proc_hash->{comments};
# Add procedure to schema
my $procedure = $schema->add_procedure(
name => $proc_name,
sql => $proc_sql,
parameters => $parameters,
($owner ? (owner => $owner) : ()),
($comments ? (comments => $comments) : ()),
) || die $schema->error;
}
return 1;
}
1;
# -------------------------------------------------------------------
# Time is a waste of money.
# Oscar Wilde
# -------------------------------------------------------------------
=pod
=head1 AUTHOR
Scott Cain E<lt>cain@cshl.eduE<gt>, previous author:
Paul Harrington E<lt>harringp@deshaw.comE<gt>.
=head1 SEE ALSO
SQL::Translator, DBD::Pg.
=cut