DBIC now warns on explicit false AutoCommit, and when altering external $dbh's
[dbsrgits/DBIx-Class.git] / lib / SQL / Translator / Parser / DBIx / Class.pm
CommitLineData
392cebac 1package SQL::Translator::Parser::DBIx::Class;
b02b20b5 2
3# AUTHOR: Jess Robinson
4
1d996af5 5# Some mistakes the fault of Matt S Trout
6
c385ecea 7# Others the fault of Ash Berlin
8
b02b20b5 9use strict;
10use warnings;
4a9f6cdc 11use vars qw($DEBUG $VERSION @EXPORT_OK);
12$VERSION = '1.10';
b02b20b5 13$DEBUG = 0 unless defined $DEBUG;
ebed3aaf 14
b02b20b5 15use Exporter;
b02b20b5 16use SQL::Translator::Utils qw(debug normalize_name);
9780718f 17use Carp::Clan qw/^SQL::Translator|^DBIx::Class|^Try::Tiny/;
6c97a902 18use Scalar::Util qw/weaken blessed/;
9780718f 19use Try::Tiny;
fd323bf1 20use namespace::clean;
b02b20b5 21
22use base qw(Exporter);
23
24@EXPORT_OK = qw(parse);
25
26# -------------------------------------------------------------------
27# parse($tr, $data)
28#
0e2c6809 29# setting parser_args => { add_fk_index => 0 } will prevent
30# the auto-generation of an index for each FK.
31#
880a1a0c 32# Note that $data, in the case of this parser, is not useful.
b02b20b5 33# We're working with DBIx::Class Schemas, not data streams.
34# -------------------------------------------------------------------
35sub parse {
3bf702eb 36 # this is a hack to prevent schema leaks due to a retarded SQLT implementation
2ad89bf5 37 # DO NOT REMOVE (until SQLT2 is out, the all of this will be rewritten anyway)
6298a324 38 weaken $_[1] if ref ($_[1]);
3bf702eb 39
499adf63 40 my ($tr, $data) = @_;
41 my $args = $tr->parser_args;
b7e303a8 42 my $dbicschema = $args->{'DBIx::Class::Schema'} || $args->{"DBIx::Schema"} ||$data;
43 $dbicschema ||= $args->{'package'};
499adf63 44 my $limit_sources = $args->{'sources'};
48850f9a 45
eb0bc670 46 croak 'No DBIx::Class::Schema' unless ($dbicschema);
b7e303a8 47 if (!ref $dbicschema) {
9780718f 48 try {
49 eval "require $dbicschema;"
50 }
51 catch {
52 croak "Can't load $dbicschema ($_)";
53 }
b02b20b5 54 }
55
56 my $schema = $tr->schema;
57 my $table_no = 0;
58
b1f9d92e 59 $schema->name( ref($dbicschema) . " v" . ($dbicschema->schema_version || '1.x'))
b7e303a8 60 unless ($schema->name);
38e48163 61
b7e303a8 62 my @monikers = sort $dbicschema->sources;
499adf63 63 if ($limit_sources) {
64 my $ref = ref $limit_sources || '';
eb0bc670 65 $dbicschema->throw_exception ("'sources' parameter must be an array or hash ref")
66 unless( $ref eq 'ARRAY' || ref eq 'HASH' );
499adf63 67
fd323bf1 68 # limit monikers to those specified in
499adf63 69 my $sources;
70 if ($ref eq 'ARRAY') {
71 $sources->{$_} = 1 for (@$limit_sources);
72 } else {
73 $sources = $limit_sources;
74 }
75 @monikers = grep { $sources->{$_} } @monikers;
76 }
77
78
a7f4b74c 79 my(%table_monikers, %view_monikers);
1d521afd 80 for my $moniker (@monikers){
81 my $source = $dbicschema->source($moniker);
5f5e87cf 82 if ( $source->isa('DBIx::Class::ResultSource::Table') ) {
a7f4b74c 83 $table_monikers{$moniker}++;
5f5e87cf 84 } elsif( $source->isa('DBIx::Class::ResultSource::View') ){
bccd177f 85 next if $source->is_virtual;
a7f4b74c 86 $view_monikers{$moniker}++;
1d521afd 87 }
88 }
499adf63 89
48850f9a 90 my %tables;
a7f4b74c 91 foreach my $moniker (sort keys %table_monikers)
b02b20b5 92 {
b7e303a8 93 my $source = $dbicschema->source($moniker);
48850f9a 94 my $table_name = $source->name;
39be4120 95
4678e9da 96 # FIXME - this isn't the right way to do it, but sqlt does not
97 # support quoting properly to be signaled about this
a8fcfb9f 98 $table_name = $$table_name if ref $table_name eq 'SCALAR';
b02b20b5 99
e3d5a547 100 # It's possible to have multiple DBIC sources using the same table
48850f9a 101 next if $tables{$table_name};
38e48163 102
48850f9a 103 $tables{$table_name}{source} = $source;
104 my $table = $tables{$table_name}{object} = SQL::Translator::Schema::Table->new(
105 name => $table_name,
b02b20b5 106 type => 'TABLE',
48850f9a 107 );
b02b20b5 108 foreach my $col ($source->columns)
109 {
d6c79cb3 110 # assuming column_info in dbic is the same as DBI (?)
b02b20b5 111 # data_type is a number, column_type is text?
112 my %colinfo = (
113 name => $col,
b02b20b5 114 size => 0,
115 is_auto_increment => 0,
116 is_foreign_key => 0,
117 is_nullable => 0,
118 %{$source->column_info($col)}
119 );
0009fa49 120 if ($colinfo{is_nullable}) {
121 $colinfo{default} = '' unless exists $colinfo{default};
122 }
eb0bc670 123 my $f = $table->add_field(%colinfo)
124 || $dbicschema->throw_exception ($table->error);
b02b20b5 125 }
b02b20b5 126
7b90bb13 127 my @primary = $source->primary_columns;
36e9e24f 128
129 $table->primary_key(@primary) if @primary;
130
7b90bb13 131 my %unique_constraints = $source->unique_constraints;
b7e303a8 132 foreach my $uniq (sort keys %unique_constraints) {
6d0ee587 133 if (!$source->_compare_relationship_keys($unique_constraints{$uniq}, \@primary)) {
7b90bb13 134 $table->add_constraint(
135 type => 'unique',
a7e65bb5 136 name => $uniq,
7b90bb13 137 fields => $unique_constraints{$uniq}
138 );
139 }
140 }
141
b02b20b5 142 my @rels = $source->relationships();
499adf63 143
144 my %created_FK_rels;
48850f9a 145
2581038c 146 # global add_fk_index set in parser_args
a7f4b74c 147 my $add_fk_index = (exists $args->{add_fk_index} && ! $args->{add_fk_index}) ? 0 : 1;
499adf63 148
454a5a42 149 foreach my $rel (sort @rels)
b02b20b5 150 {
a7f4b74c 151
b02b20b5 152 my $rel_info = $source->relationship_info($rel);
637ca936 153
637ca936 154 # Ignore any rel cond that isn't a straight hash
155 next unless ref $rel_info->{cond} eq 'HASH';
156
a7f4b74c 157 my $relsource = $source->related_source($rel);
158
159 # related sources might be excluded via a {sources} filter or might be views
160 next unless exists $table_monikers{$relsource->source_name};
161
162 my $rel_table = $relsource->name;
4678e9da 163
164 # FIXME - this isn't the right way to do it, but sqlt does not
165 # support quoting properly to be signaled about this
166 $rel_table = $$rel_table if ref $rel_table eq 'SCALAR';
de60a93d 167
e377d723 168 my $reverse_rels = $source->reverse_relationship_info($rel);
169 my ($otherrelname, $otherrelationship) = each %{$reverse_rels};
170
d1b264d3 171 # Force the order of @cond to match the order of ->add_columns
172 my $idx;
a7f4b74c 173 my %other_columns_idx = map {'foreign.'.$_ => ++$idx } $relsource->columns;
fd323bf1 174 my @cond = sort { $other_columns_idx{$a} cmp $other_columns_idx{$b} } keys(%{$rel_info->{cond}});
48850f9a 175
637ca936 176 # Get the key information, mapping off the foreign/self markers
637ca936 177 my @refkeys = map {/^\w+\.(\w+)$/} @cond;
178 my @keys = map {$rel_info->{cond}->{$_} =~ /^\w+\.(\w+)$/} @cond;
179
e377d723 180 # determine if this relationship is a self.fk => foreign.pk (i.e. belongs_to)
181 my $fk_constraint;
de60a93d 182
e377d723 183 #first it can be specified explicitly
184 if ( exists $rel_info->{attrs}{is_foreign_key_constraint} ) {
185 $fk_constraint = $rel_info->{attrs}{is_foreign_key_constraint};
186 }
187 # it can not be multi
069e49b6 188 elsif ( $rel_info->{attrs}{accessor}
189 && $rel_info->{attrs}{accessor} eq 'multi' ) {
e377d723 190 $fk_constraint = 0;
191 }
192 # if indeed single, check if all self.columns are our primary keys.
193 # this is supposed to indicate a has_one/might_have...
194 # where's the introspection!!?? :)
195 else {
6d0ee587 196 $fk_constraint = not $source->_compare_relationship_keys(\@keys, \@primary);
e377d723 197 }
de60a93d 198
e377d723 199 my $cascade;
200 for my $c (qw/delete update/) {
201 if (exists $rel_info->{attrs}{"on_$c"}) {
202 if ($fk_constraint) {
203 $cascade->{$c} = $rel_info->{attrs}{"on_$c"};
204 }
db79c254 205 elsif ( $rel_info->{attrs}{"on_$c"} ) {
48850f9a 206 carp "SQLT attribute 'on_$c' was supplied for relationship '$moniker/$rel', which does not appear to be a foreign constraint. "
e377d723 207 . "If you are sure that SQLT must generate a constraint for this relationship, add 'is_foreign_key_constraint => 1' to the attributes.\n";
208 }
209 }
210 elsif (defined $otherrelationship and $otherrelationship->{attrs}{$c eq 'update' ? 'cascade_copy' : 'cascade_delete'}) {
211 $cascade->{$c} = 'CASCADE';
de60a93d 212 }
e377d723 213 }
214
cae467a7 215 if($rel_table) {
e377d723 216 # Constraints are added only if applicable
217 next unless $fk_constraint;
218
219 # Make sure we dont create the same foreign key constraint twice
e3d5a547 220 my $key_test = join("\x00", sort @keys);
e377d723 221 next if $created_FK_rels{$rel_table}->{$key_test};
de60a93d 222
48850f9a 223 if (scalar(@keys)) {
48850f9a 224 $created_FK_rels{$rel_table}->{$key_test} = 1;
13de943d 225
48850f9a 226 my $is_deferrable = $rel_info->{attrs}{is_deferrable};
227
a7f4b74c 228 # calculate dependencies: do not consider deferrable constraints and
229 # self-references for dependency calculations
48850f9a 230 if (! $is_deferrable and $rel_table ne $table_name) {
231 $tables{$table_name}{foreign_table_deps}{$rel_table}++;
232 }
7b5d0b84 233
7b5d0b84 234 $table->add_constraint(
cae467a7 235 type => 'foreign_key',
236 name => join('_', $table_name, 'fk', @keys),
237 fields => \@keys,
238 reference_fields => \@refkeys,
239 reference_table => $rel_table,
240 on_delete => uc ($cascade->{delete} || ''),
241 on_update => uc ($cascade->{update} || ''),
242 (defined $is_deferrable ? ( deferrable => $is_deferrable ) : ()),
7b5d0b84 243 );
48850f9a 244
245 # global parser_args add_fk_index param can be overridden on the rel def
246 my $add_fk_index_rel = (exists $rel_info->{attrs}{add_fk_index}) ? $rel_info->{attrs}{add_fk_index} : $add_fk_index;
247
c49ff507 248 # Check that we do not create an index identical to the PK index
249 # (some RDBMS croak on this, and it generally doesn't make much sense)
250 # NOTE: we do not sort the key columns because the order of
5930bfc2 251 # columns is important for indexes and two indexes with the
252 # same cols but different order are allowed and sometimes
253 # needed
c49ff507 254 next if join("\x00", @keys) eq join("\x00", @primary);
48850f9a 255
2581038c 256 if ($add_fk_index_rel) {
0e2c6809 257 my $index = $table->add_index(
5930bfc2 258 name => join('_', $table_name, 'idx', @keys),
259 fields => \@keys,
260 type => 'NORMAL',
261 );
0e2c6809 262 }
263 }
b02b20b5 264 }
265 }
48850f9a 266
b02b20b5 267 }
d6c79cb3 268
48850f9a 269 # attach the tables to the schema in dependency order
270 my $dependencies = {
271 map { $_ => _resolve_deps ($_, \%tables) } (keys %tables)
272 };
9485509b 273
48850f9a 274 for my $table (sort
275 {
276 keys %{$dependencies->{$a} || {} } <=> keys %{ $dependencies->{$b} || {} }
277 ||
278 $a cmp $b
279 }
280 (keys %tables)
281 ) {
282 $schema->add_table ($tables{$table}{object});
283 $tables{$table}{source} -> _invoke_sqlt_deploy_hook( $tables{$table}{object} );
48850f9a 284
7adc2091 285 # the hook might have already removed the table
286 if ($schema->get_table($table) && $table =~ /^ \s* \( \s* SELECT \s+/ix) {
287 warn <<'EOW';
a8fcfb9f 288
7adc2091 289Custom SQL through ->name(\'( SELECT ...') is DEPRECATED, for more details see
290"Arbitrary SQL through a custom ResultSource" in DBIx::Class::Manual::Cookbook
291or http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class/Manual/Cookbook.pod
39be4120 292
7adc2091 293EOW
39be4120 294
7adc2091 295 # remove the table as there is no way someone might want to
296 # actually deploy this
297 $schema->drop_table ($table);
39be4120 298 }
299 }
48850f9a 300
301 my %views;
51b31bbe 302 my @views = map { $dbicschema->source($_) } keys %view_monikers;
9485509b 303
c418c5cc 304 my $view_dependencies = {
305 map {
a8cbaf38 306 $_ => _resolve_deps( $dbicschema->source($_), \%view_monikers )
c418c5cc 307 } ( keys %view_monikers )
308 };
51b31bbe 309
310 my @view_sources =
311 sort {
c418c5cc 312 keys %{ $view_dependencies->{ $a->source_name } || {} } <=>
313 keys %{ $view_dependencies->{ $b->source_name } || {} }
51b31bbe 314 || $a->source_name cmp $b->source_name
315 }
316 map { $dbicschema->source($_) }
317 keys %view_monikers;
1999a918 318
943538a0 319 foreach my $source (@view_sources)
1d521afd 320 {
48850f9a 321 my $view_name = $source->name;
4678e9da 322
323 # FIXME - this isn't the right way to do it, but sqlt does not
324 # support quoting properly to be signaled about this
325 $view_name = $$view_name if ref $view_name eq 'SCALAR';
48850f9a 326
1d521afd 327 # Skip custom query sources
48850f9a 328 next if ref $view_name;
1d521afd 329
330 # Its possible to have multiple DBIC source using same table
48850f9a 331 next if $views{$view_name}++;
1d521afd 332
ab7e74aa 333 $dbicschema->throw_exception ("view $view_name is missing a view_definition")
334 unless $source->view_definition;
8f1617e2 335
48850f9a 336 my $view = $schema->add_view (
337 name => $view_name,
1d521afd 338 fields => [ $source->columns ],
f534e33b 339 $source->view_definition ? ( 'sql' => $source->view_definition ) : ()
eb0bc670 340 ) || $dbicschema->throw_exception ($schema->error);
a99b214b 341
342 $source->_invoke_sqlt_deploy_hook($view);
1d521afd 343 }
344
48850f9a 345
b7e303a8 346 if ($dbicschema->can('sqlt_deploy_hook')) {
347 $dbicschema->sqlt_deploy_hook($schema);
d6c79cb3 348 }
349
637ca936 350 return 1;
75d07914 351}
b02b20b5 352
48850f9a 353#
354# Quick and dirty dependency graph calculator
355#
356sub _resolve_deps {
a8cbaf38 357 my ( $question, $answers, $seen ) = @_;
c418c5cc 358 my $ret = {};
51b31bbe 359 $seen ||= {};
a8cbaf38 360 my @deps;
51b31bbe 361
362 # copy and bump all deps by one (so we can reconstruct the chain)
363 my %seen = map { $_ => $seen->{$_} + 1 } ( keys %$seen );
6c97a902 364 if ( blessed($question)
365 && $question->isa('DBIx::Class::ResultSource::View') )
366 {
a8cbaf38 367 $seen{ $question->result_class } = 1;
368 @deps = keys %{ $question->{deploy_depends_on} };
369 }
370 else {
371 $seen{$question} = 1;
372 @deps = keys %{ $answers->{$question}{foreign_table_deps} };
373 }
374
375 for my $dep (@deps) {
51b31bbe 376 if ( $seen->{$dep} ) {
377 return {};
378 }
a8cbaf38 379 my $next_dep;
51b31bbe 380
6c97a902 381 if ( blessed($question)
382 && $question->isa('DBIx::Class::ResultSource::View') )
383 {
384 no warnings 'uninitialized';
a8cbaf38 385 my ($next_dep_source_name) =
6c97a902 386 grep {
387 $question->schema->source($_)->result_class eq $dep
388 && !( $question->schema->source($_)
389 ->isa('DBIx::Class::ResultSource::Table') )
390 } @{ [ $question->schema->sources ] };
391 return {} unless $next_dep_source_name;
a8cbaf38 392 $next_dep = $question->schema->source($next_dep_source_name);
393 }
394 else {
395 $next_dep = $dep;
396 }
397 my $subdeps = _resolve_deps( $next_dep, $answers, \%seen );
398 $ret->{$_} += $subdeps->{$_} for ( keys %$subdeps );
51b31bbe 399 ++$ret->{$dep};
400 }
401 return $ret;
402}
403
0da8b7da 4041;
7232ce07 405
406=head1 NAME
407
408SQL::Translator::Parser::DBIx::Class - Create a SQL::Translator schema
409from a DBIx::Class::Schema instance
410
411=head1 SYNOPSIS
412
f26d4b95 413 ## Via DBIx::Class
414 use MyApp::Schema;
415 my $schema = MyApp::Schema->connect("dbi:SQLite:something.db");
416 $schema->create_ddl_dir();
417 ## or
418 $schema->deploy();
419
420 ## Standalone
7232ce07 421 use MyApp::Schema;
422 use SQL::Translator;
d4daee7b 423
7232ce07 424 my $schema = MyApp::Schema->connect;
425 my $trans = SQL::Translator->new (
426 parser => 'SQL::Translator::Parser::DBIx::Class',
37cb0de1 427 parser_args => {
428 package => $schema,
cae467a7 429 add_fk_index => 0,
37cb0de1 430 sources => [qw/
431 Artist
432 CD
433 /],
434 },
7232ce07 435 producer => 'SQLite',
436 ) or die SQL::Translator->error;
437 my $out = $trans->translate() or die $trans->error;
438
439=head1 DESCRIPTION
440
f26d4b95 441This class requires L<SQL::Translator> installed to work.
442
7232ce07 443C<SQL::Translator::Parser::DBIx::Class> reads a DBIx::Class schema,
444interrogates the columns, and stuffs it all in an $sqlt_schema object.
445
faaba25f 446Its primary use is in deploying database layouts described as a set
db2b2eb6 447of L<DBIx::Class> classes, to a database. To do this, see
448L<DBIx::Class::Schema/deploy>.
f26d4b95 449
450This can also be achieved by having DBIx::Class export the schema as a
451set of SQL files ready for import into your database, or passed to
452other machines that need to have your application installed but don't
db2b2eb6 453have SQL::Translator installed. To do this see
454L<DBIx::Class::Schema/create_ddl_dir>.
f26d4b95 455
cae467a7 456=head1 PARSER OPTIONS
457
458=head2 add_fk_index
459
460Create an index for each foreign key.
ad91ed74 461Enabled by default, as having indexed foreign key columns is normally the
462sensible thing to do.
cae467a7 463
464=head2 sources
465
466=over 4
467
f0ac764e 468=item Arguments: \@class_names
cae467a7 469
470=back
ad91ed74 471
472Limit the amount of parsed sources by supplying an explicit list of source names.
cae467a7 473
7232ce07 474=head1 SEE ALSO
475
f26d4b95 476L<SQL::Translator>, L<DBIx::Class::Schema>
7232ce07 477
17621379 478=head1 AUTHORS
7232ce07 479
17621379 480See L<DBIx::Class/CONTRIBUTORS>.
7232ce07 481
827a808f 482=head1 LICENSE
7232ce07 483
827a808f 484You may distribute this code under the same terms as Perl itself.
7232ce07 485
827a808f 486=cut