missed sql key
[dbsrgits/DBIx-Class.git] / lib / SQL / Translator / Parser / DBIx / Class.pm
CommitLineData
75d07914 1package # hide from PAUSE
c0e7b4e5 2 SQL::Translator::Parser::DBIx::Class;
b02b20b5 3
4# AUTHOR: Jess Robinson
5
1d996af5 6# Some mistakes the fault of Matt S Trout
7
c385ecea 8# Others the fault of Ash Berlin
9
b02b20b5 10use strict;
11use warnings;
b7e303a8 12use vars qw($DEBUG @EXPORT_OK);
b02b20b5 13$DEBUG = 0 unless defined $DEBUG;
b02b20b5 14
15use Exporter;
16use Data::Dumper;
17use SQL::Translator::Utils qw(debug normalize_name);
18
19use base qw(Exporter);
20
21@EXPORT_OK = qw(parse);
22
23# -------------------------------------------------------------------
24# parse($tr, $data)
25#
0e2c6809 26# setting parser_args => { add_fk_index => 0 } will prevent
27# the auto-generation of an index for each FK.
28#
880a1a0c 29# Note that $data, in the case of this parser, is not useful.
b02b20b5 30# We're working with DBIx::Class Schemas, not data streams.
31# -------------------------------------------------------------------
32sub parse {
499adf63 33 my ($tr, $data) = @_;
34 my $args = $tr->parser_args;
b7e303a8 35 my $dbicschema = $args->{'DBIx::Class::Schema'} || $args->{"DBIx::Schema"} ||$data;
36 $dbicschema ||= $args->{'package'};
499adf63 37 my $limit_sources = $args->{'sources'};
b02b20b5 38
b7e303a8 39 die 'No DBIx::Class::Schema' unless ($dbicschema);
40 if (!ref $dbicschema) {
41 eval "use $dbicschema;";
42 die "Can't load $dbicschema ($@)" if($@);
b02b20b5 43 }
44
45 my $schema = $tr->schema;
46 my $table_no = 0;
47
b7e303a8 48 $schema->name( ref($dbicschema) . " v" . ($dbicschema->VERSION || '1.x'))
49 unless ($schema->name);
38e48163 50
51 my %seen_tables;
52
b7e303a8 53 my @monikers = sort $dbicschema->sources;
499adf63 54 if ($limit_sources) {
55 my $ref = ref $limit_sources || '';
5bdf1b3d 56 die "'sources' parameter must be an array or hash ref" unless $ref eq 'ARRAY' || ref eq 'HASH';
499adf63 57
58 # limit monikers to those specified in
59 my $sources;
60 if ($ref eq 'ARRAY') {
61 $sources->{$_} = 1 for (@$limit_sources);
62 } else {
63 $sources = $limit_sources;
64 }
65 @monikers = grep { $sources->{$_} } @monikers;
66 }
67
1d521afd 68 my(@table_monikers, @view_monikers);
69 for my $moniker (@monikers){
70 my $source = $dbicschema->source($moniker);
9774f48b 71 next if $source->is_virtual;
5f5e87cf 72 if ( $source->isa('DBIx::Class::ResultSource::Table') ) {
1d521afd 73 push(@table_monikers, $moniker);
5f5e87cf 74 } elsif( $source->isa('DBIx::Class::ResultSource::View') ){
1d521afd 75 push(@view_monikers, $moniker);
76 }
77 }
499adf63 78
1d521afd 79 foreach my $moniker (sort @table_monikers)
b02b20b5 80 {
b7e303a8 81 my $source = $dbicschema->source($moniker);
90c11f68 82
83 # Skip custom query sources
84 next if ref($source->name);
b02b20b5 85
b7e303a8 86 # Its possible to have multiple DBIC source using same table
38e48163 87 next if $seen_tables{$source->name}++;
88
b02b20b5 89 my $table = $schema->add_table(
90 name => $source->name,
91 type => 'TABLE',
92 ) || die $schema->error;
93 my $colcount = 0;
94 foreach my $col ($source->columns)
95 {
d6c79cb3 96 # assuming column_info in dbic is the same as DBI (?)
b02b20b5 97 # data_type is a number, column_type is text?
98 my %colinfo = (
99 name => $col,
b02b20b5 100 size => 0,
101 is_auto_increment => 0,
102 is_foreign_key => 0,
103 is_nullable => 0,
104 %{$source->column_info($col)}
105 );
0009fa49 106 if ($colinfo{is_nullable}) {
107 $colinfo{default} = '' unless exists $colinfo{default};
108 }
b02b20b5 109 my $f = $table->add_field(%colinfo) || die $table->error;
110 }
111 $table->primary_key($source->primary_columns);
112
7b90bb13 113 my @primary = $source->primary_columns;
114 my %unique_constraints = $source->unique_constraints;
b7e303a8 115 foreach my $uniq (sort keys %unique_constraints) {
de60a93d 116 if (!$source->compare_relationship_keys($unique_constraints{$uniq}, \@primary)) {
7b90bb13 117 $table->add_constraint(
118 type => 'unique',
a7e65bb5 119 name => $uniq,
7b90bb13 120 fields => $unique_constraints{$uniq}
121 );
122 }
123 }
124
b02b20b5 125 my @rels = $source->relationships();
499adf63 126
127 my %created_FK_rels;
2581038c 128
129 # global add_fk_index set in parser_args
130 my $add_fk_index = (exists $args->{add_fk_index} && ($args->{add_fk_index} == 0)) ? 0 : 1;
499adf63 131
454a5a42 132 foreach my $rel (sort @rels)
b02b20b5 133 {
134 my $rel_info = $source->relationship_info($rel);
637ca936 135
637ca936 136 # Ignore any rel cond that isn't a straight hash
137 next unless ref $rel_info->{cond} eq 'HASH';
138
de60a93d 139 my $othertable = $source->related_source($rel);
140 my $rel_table = $othertable->name;
141
e377d723 142 my $reverse_rels = $source->reverse_relationship_info($rel);
143 my ($otherrelname, $otherrelationship) = each %{$reverse_rels};
144
d1b264d3 145 # Force the order of @cond to match the order of ->add_columns
146 my $idx;
147 my %other_columns_idx = map {'foreign.'.$_ => ++$idx } $othertable->columns;
148 my @cond = sort { $other_columns_idx{$a} cmp $other_columns_idx{$b} } keys(%{$rel_info->{cond}});
149
637ca936 150 # Get the key information, mapping off the foreign/self markers
637ca936 151 my @refkeys = map {/^\w+\.(\w+)$/} @cond;
152 my @keys = map {$rel_info->{cond}->{$_} =~ /^\w+\.(\w+)$/} @cond;
153
e377d723 154 # determine if this relationship is a self.fk => foreign.pk (i.e. belongs_to)
155 my $fk_constraint;
de60a93d 156
e377d723 157 #first it can be specified explicitly
158 if ( exists $rel_info->{attrs}{is_foreign_key_constraint} ) {
159 $fk_constraint = $rel_info->{attrs}{is_foreign_key_constraint};
160 }
161 # it can not be multi
162 elsif ( $rel_info->{attrs}{accessor} eq 'multi' ) {
163 $fk_constraint = 0;
164 }
165 # if indeed single, check if all self.columns are our primary keys.
166 # this is supposed to indicate a has_one/might_have...
167 # where's the introspection!!?? :)
168 else {
169 $fk_constraint = not $source->compare_relationship_keys(\@keys, \@primary);
170 }
de60a93d 171
e377d723 172 my $cascade;
173 for my $c (qw/delete update/) {
174 if (exists $rel_info->{attrs}{"on_$c"}) {
175 if ($fk_constraint) {
176 $cascade->{$c} = $rel_info->{attrs}{"on_$c"};
177 }
178 else {
179 warn "SQLT attribute 'on_$c' was supplied for relationship '$moniker/$rel', which does not appear to be a foreign constraint. "
180 . "If you are sure that SQLT must generate a constraint for this relationship, add 'is_foreign_key_constraint => 1' to the attributes.\n";
181 }
182 }
183 elsif (defined $otherrelationship and $otherrelationship->{attrs}{$c eq 'update' ? 'cascade_copy' : 'cascade_delete'}) {
184 $cascade->{$c} = 'CASCADE';
de60a93d 185 }
e377d723 186 }
187
188 if($rel_table)
189 {
190 # Constraints are added only if applicable
191 next unless $fk_constraint;
192
193 # Make sure we dont create the same foreign key constraint twice
194 my $key_test = join("\x00", @keys);
195 next if $created_FK_rels{$rel_table}->{$key_test};
de60a93d 196
45f1a484 197 my $is_deferrable = $rel_info->{attrs}{is_deferrable};
2581038c 198
199 # global parser_args add_fk_index param can be overridden on the rel def
200 my $add_fk_index_rel = (exists $rel_info->{attrs}{add_fk_index}) ? $rel_info->{attrs}{add_fk_index} : $add_fk_index;
13de943d 201
7b5d0b84 202
203 $created_FK_rels{$rel_table}->{$key_test} = 1;
204 if (scalar(@keys)) {
205 $table->add_constraint(
0d865134 206 type => 'foreign_key',
a7e65bb5 207 name => join('_', $table->name, 'fk', @keys),
0d865134 208 fields => \@keys,
209 reference_fields => \@refkeys,
210 reference_table => $rel_table,
555b3385 211 on_delete => uc ($cascade->{delete} || ''),
212 on_update => uc ($cascade->{update} || ''),
e394339b 213 (defined $is_deferrable ? ( deferrable => $is_deferrable ) : ()),
7b5d0b84 214 );
0d865134 215
2581038c 216 if ($add_fk_index_rel) {
0e2c6809 217 my $index = $table->add_index(
218 name => join('_', $table->name, 'idx', @keys),
219 fields => \@keys,
220 type => 'NORMAL',
221 );
222 }
223 }
b02b20b5 224 }
225 }
0e2c6809 226
aaf2403d 227 if ($source->result_class->can('sqlt_deploy_hook')) {
228 $source->result_class->sqlt_deploy_hook($table);
229 }
b02b20b5 230 }
d6c79cb3 231
1d521afd 232 foreach my $moniker (sort @view_monikers)
233 {
234 my $source = $dbicschema->source($moniker);
235 # Skip custom query sources
236 next if ref($source->name);
237
238 # Its possible to have multiple DBIC source using same table
239 next if $seen_tables{$source->name}++;
240
47344132 241 my $view = $schema->add_view(
1d521afd 242 name => $source->name,
243 fields => [ $source->columns ],
f534e33b 244 $source->view_definition ? ( 'sql' => $source->view_definition ) : ()
1d521afd 245 );
246 if ($source->result_class->can('sqlt_deploy_hook')) {
47344132 247 $source->result_class->sqlt_deploy_hook($view);
1d521afd 248 }
249 }
250
251
b7e303a8 252 if ($dbicschema->can('sqlt_deploy_hook')) {
253 $dbicschema->sqlt_deploy_hook($schema);
d6c79cb3 254 }
255
637ca936 256 return 1;
75d07914 257}
b02b20b5 258
0da8b7da 2591;