1 package DBIx::Class::Relationship;
6 use base qw/Class::Data::Inheritable/;
8 __PACKAGE__->mk_classdata('_relationships', { } );
12 DBIx::Class::Relationship - Inter-table relationships
18 This class handles relationships between the tables in your database
19 model. It allows your to set up relationships, and to perform joins
28 sub add_relationship {
29 my ($class, $rel, $f_class, $cond, $attrs) = @_;
30 die "Can't create relationship without join condition" unless $cond;
33 my %rels = %{ $class->_relationships };
34 $rels{$rel} = { class => $f_class,
37 $class->_relationships(\%rels);
38 #warn %{$f_class->_columns};
40 return unless eval { %{$f_class->_columns}; }; # Foreign class not loaded
41 my %join = (%$attrs, _action => 'join',
42 _aliases => { 'self' => 'me', 'foreign' => $rel },
43 _classes => { 'me' => $class, $rel => $f_class });
44 eval { $class->_cond_resolve($cond, \%join) };
46 if ($@) { # If the resolve failed, back out and re-throw the error
48 $class->_relationships(\%rels);
49 $class->throw("Error creating relationship $rel: $@");
55 my ($self, $attrs, $key) = @_;
56 my $action = $attrs->{_action} || '';
57 if ($action eq 'convert') {
58 unless ($key =~ s/^foreign\.//) {
59 $self->throw("Unable to convert relationship to WHERE clause: invalid key ${key}");
62 } elsif ($action eq 'join') {
63 my ($type, $field) = split(/\./, $key);
64 if (my $alias = $attrs->{_aliases}{$type}) {
65 my $class = $attrs->{_classes}{$alias};
66 $self->throw("Unknown column $field on $class as $alias")
67 unless exists $class->_columns->{$field};
68 return join('.', $alias, $field);
70 $self->throw( "Unable to resolve type ${type}: only have aliases for ".
71 join(', ', keys %{$attrs->{_aliases} || {}}) );
74 return $self->NEXT::ACTUAL::_cond_key($attrs, $key);
78 my ($self, $attrs, $key, $value) = @_;
79 my $action = $attrs->{_action} || '';
80 if ($action eq 'convert') {
81 unless ($value =~ s/^self\.//) {
82 $self->throw( "Unable to convert relationship to WHERE clause: invalid value ${value}" );
84 unless ($self->_columns->{$value}) {
85 $self->throw( "Unable to convert relationship to WHERE clause: no such accessor ${value}" );
87 push(@{$attrs->{bind}}, $self->get_column($value));
89 } elsif ($action eq 'join') {
90 my ($type, $field) = split(/\./, $value);
91 if (my $alias = $attrs->{_aliases}{$type}) {
92 my $class = $attrs->{_classes}{$alias};
93 $self->throw("Unknown column $field on $class as $alias")
94 unless exists $class->_columns->{$field};
95 return join('.', $alias, $field);
97 $self->throw( "Unable to resolve type ${type}: only have aliases for ".
98 join(', ', keys %{$attrs->{_aliases} || {}}) );
102 return $self->NEXT::ACTUAL::_cond_value($attrs, $key, $value)
107 return $self->_literal_related('search', @_);
112 return $self->_literal_related('count', @_);
115 sub _literal_related {
118 my $meth = "${op}_literal";
121 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
122 $attrs = { %{ pop(@_) } };
124 my $rel_obj = $self->_relationships->{$rel};
125 $self->throw( "No such relationship ${rel}" ) unless $rel_obj;
126 $attrs = { %{$rel_obj->{attrs} || {}}, %{$attrs || {}} };
129 $self->throw( "Invalid query: @_" ) if (@_ > 1 && (@_ % 2 == 1));
130 my $query = ((@_ > 1) ? {@_} : shift);
131 $s_cond = $self->_cond_resolve($query, $attrs);
133 $attrs->{_action} = 'convert'; # shouldn't we resolve the cond to something
134 # to merge into the AST really?
135 my ($cond) = $self->_cond_resolve($rel_obj->{cond}, $attrs);
136 $cond = "${s_cond} AND ${cond}" if $s_cond;
137 #warn $rel_obj->{class}." $meth $cond ".join(', ', @{$attrs->{bind}});
138 return $rel_obj->{class}->$meth($cond, @{$attrs->{bind} || []}, $attrs);
143 return $class->new_related(@_)->insert;
147 my ($self, $rel, $values, $attrs) = @_;
148 $self->throw( "Can't call new_related as class method" )
150 $self->throw( "new_related needs a hash" )
151 unless (ref $values eq 'HASH');
152 my $rel_obj = $self->_relationships->{$rel};
153 $self->throw( "No such relationship ${rel}" ) unless $rel_obj;
154 $self->throw( "Can't abstract implicit create for ${rel}, condition not a hash" )
155 unless ref $rel_obj->{cond} eq 'HASH';
156 $attrs = { %{$rel_obj->{attrs}}, %{$attrs || {}}, _action => 'convert' };
157 my %fields = %$values;
158 while (my ($k, $v) = each %{$rel_obj->{cond}}) {
159 $self->_cond_value($attrs, $k => $v);
160 $fields{$self->_cond_key($attrs, $k)} = (@{delete $attrs->{bind}})[0];
162 return $rel_obj->{class}->new(\%fields);
165 sub find_or_create_related {
167 return ($self->search_related(@_))[0] || $self->create_related(@_);
170 sub set_from_related {
171 my ($self, $rel, $f_obj) = @_;
172 my $rel_obj = $self->_relationships->{$rel};
173 $self->throw( "No such relationship ${rel}" ) unless $rel_obj;
174 my $cond = $rel_obj->{cond};
175 $self->throw( "set_from_related can only handle a hash condition; the "
176 ."condition for $rel is of type ".(ref $cond ? ref $cond : 'plain scalar'))
177 unless ref $cond eq 'HASH';
178 $self->throw( "Object $f_obj isn't a ".$rel_obj->{class} )
179 unless $f_obj->isa($rel_obj->{class});
180 foreach my $key (keys %$cond) {
181 next if ref $cond->{$key}; # Skip literals and complex conditions
182 $self->throw("set_from_related can't handle $key as key")
183 unless $key =~ m/^foreign\.([^\.]+)$/;
184 my $val = $f_obj->get_column($1);
185 $self->throw("set_from_related can't handle ".$cond->{$key}." as value")
186 unless $cond->{$key} =~ m/^self\.([^\.]+)$/;
187 $self->set_column($1 => $val);
192 sub update_from_related {
194 $self->set_from_related(@_);
204 Matt S. Trout <perl-stuff@trout.me.uk>
208 You may distribute this code under the same terms as Perl itself.