support CamelCase table names
[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';
fa994d3c 6use Carp::Clan qw/^DBIx::Class/;
996be9ee 7use Class::C3;
8
9990e58f 9our $VERSION = '0.07000';
32f784fc 10
996be9ee 11=head1 NAME
12
13DBIx::Class::Schema::Loader::DBI::mysql - DBIx::Class::Schema::Loader::DBI mysql Implementation.
14
15=head1 SYNOPSIS
16
17 package My::Schema;
18 use base qw/DBIx::Class::Schema::Loader/;
19
59cfa251 20 __PACKAGE__->loader_options( debug => 1 );
996be9ee 21
22 1;
23
24=head1 DESCRIPTION
25
26See L<DBIx::Class::Schema::Loader::Base>.
27
28=cut
29
518472fa 30sub _tables_list {
bfb43060 31 my ($self, $opts) = @_;
518472fa 32
bfb43060 33 return $self->next::method($opts, undef, undef);
518472fa 34}
35
996be9ee 36sub _table_fk_info {
37 my ($self, $table) = @_;
38
5223f24a 39 my $dbh = $self->schema->storage->dbh;
3de915bc 40
3de915bc 41 my $table_def_ref = eval { $dbh->selectrow_arrayref("SHOW CREATE TABLE `$table`") };
42 my $table_def = $table_def_ref->[1];
43
44 return [] if not $table_def;
309e2aa1 45
46 my $qt = qr/["`]/;
47
48 my (@reldata) = ($table_def =~
49 /CONSTRAINT $qt.*$qt FOREIGN KEY \($qt(.*)$qt\) REFERENCES $qt(.*)$qt \($qt(.*)$qt\)/ig
50 );
996be9ee 51
52 my @rels;
53 while (scalar @reldata > 0) {
54 my $cols = shift @reldata;
55 my $f_table = shift @reldata;
56 my $f_cols = shift @reldata;
57
309e2aa1 58 my @cols = map { s/(?: \Q$self->{_quoter}\E | $qt )//x; lc $_ }
be72dba7 59 split(/$qt?\s*$qt?,$qt?\s*$qt?/, $cols);
5223f24a 60
309e2aa1 61 my @f_cols = map { s/(?: \Q$self->{_quoter}\E | $qt )//x; lc $_ }
be72dba7 62 split(/$qt?\s*$qt?,$qt?\s*$qt?/, $f_cols);
996be9ee 63
64 push(@rels, {
65 local_columns => \@cols,
66 remote_columns => \@f_cols,
67 remote_table => $f_table
68 });
69 }
70
71 return \@rels;
72}
73
74# primary and unique info comes from the same sql statement,
75# so cache it here for both routines to use
76sub _mysql_table_get_keys {
77 my ($self, $table) = @_;
78
5223f24a 79 if(!exists($self->{_cache}->{_mysql_keys}->{$table})) {
996be9ee 80 my %keydata;
81 my $dbh = $self->schema->storage->dbh;
075aff97 82 my $sth = $dbh->prepare('SHOW INDEX FROM '.$self->_table_as_sql($table));
996be9ee 83 $sth->execute;
84 while(my $row = $sth->fetchrow_hashref) {
85 next if $row->{Non_unique};
86 push(@{$keydata{$row->{Key_name}}},
87 [ $row->{Seq_in_index}, lc $row->{Column_name} ]
88 );
89 }
90 foreach my $keyname (keys %keydata) {
91 my @ordered_cols = map { $_->[1] } sort { $a->[0] <=> $b->[0] }
92 @{$keydata{$keyname}};
93 $keydata{$keyname} = \@ordered_cols;
94 }
5223f24a 95 $self->{_cache}->{_mysql_keys}->{$table} = \%keydata;
996be9ee 96 }
97
5223f24a 98 return $self->{_cache}->{_mysql_keys}->{$table};
996be9ee 99}
100
101sub _table_pk_info {
102 my ( $self, $table ) = @_;
103
104 return $self->_mysql_table_get_keys($table)->{PRIMARY};
105}
106
107sub _table_uniq_info {
108 my ( $self, $table ) = @_;
109
110 my @uniqs;
111 my $keydata = $self->_mysql_table_get_keys($table);
8ac8926d 112 foreach my $keyname (keys %$keydata) {
996be9ee 113 next if $keyname eq 'PRIMARY';
114 push(@uniqs, [ $keyname => $keydata->{$keyname} ]);
115 }
116
117 return \@uniqs;
118}
119
26334ec1 120sub _columns_info_for {
121 my $self = shift;
122 my ($table) = @_;
123
124 my $result = $self->next::method(@_);
125
126 my $dbh = $self->schema->storage->dbh;
127
128 while (my ($col, $info) = each %$result) {
129 delete $info->{size}
130 unless $info->{data_type} =~ /^(?: (?:var)?(?:char(?:acter)?|binary) | bit | year)\z/ix;
131
132 if ($info->{data_type} eq 'int') {
133 $info->{data_type} = 'integer';
134 }
135 elsif ($info->{data_type} eq 'double') {
136 $info->{data_type} = 'double precision';
137 }
138
139 my ($precision, $scale, $column_type) = eval { $dbh->selectrow_array(<<'EOF', {}, lc $table, lc $col) };
140SELECT numeric_precision, numeric_scale, column_type
141FROM information_schema.columns
142WHERE lower(table_name) = ? AND lower(column_name) = ?
143EOF
144 $column_type = '' if not defined $column_type;
145
146 if ($info->{data_type} eq 'bit' && (not exists $info->{size})) {
147 $info->{size} = $precision if defined $precision;
148 }
149 elsif ($info->{data_type} =~ /^(?:float|double precision|decimal)\z/) {
150 if (defined $precision && defined $scale) {
151 if ($precision == 10 && $scale == 0) {
152 delete $info->{size};
153 }
154 else {
155 $info->{size} = [$precision,$scale];
156 }
157 }
158 }
159 elsif ($info->{data_type} eq 'year') {
160 if ($column_type =~ /\(2\)/) {
161 $info->{size} = 2;
162 }
163 elsif ($column_type =~ /\(4\)/ || $info->{size} == 4) {
164 delete $info->{size};
165 }
166 }
167 }
168
169 return $result;
170}
171
a8df0345 172sub _extra_column_info {
f430297e 173 no warnings 'uninitialized';
45be2ce7 174 my ($self, $table, $col, $info, $dbi_info) = @_;
a8df0345 175 my %extra_info;
78b7ccaa 176
45be2ce7 177 if ($dbi_info->{mysql_is_auto_increment}) {
a8df0345 178 $extra_info{is_auto_increment} = 1
179 }
45be2ce7 180 if ($dbi_info->{mysql_type_name} =~ /\bunsigned\b/i) {
46bef65f 181 $extra_info{extra}{unsigned} = 1;
182 }
45be2ce7 183 if ($dbi_info->{mysql_values}) {
184 $extra_info{extra}{list} = $dbi_info->{mysql_values};
8fdd52a2 185 }
3372cb43 186 if ( lc($dbi_info->{COLUMN_DEF}) eq 'current_timestamp'
187 && lc($dbi_info->{mysql_type_name}) eq 'timestamp') {
3facc532 188
f430297e 189 $extra_info{default_value} = \'CURRENT_TIMESTAMP';
190 }
8fdd52a2 191
a8df0345 192 return \%extra_info;
8fdd52a2 193}
194
996be9ee 195=head1 SEE ALSO
196
197L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
198L<DBIx::Class::Schema::Loader::DBI>
199
be80bba7 200=head1 AUTHOR
201
9cc8e7e1 202See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 203
204=head1 LICENSE
205
206This library is free software; you can redistribute it and/or modify it under
207the same terms as Perl itself.
208
996be9ee 209=cut
210
2111;
26334ec1 212# vim:et sw=4 sts=4 tw=0: