X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FAccessor.pm;h=b20eb1684f221b7f0b409695d063fbdbe06be961;hb=ae74c3bf530ac1b404352fbfcccb7ad6292c8569;hp=ca902b33895f801586a328e3fc83bf20121336c0;hpb=4685e00665ca987cd3acae87bc1d988f8ab56b31;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Relationship/Accessor.pm b/lib/DBIx/Class/Relationship/Accessor.pm index ca902b3..b20eb16 100644 --- a/lib/DBIx/Class/Relationship/Accessor.pm +++ b/lib/DBIx/Class/Relationship/Accessor.pm @@ -1,16 +1,15 @@ -package DBIx::Class::Relationship::Accessor; +package # hide from PAUSE + DBIx::Class::Relationship::Accessor; use strict; use warnings; -sub add_relationship { - my ($class, $rel, @rest) = @_; - my $ret = $class->next::method($rel => @rest); - my $rel_obj = $class->relationship_info($rel); - if (my $acc_type = $rel_obj->{attrs}{accessor}) { +sub register_relationship { + my ($class, $rel, $info) = @_; + if (my $acc_type = $info->{attrs}{accessor}) { $class->add_relationship_accessor($rel => $acc_type); } - return $ret; + $class->next::method($rel => $info); } sub add_relationship_accessor { @@ -31,7 +30,7 @@ sub add_relationship_accessor { } }; } elsif ($acc_type eq 'filter') { - $class->throw("No such column $rel to filter") + $class->throw_exception("No such column $rel to filter") unless $class->has_column($rel); my $f_class = $class->relationship_info($rel)->{class}; $class->inflate_column($rel, @@ -41,7 +40,7 @@ sub add_relationship_accessor { }, deflate => sub { my ($val, $self) = @_; - $self->throw("$val isn't a $f_class") unless $val->isa($f_class); + $self->throw_exception("$val isn't a $f_class") unless $val->isa($f_class); return ($val->_ident_values)[0]; # WARNING: probably breaks for multi-pri sometimes. FIXME } @@ -49,9 +48,10 @@ sub add_relationship_accessor { ); } elsif ($acc_type eq 'multi') { $meth{$rel} = sub { shift->search_related($rel, @_) }; + $meth{"${rel}_rs"} = sub { shift->search_related_rs($rel, @_) }; $meth{"add_to_${rel}"} = sub { shift->create_related($rel, @_); }; } else { - $class->throw("No such relationship accessor type $acc_type"); + $class->throw_exception("No such relationship accessor type $acc_type"); } { no strict 'refs';