More documentation improvements in the spirit of fb13a49f
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / Base.pm
CommitLineData
55e2d745 1package DBIx::Class::Relationship::Base;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class/;
6298a324 7
8use Scalar::Util qw/weaken blessed/;
ed7ab0f4 9use Try::Tiny;
fd323bf1 10use namespace::clean;
55e2d745 11
75d07914 12=head1 NAME
55e2d745 13
8918977e 14DBIx::Class::Relationship::Base - Inter-table relationships
55e2d745 15
16=head1 SYNOPSIS
17
6c4f4d69 18 __PACKAGE__->add_relationship(
19 spiders => 'My::DB::Result::Creatures',
20 sub {
21 my $args = shift;
22 return {
23 "$args->{foreign_alias}.id" => { -ident => "$args->{self_alias}.id" },
24 "$args->{foreign_alias}.type" => 'arachnid'
25 };
26 },
27 );
13523f29 28
55e2d745 29=head1 DESCRIPTION
30
30236e47 31This class provides methods to describe the relationships between the
32tables in your database model. These are the "bare bones" relationships
75d07914 33methods, for predefined ones, look in L<DBIx::Class::Relationship>.
55e2d745 34
35=head1 METHODS
36
8091aa91 37=head2 add_relationship
503536d5 38
27f01d1f 39=over 4
40
13523f29 41=item Arguments: 'relname', 'Foreign::Class', $condition, $attrs
27f01d1f 42
43=back
30236e47 44
6c4f4d69 45 __PACKAGE__->add_relationship('relname',
46 'Foreign::Class',
13523f29 47 $condition, $attrs);
48
49Create a custom relationship between one result source and another
50source, indicated by its class name.
503536d5 51
406734bb 52=head3 condition
53
6c4f4d69 54The condition argument describes the C<ON> clause of the C<JOIN>
55expression used to connect the two sources when creating SQL queries.
30236e47 56
13523f29 57To create simple equality joins, supply a hashref containing the
58remote table column name as the key(s), and the local table column
6c4f4d69 59name as the value(s), for example given:
503536d5 60
6c4f4d69 61 My::Schema::Author->has_many(
62 books => 'My::Schema::Book',
63 { 'foreign.author_id' => 'self.id' }
64 );
503536d5 65
6c4f4d69 66A query like:
67
68 $author_rs->search_related('books')->next
503536d5 69
6c4f4d69 70will result in the following C<JOIN> clause:
71
72 ... FROM author me LEFT JOIN book books ON books.author_id = me.id ...
503536d5 73
13523f29 74This describes a relationship between the C<Author> table and the
75C<Book> table where the C<Book> table has a column C<author_id>
76containing the ID value of the C<Author>.
77
6c4f4d69 78C<foreign> and C<self> are pseudo aliases and must be entered
13523f29 79literally. They will be replaced with the actual correct table alias
80when the SQL is produced.
81
82Similarly:
5271499d 83
6c4f4d69 84 My::Schema::Book->has_many(
85 editions => 'My::Schema::Edition',
86 {
87 'foreign.publisher_id' => 'self.publisher_id',
88 'foreign.type_id' => 'self.type_id',
89 }
90 );
91
92 ...
93
94 $book_rs->search_related('editions')->next
5271499d 95
13523f29 96will result in the C<JOIN> clause:
5271499d 97
6c4f4d69 98 ... FROM book me
99 LEFT JOIN edition editions ON
100 editions.publisher_id = me.publisher_id
101 AND editions.type_id = me.type_id ...
5271499d 102
13523f29 103This describes the relationship from C<Book> to C<Edition>, where the
104C<Edition> table refers to a publisher and a type (e.g. "paperback"):
105
106As is the default in L<SQL::Abstract>, the key-value pairs will be
107C<AND>ed in the result. C<OR> can be achieved with an arrayref, for
6c4f4d69 108example a condition like:
13523f29 109
6c4f4d69 110 My::Schema::Item->has_many(
111 related_item_links => My::Schema::Item::Links,
112 [
113 { 'foreign.left_itemid' => 'self.id' },
114 { 'foreign.right_itemid' => 'self.id' },
115 ],
116 );
13523f29 117
6c4f4d69 118will translate to the following C<JOIN> clause:
13523f29 119
6c4f4d69 120 ... FROM item me JOIN item_relations related_item_links ON
121 related_item_links.left_itemid = me.id
122 OR related_item_links.right_itemid = me.id ...
13523f29 123
6c4f4d69 124This describes the relationship from C<Item> to C<Item::Links>, where
125C<Item::Links> is a many-to-many linking table, linking items back to
126themselves in a peer fashion (without a "parent-child" designation)
13523f29 127
6c4f4d69 128To specify joins which describe more than a simple equality of column
129values, the custom join condition coderef syntax can be used. For
130example:
13523f29 131
6c4f4d69 132 My::Schema::Artist->has_many(
133 cds_80s => 'My::Schema::CD',
13523f29 134 sub {
6c4f4d69 135 my $args = shift;
13523f29 136
6c4f4d69 137 return {
138 "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
139 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
140 };
141 }
142 );
13523f29 143
6c4f4d69 144 ...
13523f29 145
6c4f4d69 146 $artist_rs->search_related('cds_80s')->next;
13523f29 147
6c4f4d69 148will result in the C<JOIN> clause:
13523f29 149
6c4f4d69 150 ... FROM artist me LEFT JOIN cd cds_80s ON
151 cds_80s.artist = me.artistid
152 AND cds_80s.year < ?
153 AND cds_80s.year > ?
13523f29 154
6c4f4d69 155with the bind values:
13523f29 156
6c4f4d69 157 '1990', '1979'
13523f29 158
6c4f4d69 159C<< $args->{foreign_alias} >> and C<< $args->{self_alias} >> are supplied the
160same values that would be otherwise substituted for C<foreign> and C<self>
161in the simple hashref syntax case.
162
163The coderef is expected to return a valid L<SQL::Abstract> query-structure, just
164like what one would supply as the first argument to
165L<DBIx::Class::ResultSet/search>. The return value will be passed directly to
166L<SQL::Abstract> and the resulting SQL will be used verbatim as the C<ON>
167clause of the C<JOIN> statement associated with this relationship.
168
169While every coderef-based condition must return a valid C<ON> clause, it may
8273e845 170elect to additionally return a simplified join-free condition hashref when
dad42de6 171invoked as C<< $result->relationship >>, as opposed to
172C<< $rs->related_resultset('relationship') >>. In this case C<$result> is
6c4f4d69 173passed to the coderef as C<< $args->{self_rowobj} >>, so a user can do the
174following:
175
176 sub {
177 my $args = shift;
178
179 return (
180 {
181 "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
182 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
183 },
184 $args->{self_rowobj} && {
185 "$args->{foreign_alias}.artist" => $args->{self_rowobj}->artistid,
186 "$args->{foreign_alias}.year" => { '>', "1979", '<', "1990" },
187 },
188 );
13523f29 189 }
190
191Now this code:
192
193 my $artist = $schema->resultset("Artist")->find({ id => 4 });
194 $artist->cds_80s->all;
195
6c4f4d69 196Can skip a C<JOIN> altogether and instead produce:
13523f29 197
6c4f4d69 198 SELECT cds_80s.cdid, cds_80s.artist, cds_80s.title, cds_80s.year, cds_80s.genreid, cds_80s.single_track
199 FROM cd cds_80s
200 WHERE cds_80s.artist = ?
201 AND cds_80s.year < ?
202 AND cds_80s.year > ?
13523f29 203
204With the bind values:
205
206 '4', '1990', '1979'
207
6c4f4d69 208Note that in order to be able to use
209L<< $row->create_related|DBIx::Class::Relationship::Base/create_related >>,
210the coderef must not only return as its second such a "simple" condition
211hashref which does not depend on joins being available, but the hashref must
212contain only plain values/deflatable objects, such that the result can be
213passed directly to L<DBIx::Class::Relationship::Base/set_from_related>. For
214instance the C<year> constraint in the above example prevents the relationship
215from being used to to create related objects (an exception will be thrown).
216
217In order to allow the user to go truly crazy when generating a custom C<ON>
218clause, the C<$args> hashref passed to the subroutine contains some extra
219metadata. Currently the supplied coderef is executed as:
220
221 $relationship_info->{cond}->({
dad42de6 222 self_alias => The alias of the invoking resultset ('me' in case of a result object),
6c4f4d69 223 foreign_alias => The alias of the to-be-joined resultset (often matches relname),
224 self_resultsource => The invocant's resultsource,
225 foreign_relname => The relationship name (does *not* always match foreign_alias),
dad42de6 226 self_rowobj => The invocant itself in case of a $result_object->$relationship call
6c4f4d69 227 });
8091aa91 228
406734bb 229=head3 attributes
230
231The L<standard ResultSet attributes|DBIx::Class::ResultSet/ATTRIBUTES> may
232be used as relationship attributes. In particular, the 'where' attribute is
233useful for filtering relationships:
234
235 __PACKAGE__->has_many( 'valid_users', 'MyApp::Schema::User',
236 { 'foreign.user_id' => 'self.user_id' },
237 { where => { valid => 1 } }
238 );
239
240The following attributes are also valid:
8091aa91 241
242=over 4
243
244=item join_type
245
246Explicitly specifies the type of join to use in the relationship. Any SQL
247join type is valid, e.g. C<LEFT> or C<RIGHT>. It will be placed in the SQL
248command immediately before C<JOIN>.
249
97c96475 250=item proxy =E<gt> $column | \@columns | \%column
251
9ab122aa 252The 'proxy' attribute can be used to retrieve values, and to perform
253updates if the relationship has 'cascade_update' set. The 'might_have'
254and 'has_one' relationships have this set by default; if you want a proxy
255to update across a 'belongs_to' relationship, you must set the attribute
256yourself.
257
97c96475 258=over 4
259
260=item \@columns
8091aa91 261
30236e47 262An arrayref containing a list of accessors in the foreign class to create in
8091aa91 263the main class. If, for example, you do the following:
d4daee7b 264
03460bef 265 MyApp::Schema::CD->might_have(liner_notes => 'MyApp::Schema::LinerNotes',
27f01d1f 266 undef, {
267 proxy => [ qw/notes/ ],
268 });
d4daee7b 269
03460bef 270Then, assuming MyApp::Schema::LinerNotes has an accessor named notes, you can do:
8091aa91 271
03460bef 272 my $cd = MyApp::Schema::CD->find(1);
30236e47 273 $cd->notes('Notes go here'); # set notes -- LinerNotes object is
274 # created if it doesn't exist
d4daee7b 275
9ab122aa 276For a 'belongs_to relationship, note the 'cascade_update':
277
278 MyApp::Schema::Track->belongs_to( cd => 'DBICTest::Schema::CD', 'cd,
279 { proxy => ['title'], cascade_update => 1 }
280 );
281 $track->title('New Title');
282 $track->update; # updates title in CD
283
97c96475 284=item \%column
285
286A hashref where each key is the accessor you want installed in the main class,
287and its value is the name of the original in the fireign class.
288
03460bef 289 MyApp::Schema::Track->belongs_to( cd => 'DBICTest::Schema::CD', 'cd', {
97c96475 290 proxy => { cd_title => 'title' },
291 });
292
dad42de6 293This will create an accessor named C<cd_title> on the C<$track> result object.
97c96475 294
295=back
296
297NOTE: you can pass a nested struct too, for example:
298
03460bef 299 MyApp::Schema::Track->belongs_to( cd => 'DBICTest::Schema::CD', 'cd', {
97c96475 300 proxy => [ 'year', { cd_title => 'title' } ],
301 });
302
8091aa91 303=item accessor
304
305Specifies the type of accessor that should be created for the relationship.
306Valid values are C<single> (for when there is only a single related object),
307C<multi> (when there can be many), and C<filter> (for when there is a single
308related object, but you also want the relationship accessor to double as
309a column accessor). For C<multi> accessors, an add_to_* method is also
310created, which calls C<create_related> for the relationship.
311
3d618782 312=item is_foreign_key_constraint
313
314If you are using L<SQL::Translator> to create SQL for you and you find that it
fd323bf1 315is creating constraints where it shouldn't, or not creating them where it
3d618782 316should, set this attribute to a true or false value to override the detection
317of when to create constraints.
318
5f7ac523 319=item cascade_copy
320
321If C<cascade_copy> is true on a C<has_many> relationship for an
322object, then when you copy the object all the related objects will
fd323bf1 323be copied too. To turn this behaviour off, pass C<< cascade_copy => 0 >>
324in the C<$attr> hashref.
b7bbc39f 325
326The behaviour defaults to C<< cascade_copy => 1 >> for C<has_many>
327relationships.
5f7ac523 328
329=item cascade_delete
330
b7bbc39f 331By default, DBIx::Class cascades deletes across C<has_many>,
332C<has_one> and C<might_have> relationships. You can disable this
fd323bf1 333behaviour on a per-relationship basis by supplying
b7bbc39f 334C<< cascade_delete => 0 >> in the relationship attributes.
5f7ac523 335
336The cascaded operations are performed after the requested delete,
337so if your database has a constraint on the relationship, it will
338have deleted/updated the related records or raised an exception
339before DBIx::Class gets to perform the cascaded operation.
340
341=item cascade_update
342
b7bbc39f 343By default, DBIx::Class cascades updates across C<has_one> and
5f7ac523 344C<might_have> relationships. You can disable this behaviour on a
b7bbc39f 345per-relationship basis by supplying C<< cascade_update => 0 >> in
346the relationship attributes.
5f7ac523 347
9ab122aa 348The C<belongs_to> relationship does not update across relationships
349by default, so if you have a 'proxy' attribute on a belongs_to and want to
350use 'update' on it, you muse set C<< cascade_update => 1 >>.
351
cee0c9b1 352This is not a RDMS style cascade update - it purely means that when
353an object has update called on it, all the related objects also
354have update called. It will not change foreign keys automatically -
355you must arrange to do this yourself.
5f7ac523 356
e377d723 357=item on_delete / on_update
358
359If you are using L<SQL::Translator> to create SQL for you, you can use these
fd323bf1 360attributes to explicitly set the desired C<ON DELETE> or C<ON UPDATE> constraint
361type. If not supplied the SQLT parser will attempt to infer the constraint type by
e377d723 362interrogating the attributes of the B<opposite> relationship. For any 'multi'
fd323bf1 363relationship with C<< cascade_delete => 1 >>, the corresponding belongs_to
364relationship will be created with an C<ON DELETE CASCADE> constraint. For any
e377d723 365relationship bearing C<< cascade_copy => 1 >> the resulting belongs_to constraint
366will be C<ON UPDATE CASCADE>. If you wish to disable this autodetection, and just
fd323bf1 367use the RDBMS' default constraint type, pass C<< on_delete => undef >> or
e377d723 368C<< on_delete => '' >>, and the same for C<on_update> respectively.
369
13de943d 370=item is_deferrable
371
372Tells L<SQL::Translator> that the foreign key constraint it creates should be
373deferrable. In other words, the user may request that the constraint be ignored
374until the end of the transaction. Currently, only the PostgreSQL producer
375actually supports this.
376
2581038c 377=item add_fk_index
378
379Tells L<SQL::Translator> to add an index for this constraint. Can also be
380specified globally in the args to L<DBIx::Class::Schema/deploy> or
381L<DBIx::Class::Schema/create_ddl_dir>. Default is on, set to 0 to disable.
382
8091aa91 383=back
384
87c4e602 385=head2 register_relationship
386
27f01d1f 387=over 4
388
dad42de6 389=item Arguments: $rel_name, $rel_info
27f01d1f 390
391=back
71e65b39 392
30236e47 393Registers a relationship on the class. This is called internally by
71f9df37 394DBIx::Class::ResultSourceProxy to set up Accessors and Proxies.
71e65b39 395
55e2d745 396=cut
397
71e65b39 398sub register_relationship { }
399
27f01d1f 400=head2 related_resultset
401
402=over 4
403
dad42de6 404=item Arguments: $rel_name
27f01d1f 405
dad42de6 406=item Return Value: L<$related_resultset|DBIx::Class::ResultSet>
27f01d1f 407
408=back
30236e47 409
27f01d1f 410 $rs = $cd->related_resultset('artist');
30236e47 411
27f01d1f 412Returns a L<DBIx::Class::ResultSet> for the relationship named
dad42de6 413$rel_name.
30236e47 414
93711422 415=head2 $relationship_accessor
416
417=over 4
418
dad42de6 419=item Arguments: none
93711422 420
dad42de6 421=item Return Value: L<$result|DBIx::Class::Manual::ResultClass> | L<$related_resultset|DBIx::Class::ResultSet> | undef
93711422 422
423=back
424
425 # These pairs do the same thing
426 $row = $cd->related_resultset('artist')->single; # has_one relationship
427 $row = $cd->artist;
428 $rs = $cd->related_resultset('tracks'); # has_many relationship
429 $rs = $cd->tracks;
430
431This is the recommended way to transverse through relationships, based
432on the L</accessor> name given in the relationship definition.
433
dad42de6 434This will return either a L<Result|DBIx::Class::Manual::ResultClass> or a
93711422 435L<ResultSet|DBIx::Class::ResultSet>, depending on if the relationship is
436C<single> (returns only one row) or C<multi> (returns many rows). The
437method may also return C<undef> if the relationship doesn't exist for
438this instance (like in the case of C<might_have> relationships).
439
30236e47 440=cut
441
442sub related_resultset {
443 my $self = shift;
bc0c9800 444 $self->throw_exception("Can't call *_related as class methods")
445 unless ref $self;
30236e47 446 my $rel = shift;
164efde3 447 my $rel_info = $self->relationship_info($rel);
bc0c9800 448 $self->throw_exception( "No such relationship ${rel}" )
164efde3 449 unless $rel_info;
d4daee7b 450
30236e47 451 return $self->{related_resultsets}{$rel} ||= do {
452 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
164efde3 453 $attrs = { %{$rel_info->{attrs} || {}}, %$attrs };
30236e47 454
bc0c9800 455 $self->throw_exception( "Invalid query: @_" )
456 if (@_ > 1 && (@_ % 2 == 1));
30236e47 457 my $query = ((@_ > 1) ? {@_} : shift);
458
68f3b0dd 459 my $source = $self->result_source;
d419ded6 460
461 # condition resolution may fail if an incomplete master-object prefetch
34b6b86f 462 # is encountered - that is ok during prefetch construction (not yet in_storage)
aa56106b 463 my ($cond, $is_crosstable) = try {
16053767 464 $source->_resolve_condition( $rel_info->{cond}, $rel, $self, $rel )
52b420dd 465 }
ed7ab0f4 466 catch {
34b6b86f 467 if ($self->in_storage) {
ed7ab0f4 468 $self->throw_exception ($_);
34b6b86f 469 }
52b420dd 470
471 $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION; # RV
ed7ab0f4 472 };
d419ded6 473
aa56106b 474 # keep in mind that the following if() block is part of a do{} - no return()s!!!
475 if ($is_crosstable) {
476 $self->throw_exception (
477 "A cross-table relationship condition returned for statically declared '$rel'")
478 unless ref $rel_info->{cond} eq 'CODE';
479
480 # A WHOREIFFIC hack to reinvoke the entire condition resolution
481 # with the correct alias. Another way of doing this involves a
482 # lot of state passing around, and the @_ positions are already
483 # mapped out, making this crap a less icky option.
484 #
485 # The point of this exercise is to retain the spirit of the original
486 # $obj->search_related($rel) where the resulting rset will have the
487 # root alias as 'me', instead of $rel (as opposed to invoking
488 # $rs->search_related)
489
aa56106b 490 local $source->{_relationships}{me} = $source->{_relationships}{$rel}; # make the fake 'me' rel
491 my $obj_table_alias = lc($source->source_name) . '__row';
93508f48 492 $obj_table_alias =~ s/\W+/_/g;
aa56106b 493
494 $source->resultset->search(
495 $self->ident_condition($obj_table_alias),
496 { alias => $obj_table_alias },
497 )->search_related('me', $query, $attrs)
68f3b0dd 498 }
aa56106b 499 else {
500 # FIXME - this conditional doesn't seem correct - got to figure out
501 # at some point what it does. Also the entire UNRESOLVABLE_CONDITION
502 # business seems shady - we could simply not query *at all*
503 if ($cond eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION) {
504 my $reverse = $source->reverse_relationship_info($rel);
505 foreach my $rev_rel (keys %$reverse) {
506 if ($reverse->{$rev_rel}{attrs}{accessor} && $reverse->{$rev_rel}{attrs}{accessor} eq 'multi') {
0a03206a 507 weaken($attrs->{related_objects}{$rev_rel}[0] = $self);
aa56106b 508 } else {
0a03206a 509 weaken($attrs->{related_objects}{$rev_rel} = $self);
aa56106b 510 }
511 }
9aae3566 512 }
aa56106b 513 elsif (ref $cond eq 'ARRAY') {
7689b9e5 514 $cond = [ map {
515 if (ref $_ eq 'HASH') {
516 my $hash;
517 foreach my $key (keys %$_) {
518 my $newkey = $key !~ /\./ ? "me.$key" : $key;
519 $hash->{$newkey} = $_->{$key};
520 }
521 $hash;
522 } else {
523 $_;
370f2ba2 524 }
7689b9e5 525 } @$cond ];
aa56106b 526 }
527 elsif (ref $cond eq 'HASH') {
528 foreach my $key (grep { ! /\./ } keys %$cond) {
7689b9e5 529 $cond->{"me.$key"} = delete $cond->{$key};
370f2ba2 530 }
30236e47 531 }
a126983e 532
7689b9e5 533 $query = ($query ? { '-and' => [ $cond, $query ] } : $cond);
534 $self->result_source->related_source($rel)->resultset->search(
aa56106b 535 $query, $attrs
536 );
7689b9e5 537 }
30236e47 538 };
539}
540
8091aa91 541=head2 search_related
503536d5 542
dad42de6 543=over 4
544
545=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
546
547=item Return Value: L<$resultset|DBIx::Class::ResultSet> (scalar context) | L<@result_objs|DBIx::Class::Manual::ResultClass> (list context)
548
549=back
30236e47 550
551Run a search on a related resultset. The search will be restricted to the
dad42de6 552results represented by the L<DBIx::Class::ResultSet> it was called
553upon.
554
555See L<DBIx::Class::ResultSet/search_related> for more information.
503536d5 556
557=cut
558
55e2d745 559sub search_related {
ff7bb7a1 560 return shift->related_resultset(shift)->search(@_);
b52e9bf8 561}
562
5b89a768 563=head2 search_related_rs
564
fd323bf1 565This method works exactly the same as search_related, except that
48580715 566it guarantees a resultset, even in list context.
5b89a768 567
568=cut
569
570sub search_related_rs {
571 return shift->related_resultset(shift)->search_rs(@_);
572}
573
b52e9bf8 574=head2 count_related
575
dad42de6 576=over 4
577
578=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
579
580=item Return Value: $count
b52e9bf8 581
dad42de6 582=back
583
584Returns the count of all the rows in the related resultset, restricted by the
585current result or where conditions.
30236e47 586
b52e9bf8 587=cut
588
589sub count_related {
590 my $self = shift;
591 return $self->search_related(@_)->count;
55e2d745 592}
593
30236e47 594=head2 new_related
595
dad42de6 596=over 4
597
598=item Arguments: $rel_name, \%col_data
599
600=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
30236e47 601
dad42de6 602=back
603
604Create a new result object of the related foreign class. It will magically set
605any foreign key columns of the new object to the related primary key columns
606of the source object for you. The newly created result will not be saved into
607your storage until you call L<DBIx::Class::Row/insert> on it.
30236e47 608
609=cut
610
611sub new_related {
81e4dc3d 612 my ($self, $rel, $values) = @_;
78b948c3 613
614 # FIXME - this is a bad position for this (also an identical copy in
615 # set_from_related), but I have no saner way to hook, and I absolutely
616 # want this to throw at least for coderefs, instead of the "insert a NULL
617 # when it gets hard" insanity --ribasushi
618 #
619 # sanity check - currently throw when a complex coderef rel is encountered
620 # FIXME - should THROW MOAR!
621
622 if (ref $self) { # cdbi calls this as a class method, /me vomits
623
624 my $rsrc = $self->result_source;
625 my (undef, $crosstable, $relcols) = $rsrc->_resolve_condition (
626 $rsrc->relationship_info($rel)->{cond}, $rel, $self, $rel
627 );
628
629 $self->throw_exception("Custom relationship '$rel' does not resolve to a join-free condition fragment")
630 if $crosstable;
631
632 if (@{$relcols || []} and @$relcols = grep { ! exists $values->{$_} } @$relcols) {
633 $self->throw_exception(sprintf (
634 "Custom relationship '%s' not definitive - returns conditions instead of values for column(s): %s",
635 $rel,
636 map { "'$_'" } @$relcols
637 ));
638 }
639 }
640
81e4dc3d 641 return $self->search_related($rel)->new_result($values);
30236e47 642}
643
8091aa91 644=head2 create_related
503536d5 645
dad42de6 646=over 4
30236e47 647
dad42de6 648=item Arguments: $rel_name, \%col_data
649
650=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
651
652=back
653
654 my $result = $obj->create_related($rel_name, \%col_data);
655
656Creates a new result object, similarly to new_related, and also inserts the
657result's data into your storage medium. See the distinction between C<create>
658and C<new> in L<DBIx::Class::ResultSet> for details.
503536d5 659
660=cut
661
55e2d745 662sub create_related {
3842b955 663 my $self = shift;
fea3d045 664 my $rel = shift;
78b948c3 665 my $obj = $self->new_related($rel, @_)->insert;
64acc2bc 666 delete $self->{related_resultsets}->{$rel};
667 return $obj;
55e2d745 668}
669
8091aa91 670=head2 find_related
503536d5 671
dad42de6 672=over 4
673
674=item Arguments: $rel_name, \%col_data | @pk_values, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
675
676=item Return Value: L<$result|DBIx::Class::Manual::ResultClass> | undef
677
678=back
679
680 my $result = $obj->find_related($rel_name, \%col_data);
30236e47 681
682Attempt to find a related object using its primary key or unique constraints.
27f01d1f 683See L<DBIx::Class::ResultSet/find> for details.
503536d5 684
685=cut
686
1a14aa3f 687sub find_related {
688 my $self = shift;
689 my $rel = shift;
716b3d29 690 return $self->search_related($rel)->find(@_);
1a14aa3f 691}
692
b3e1f1f5 693=head2 find_or_new_related
694
dad42de6 695=over 4
b3e1f1f5 696
dad42de6 697=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
698
699=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
700
701=back
702
703Find a result object of a related class. See L<DBIx::Class::ResultSet/find_or_new>
704for details.
b3e1f1f5 705
706=cut
707
708sub find_or_new_related {
709 my $self = shift;
e60dc79f 710 my $obj = $self->find_related(@_);
711 return defined $obj ? $obj : $self->new_related(@_);
b3e1f1f5 712}
713
8091aa91 714=head2 find_or_create_related
503536d5 715
dad42de6 716=over 4
717
718=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
719
720=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
721
722=back
30236e47 723
dad42de6 724Find or create a result object of a related class. See
b3e1f1f5 725L<DBIx::Class::ResultSet/find_or_create> for details.
503536d5 726
727=cut
728
55e2d745 729sub find_or_create_related {
730 my $self = shift;
9c2c91ea 731 my $obj = $self->find_related(@_);
732 return (defined($obj) ? $obj : $self->create_related(@_));
55e2d745 733}
734
045120e6 735=head2 update_or_create_related
736
dad42de6 737=over 4
738
739=item Arguments: $rel_name, \%col_data, { key => $unique_constraint, L<%attrs|DBIx::Class::ResultSet/ATTRIBUTES> }?
740
741=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
742
743=back
045120e6 744
dad42de6 745Update or create a result object of a related class. See
f7e1846f 746L<DBIx::Class::ResultSet/update_or_create> for details.
045120e6 747
748=cut
749
750sub update_or_create_related {
751 my $self = shift;
752 my $rel = shift;
753 return $self->related_resultset($rel)->update_or_create(@_);
754}
755
8091aa91 756=head2 set_from_related
503536d5 757
dad42de6 758=over 4
759
760=item Arguments: $rel_name, L<$result|DBIx::Class::Manual::ResultClass>
761
762=item Return Value: not defined
763
764=back
765
30236e47 766 $book->set_from_related('author', $author_obj);
ac8e89d7 767 $book->author($author_obj); ## same thing
30236e47 768
769Set column values on the current object, using related values from the given
770related object. This is used to associate previously separate objects, for
771example, to set the correct author for a book, find the Author object, then
772call set_from_related on the book.
773
ac8e89d7 774This is called internally when you pass existing objects as values to
48580715 775L<DBIx::Class::ResultSet/create>, or pass an object to a belongs_to accessor.
ac8e89d7 776
27f01d1f 777The columns are only set in the local copy of the object, call L</update> to
778set them in the storage.
503536d5 779
780=cut
781
55e2d745 782sub set_from_related {
783 my ($self, $rel, $f_obj) = @_;
aa56106b 784
78b948c3 785 my $rsrc = $self->result_source;
786 my $rel_info = $rsrc->relationship_info($rel)
aa56106b 787 or $self->throw_exception( "No such relationship ${rel}" );
788
2c037e6b 789 if (defined $f_obj) {
164efde3 790 my $f_class = $rel_info->{class};
2c037e6b 791 $self->throw_exception( "Object $f_obj isn't a ".$f_class )
6298a324 792 unless blessed $f_obj and $f_obj->isa($f_class);
2c037e6b 793 }
a126983e 794
a126983e 795
78b948c3 796 # FIXME - this is a bad position for this (also an identical copy in
797 # new_related), but I have no saner way to hook, and I absolutely
798 # want this to throw at least for coderefs, instead of the "insert a NULL
799 # when it gets hard" insanity --ribasushi
800 #
801 # sanity check - currently throw when a complex coderef rel is encountered
802 # FIXME - should THROW MOAR!
803 my ($cond, $crosstable, $relcols) = $rsrc->_resolve_condition (
804 $rel_info->{cond}, $f_obj, $rel, $rel
805 );
806 $self->throw_exception("Custom relationship '$rel' does not resolve to a join-free condition fragment")
807 if $crosstable;
808 $self->throw_exception(sprintf (
809 "Custom relationship '%s' not definitive - returns conditions instead of values for column(s): %s",
810 $rel,
811 map { "'$_'" } @$relcols
812 )) if @{$relcols || []};
aa56106b 813
814 $self->set_columns($cond);
a126983e 815
55e2d745 816 return 1;
817}
818
8091aa91 819=head2 update_from_related
503536d5 820
dad42de6 821=over 4
822
823=item Arguments: $rel_name, L<$result|DBIx::Class::Manual::ResultClass>
824
825=item Return Value: not defined
826
827=back
828
30236e47 829 $book->update_from_related('author', $author_obj);
830
27f01d1f 831The same as L</"set_from_related">, but the changes are immediately updated
832in storage.
503536d5 833
834=cut
835
55e2d745 836sub update_from_related {
837 my $self = shift;
838 $self->set_from_related(@_);
839 $self->update;
840}
841
8091aa91 842=head2 delete_related
503536d5 843
dad42de6 844=over 4
30236e47 845
dad42de6 846=item Arguments: $rel_name, $cond?, L<\%attrs?|DBIx::Class::ResultSet/ATTRIBUTES>
847
69bc5f2b 848=item Return Value: $underlying_storage_rv
dad42de6 849
850=back
851
852Delete any related row, subject to the given conditions. Internally, this
853calls:
854
855 $self->search_related(@_)->delete
856
857And returns the result of that.
503536d5 858
859=cut
860
55e2d745 861sub delete_related {
862 my $self = shift;
64acc2bc 863 my $obj = $self->search_related(@_)->delete;
864 delete $self->{related_resultsets}->{$_[0]};
865 return $obj;
55e2d745 866}
867
ec353f53 868=head2 add_to_$rel
869
dad42de6 870B<Currently only available for C<has_many>, C<many_to_many> and 'multi' type
ec353f53 871relationships.>
872
dad42de6 873=head3 has_many / multi
874
ec353f53 875=over 4
876
dad42de6 877=item Arguments: \%col_data
878
879=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
880
881=back
882
883Creates/inserts a new result object. Internally, this calls:
884
885 $self->create_related($rel, @_)
886
887And returns the result of that.
888
889=head3 many_to_many
890
891=over 4
892
893=item Arguments: (\%col_data | L<$result|DBIx::Class::Manual::ResultClass>), \%link_col_data?
894
895=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
ec353f53 896
897=back
898
899 my $role = $schema->resultset('Role')->find(1);
900 $actor->add_to_roles($role);
dad42de6 901 # creates a My::DBIC::Schema::ActorRoles linking table result object
ec353f53 902
903 $actor->add_to_roles({ name => 'lead' }, { salary => 15_000_000 });
dad42de6 904 # creates a new My::DBIC::Schema::Role result object and the linking table
ec353f53 905 # object with an extra column in the link
906
dad42de6 907Adds a linking table object. If the first argument is a hash reference, the
908related object is created first with the column values in the hash. If an object
909reference is given, just the linking table object is created. In either case,
910any additional column values for the linking table object can be specified in
911C<\%link_col_data>.
912
913See L<DBIx::Class::Relationship/many_to_many> for additional details.
ec353f53 914
915=head2 set_$rel
916
dad42de6 917B<Currently only available for C<many_to_many> relationships.>
ec353f53 918
919=over 4
920
dad42de6 921=item Arguments: (\@hashrefs_of_col_data | L<\@result_objs|DBIx::Class::Manual::ResultClass>), $link_vals?
922
923=item Return Value: not defined
ec353f53 924
925=back
926
927 my $actor = $schema->resultset('Actor')->find(1);
fd323bf1 928 my @roles = $schema->resultset('Role')->search({ role =>
debccec3 929 { '-in' => ['Fred', 'Barney'] } } );
ec353f53 930
4d3a827d 931 $actor->set_roles(\@roles);
932 # Replaces all of $actor's previous roles with the two named
ec353f53 933
ac36a402 934 $actor->set_roles(\@roles, { salary => 15_000_000 });
935 # Sets a column in the link table for all roles
936
937
4d3a827d 938Replace all the related objects with the given reference to a list of
939objects. This does a C<delete> B<on the link table resultset> to remove the
940association between the current object and all related objects, then calls
941C<add_to_$rel> repeatedly to link all the new objects.
bba68c67 942
943Note that this means that this method will B<not> delete any objects in the
944table on the right side of the relation, merely that it will delete the link
945between them.
ec353f53 946
4d3a827d 947Due to a mistake in the original implementation of this method, it will also
948accept a list of objects or hash references. This is B<deprecated> and will be
949removed in a future version.
950
ec353f53 951=head2 remove_from_$rel
952
dad42de6 953B<Currently only available for C<many_to_many> relationships.>
ec353f53 954
955=over 4
956
dad42de6 957=item Arguments: L<$result|DBIx::Class::Manual::ResultClass>
958
959=item Return Value: not defined
ec353f53 960
961=back
962
963 my $role = $schema->resultset('Role')->find(1);
964 $actor->remove_from_roles($role);
dad42de6 965 # removes $role's My::DBIC::Schema::ActorRoles linking table result object
ec353f53 966
967Removes the link between the current object and the related object. Note that
968the related object itself won't be deleted unless you call ->delete() on
969it. This method just removes the link between the two objects.
970
0c11ad0e 971=head1 AUTHOR AND CONTRIBUTORS
55e2d745 972
0c11ad0e 973See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
55e2d745 974
975=head1 LICENSE
976
977You may distribute this code under the same terms as Perl itself.
978
979=cut
980
4d87db01 9811;