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