release 0.07028
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / mysql.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::DBI::mysql;
2
3use strict;
4use warnings;
5use base 'DBIx::Class::Schema::Loader::DBI';
942bd5e0 6use mro 'c3';
c4a69b87 7use Carp::Clan qw/^DBIx::Class/;
c0767caf 8use List::Util 'first';
c4a69b87 9use List::MoreUtils 'any';
ea998e8e 10use Try::Tiny;
22f91663 11use Scalar::Util 'blessed';
c0767caf 12use namespace::clean;
2fa86d8b 13use DBIx::Class::Schema::Loader::Table ();
996be9ee 14
8990a2b2 15our $VERSION = '0.07028';
32f784fc 16
996be9ee 17=head1 NAME
18
19DBIx::Class::Schema::Loader::DBI::mysql - DBIx::Class::Schema::Loader::DBI mysql Implementation.
20
996be9ee 21=head1 DESCRIPTION
22
c0767caf 23See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
996be9ee 24
25=cut
26
bc1cb85e 27sub _setup {
28 my $self = shift;
29
6ebd0f33 30 $self->schema->storage->sql_maker->quote_char("`");
31 $self->schema->storage->sql_maker->name_sep(".");
32
bc1cb85e 33 $self->next::method(@_);
34
35 if (not defined $self->preserve_case) {
36 $self->preserve_case(0);
37 }
c4a69b87 38
39 if ($self->db_schema && $self->db_schema->[0] eq '%') {
40 my @schemas = try {
ba3e8f02 41 $self->_show_databases;
c4a69b87 42 }
43 catch {
44 croak "no SHOW DATABASES privileges: $_";
45 };
46
47 @schemas = grep {
48 my $schema = $_;
ba3e8f02 49 not any { lc($schema) eq lc($_) } $self->_system_schemas
c4a69b87 50 } @schemas;
51
52 $self->db_schema(\@schemas);
53 }
54}
55
ba3e8f02 56sub _show_databases {
57 my $self = shift;
58
59 return map $_->[0], @{ $self->dbh->selectall_arrayref('SHOW DATABASES') };
60}
61
c4a69b87 62sub _system_schemas {
63 my $self = shift;
64
65 return ($self->next::method(@_), 'mysql');
bc1cb85e 66}
67
9dedee1f 68sub _tables_list {
bfb43060 69 my ($self, $opts) = @_;
518472fa 70
bfb43060 71 return $self->next::method($opts, undef, undef);
518472fa 72}
73
996be9ee 74sub _table_fk_info {
75 my ($self, $table) = @_;
76
c4a69b87 77 my $table_def_ref = eval { $self->dbh->selectrow_arrayref("SHOW CREATE TABLE ".$table->sql_name) };
3de915bc 78 my $table_def = $table_def_ref->[1];
79
80 return [] if not $table_def;
309e2aa1 81
c4a69b87 82 my $qt = qr/["`]/;
83 my $nqt = qr/[^"`]/;
309e2aa1 84
85 my (@reldata) = ($table_def =~
9dedee1f 86 /CONSTRAINT ${qt}${nqt}+${qt} FOREIGN KEY \($qt(.*)$qt\) REFERENCES (?:$qt($nqt+)$qt\.)?$qt($nqt+)$qt \($qt(.+)$qt\)\s*(.*)/ig
309e2aa1 87 );
996be9ee 88
89 my @rels;
90 while (scalar @reldata > 0) {
9dedee1f 91 my ($cols, $f_schema, $f_table, $f_cols, $rest) = splice @reldata, 0, 5;
996be9ee 92
c4a69b87 93 my @cols = map { s/$qt//g; $self->_lc($_) }
be72dba7 94 split(/$qt?\s*$qt?,$qt?\s*$qt?/, $cols);
5223f24a 95
c4a69b87 96 my @f_cols = map { s/$qt//g; $self->_lc($_) }
be72dba7 97 split(/$qt?\s*$qt?,$qt?\s*$qt?/, $f_cols);
996be9ee 98
ba3e8f02 99 # Match case of remote schema to that in SHOW DATABASES, if it's there
100 # and we have permissions to run SHOW DATABASES.
101 if ($f_schema) {
102 my $matched = first {
103 lc($_) eq lc($f_schema)
104 } try { $self->_show_databases };
105
106 $f_schema = $matched if $matched;
107 }
108
2fa86d8b 109 my $remote_table = do {
110 # Get ->tables_list to return tables from the remote schema, in case it is not in the db_schema list.
111 local $self->{db_schema} = [ $f_schema ] if $f_schema;
112
113 first {
114 lc($_->name) eq lc($f_table)
115 && ((not $f_schema) || lc($_->schema) eq lc($f_schema))
116 } $self->_tables_list;
117 };
118
119 # The table may not be in any database, or it may not have been found by the previous code block for whatever reason.
120 if (not $remote_table) {
121 my $remote_schema = $f_schema || $self->db_schema && @{ $self->db_schema } == 1 && $self->db_schema->[0];
122
123 $remote_table = DBIx::Class::Schema::Loader::Table->new(
124 loader => $self,
125 name => $f_table,
126 ($remote_schema ? (
127 schema => $remote_schema,
128 ) : ()),
129 );
130 }
c0767caf 131
9dedee1f 132 my %attrs;
133
134 if ($rest) {
135 my @on_clauses = $rest =~ /(ON DELETE|ON UPDATE) (RESTRICT|CASCADE|SET NULL|NO ACTION) ?/ig;
136
137 while (my ($clause, $value) = splice @on_clauses, 0, 2) {
138 $clause = lc $clause;
139 $clause =~ s/ /_/;
140
141 $value = uc $value;
142
143 $attrs{$clause} = $value;
144 }
145 }
146
147# The default behavior is RESTRICT. Specifying RESTRICT explicitly just removes
148# that ON clause from the SHOW CREATE TABLE output. For this reason, even
149# though the default for these clauses everywhere else in Schema::Loader is
150# CASCADE, we change the default here to RESTRICT in order to reproduce the
151# schema faithfully.
152 $attrs{on_delete} ||= 'RESTRICT';
153 $attrs{on_update} ||= 'RESTRICT';
154
155# MySQL does not have a DEFERRABLE attribute, but there is a way to defer FKs.
156 $attrs{is_deferrable} = 1;
157
996be9ee 158 push(@rels, {
159 local_columns => \@cols,
160 remote_columns => \@f_cols,
c0767caf 161 remote_table => $remote_table,
9dedee1f 162 attrs => \%attrs,
996be9ee 163 });
164 }
165
166 return \@rels;
167}
168
169# primary and unique info comes from the same sql statement,
170# so cache it here for both routines to use
171sub _mysql_table_get_keys {
172 my ($self, $table) = @_;
173
0a4273b7 174 if(!exists($self->{_cache}->{_mysql_keys}->{$table->sql_name})) {
996be9ee 175 my %keydata;
c4a69b87 176 my $sth = $self->dbh->prepare('SHOW INDEX FROM '.$table->sql_name);
996be9ee 177 $sth->execute;
178 while(my $row = $sth->fetchrow_hashref) {
179 next if $row->{Non_unique};
180 push(@{$keydata{$row->{Key_name}}},
bc1cb85e 181 [ $row->{Seq_in_index}, $self->_lc($row->{Column_name}) ]
996be9ee 182 );
183 }
184 foreach my $keyname (keys %keydata) {
185 my @ordered_cols = map { $_->[1] } sort { $a->[0] <=> $b->[0] }
186 @{$keydata{$keyname}};
187 $keydata{$keyname} = \@ordered_cols;
188 }
0a4273b7 189 $self->{_cache}->{_mysql_keys}->{$table->sql_name} = \%keydata;
996be9ee 190 }
191
0a4273b7 192 return $self->{_cache}->{_mysql_keys}->{$table->sql_name};
996be9ee 193}
194
195sub _table_pk_info {
196 my ( $self, $table ) = @_;
197
198 return $self->_mysql_table_get_keys($table)->{PRIMARY};
199}
200
201sub _table_uniq_info {
202 my ( $self, $table ) = @_;
203
204 my @uniqs;
205 my $keydata = $self->_mysql_table_get_keys($table);
8ac8926d 206 foreach my $keyname (keys %$keydata) {
996be9ee 207 next if $keyname eq 'PRIMARY';
208 push(@uniqs, [ $keyname => $keydata->{$keyname} ]);
209 }
210
211 return \@uniqs;
212}
213
26334ec1 214sub _columns_info_for {
215 my $self = shift;
216 my ($table) = @_;
217
218 my $result = $self->next::method(@_);
219
26334ec1 220 while (my ($col, $info) = each %$result) {
26334ec1 221 if ($info->{data_type} eq 'int') {
222 $info->{data_type} = 'integer';
223 }
224 elsif ($info->{data_type} eq 'double') {
225 $info->{data_type} = 'double precision';
226 }
698c11d8 227 my $data_type = $info->{data_type};
228
229 delete $info->{size} if $data_type !~ /^(?: (?:var)?(?:char(?:acter)?|binary) | bit | year)\z/ix;
26334ec1 230
f80b0ea7 231 # information_schema is available in 5.0+
116431d6 232 my ($precision, $scale, $column_type, $default) = eval { $self->dbh->selectrow_array(<<'EOF', {}, $table->name, lc($col)) };
33aa3462 233SELECT numeric_precision, numeric_scale, column_type, column_default
26334ec1 234FROM information_schema.columns
116431d6 235WHERE table_name = ? AND lower(column_name) = ?
26334ec1 236EOF
698c11d8 237 my $has_information_schema = not $@;
33aa3462 238
26334ec1 239 $column_type = '' if not defined $column_type;
240
698c11d8 241 if ($data_type eq 'bit' && (not exists $info->{size})) {
26334ec1 242 $info->{size} = $precision if defined $precision;
243 }
698c11d8 244 elsif ($data_type =~ /^(?:float|double precision|decimal)\z/i) {
26334ec1 245 if (defined $precision && defined $scale) {
246 if ($precision == 10 && $scale == 0) {
247 delete $info->{size};
248 }
249 else {
250 $info->{size} = [$precision,$scale];
251 }
252 }
253 }
698c11d8 254 elsif ($data_type eq 'year') {
26334ec1 255 if ($column_type =~ /\(2\)/) {
256 $info->{size} = 2;
257 }
258 elsif ($column_type =~ /\(4\)/ || $info->{size} == 4) {
259 delete $info->{size};
260 }
261 }
698c11d8 262 elsif ($data_type =~ /^(?:date(?:time)?|timestamp)\z/) {
57a9fc92 263 if (not (defined $self->datetime_undef_if_invalid && $self->datetime_undef_if_invalid == 0)) {
264 $info->{datetime_undef_if_invalid} = 1;
265 }
58333f16 266 }
698c11d8 267 elsif ($data_type =~ /^(?:enum|set)\z/ && $has_information_schema
268 && $column_type =~ /^(?:enum|set)\(/) {
269
270 delete $info->{extra}{list};
271
e00d61ac 272 while ($column_type =~ /'((?:[^']* (?:''|\\')* [^']*)* [^\\'])',?/xg) {
273 my $el = $1;
274 $el =~ s/''/'/g;
275 push @{ $info->{extra}{list} }, $el;
698c11d8 276 }
277 }
33aa3462 278
279 # Sometimes apparently there's a bug where default_value gets set to ''
280 # for things that don't actually have or support that default (like ints.)
281 if (exists $info->{default_value} && $info->{default_value} eq '') {
282 if ($has_information_schema) {
283 if (not defined $default) {
284 delete $info->{default_value};
285 }
286 }
287 else { # just check if it's a char/text type, otherwise remove
698c11d8 288 delete $info->{default_value} unless $data_type =~ /char|text/i;
33aa3462 289 }
290 }
26334ec1 291 }
292
293 return $result;
294}
295
a8df0345 296sub _extra_column_info {
f430297e 297 no warnings 'uninitialized';
45be2ce7 298 my ($self, $table, $col, $info, $dbi_info) = @_;
a8df0345 299 my %extra_info;
78b7ccaa 300
45be2ce7 301 if ($dbi_info->{mysql_is_auto_increment}) {
a8df0345 302 $extra_info{is_auto_increment} = 1
303 }
45be2ce7 304 if ($dbi_info->{mysql_type_name} =~ /\bunsigned\b/i) {
46bef65f 305 $extra_info{extra}{unsigned} = 1;
306 }
45be2ce7 307 if ($dbi_info->{mysql_values}) {
308 $extra_info{extra}{list} = $dbi_info->{mysql_values};
8fdd52a2 309 }
22f91663 310 if ((not blessed $dbi_info) # isa $sth
311 && lc($dbi_info->{COLUMN_DEF}) eq 'current_timestamp'
3372cb43 312 && lc($dbi_info->{mysql_type_name}) eq 'timestamp') {
3facc532 313
6e566cc4 314 my $current_timestamp = 'current_timestamp';
315 $extra_info{default_value} = \$current_timestamp;
f430297e 316 }
8fdd52a2 317
a8df0345 318 return \%extra_info;
8fdd52a2 319}
320
db9c411a 321sub _dbh_column_info {
322 my $self = shift;
323
324 local $SIG{__WARN__} = sub { warn @_
325 unless $_[0] =~ /^column_info: unrecognized column type/ };
326
327 $self->next::method(@_);
328}
329
5c06aa08 330sub _table_comment {
331 my ( $self, $table ) = @_;
332 my $comment = $self->next::method($table);
333 if (not $comment) {
ea998e8e 334 ($comment) = try { $self->schema->storage->dbh->selectrow_array(
5c06aa08 335 qq{SELECT table_comment
336 FROM information_schema.tables
337 WHERE table_schema = schema()
338 AND table_name = ?
116431d6 339 }, undef, $table->name);
ea998e8e 340 };
5c06aa08 341 # InnoDB likes to auto-append crap.
342 if (not $comment) {
343 # Do nothing.
344 }
345 elsif ($comment =~ /^InnoDB free:/) {
346 $comment = undef;
347 }
348 else {
349 $comment =~ s/; InnoDB.*//;
350 }
351 }
ea998e8e 352 return $comment;
5c06aa08 353}
354
355sub _column_comment {
356 my ( $self, $table, $column_number, $column_name ) = @_;
357 my $comment = $self->next::method($table, $column_number, $column_name);
358 if (not $comment) {
ea998e8e 359 ($comment) = try { $self->schema->storage->dbh->selectrow_array(
5c06aa08 360 qq{SELECT column_comment
361 FROM information_schema.columns
362 WHERE table_schema = schema()
363 AND table_name = ?
116431d6 364 AND lower(column_name) = ?
365 }, undef, $table->name, lc($column_name));
ea998e8e 366 };
5c06aa08 367 }
368 return $comment;
369}
370
996be9ee 371=head1 SEE ALSO
372
373L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
374L<DBIx::Class::Schema::Loader::DBI>
375
be80bba7 376=head1 AUTHOR
377
9cc8e7e1 378See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 379
380=head1 LICENSE
381
382This library is free software; you can redistribute it and/or modify it under
383the same terms as Perl itself.
384
996be9ee 385=cut
386
3871;
26334ec1 388# vim:et sw=4 sts=4 tw=0: