handle duplicate relationship names (RT#64041)
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Sybase.pm
1 package DBIx::Class::Schema::Loader::DBI::Sybase;
2
3 use strict;
4 use warnings;
5 use base 'DBIx::Class::Schema::Loader::DBI::Sybase::Common';
6 use Carp::Clan qw/^DBIx::Class/;
7 use mro 'c3';
8
9 our $VERSION = '0.07010';
10
11 =head1 NAME
12
13 DBIx::Class::Schema::Loader::DBI::Sybase - DBIx::Class::Schema::Loader::DBI
14 Sybase ASE Implementation.
15
16 =head1 DESCRIPTION
17
18 See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
19
20 =cut
21
22 sub _setup {
23     my $self = shift;
24
25     $self->next::method(@_);
26
27     if (not defined $self->preserve_case) {
28         $self->preserve_case(1);
29     }
30 }
31
32 sub _rebless {
33     my $self = shift;
34
35     my $dbh = $self->schema->storage->dbh;
36     my $DBMS_VERSION = @{$dbh->selectrow_arrayref(qq{sp_server_info \@attribute_id=1})}[2];
37     if ($DBMS_VERSION =~ /^Microsoft /i) {
38         $DBMS_VERSION =~ s/\s/_/g;
39         my $subclass = "DBIx::Class::Schema::Loader::DBI::Sybase::$DBMS_VERSION";
40         if ($self->load_optional_class($subclass) && !$self->isa($subclass)) {
41             bless $self, $subclass;
42             $self->_rebless;
43       }
44     }
45 }
46
47 sub _tables_list {
48     my ($self, $opts) = @_;
49
50     my $dbh = $self->schema->storage->dbh;
51
52     my $sth = $dbh->table_info(undef, $self->db_schema, undef, "'TABLE','VIEW'");
53
54     my @tables = grep $_ ne 'sysquerymetrics',
55               map $_->{table_name}, @{ $sth->fetchall_arrayref({ table_name => 1 }) };
56
57     return $self->_filter_tables(\@tables, $opts);
58 }
59
60 sub _table_columns {
61     my ($self, $table) = @_;
62
63     my $dbh = $self->schema->storage->dbh;
64     my $columns = $dbh->selectcol_arrayref(qq{
65 SELECT c.name
66 FROM syscolumns c JOIN sysobjects o
67 ON c.id = o.id
68 WHERE o.name = @{[ $dbh->quote($table) ]} AND o.type = 'U'
69 });
70
71     return $columns;
72 }
73
74 sub _table_pk_info {
75     my ($self, $table) = @_;
76
77     my $dbh = $self->schema->storage->dbh;
78     my $sth = $dbh->prepare(qq{sp_pkeys @{[ $dbh->quote($table) ]}});
79     $sth->execute;
80
81     my @keydata;
82
83     while (my $row = $sth->fetchrow_hashref) {
84         push @keydata, $row->{column_name};
85     }
86
87     return \@keydata;
88 }
89
90 sub _table_fk_info {
91     my ($self, $table) = @_;
92
93     # check if FK_NAME is supported
94
95     my $dbh = $self->schema->storage->dbh;
96     local $dbh->{FetchHashKeyName} = 'NAME_lc';
97     # hide "Object does not exist in this database." when trying to fetch fkeys
98     local $dbh->{syb_err_handler} = sub { return $_[0] == 17461 ? 0 : 1 }; 
99     my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = @{[ $dbh->quote($table) ]}});
100     $sth->execute;
101     my $row = $sth->fetchrow_hashref;
102
103     return unless $row;
104
105     if (exists $row->{fk_name}) {
106         $sth->finish;
107         return $self->_table_fk_info_by_name($table);
108     }
109
110     $sth->finish;
111     return $self->_table_fk_info_by_sp_helpconstraint($table);
112 }
113
114 sub _table_fk_info_by_name {
115     my ($self, $table) = @_;
116     my ($local_cols, $remote_cols, $remote_table, @rels);
117
118     my $dbh = $self->schema->storage->dbh;
119     local $dbh->{FetchHashKeyName} = 'NAME_lc';
120     # hide "Object does not exist in this database." when trying to fetch fkeys
121     local $dbh->{syb_err_handler} = sub { return $_[0] == 17461 ? 0 : 1 }; 
122     my $sth = $dbh->prepare(qq{sp_fkeys \@fktable_name = @{[ $dbh->quote($table) ]}});
123     $sth->execute;
124
125     while (my $row = $sth->fetchrow_hashref) {
126         my $fk = $row->{fk_name};
127         next unless defined $fk;
128
129         push @{$local_cols->{$fk}}, $row->{fkcolumn_name};
130         push @{$remote_cols->{$fk}}, $row->{pkcolumn_name};
131         $remote_table->{$fk} = $row->{pktable_name};
132     }
133
134     foreach my $fk (keys %$remote_table) {
135         push @rels, {
136                      local_columns => \@{$local_cols->{$fk}},
137                      remote_columns => \@{$remote_cols->{$fk}},
138                      remote_table => $remote_table->{$fk},
139                     };
140
141     }
142     return \@rels;
143 }
144
145 sub _table_fk_info_by_sp_helpconstraint {
146     my ($self, $table) = @_;
147
148     my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
149     local $SIG{__WARN__} = sub {
150         $warn_handler->(@_) unless $_[0] =~
151             /^\s*$|^Total Number of|^Details|^(?:--?|=|\+) Number|^Formula for/;
152     };
153
154     my $dbh = $self->schema->storage->dbh;
155
156     local $dbh->{FetchHashKeyName} = 'NAME_lc';
157
158     my $sth = $dbh->prepare("sp_helpconstraint $table");
159     $sth->execute;
160
161     my $constraints = $sth->fetchall_arrayref({});
162
163     my @rels;
164
165     foreach my $constraint (map $_->{definition}, @$constraints) {
166         my ($local_cols, $remote_table, $remote_cols) = $constraint =~
167 /^$table FOREIGN KEY \(([^)]+)\) REFERENCES ([^(]+)\(([^)]+)\)/;
168
169         next unless $local_cols;
170
171         my @local_cols  = split /,\s*/, $local_cols;
172         my @remote_cols = split /,\s*/, $remote_cols;
173
174         push @rels, {
175             local_columns  => \@local_cols,
176             remote_columns => \@remote_cols,
177             remote_table   => $remote_table,
178         };
179     }
180
181     return \@rels;
182 }
183
184 sub _table_uniq_info {
185     no warnings 'uninitialized'; # for presumably XS weirdness with null operations
186     my ($self, $table) = @_;
187
188     local $SIG{__WARN__} = sub { warn @_
189         unless $_[0] =~ /^Formula for Calculation:|^(?:--?|\+|=) Number of (?:self )?references|^Total Number of Referential Constraints|^Details:|^\s*$/ };
190
191     my $dbh = $self->schema->storage->dbh;
192     local $dbh->{FetchHashKeyName} = 'NAME_lc';
193     my $sth = $dbh->prepare(qq{sp_helpconstraint \@objname=@{[ $dbh->quote($table) ]}, \@nomsg='nomsg'});
194     eval { $sth->execute };
195     return if $@;
196
197     my $constraints;
198     while (my $row = $sth->fetchrow_hashref) {
199         if (exists $row->{constraint_type}) {
200             my $type = $row->{constraint_type} || '';
201             if ($type =~ /^unique/i) {
202                 my $name = $row->{constraint_name};
203                 push @{$constraints->{$name}},
204                     ( split /,/, $row->{constraint_keys} );
205             }
206         } else {
207             my $def = $row->{definition} || next;
208             next unless $def =~ /^unique/i;
209             my $name = $row->{name};
210             my ($keys) = $def =~ /\((.*)\)/;
211             $keys =~ s/\s*//g;
212             my @keys = split /,/ => $keys;
213             push @{$constraints->{$name}}, @keys;
214         }
215     }
216
217     my @uniqs = map { [ $_ => $constraints->{$_} ] } keys %$constraints;
218     return \@uniqs;
219 }
220
221 # get the correct data types, defaults and size
222 sub _columns_info_for {
223     my $self    = shift;
224     my ($table) = @_;
225     my $result  = $self->next::method(@_);
226
227     my $dbh = $self->schema->storage->dbh;
228     my $sth = $dbh->prepare(qq{
229 SELECT c.name name, bt.name base_type, ut.name user_type, cm.text deflt, c.prec prec, c.scale scale, c.length len
230 FROM syscolumns c
231 JOIN sysobjects o ON c.id = o.id
232 LEFT JOIN systypes bt ON c.type     = bt.type 
233 LEFT JOIN systypes ut ON c.usertype = ut.usertype
234 LEFT JOIN syscomments cm
235     ON cm.id = CASE WHEN c.cdefault = 0 THEN c.computedcol ELSE c.cdefault END
236 WHERE o.name = @{[ $dbh->quote($table) ]} AND o.type = 'U'
237 });
238     $sth->execute;
239     local $dbh->{FetchHashKeyName} = 'NAME_lc';
240     my $info = $sth->fetchall_hashref('name');
241
242     while (my ($col, $res) = each %$result) {
243         my $data_type = $res->{data_type} = $info->{$col}{user_type} || $info->{$col}{base_type};
244
245         if ($data_type && $data_type =~ /^timestamp\z/i) {
246             $res->{inflate_datetime} = 0;
247         }
248
249         if (my $default = $info->{$col}{deflt}) {
250             if ($default =~ /^AS \s+ (\S+)/ix) {
251                 my $function = $1;
252                 $res->{default_value} = \$function;
253
254                 if ($function =~ /^getdate\b/) {
255                     $res->{inflate_datetime} = 1;
256                 }
257
258                 delete $res->{size};
259                 $res->{data_type} = undef;
260             }
261             elsif ($default =~ /^DEFAULT \s+ (\S+)/ix) {
262                 my ($constant_default) = $1 =~ /^['"\[\]]?(.*?)['"\[\]]?\z/;
263                 $res->{default_value} = $constant_default;
264             }
265         }
266
267         if (my $data_type = $res->{data_type}) {
268             if ($data_type eq 'int') {
269                 $data_type = $res->{data_type} = 'integer';
270             }
271             elsif ($data_type eq 'decimal') {
272                 $data_type = $res->{data_type} = 'numeric';
273             }
274
275             if ($data_type =~ /^(?:text|unitext|image|bigint|integer|smallint|tinyint|real|double|double precision|float|date|time|datetime|smalldatetime|money|smallmoney|timestamp|bit)\z/i) {
276                 delete $res->{size};
277             }
278             elsif ($data_type eq 'numeric') {
279                 my ($prec, $scale) = @{$info->{$col}}{qw/prec scale/};
280
281                 if ($prec == 18 && $scale == 0) {
282                     delete $res->{size};
283                 }
284                 else {
285                     $res->{size} = [ $prec, $scale ];
286                 }
287             }
288             elsif ($data_type =~ /^(?:unichar|univarchar)\z/i) {
289                 $res->{size} /= 2;
290             }
291         }
292
293         if ($data_type eq 'float') {
294             $res->{data_type} = $info->{$col}{len} <= 4 ? 'real' : 'double precision';
295         }
296     }
297
298     return $result;
299 }
300
301 sub _extra_column_info {
302     my ($self, $table, $column, $info, $dbi_info) = @_;
303     my %extra_info;
304
305     my $dbh = $self->schema->storage->dbh;
306     my $sth = $dbh->prepare(qq{SELECT name FROM syscolumns WHERE id = (SELECT id FROM sysobjects WHERE name = @{[ $dbh->quote($table) ]}) AND (status & 0x80) = 0x80 AND name = @{[ $dbh->quote($column) ]}});
307     $sth->execute();
308
309     if ($sth->fetchrow_array) {
310         $extra_info{is_auto_increment} = 1;
311     }
312
313     return \%extra_info;
314 }
315
316 =head1 SEE ALSO
317
318 L<DBIx::Class::Schema::Loader::DBI::Sybase::Common>,
319 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
320 L<DBIx::Class::Schema::Loader::DBI>
321
322 =head1 AUTHOR
323
324 See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
325
326 =head1 LICENSE
327
328 This library is free software; you can redistribute it and/or modify it under
329 the same terms as Perl itself.
330
331 =cut
332
333 1;
334 # vim:et sts=4 sw=4 tw=0: