X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FRelBuilder.pm;h=904e5d1775f42c39cf0f576dd35696097e2c9569;hb=ee07e280e5cfc275ee3ddd376031d088188b45c2;hp=2fe5824897f4a775cea282e9875d42065a2c68e2;hpb=243c6ebce7ae31cd4234b3125b177d4d0c86bcc7;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/RelBuilder.pm b/lib/DBIx/Class/Schema/Loader/RelBuilder.pm index 2fe5824..904e5d1 100644 --- a/lib/DBIx/Class/Schema/Loader/RelBuilder.pm +++ b/lib/DBIx/Class/Schema/Loader/RelBuilder.pm @@ -5,6 +5,7 @@ use warnings; use Class::C3; use Carp::Clan qw/^DBIx::Class/; use Lingua::EN::Inflect::Number (); +use Lingua::EN::Inflect::Phrase (); our $VERSION = '0.05003'; @@ -98,7 +99,7 @@ sub new { # pluralize a relationship name sub _inflect_plural { - my ($self, $relname) = @_; + my ($self, $relname, $method) = @_; return '' if !defined $relname || $relname eq ''; @@ -111,12 +112,14 @@ sub _inflect_plural { return $inflected if $inflected; } - return Lingua::EN::Inflect::Number::to_PL($relname); + $method ||= '_to_PL'; + + return $self->$method($relname); } # Singularize a relationship name sub _inflect_singular { - my ($self, $relname) = @_; + my ($self, $relname, $method) = @_; return '' if !defined $relname || $relname eq ''; @@ -129,18 +132,71 @@ sub _inflect_singular { return $inflected if $inflected; } - return Lingua::EN::Inflect::Number::to_S($relname); + $method ||= '_to_S'; + + return $self->$method($relname); +} + +sub _to_PL { + my ($self, $name) = @_; + + $name =~ s/_/ /g; + my $plural = Lingua::EN::Inflect::Phrase::to_PL($name); + $plural =~ s/ /_/g; + + return $plural; } +sub _old_to_PL { + my ($self, $name) = @_; + + return Lingua::EN::Inflect::Number::to_PL($name); +} + +sub _to_S { + my ($self, $name) = @_; + + $name =~ s/_/ /g; + my $singular = Lingua::EN::Inflect::Phrase::to_S($name); + $singular =~ s/ /_/g; + + return $singular; +} + +sub _old_to_S { + my ($self, $name) = @_; + + return Lingua::EN::Inflect::Number::to_S($name); +} + +sub _default_relationship_attrs { +{ + has_many => { + cascade_delete => 0, + cascade_copy => 0, + }, + might_have => { + cascade_delete => 0, + cascade_copy => 0, + }, + belongs_to => { + on_delete => 'CASCADE', + on_update => 'CASCADE', + is_deferrable => 1, + }, +} } + # accessor for options to be passed to each generated relationship # type. take single argument, the relationship type name, and returns # either a hashref (if some options are set), or nothing sub _relationship_attrs { my ( $self, $reltype ) = @_; my $r = $self->{relationship_attrs}; - return unless $r && ( $r->{all} || $r->{$reltype} ); - my %composite = %{ $r->{all} || {} }; + my %composite = ( + %{ $self->_default_relationship_attrs->{$reltype} || {} }, + %{ $r->{all} || {} } + ); + if( my $specific = $r->{$reltype} ) { while( my ($k,$v) = each %$specific ) { $composite{$k} = $v; @@ -161,19 +217,17 @@ sub _array_eq { } sub _remote_attrs { - my ($self, $local_moniker, $local_cols) = @_; + my ($self, $local_moniker, $local_cols) = @_; - # get our base set of attrs from _relationship_attrs, if present - my $attrs = $self->_relationship_attrs('belongs_to') || {}; + # get our base set of attrs from _relationship_attrs, if present + my $attrs = $self->_relationship_attrs('belongs_to') || {}; - # If the referring column is nullable, make 'belongs_to' an - # outer join, unless explicitly set by relationship_attrs - my $nullable = grep { $self->{schema}->source($local_moniker)->column_info($_)->{is_nullable} } - @$local_cols; - $attrs->{join_type} = 'LEFT' - if $nullable && !defined $attrs->{join_type}; + # If the referring column is nullable, make 'belongs_to' an + # outer join, unless explicitly set by relationship_attrs + my $nullable = grep { $self->{schema}->source($local_moniker)->column_info($_)->{is_nullable} } @$local_cols; + $attrs->{join_type} = 'LEFT' if $nullable && !defined $attrs->{join_type}; - return $attrs; + return $attrs; } sub _remote_relname { @@ -274,20 +328,26 @@ sub _relnames_and_method { # If more than one rel between this pair of tables, use the local # col names to distinguish - my $local_relname; - my $old_multirel_name; #< TODO: remove me + my ($local_relname, $old_local_relname, $local_relname_uninflected, $old_local_relname_uninflected); if ( $counters->{$remote_moniker} > 1) { my $colnames = lc(q{_} . join(q{_}, @$local_cols)); $remote_relname .= $colnames if keys %$cond > 1; $local_relname = lc($local_table) . $colnames; - $local_relname =~ s/_id$// - #< TODO: remove me - and $old_multirel_name = $self->_inflect_plural( lc($local_table) . $colnames ); + $local_relname =~ s/_id$//; + + $local_relname_uninflected = $local_relname; $local_relname = $self->_inflect_plural( $local_relname ); + $old_local_relname_uninflected = lc($local_table) . $colnames; + $old_local_relname = $self->_inflect_plural( lc($local_table) . $colnames, '_old_to_PL' ); + } else { + $local_relname_uninflected = lc $local_table; $local_relname = $self->_inflect_plural(lc $local_table); + + $old_local_relname_uninflected = lc $local_table; + $old_local_relname = $self->_inflect_plural(lc $local_table, '_old_to_PL'); } my $remote_method = 'has_many'; @@ -297,14 +357,11 @@ sub _relnames_and_method { if (_array_eq([ $local_source->primary_columns ], $local_cols) || grep { _array_eq($_->[1], $local_cols) } @$uniqs) { $remote_method = 'might_have'; - $local_relname = $self->_inflect_singular($local_relname); - #< TODO: remove me - $old_multirel_name = $self->_inflect_singular($old_multirel_name); + $local_relname = $self->_inflect_singular($local_relname_uninflected); + $old_local_relname = $self->_inflect_singular($old_local_relname_uninflected, '_old_to_S'); } - # TODO: remove me after 0.05003 release - $old_multirel_name - and warn __PACKAGE__." $VERSION: warning, stripping trailing _id from ${remote_class} relation '$old_multirel_name', renaming to '$local_relname'. This behavior is new as of 0.05003.\n"; + warn __PACKAGE__." $VERSION: renaming ${remote_class} relation '$old_local_relname' to '$local_relname'. This behavior is new as of 0.05003.\n" if $old_local_relname && $local_relname ne $old_local_relname; return ( $local_relname, $remote_relname, $remote_method ); }