76e741ba48435f6f34578cb417d2ebb5e0630f38
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI.pm
1 package DBIx::Class::Schema::Loader::DBI;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Schema::Loader::Base/;
6 use mro 'c3';
7 use Carp::Clan qw/^DBIx::Class/;
8 use Try::Tiny;
9 use namespace::clean;
10
11 our $VERSION = '0.07007';
12
13 __PACKAGE__->mk_group_accessors('simple', qw/
14     _disable_pk_detection
15     _disable_uniq_detection
16     _disable_fk_detection
17     _passwords
18 /);
19
20 =head1 NAME
21
22 DBIx::Class::Schema::Loader::DBI - DBIx::Class::Schema::Loader DBI Implementation.
23
24 =head1 SYNOPSIS
25
26 See L<DBIx::Class::Schema::Loader::Base>
27
28 =head1 DESCRIPTION
29
30 This is the base class for L<DBIx::Class::Schema::Loader::Base> classes for
31 DBI-based storage backends, and implements the common functionality between them.
32
33 See L<DBIx::Class::Schema::Loader::Base> for the available options.
34
35 =head1 METHODS
36
37 =head2 new
38
39 Overlays L<DBIx::Class::Schema::Loader::Base/new> to do some DBI-specific
40 things.
41
42 =cut
43
44 sub new {
45     my $self = shift->next::method(@_);
46
47     # rebless to vendor-specific class if it exists and loads and we're not in a
48     # custom class.
49     if (not $self->loader_class) {
50         my $dbh = $self->schema->storage->dbh;
51         my $driver = $dbh->{Driver}->{Name};
52
53         my $subclass = 'DBIx::Class::Schema::Loader::DBI::' . $driver;
54         if ($self->load_optional_class($subclass)) {
55             bless $self, $subclass unless $self->isa($subclass);
56             $self->_rebless;
57         }
58     }
59
60     # Set up the default quoting character and name seperators
61     $self->{_quoter}  = $self->_build_quoter;
62     $self->{_namesep} = $self->_build_namesep;
63
64     # For our usage as regex matches, concatenating multiple quoter
65     # values works fine (e.g. s/\Q<>\E// if quoter was [ '<', '>' ])
66     if( ref $self->{_quoter} eq 'ARRAY') {
67         $self->{_quoter} = join(q{}, @{$self->{_quoter}});
68     }
69
70     $self->_setup;
71
72     $self;
73 }
74
75 sub _build_quoter {
76     my $self = shift;
77     my $dbh = $self->schema->storage->dbh;
78     return $dbh->get_info(29)
79            || $self->schema->storage->sql_maker->quote_char
80            || q{"};
81 }
82
83 sub _build_namesep {
84     my $self = shift;
85     my $dbh = $self->schema->storage->dbh;
86     return $dbh->get_info(41)
87            || $self->schema->storage->sql_maker->name_sep
88            || q{.};
89 }
90
91 # Override this in vendor modules to do things at the end of ->new()
92 sub _setup { }
93
94 # Override this in vendor module to load a subclass if necessary
95 sub _rebless { }
96
97 # Returns an array of table names
98 sub _tables_list { 
99     my ($self, $opts) = (shift, shift);
100
101     my ($table, $type) = @_ ? @_ : ('%', '%');
102
103     my $dbh = $self->schema->storage->dbh;
104     my @tables = $dbh->tables(undef, $self->db_schema, $table, $type);
105
106     my $qt = qr/[\Q$self->{_quoter}\E"'`\[\]]/;
107
108     my $all_tables_quoted = (grep /$qt/, @tables) == @tables;
109
110     if ($self->{_quoter} && $all_tables_quoted) {
111         s/.* $qt (?= .* $qt)//xg for @tables;
112     } else {
113         s/^.*\Q$self->{_namesep}\E// for @tables;
114     }
115     s/$qt//g for @tables;
116
117     return $self->_filter_tables(\@tables, $opts);
118 }
119
120 # apply constraint/exclude and ignore bad tables and views
121 sub _filter_tables {
122     my ($self, $tables, $opts) = @_;
123
124     my @tables = @$tables;
125     my @filtered_tables;
126
127     $opts ||= {};
128     my $constraint   = $opts->{constraint};
129     my $exclude      = $opts->{exclude};
130
131     @tables = grep { /$constraint/ } @$tables if defined $constraint;
132     @tables = grep { ! /$exclude/  } @$tables if defined $exclude;
133
134     LOOP: for my $table (@tables) {
135         try {
136             my $sth = $self->_sth_for($table, undef, \'1 = 0');
137             $sth->execute;
138         }
139         catch {
140             warn "Bad table or view '$table', ignoring: $_\n";
141             $self->_unregister_source_for_table($table);
142             no warnings 'exiting';
143             next LOOP;
144         };
145
146         push @filtered_tables, $table;
147     }
148
149     return @filtered_tables;
150 }
151
152 =head2 load
153
154 We override L<DBIx::Class::Schema::Loader::Base/load> here to hook in our localized settings for C<$dbh> error handling.
155
156 =cut
157
158 sub load {
159     my $self = shift;
160
161     local $self->schema->storage->dbh->{RaiseError} = 1;
162     local $self->schema->storage->dbh->{PrintError} = 0;
163     $self->next::method(@_);
164 }
165
166 sub _table_as_sql {
167     my ($self, $table) = @_;
168
169     if($self->{db_schema}) {
170         $table = $self->{db_schema} . $self->{_namesep} .
171             $self->_quote_table_name($table);
172     } else {
173         $table = $self->_quote_table_name($table);
174     }
175
176     return $table;
177 }
178
179 sub _sth_for {
180     my ($self, $table, $fields, $where) = @_;
181
182     my $dbh = $self->schema->storage->dbh;
183
184     my $sth = $dbh->prepare($self->schema->storage->sql_maker
185         ->select(\$self->_table_as_sql($table), $fields, $where));
186
187     return $sth;
188 }
189
190 # Returns an arrayref of column names
191 sub _table_columns {
192     my ($self, $table) = @_;
193
194     my $sth = $self->_sth_for($table, undef, \'1 = 0');
195     $sth->execute;
196     my $retval = $self->preserve_case ? \@{$sth->{NAME}} : \@{$sth->{NAME_lc}};
197     $sth->finish;
198
199     $retval;
200 }
201
202 # Returns arrayref of pk col names
203 sub _table_pk_info { 
204     my ($self, $table) = @_;
205
206     return [] if $self->_disable_pk_detection;
207
208     my $dbh = $self->schema->storage->dbh;
209
210     my @primary = try {
211         $dbh->primary_key('', $self->db_schema, $table);
212     }
213     catch {
214         warn "Cannot find primary keys for this driver: $_";
215         $self->_disable_pk_detection(1);
216         return ();
217     };
218
219     return [] if not @primary;
220
221     @primary = map { $self->_lc($_) } @primary;
222     s/\Q$self->{_quoter}\E//g for @primary;
223
224     return \@primary;
225 }
226
227 # Override this for vendor-specific uniq info
228 sub _table_uniq_info {
229     my ($self, $table) = @_;
230
231     return [] if $self->_disable_uniq_detection;
232
233     my $dbh = $self->schema->storage->dbh;
234
235     if (not $dbh->can('statistics_info')) {
236         warn "No UNIQUE constraint information can be gathered for this driver";
237         $self->_disable_uniq_detection(1);
238         return [];
239     }
240
241     my %indices;
242     my $sth = $dbh->statistics_info(undef, $self->db_schema, $table, 1, 1);
243     while(my $row = $sth->fetchrow_hashref) {
244         # skip table-level stats, conditional indexes, and any index missing
245         #  critical fields
246         next if $row->{TYPE} eq 'table'
247             || defined $row->{FILTER_CONDITION}
248             || !$row->{INDEX_NAME}
249             || !defined $row->{ORDINAL_POSITION}
250             || !$row->{COLUMN_NAME};
251
252         $indices{$row->{INDEX_NAME}}[$row->{ORDINAL_POSITION}] = $self->_lc($row->{COLUMN_NAME});
253     }
254     $sth->finish;
255
256     my @retval;
257     foreach my $index_name (keys %indices) {
258         my $index = $indices{$index_name};
259         push(@retval, [ $index_name => [ @$index[1..$#$index] ] ]);
260     }
261
262     return \@retval;
263 }
264
265 # Find relationships
266 sub _table_fk_info {
267     my ($self, $table) = @_;
268
269     return [] if $self->_disable_fk_detection;
270
271     my $dbh = $self->schema->storage->dbh;
272     my $sth = try {
273         $dbh->foreign_key_info( '', $self->db_schema, '',
274                                 '', $self->db_schema, $table );
275     }
276     catch {
277         warn "Cannot introspect relationships for this driver: $_";
278         $self->_disable_fk_detection(1);
279         return undef;
280     };
281
282     return [] if !$sth;
283
284     my %rels;
285
286     my $i = 1; # for unnamed rels, which hopefully have only 1 column ...
287     while(my $raw_rel = $sth->fetchrow_arrayref) {
288         my $uk_tbl  = $raw_rel->[2];
289         my $uk_col  = $self->_lc($raw_rel->[3]);
290         my $fk_col  = $self->_lc($raw_rel->[7]);
291         my $relid   = ($raw_rel->[11] || ( "__dcsld__" . $i++ ));
292         $uk_tbl =~ s/\Q$self->{_quoter}\E//g;
293         $uk_col =~ s/\Q$self->{_quoter}\E//g;
294         $fk_col =~ s/\Q$self->{_quoter}\E//g;
295         $relid  =~ s/\Q$self->{_quoter}\E//g;
296         $rels{$relid}->{tbl} = $uk_tbl;
297         $rels{$relid}->{cols}{$uk_col} = $fk_col;
298     }
299     $sth->finish;
300
301     my @rels;
302     foreach my $relid (keys %rels) {
303         push(@rels, {
304             remote_columns => [ keys   %{$rels{$relid}->{cols}} ],
305             local_columns  => [ values %{$rels{$relid}->{cols}} ],
306             remote_table   => $rels{$relid}->{tbl},
307         });
308     }
309
310     return \@rels;
311 }
312
313 # ported in from DBIx::Class::Storage::DBI:
314 sub _columns_info_for {
315     my ($self, $table) = @_;
316
317     my $dbh = $self->schema->storage->dbh;
318
319     my %result;
320
321     if ($dbh->can('column_info')) {
322         my $sth = $self->_dbh_column_info($dbh, undef, $self->db_schema, $table, '%' );
323         while ( my $info = $sth->fetchrow_hashref() ){
324             my $column_info = {};
325             $column_info->{data_type}     = lc $info->{TYPE_NAME};
326
327             my $size = $info->{COLUMN_SIZE};
328
329             if (defined $size && defined $info->{DECIMAL_DIGITS}) {
330                 $column_info->{size} = [$size, $info->{DECIMAL_DIGITS}];
331             }
332             elsif (defined $size) {
333                 $column_info->{size} = $size;
334             }
335
336             $column_info->{is_nullable}   = $info->{NULLABLE} ? 1 : 0;
337             $column_info->{default_value} = $info->{COLUMN_DEF} if defined $info->{COLUMN_DEF};
338             my $col_name = $info->{COLUMN_NAME};
339             $col_name =~ s/^\"(.*)\"$/$1/;
340
341             $col_name = $self->_lc($col_name);
342
343             my $extra_info = $self->_extra_column_info(
344                 $table, $col_name, $column_info, $info
345             ) || {};
346             $column_info = { %$column_info, %$extra_info };
347
348             $result{$col_name} = $column_info;
349         }
350         $sth->finish;
351
352         return \%result if %result;
353     }
354
355     my $sth = $self->_sth_for($table, undef, \'1 = 0');
356     $sth->execute;
357
358     my @columns = @{ $sth->{NAME} };
359
360     for my $i (0 .. $#columns) {
361         my $column_info = {};
362         $column_info->{data_type} = lc $sth->{TYPE}[$i];
363
364         my $size = $sth->{PRECISION}[$i];
365
366         if (defined $size && defined $sth->{SCALE}[$i]) {
367             $column_info->{size} = [$size, $sth->{SCALE}[$i]];
368         }
369         elsif (defined $size) {
370             $column_info->{size} = $size;
371         }
372
373         $column_info->{is_nullable} = $sth->{NULLABLE}[$i] ? 1 : 0;
374
375         if ($column_info->{data_type} =~ m/^(.*?)\((.*?)\)$/) {
376             $column_info->{data_type} = $1;
377             $column_info->{size}    = $2;
378         }
379
380         my $extra_info = $self->_extra_column_info($table, $columns[$i], $column_info) || {};
381         $column_info = { %$column_info, %$extra_info };
382
383         $result{ $self->_lc($columns[$i]) } = $column_info;
384     }
385     $sth->finish;
386
387     foreach my $col (keys %result) {
388         my $colinfo = $result{$col};
389         my $type_num = $colinfo->{data_type};
390         my $type_name;
391         if (defined $type_num && $type_num =~ /^\d+\z/ && $dbh->can('type_info')) {
392             my $type_info = $dbh->type_info($type_num);
393             $type_name = $type_info->{TYPE_NAME} if $type_info;
394             $colinfo->{data_type} = lc $type_name if $type_name;
395         }
396     }
397
398     return \%result;
399 }
400
401 # do not use this, override _columns_info_for instead
402 sub _extra_column_info {}
403
404 # override to mask warnings if needed (see mysql)
405 sub _dbh_column_info {
406     my ($self, $dbh) = (shift, shift);
407
408     return $dbh->column_info(@_);
409 }
410
411 # If a coderef uses DBI->connect, this should get its connect info.
412 sub _try_infer_connect_info_from_coderef {
413     my ($self, $code) = @_;
414
415     my ($dsn, $user, $pass, $params);
416
417     no warnings 'redefine';
418
419     local *DBI::connect = sub {
420         (undef, $dsn, $user, $pass, $params) = @_;
421     };
422
423     $code->();
424
425     return ($dsn, $user, $pass, $params);
426 }
427
428 =head1 SEE ALSO
429
430 L<DBIx::Class::Schema::Loader>
431
432 =head1 AUTHOR
433
434 See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
435
436 =head1 LICENSE
437
438 This library is free software; you can redistribute it and/or modify it under
439 the same terms as Perl itself.
440
441 =cut
442
443 1;
444 # vim:et sts=4 sw=4 tw=0: