set cascade_update => 0 on might_have relationships
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / RelBuilder.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::RelBuilder;
2
3use strict;
4use warnings;
1ad8e8c3 5use base 'Class::Accessor::Grouped';
942bd5e0 6use mro 'c3';
fa994d3c 7use Carp::Clan qw/^DBIx::Class/;
1ad8e8c3 8use Scalar::Util 'weaken';
39b22ca9 9use Lingua::EN::Inflect::Phrase ();
cc4f11a2 10use DBIx::Class::Schema::Loader::Utils 'split_name';
1ad8e8c3 11use File::Slurp 'slurp';
12use Try::Tiny;
13use Class::Unload ();
8c70d2c7 14use Class::Inspector ();
1ad8e8c3 15use List::MoreUtils 'apply';
16use namespace::clean;
996be9ee 17
4295c4b4 18our $VERSION = '0.07010';
32f784fc 19
6e4b7bb1 20# Glossary:
21#
22# remote_relname -- name of relationship from the local table referring to the remote table
23# local_relname -- name of relationship from the remote table referring to the local table
24# remote_method -- relationship type from remote table to local table, usually has_many
25
996be9ee 26=head1 NAME
27
28DBIx::Class::Schema::Loader::RelBuilder - Builds relationships for DBIx::Class::Schema::Loader
29
30=head1 SYNOPSIS
31
19b7d71c 32See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
996be9ee 33
34=head1 DESCRIPTION
35
36This class builds relationships for L<DBIx::Class::Schema::Loader>. This
37is module is not (yet) for external use.
38
39=head1 METHODS
40
41=head2 new
42
4c7b5f46 43Arguments: $base object
996be9ee 44
45=head2 generate_code
46
e8ad6491 47Arguments: local_moniker (scalar), fk_info (arrayref)
48
49This generates the code for the relationships of a given table.
50
51C<local_moniker> is the moniker name of the table which had the REFERENCES
52statements. The fk_info arrayref's contents should take the form:
53
54 [
55 {
56 local_columns => [ 'col2', 'col3' ],
57 remote_columns => [ 'col5', 'col7' ],
58 remote_moniker => 'AnotherTableMoniker',
59 },
60 {
61 local_columns => [ 'col1', 'col4' ],
62 remote_columns => [ 'col1', 'col2' ],
63 remote_moniker => 'YetAnotherTableMoniker',
64 },
65 # ...
66 ],
67
68This method will return the generated relationships as a hashref keyed on the
69class names. The values are arrayrefs of hashes containing method name and
70arguments, like so:
996be9ee 71
72 {
73 'Some::Source::Class' => [
b97c2c1e 74 { method => 'belongs_to', arguments => [ 'col1', 'Another::Source::Class' ],
75 { method => 'has_many', arguments => [ 'anothers', 'Yet::Another::Source::Class', 'col15' ],
996be9ee 76 ],
77 'Another::Source::Class' => [
78 # ...
79 ],
80 # ...
81 }
8f9d7ce5 82
996be9ee 83=cut
84
1ad8e8c3 85__PACKAGE__->mk_group_accessors('simple', qw/
86 base
87 schema
88 inflect_plural
89 inflect_singular
90 relationship_attrs
a7116285 91 rel_collision_map
1ad8e8c3 92 _temp_classes
93/);
4c7b5f46 94
996be9ee 95sub new {
4c7b5f46 96 my ( $class, $base ) = @_;
97
98 # from old POD about this constructor:
99 # C<$schema_class> should be a schema class name, where the source
100 # classes have already been set up and registered. Column info,
101 # primary key, and unique constraints will be drawn from this
102 # schema for all of the existing source monikers.
103
104 # Options inflect_plural and inflect_singular are optional, and
105 # are better documented in L<DBIx::Class::Schema::Loader::Base>.
996be9ee 106
107 my $self = {
4c7b5f46 108 base => $base,
109 schema => $base->schema,
110 inflect_plural => $base->inflect_plural,
111 inflect_singular => $base->inflect_singular,
112 relationship_attrs => $base->relationship_attrs,
a7116285 113 rel_collision_map => $base->rel_collision_map,
1ad8e8c3 114 _temp_classes => [],
996be9ee 115 };
116
1ad8e8c3 117 weaken $self->{base}; #< don't leak
118
119 bless $self => $class;
4c7b5f46 120
c8c27020 121 # validate the relationship_attrs arg
1ad8e8c3 122 if( defined $self->relationship_attrs ) {
123 ref $self->relationship_attrs eq 'HASH'
c8c27020 124 or croak "relationship_attrs must be a hashref";
125 }
996be9ee 126
1ad8e8c3 127 return $self;
996be9ee 128}
129
130
131# pluralize a relationship name
132sub _inflect_plural {
ecf930e6 133 my ($self, $relname) = @_;
996be9ee 134
39ef3bfe 135 return '' if !defined $relname || $relname eq '';
136
1ad8e8c3 137 if( ref $self->inflect_plural eq 'HASH' ) {
138 return $self->inflect_plural->{$relname}
139 if exists $self->inflect_plural->{$relname};
996be9ee 140 }
1ad8e8c3 141 elsif( ref $self->inflect_plural eq 'CODE' ) {
142 my $inflected = $self->inflect_plural->($relname);
996be9ee 143 return $inflected if $inflected;
144 }
145
ecf930e6 146 return $self->_to_PL($relname);
996be9ee 147}
148
149# Singularize a relationship name
150sub _inflect_singular {
ecf930e6 151 my ($self, $relname) = @_;
996be9ee 152
39ef3bfe 153 return '' if !defined $relname || $relname eq '';
154
1ad8e8c3 155 if( ref $self->inflect_singular eq 'HASH' ) {
156 return $self->inflect_singular->{$relname}
157 if exists $self->inflect_singular->{$relname};
996be9ee 158 }
1ad8e8c3 159 elsif( ref $self->inflect_singular eq 'CODE' ) {
160 my $inflected = $self->inflect_singular->($relname);
996be9ee 161 return $inflected if $inflected;
162 }
163
ecf930e6 164 return $self->_to_S($relname);
c496748b 165}
166
167sub _to_PL {
168 my ($self, $name) = @_;
169
170 $name =~ s/_/ /g;
39b22ca9 171 my $plural = Lingua::EN::Inflect::Phrase::to_PL($name);
c496748b 172 $plural =~ s/ /_/g;
173
174 return $plural;
175}
176
c496748b 177sub _to_S {
178 my ($self, $name) = @_;
179
39b22ca9 180 $name =~ s/_/ /g;
181 my $singular = Lingua::EN::Inflect::Phrase::to_S($name);
182 $singular =~ s/ /_/g;
183
184 return $singular;
996be9ee 185}
186
53ef681d 187sub _default_relationship_attrs { +{
188 has_many => {
189 cascade_delete => 0,
190 cascade_copy => 0,
191 },
192 might_have => {
193 cascade_delete => 0,
194 cascade_copy => 0,
9b1dd935 195 cascade_update => 0,
53ef681d 196 },
197 belongs_to => {
198 on_delete => 'CASCADE',
199 on_update => 'CASCADE',
aa0867ee 200 is_deferrable => 1,
53ef681d 201 },
202} }
203
c8c27020 204# accessor for options to be passed to each generated relationship
205# type. take single argument, the relationship type name, and returns
206# either a hashref (if some options are set), or nothing
207sub _relationship_attrs {
208 my ( $self, $reltype ) = @_;
1ad8e8c3 209 my $r = $self->relationship_attrs;
c8c27020 210
53ef681d 211 my %composite = (
212 %{ $self->_default_relationship_attrs->{$reltype} || {} },
213 %{ $r->{all} || {} }
214 );
215
c8c27020 216 if( my $specific = $r->{$reltype} ) {
217 while( my ($k,$v) = each %$specific ) {
218 $composite{$k} = $v;
219 }
220 }
221 return \%composite;
222}
223
26f1c8c9 224sub _array_eq {
ecf930e6 225 my ($self, $a, $b) = @_;
26f1c8c9 226
227 return unless @$a == @$b;
228
229 for (my $i = 0; $i < @$a; $i++) {
230 return unless $a->[$i] eq $b->[$i];
231 }
232 return 1;
233}
234
c39e403e 235sub _remote_attrs {
c496748b 236 my ($self, $local_moniker, $local_cols) = @_;
c39e403e 237
c496748b 238 # get our base set of attrs from _relationship_attrs, if present
239 my $attrs = $self->_relationship_attrs('belongs_to') || {};
c8c27020 240
c496748b 241 # If the referring column is nullable, make 'belongs_to' an
242 # outer join, unless explicitly set by relationship_attrs
1ad8e8c3 243 my $nullable = grep { $self->schema->source($local_moniker)->column_info($_)->{is_nullable} } @$local_cols;
c496748b 244 $attrs->{join_type} = 'LEFT' if $nullable && !defined $attrs->{join_type};
c39e403e 245
c496748b 246 return $attrs;
c39e403e 247}
248
414c61a0 249sub _sanitize_name {
250 my ($self, $name) = @_;
251
252 if (ref $name) {
253 # scalar ref for weird table name (like one containing a '.')
254 ($name = $$name) =~ s/\W+/_/g;
255 }
256 else {
257 # remove 'schema.' prefix if any
258 $name =~ s/^[^.]+\.//;
259 }
260
261 return $name;
262}
263
19b7d71c 264sub _normalize_name {
265 my ($self, $name) = @_;
266
414c61a0 267 $name = $self->_sanitize_name($name);
268
cc4f11a2 269 my @words = split_name $name;
19b7d71c 270
271 return join '_', map lc, @words;
272}
273
f2fc8d01 274sub _remote_relname {
275 my ($self, $remote_table, $cond) = @_;
276
277 my $remote_relname;
278 # for single-column case, set the remote relname to the column
279 # name, to make filter accessors work, but strip trailing _id
280 if(scalar keys %{$cond} == 1) {
281 my ($col) = values %{$cond};
19b7d71c 282 $col = $self->_normalize_name($col);
f2fc8d01 283 $col =~ s/_id$//;
284 $remote_relname = $self->_inflect_singular($col);
285 }
286 else {
19b7d71c 287 $remote_relname = $self->_inflect_singular($self->_normalize_name($remote_table));
f2fc8d01 288 }
289
290 return $remote_relname;
291}
292
a7116285 293sub _resolve_relname_collision {
294 my ($self, $moniker, $cols, $relname) = @_;
295
296 return $relname if $relname eq 'id'; # this shouldn't happen, but just in case
297
298 if ($self->base->_is_result_class_method($relname)) {
299 if (my $map = $self->rel_collision_map) {
300 for my $re (keys %$map) {
301 if (my @matches = $relname =~ /$re/) {
302 return sprintf $map->{$re}, @matches;
303 }
304 }
305 }
306
307 my $new_relname = $relname;
308 while ($self->base->_is_result_class_method($new_relname)) {
309 $new_relname .= '_rel'
310 }
311
312 warn <<"EOF";
313Relationship '$relname' in source '$moniker' for columns '@{[ join ',', @$cols ]}' collides with an inherited method.
314Renaming to '$new_relname'.
315See "RELATIONSHIP NAME COLLISIONS" in perldoc DBIx::Class::Schema::Loader::Base .
316EOF
317
318 return $new_relname;
319 }
320
321 return $relname;
322}
323
996be9ee 324sub generate_code {
26f1c8c9 325 my ($self, $local_moniker, $rels, $uniqs) = @_;
996be9ee 326
327 my $all_code = {};
328
1ad8e8c3 329 my $local_class = $self->schema->class($local_moniker);
057fbb08 330
e8ad6491 331 my %counters;
332 foreach my $rel (@$rels) {
333 next if !$rel->{remote_source};
334 $counters{$rel->{remote_source}}++;
335 }
336
337 foreach my $rel (@$rels) {
057fbb08 338 my $remote_moniker = $rel->{remote_source}
339 or next;
340
1ad8e8c3 341 my $remote_class = $self->schema->class($remote_moniker);
342 my $remote_obj = $self->schema->source($remote_moniker);
057fbb08 343 my $remote_cols = $rel->{remote_columns} || [ $remote_obj->primary_columns ];
344
345 my $local_cols = $rel->{local_columns};
e8ad6491 346
347 if($#$local_cols != $#$remote_cols) {
348 croak "Column count mismatch: $local_moniker (@$local_cols) "
349 . "$remote_moniker (@$remote_cols)";
996be9ee 350 }
351
e8ad6491 352 my %cond;
353 foreach my $i (0 .. $#$local_cols) {
354 $cond{$remote_cols->[$i]} = $local_cols->[$i];
355 }
996be9ee 356
057fbb08 357 my ( $local_relname, $remote_relname, $remote_method ) =
39ef3bfe 358 $self->_relnames_and_method( $local_moniker, $rel, \%cond, $uniqs, \%counters );
7dba7c70 359
a7116285 360 $remote_relname = $self->_resolve_relname_collision($local_moniker, $local_cols, $remote_relname);
361 $local_relname = $self->_resolve_relname_collision($remote_moniker, $remote_cols, $local_relname);
362
e8ad6491 363 push(@{$all_code->{$local_class}},
364 { method => 'belongs_to',
365 args => [ $remote_relname,
366 $remote_class,
367 \%cond,
c39e403e 368 $self->_remote_attrs($local_moniker, $local_cols),
e8ad6491 369 ],
996be9ee 370 }
e8ad6491 371 );
372
057fbb08 373 my %rev_cond = reverse %cond;
374 for (keys %rev_cond) {
375 $rev_cond{"foreign.$_"} = "self.".$rev_cond{$_};
376 delete $rev_cond{$_};
377 }
378
e8ad6491 379 push(@{$all_code->{$remote_class}},
26f1c8c9 380 { method => $remote_method,
e8ad6491 381 args => [ $local_relname,
382 $local_class,
383 \%rev_cond,
c8c27020 384 $self->_relationship_attrs($remote_method),
e8ad6491 385 ],
386 }
387 );
996be9ee 388 }
389
390 return $all_code;
391}
392
39ef3bfe 393sub _relnames_and_method {
057fbb08 394 my ( $self, $local_moniker, $rel, $cond, $uniqs, $counters ) = @_;
e9c09ed9 395
057fbb08 396 my $remote_moniker = $rel->{remote_source};
1ad8e8c3 397 my $remote_obj = $self->schema->source( $remote_moniker );
398 my $remote_class = $self->schema->class( $remote_moniker );
ecf930e6 399 my $remote_relname = $self->_remote_relname( $remote_obj->from, $cond);
fa6f8d4e 400
1ad8e8c3 401 my $local_cols = $rel->{local_columns};
402 my $local_table = $self->schema->source($local_moniker)->from;
403 my $local_class = $self->schema->class($local_moniker);
404 my $local_source = $self->schema->source($local_moniker);
057fbb08 405
1ad8e8c3 406 my $local_relname_uninflected = $self->_normalize_name($local_table);
407 my $local_relname = $self->_inflect_plural($self->_normalize_name($local_table));
fa6f8d4e 408
057fbb08 409 my $remote_method = 'has_many';
410
411 # If the local columns have a UNIQUE constraint, this is a one-to-one rel
ecf930e6 412 if ($self->_array_eq([ $local_source->primary_columns ], $local_cols) ||
413 grep { $self->_array_eq($_->[1], $local_cols) } @$uniqs) {
057fbb08 414 $remote_method = 'might_have';
c496748b 415 $local_relname = $self->_inflect_singular($local_relname_uninflected);
057fbb08 416 }
fa6f8d4e 417
1ad8e8c3 418 # If more than one rel between this pair of tables, use the local
419 # col names to distinguish, unless the rel was created previously.
420 if ($counters->{$remote_moniker} > 1) {
421 my $relationship_exists = 0;
422
6e4b7bb1 423 if (-f (my $existing_remote_file = $self->base->get_dump_filename($remote_class))) {
1ad8e8c3 424 my $class = "${remote_class}Temporary";
425
8c70d2c7 426 if (not Class::Inspector->loaded($class)) {
1ad8e8c3 427 my $code = slurp $existing_remote_file;
428
429 $code =~ s/(?<=package $remote_class)/Temporary/g;
430
6e4b7bb1 431 $code =~ s/__PACKAGE__->meta->make_immutable[^;]*;//g;
1ad8e8c3 432
433 eval $code;
434 die $@ if $@;
435
436 push @{ $self->_temp_classes }, $class;
437 }
438
439 if ($class->has_relationship($local_relname)) {
440 my $rel_cols = [ sort { $a cmp $b } apply { s/^foreign\.//i }
441 (keys %{ $class->relationship_info($local_relname)->{cond} }) ];
442
443 $relationship_exists = 1 if $self->_array_eq([ sort @$local_cols ], $rel_cols);
444 }
445 }
446
447 if (not $relationship_exists) {
448 my $colnames = q{_} . $self->_normalize_name(join '_', @$local_cols);
449 $remote_relname .= $colnames if keys %$cond > 1;
450
451 $local_relname = $self->_normalize_name($local_table . $colnames);
452 $local_relname =~ s/_id$//;
453
454 $local_relname_uninflected = $local_relname;
455 $local_relname = $self->_inflect_plural($local_relname);
456
457 # if colnames were added and this is a might_have, re-inflect
458 if ($remote_method eq 'might_have') {
459 $local_relname = $self->_inflect_singular($local_relname_uninflected);
460 }
461 }
462 }
463
057fbb08 464 return ( $local_relname, $remote_relname, $remote_method );
fa6f8d4e 465}
466
1ad8e8c3 467sub cleanup {
468 my $self = shift;
469
470 for my $class (@{ $self->_temp_classes }) {
471 Class::Unload->unload($class);
472 }
473
474 $self->_temp_classes([]);
475}
476
be80bba7 477=head1 AUTHOR
478
9cc8e7e1 479See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
be80bba7 480
481=head1 LICENSE
482
483This library is free software; you can redistribute it and/or modify it under
484the same terms as Perl itself.
485
486=cut
487
996be9ee 4881;
19b7d71c 489# vim:et sts=4 sw=4 tw=0: