Centralize specification of expected Result class base in the codebase
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Row.pm
1 package DBIx::Class::Row;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class/;
7
8 use Scalar::Util 'blessed';
9 use DBIx::Class::_Util qw( dbic_internal_try fail_on_internal_call );
10 use DBIx::Class::Carp;
11 use SQL::Abstract qw( is_literal_value is_plain_value );
12
13 ###
14 ### Internal method
15 ### Do not use
16 ###
17 BEGIN {
18   *MULTICREATE_DEBUG =
19     $ENV{DBIC_MULTICREATE_DEBUG}
20       ? sub () { 1 }
21       : sub () { 0 };
22 }
23
24 use namespace::clean;
25
26 __PACKAGE__->mk_group_accessors ( simple => [ in_storage => '_in_storage' ] );
27
28 =head1 NAME
29
30 DBIx::Class::Row - Basic row methods
31
32 =head1 SYNOPSIS
33
34 =head1 DESCRIPTION
35
36 This class is responsible for defining and doing basic operations on rows
37 derived from L<DBIx::Class::ResultSource> objects.
38
39 Result objects are returned from L<DBIx::Class::ResultSet>s using the
40 L<create|DBIx::Class::ResultSet/create>, L<find|DBIx::Class::ResultSet/find>,
41 L<next|DBIx::Class::ResultSet/next> and L<all|DBIx::Class::ResultSet/all> methods,
42 as well as invocations of 'single' (
43 L<belongs_to|DBIx::Class::Relationship/belongs_to>,
44 L<has_one|DBIx::Class::Relationship/has_one> or
45 L<might_have|DBIx::Class::Relationship/might_have>)
46 relationship accessors of L<Result|DBIx::Class::Manual::ResultClass> objects.
47
48 =head1 NOTE
49
50 All "Row objects" derived from a Schema-attached L<DBIx::Class::ResultSet>
51 object (such as a typical C<< L<search|DBIx::Class::ResultSet/search>->
52 L<next|DBIx::Class::ResultSet/next> >> call) are actually Result
53 instances, based on your application's
54 L<Result Class|DBIx::Class::Manual::Glossary/Result Class>.
55
56 L<DBIx::Class::Row> implements most of the row-based communication with the
57 underlying storage, but a Result class B<should not inherit from it directly>.
58 Usually, Result classes inherit from L<DBIx::Class::Core>, which in turn
59 combines the methods from several classes, one of them being
60 L<DBIx::Class::Row>.  Therefore, while many of the methods available to a
61 L<DBIx::Class::Core>-derived Result class are described in the following
62 documentation, it does not detail all of the methods available to Result
63 objects.  Refer to L<DBIx::Class::Manual::ResultClass> for more info.
64
65 =head1 METHODS
66
67 =head2 new
68
69   my $result = My::Class->new(\%attrs);
70
71   my $result = $schema->resultset('MySource')->new(\%colsandvalues);
72
73 =over
74
75 =item Arguments: \%attrs or \%colsandvalues
76
77 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
78
79 =back
80
81 While you can create a new result object by calling C<new> directly on
82 this class, you are better off calling it on a
83 L<DBIx::Class::ResultSet> object.
84
85 When calling it directly, you will not get a complete, usable row
86 object until you pass or set the C<result_source> attribute, to a
87 L<DBIx::Class::ResultSource> instance that is attached to a
88 L<DBIx::Class::Schema> with a valid connection.
89
90 C<$attrs> is a hashref of column name, value data. It can also contain
91 some other attributes such as the C<result_source>.
92
93 Passing an object, or an arrayref of objects as a value will call
94 L<DBIx::Class::Relationship::Base/set_from_related> for you. When
95 passed a hashref or an arrayref of hashrefs as the value, these will
96 be turned into objects via new_related, and treated as if you had
97 passed objects.
98
99 For a more involved explanation, see L<DBIx::Class::ResultSet/create>.
100
101 Please note that if a value is not passed to new, no value will be sent
102 in the SQL INSERT call, and the column will therefore assume whatever
103 default value was specified in your database. While DBIC will retrieve the
104 value of autoincrement columns, it will never make an explicit database
105 trip to retrieve default values assigned by the RDBMS. You can explicitly
106 request that all values be fetched back from the database by calling
107 L</discard_changes>, or you can supply an explicit C<undef> to columns
108 with NULL as the default, and save yourself a SELECT.
109
110  CAVEAT:
111
112  The behavior described above will backfire if you use a foreign key column
113  with a database-defined default. If you call the relationship accessor on
114  an object that doesn't have a set value for the FK column, DBIC will throw
115  an exception, as it has no way of knowing the PK of the related object (if
116  there is one).
117
118 =cut
119
120 ## It needs to store the new objects somewhere, and call insert on that list later when insert is called on this object. We may need an accessor for these so the user can retrieve them, if just doing ->new().
121 ## This only works because DBIC doesn't yet care to check whether the new_related objects have been passed all their mandatory columns
122 ## When doing the later insert, we need to make sure the PKs are set.
123 ## using _relationship_data in new and funky ways..
124 ## check Relationship::CascadeActions and Relationship::Accessor for compat
125 ## tests!
126
127 sub __new_related_find_or_new_helper {
128   my ($self, $rel_name, $values) = @_;
129
130   my $rsrc = $self->result_source;
131
132   # create a mock-object so all new/set_column component overrides will run:
133   my $rel_rs = $rsrc->related_source($rel_name)->resultset;
134   my $new_rel_obj = $rel_rs->new_result($values);
135   my $proc_data = { $new_rel_obj->get_columns };
136
137   if ($self->__their_pk_needs_us($rel_name)) {
138     MULTICREATE_DEBUG and print STDERR "MC $self constructing $rel_name via new_result\n";
139     return $new_rel_obj;
140   }
141   elsif ($rsrc->_pk_depends_on($rel_name, $proc_data )) {
142     if (! keys %$proc_data) {
143       # there is nothing to search for - blind create
144       MULTICREATE_DEBUG and print STDERR "MC $self constructing default-insert $rel_name\n";
145     }
146     else {
147       MULTICREATE_DEBUG and print STDERR "MC $self constructing $rel_name via find_or_new\n";
148       # this is not *really* find or new, as we don't want to double-new the
149       # data (thus potentially double encoding or whatever)
150       my $exists = $rel_rs->find ($proc_data);
151       return $exists if $exists;
152     }
153     return $new_rel_obj;
154   }
155   else {
156     my $us = $rsrc->source_name;
157     $self->throw_exception (
158       "Unable to determine relationship '$rel_name' direction from '$us', "
159     . "possibly due to a missing reverse-relationship on '$rel_name' to '$us'."
160     );
161   }
162 }
163
164 sub __their_pk_needs_us { # this should maybe be in resultsource.
165   my ($self, $rel_name) = @_;
166   my $rsrc = $self->result_source;
167   my $reverse = $rsrc->reverse_relationship_info($rel_name);
168   my $rel_source = $rsrc->related_source($rel_name);
169   my $us = { $self->get_columns };
170   foreach my $key (keys %$reverse) {
171     # if their primary key depends on us, then we have to
172     # just create a result and we'll fill it out afterwards
173     return 1 if $rel_source->_pk_depends_on($key, $us);
174   }
175   return 0;
176 }
177
178 sub new {
179   my ($class, $attrs) = @_;
180   $class = ref $class if ref $class;
181
182   my $new = bless { _column_data => {}, _in_storage => 0 }, $class;
183
184   if ($attrs) {
185     $new->throw_exception("attrs must be a hashref")
186       unless ref($attrs) eq 'HASH';
187
188     my $rsrc = delete $attrs->{-result_source};
189     if ( my $h = delete $attrs->{-source_handle} ) {
190       $rsrc ||= $h->resolve;
191     }
192
193     $new->result_source_instance($rsrc) if $rsrc;
194
195     if (my $col_from_rel = delete $attrs->{-cols_from_relations}) {
196       @{$new->{_ignore_at_insert}={}}{@$col_from_rel} = ();
197     }
198
199     my( $related, $inflated, $colinfos );
200
201     foreach my $key (keys %$attrs) {
202       if (ref $attrs->{$key} and ! is_literal_value($attrs->{$key}) ) {
203         ## Can we extract this lot to use with update(_or .. ) ?
204         $new->throw_exception("Can't do multi-create without result source")
205           unless $rsrc;
206         my $info = $rsrc->relationship_info($key);
207         my $acc_type = $info->{attrs}{accessor} || '';
208         if ($acc_type eq 'single') {
209           my $rel_obj = delete $attrs->{$key};
210           if(!blessed $rel_obj) {
211             $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
212           }
213
214           if ($rel_obj->in_storage) {
215             $new->{_rel_in_storage}{$key} = 1;
216             $new->set_from_related($key, $rel_obj);
217           } else {
218             MULTICREATE_DEBUG and print STDERR "MC $new uninserted $key $rel_obj\n";
219           }
220
221           $related->{$key} = $rel_obj;
222           next;
223         }
224         elsif ($acc_type eq 'multi' && ref $attrs->{$key} eq 'ARRAY' ) {
225           my $others = delete $attrs->{$key};
226           my $total = @$others;
227           my @objects;
228           foreach my $idx (0 .. $#$others) {
229             my $rel_obj = $others->[$idx];
230             if(!blessed $rel_obj) {
231               $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
232             }
233
234             if ($rel_obj->in_storage) {
235               $rel_obj->throw_exception ('A multi relationship can not be pre-existing when doing multicreate. Something went wrong');
236             } else {
237               MULTICREATE_DEBUG and
238                 print STDERR "MC $new uninserted $key $rel_obj (${\($idx+1)} of $total)\n";
239             }
240             push(@objects, $rel_obj);
241           }
242           $related->{$key} = \@objects;
243           next;
244         }
245         elsif ($acc_type eq 'filter') {
246           ## 'filter' should disappear and get merged in with 'single' above!
247           my $rel_obj = delete $attrs->{$key};
248           if(!blessed $rel_obj) {
249             $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
250           }
251           if ($rel_obj->in_storage) {
252             $new->{_rel_in_storage}{$key} = 1;
253           }
254           else {
255             MULTICREATE_DEBUG and print STDERR "MC $new uninserted $key $rel_obj\n";
256           }
257           $inflated->{$key} = $rel_obj;
258           next;
259         }
260         elsif (
261           ( $colinfos ||= $rsrc->columns_info )
262            ->{$key}{_inflate_info}
263         ) {
264           $inflated->{$key} = $attrs->{$key};
265           next;
266         }
267       }
268       $new->store_column($key => $attrs->{$key});
269     }
270
271     $new->{_relationship_data} = $related if $related;
272     $new->{_inflated_column} = $inflated if $inflated;
273   }
274
275   return $new;
276 }
277
278 =head2 $column_accessor
279
280   # Each pair does the same thing
281
282   # (un-inflated, regular column)
283   my $val = $result->get_column('first_name');
284   my $val = $result->first_name;
285
286   $result->set_column('first_name' => $val);
287   $result->first_name($val);
288
289   # (inflated column via DBIx::Class::InflateColumn::DateTime)
290   my $val = $result->get_inflated_column('last_modified');
291   my $val = $result->last_modified;
292
293   $result->set_inflated_column('last_modified' => $val);
294   $result->last_modified($val);
295
296 =over
297
298 =item Arguments: $value?
299
300 =item Return Value: $value
301
302 =back
303
304 A column accessor method is created for each column, which is used for
305 getting/setting the value for that column.
306
307 The actual method name is based on the
308 L<accessor|DBIx::Class::ResultSource/accessor> name given during the
309 L<Result Class|DBIx::Class::Manual::ResultClass> L<column definition
310 |DBIx::Class::ResultSource/add_columns>. Like L</set_column>, this
311 will not store the data in the database until L</insert> or L</update>
312 is called on the row.
313
314 =head2 insert
315
316   $result->insert;
317
318 =over
319
320 =item Arguments: none
321
322 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
323
324 =back
325
326 Inserts an object previously created by L</new> into the database if
327 it isn't already in there. Returns the object itself. To insert an
328 entirely new row into the database, use L<DBIx::Class::ResultSet/create>.
329
330 To fetch an uninserted result object, call
331 L<new_result|DBIx::Class::ResultSet/new_result> on a resultset.
332
333 This will also insert any uninserted, related objects held inside this
334 one, see L<DBIx::Class::ResultSet/create> for more details.
335
336 =cut
337
338 sub insert {
339   my ($self) = @_;
340   return $self if $self->in_storage;
341   my $rsrc = $self->result_source;
342   $self->throw_exception("No result_source set on this object; can't insert")
343     unless $rsrc;
344
345   my $storage = $rsrc->schema->storage;
346
347   my $rollback_guard;
348
349   # Check if we stored uninserted relobjs here in new()
350   my %related_stuff = (%{$self->{_relationship_data} || {}},
351                        %{$self->{_inflated_column} || {}});
352
353   # insert what needs to be inserted before us
354   my %pre_insert;
355   for my $rel_name (keys %related_stuff) {
356     my $rel_obj = $related_stuff{$rel_name};
357
358     if (! $self->{_rel_in_storage}{$rel_name}) {
359       next unless (blessed $rel_obj && $rel_obj->isa(__PACKAGE__));
360
361       next unless $rsrc->_pk_depends_on(
362                     $rel_name, { $rel_obj->get_columns }
363                   );
364
365       # The guard will save us if we blow out of this scope via die
366       $rollback_guard ||= $storage->txn_scope_guard;
367
368       MULTICREATE_DEBUG and print STDERR "MC $self pre-reconstructing $rel_name $rel_obj\n";
369
370       my $them = { %{$rel_obj->{_relationship_data} || {} }, $rel_obj->get_columns };
371       my $existing;
372
373       # if there are no keys - nothing to search for
374       if (keys %$them and $existing = $rsrc->related_source($rel_name)
375                                            ->resultset
376                                            ->find($them)
377       ) {
378         %{$rel_obj} = %{$existing};
379       }
380       else {
381         $rel_obj->insert;
382       }
383
384       $self->{_rel_in_storage}{$rel_name} = 1;
385     }
386
387     $self->set_from_related($rel_name, $rel_obj);
388     delete $related_stuff{$rel_name};
389   }
390
391   # start a transaction here if not started yet and there is more stuff
392   # to insert after us
393   if (keys %related_stuff) {
394     $rollback_guard ||= $storage->txn_scope_guard
395   }
396
397   MULTICREATE_DEBUG and do {
398     no warnings 'uninitialized';
399     print STDERR "MC $self inserting (".join(', ', $self->get_columns).")\n";
400   };
401
402   # perform the insert - the storage will return everything it is asked to
403   # (autoinc primary columns and any retrieve_on_insert columns)
404   my %current_rowdata = $self->get_columns;
405   my $returned_cols = $storage->insert(
406     $rsrc,
407     { %current_rowdata }, # what to insert, copy because the storage *will* change it
408   );
409
410   for (keys %$returned_cols) {
411     $self->store_column($_, $returned_cols->{$_})
412       # this ensures we fire store_column only once
413       # (some asshats like overriding it)
414       if (
415         (!exists $current_rowdata{$_})
416           or
417         (defined $current_rowdata{$_} xor defined $returned_cols->{$_})
418           or
419         (
420           defined $current_rowdata{$_}
421             and
422           # one of the few spots doing forced-stringification
423           # needed to work around objects with defined stringification
424           # but *without* overloaded comparison (ugh!)
425           "$current_rowdata{$_}" ne "$returned_cols->{$_}"
426         )
427       );
428   }
429
430   delete $self->{_column_data_in_storage};
431   $self->in_storage(1);
432
433   $self->{_dirty_columns} = {};
434   $self->{related_resultsets} = {};
435
436   foreach my $rel_name (keys %related_stuff) {
437     next unless $rsrc->has_relationship ($rel_name);
438
439     my @cands = ref $related_stuff{$rel_name} eq 'ARRAY'
440       ? @{$related_stuff{$rel_name}}
441       : $related_stuff{$rel_name}
442     ;
443
444     if (@cands && blessed $cands[0] && $cands[0]->isa(__PACKAGE__)
445     ) {
446       my $reverse = $rsrc->reverse_relationship_info($rel_name);
447       foreach my $obj (@cands) {
448         $obj->set_from_related($_, $self) for keys %$reverse;
449         if ($self->__their_pk_needs_us($rel_name)) {
450           if (exists $self->{_ignore_at_insert}{$rel_name}) {
451             MULTICREATE_DEBUG and print STDERR "MC $self skipping post-insert on $rel_name\n";
452           }
453           else {
454             MULTICREATE_DEBUG and print STDERR "MC $self inserting $rel_name $obj\n";
455             $obj->insert;
456           }
457         } else {
458           MULTICREATE_DEBUG and print STDERR "MC $self post-inserting $obj\n";
459           $obj->insert();
460         }
461       }
462     }
463   }
464
465   delete $self->{_ignore_at_insert};
466
467   $rollback_guard->commit if $rollback_guard;
468
469   return $self;
470 }
471
472 =head2 in_storage
473
474   $result->in_storage; # Get value
475   $result->in_storage(1); # Set value
476
477 =over
478
479 =item Arguments: none or 1|0
480
481 =item Return Value: 1|0
482
483 =back
484
485 Indicates whether the object exists as a row in the database or
486 not. This is set to true when L<DBIx::Class::ResultSet/find>,
487 L<DBIx::Class::ResultSet/create> or L<DBIx::Class::Row/insert>
488 are invoked.
489
490 Creating a result object using L<DBIx::Class::ResultSet/new_result>, or
491 calling L</delete> on one, sets it to false.
492
493
494 =head2 update
495
496   $result->update(\%columns?)
497
498 =over
499
500 =item Arguments: none or a hashref
501
502 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
503
504 =back
505
506 Throws an exception if the result object is not yet in the database,
507 according to L</in_storage>. Returns the object itself.
508
509 This method issues an SQL UPDATE query to commit any changes to the
510 object to the database if required (see L</get_dirty_columns>).
511 It throws an exception if a proper WHERE clause uniquely identifying
512 the database row can not be constructed (see
513 L<significance of primary keys|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
514 for more details).
515
516 Also takes an optional hashref of C<< column_name => value >> pairs
517 to update on the object first. Be aware that the hashref will be
518 passed to C<set_inflated_columns>, which might edit it in place, so
519 don't rely on it being the same after a call to C<update>.  If you
520 need to preserve the hashref, it is sufficient to pass a shallow copy
521 to C<update>, e.g. ( { %{ $href } } )
522
523 If the values passed or any of the column values set on the object
524 contain scalar references, e.g.:
525
526   $result->last_modified(\'NOW()')->update();
527   # OR
528   $result->update({ last_modified => \'NOW()' });
529
530 The update will pass the values verbatim into SQL. (See
531 L<SQL::Abstract> docs).  The values in your Result object will NOT change
532 as a result of the update call, if you want the object to be updated
533 with the actual values from the database, call L</discard_changes>
534 after the update.
535
536   $result->update()->discard_changes();
537
538 To determine before calling this method, which column values have
539 changed and will be updated, call L</get_dirty_columns>.
540
541 To check if any columns will be updated, call L</is_changed>.
542
543 To force a column to be updated, call L</make_column_dirty> before
544 this method.
545
546 =cut
547
548 sub update {
549   my ($self, $upd) = @_;
550
551   $self->set_inflated_columns($upd) if $upd;
552
553   my %to_update = $self->get_dirty_columns
554     or return $self;
555
556   $self->throw_exception( "Not in database" ) unless $self->in_storage;
557
558   my $rows = $self->result_source->schema->storage->update(
559     $self->result_source, \%to_update, $self->_storage_ident_condition
560   );
561   if ($rows == 0) {
562     $self->throw_exception( "Can't update ${self}: row not found" );
563   } elsif ($rows > 1) {
564     $self->throw_exception("Can't update ${self}: updated more than one row");
565   }
566   $self->{_dirty_columns} = {};
567   $self->{related_resultsets} = {};
568   delete $self->{_column_data_in_storage};
569   return $self;
570 }
571
572 =head2 delete
573
574   $result->delete
575
576 =over
577
578 =item Arguments: none
579
580 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
581
582 =back
583
584 Throws an exception if the object is not in the database according to
585 L</in_storage>. Also throws an exception if a proper WHERE clause
586 uniquely identifying the database row can not be constructed (see
587 L<significance of primary keys|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
588 for more details).
589
590 The object is still perfectly usable, but L</in_storage> will
591 now return 0 and the object must be reinserted using L</insert>
592 before it can be used to L</update> the row again.
593
594 If you delete an object in a class with a C<has_many> relationship, an
595 attempt is made to delete all the related objects as well. To turn
596 this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
597 hashref of the relationship, see L<DBIx::Class::Relationship>. Any
598 database-level cascade or restrict will take precedence over a
599 DBIx-Class-based cascading delete, since DBIx-Class B<deletes the
600 main row first> and only then attempts to delete any remaining related
601 rows.
602
603 If you delete an object within a txn_do() (see L<DBIx::Class::Storage/txn_do>)
604 and the transaction subsequently fails, the result object will remain marked as
605 not being in storage. If you know for a fact that the object is still in
606 storage (i.e. by inspecting the cause of the transaction's failure), you can
607 use C<< $obj->in_storage(1) >> to restore consistency between the object and
608 the database. This would allow a subsequent C<< $obj->delete >> to work
609 as expected.
610
611 See also L<DBIx::Class::ResultSet/delete>.
612
613 =cut
614
615 sub delete {
616   my $self = shift;
617   if (ref $self) {
618     $self->throw_exception( "Not in database" ) unless $self->in_storage;
619
620     $self->result_source->schema->storage->delete(
621       $self->result_source, $self->_storage_ident_condition
622     );
623
624     delete $self->{_column_data_in_storage};
625     $self->in_storage(0);
626   }
627   else {
628     my $attrs = @_ > 1 && ref $_[-1] eq 'HASH' ? { %{pop(@_)} } : {};
629     my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
630     $self->result_source->resultset->search_rs(@_)->delete;
631   }
632   return $self;
633 }
634
635 =head2 get_column
636
637   my $val = $result->get_column($col);
638
639 =over
640
641 =item Arguments: $columnname
642
643 =item Return Value: The value of the column
644
645 =back
646
647 Throws an exception if the column name given doesn't exist according
648 to L<has_column|DBIx::Class::ResultSource/has_column>.
649
650 Returns a raw column value from the result object, if it has already
651 been fetched from the database or set by an accessor.
652
653 If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
654 will be deflated and returned.
655
656 Note that if you used the C<columns> or the C<select/as>
657 L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
658 which C<$result> was derived, and B<did not include> C<$columnname> in the list,
659 this method will return C<undef> even if the database contains some value.
660
661 To retrieve all loaded column values as a hash, use L</get_columns>.
662
663 =cut
664
665 sub get_column {
666   my ($self, $column) = @_;
667   $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
668
669   return $self->{_column_data}{$column}
670     if exists $self->{_column_data}{$column};
671
672   if (exists $self->{_inflated_column}{$column}) {
673     # deflate+return cycle
674     return $self->store_column($column, $self->_deflated_column(
675       $column, $self->{_inflated_column}{$column}
676     ));
677   }
678
679   $self->throw_exception( "No such column '${column}' on " . ref $self )
680     unless $self->result_source->has_column($column);
681
682   return undef;
683 }
684
685 =head2 has_column_loaded
686
687   if ( $result->has_column_loaded($col) ) {
688      print "$col has been loaded from db";
689   }
690
691 =over
692
693 =item Arguments: $columnname
694
695 =item Return Value: 0|1
696
697 =back
698
699 Returns a true value if the column value has been loaded from the
700 database (or set locally).
701
702 =cut
703
704 sub has_column_loaded {
705   my ($self, $column) = @_;
706   $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
707
708   return (
709     exists $self->{_inflated_column}{$column}
710       or
711     exists $self->{_column_data}{$column}
712   ) ? 1 : 0;
713 }
714
715 =head2 get_columns
716
717   my %data = $result->get_columns;
718
719 =over
720
721 =item Arguments: none
722
723 =item Return Value: A hash of columnname, value pairs.
724
725 =back
726
727 Returns all loaded column data as a hash, containing raw values. To
728 get just one value for a particular column, use L</get_column>.
729
730 See L</get_inflated_columns> to get the inflated values.
731
732 =cut
733
734 sub get_columns {
735   my $self = shift;
736   if (exists $self->{_inflated_column}) {
737     # deflate cycle for each inflation, including filter rels
738     foreach my $col (keys %{$self->{_inflated_column}}) {
739       unless (exists $self->{_column_data}{$col}) {
740
741         # if cached related_resultset is present assume this was a prefetch
742         carp_unique(
743           "Returning primary keys of prefetched 'filter' rels as part of get_columns() is deprecated and will "
744         . 'eventually be removed entirely (set DBIC_COLUMNS_INCLUDE_FILTER_RELS to disable this warning)'
745         ) if (
746           ! $ENV{DBIC_COLUMNS_INCLUDE_FILTER_RELS}
747             and
748           defined $self->{related_resultsets}{$col}
749             and
750           defined $self->{related_resultsets}{$col}->get_cache
751         );
752
753         $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}));
754       }
755     }
756   }
757   return %{$self->{_column_data}};
758 }
759
760 =head2 get_dirty_columns
761
762   my %data = $result->get_dirty_columns;
763
764 =over
765
766 =item Arguments: none
767
768 =item Return Value: A hash of column, value pairs
769
770 =back
771
772 Only returns the column, value pairs for those columns that have been
773 changed on this object since the last L</update> or L</insert> call.
774
775 See L</get_columns> to fetch all column/value pairs.
776
777 =cut
778
779 sub get_dirty_columns {
780   my $self = shift;
781   return map { $_ => $self->{_column_data}{$_} }
782            keys %{$self->{_dirty_columns}};
783 }
784
785 =head2 make_column_dirty
786
787   $result->make_column_dirty($col)
788
789 =over
790
791 =item Arguments: $columnname
792
793 =item Return Value: not defined
794
795 =back
796
797 Throws an exception if the column does not exist.
798
799 Marks a column as having been changed regardless of whether it has
800 really changed.
801
802 =cut
803
804 sub make_column_dirty {
805   my ($self, $column) = @_;
806
807   $self->throw_exception( "No such column '${column}' on " . ref $self )
808     unless exists $self->{_column_data}{$column} || $self->result_source->has_column($column);
809
810   # the entire clean/dirty code relies on exists, not on true/false
811   return 1 if exists $self->{_dirty_columns}{$column};
812
813   $self->{_dirty_columns}{$column} = 1;
814
815   # if we are just now making the column dirty, and if there is an inflated
816   # value, force it over the deflated one
817   if (exists $self->{_inflated_column}{$column}) {
818     $self->store_column($column,
819       $self->_deflated_column(
820         $column, $self->{_inflated_column}{$column}
821       )
822     );
823   }
824 }
825
826 =head2 get_inflated_columns
827
828   my %inflated_data = $obj->get_inflated_columns;
829
830 =over
831
832 =item Arguments: none
833
834 =item Return Value: A hash of column, object|value pairs
835
836 =back
837
838 Returns a hash of all column keys and associated values. Values for any
839 columns set to use inflation will be inflated and returns as objects.
840
841 See L</get_columns> to get the uninflated values.
842
843 See L<DBIx::Class::InflateColumn> for how to setup inflation.
844
845 =cut
846
847 sub get_inflated_columns {
848   my $self = shift;
849
850   my $loaded_colinfo = $self->result_source->columns_info;
851   $self->has_column_loaded($_) or delete $loaded_colinfo->{$_}
852     for keys %$loaded_colinfo;
853
854   my %cols_to_return = ( %{$self->{_column_data}}, %$loaded_colinfo );
855
856   unless ($ENV{DBIC_COLUMNS_INCLUDE_FILTER_RELS}) {
857     for (keys %$loaded_colinfo) {
858       # if cached related_resultset is present assume this was a prefetch
859       if (
860         $loaded_colinfo->{$_}{_inflate_info}
861           and
862         defined $self->{related_resultsets}{$_}
863           and
864         defined $self->{related_resultsets}{$_}->get_cache
865       ) {
866         carp_unique(
867           "Returning prefetched 'filter' rels as part of get_inflated_columns() is deprecated and will "
868         . 'eventually be removed entirely (set DBIC_COLUMNS_INCLUDE_FILTER_RELS to disable this warning)'
869         );
870         last;
871       }
872     }
873   }
874
875   map { $_ => (
876   (
877     ! exists $loaded_colinfo->{$_}
878       or
879     (
880       exists $loaded_colinfo->{$_}{accessor}
881         and
882       ! defined $loaded_colinfo->{$_}{accessor}
883     )
884   ) ? $self->get_column($_)
885     : $self->${ \(
886       defined $loaded_colinfo->{$_}{accessor}
887         ? $loaded_colinfo->{$_}{accessor}
888         : $_
889       )}
890   )} keys %cols_to_return;
891 }
892
893 sub _is_column_numeric {
894     my ($self, $column) = @_;
895
896     my $rsrc;
897
898     return undef
899       unless ( $rsrc = $self->result_source )->has_column($column);
900
901     my $colinfo = $rsrc->columns_info->{$column};
902
903     # cache for speed (the object may *not* have a resultsource instance)
904     if (
905       ! defined $colinfo->{is_numeric}
906         and
907       my $storage = dbic_internal_try { $rsrc->schema->storage }
908     ) {
909       $colinfo->{is_numeric} =
910         $storage->is_datatype_numeric ($colinfo->{data_type})
911           ? 1
912           : 0
913         ;
914     }
915
916     return $colinfo->{is_numeric};
917 }
918
919 =head2 set_column
920
921   $result->set_column($col => $val);
922
923 =over
924
925 =item Arguments: $columnname, $value
926
927 =item Return Value: $value
928
929 =back
930
931 Sets a raw column value. If the new value is different from the old one,
932 the column is marked as dirty for when you next call L</update>.
933
934 If passed an object or reference as a value, this method will happily
935 attempt to store it, and a later L</insert> or L</update> will try and
936 stringify/numify as appropriate. To set an object to be deflated
937 instead, see L</set_inflated_columns>, or better yet, use L</$column_accessor>.
938
939 =cut
940
941 sub set_column {
942   my ($self, $column, $new_value) = @_;
943
944   my $had_value = $self->has_column_loaded($column);
945   my $old_value = $self->get_column($column);
946
947   $new_value = $self->store_column($column, $new_value);
948
949   my $dirty =
950     $self->{_dirty_columns}{$column}
951       ||
952     ( $self->in_storage # no point tracking dirtyness on uninserted data
953       ? ! $self->_eq_column_values ($column, $old_value, $new_value)
954       : 1
955     )
956   ;
957
958   if ($dirty) {
959     # FIXME sadly the update code just checks for keys, not for their value
960     $self->{_dirty_columns}{$column} = 1;
961
962     # Clear out the relation/inflation cache related to this column
963     #
964     # FIXME - this is a quick *largely incorrect* hack, pending a more
965     # serious rework during the merge of single and filter rels
966     my $rel_names = $self->result_source->{_relationships};
967     for my $rel_name (keys %$rel_names) {
968
969       my $acc = $rel_names->{$rel_name}{attrs}{accessor} || '';
970
971       if ( $acc eq 'single' and $rel_names->{$rel_name}{attrs}{fk_columns}{$column} ) {
972         delete $self->{related_resultsets}{$rel_name};
973         delete $self->{_relationship_data}{$rel_name};
974         #delete $self->{_inflated_column}{$rel_name};
975       }
976       elsif ( $acc eq 'filter' and $rel_name eq $column) {
977         delete $self->{related_resultsets}{$rel_name};
978         #delete $self->{_relationship_data}{$rel_name};
979         delete $self->{_inflated_column}{$rel_name};
980       }
981     }
982
983     if (
984       # value change from something (even if NULL)
985       $had_value
986         and
987       # no storage - no storage-value
988       $self->in_storage
989         and
990       # no value already stored (multiple changes before commit to storage)
991       ! exists $self->{_column_data_in_storage}{$column}
992         and
993       $self->_track_storage_value($column)
994     ) {
995       $self->{_column_data_in_storage}{$column} = $old_value;
996     }
997   }
998
999   return $new_value;
1000 }
1001
1002 sub _eq_column_values {
1003   my ($self, $col, $old, $new) = @_;
1004
1005   if (defined $old xor defined $new) {
1006     return 0;
1007   }
1008   elsif (not defined $old) {  # both undef
1009     return 1;
1010   }
1011   elsif (
1012     is_literal_value $old
1013       or
1014     is_literal_value $new
1015   ) {
1016     return 0;
1017   }
1018   elsif ($old eq $new) {
1019     return 1;
1020   }
1021   elsif ($self->_is_column_numeric($col)) {  # do a numeric comparison if datatype allows it
1022     return $old == $new;
1023   }
1024   else {
1025     return 0;
1026   }
1027 }
1028
1029 # returns a boolean indicating if the passed column should have its original
1030 # value tracked between column changes and commitment to storage
1031 sub _track_storage_value {
1032   my ($self, $col) = @_;
1033   return scalar grep
1034     { $col eq $_ }
1035     $self->result_source->primary_columns
1036   ;
1037 }
1038
1039 =head2 set_columns
1040
1041   $result->set_columns({ $col => $val, ... });
1042
1043 =over
1044
1045 =item Arguments: \%columndata
1046
1047 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
1048
1049 =back
1050
1051 Sets multiple column, raw value pairs at once.
1052
1053 Works as L</set_column>.
1054
1055 =cut
1056
1057 sub set_columns {
1058   my ($self, $values) = @_;
1059   $self->set_column( $_, $values->{$_} ) for keys %$values;
1060   return $self;
1061 }
1062
1063 =head2 set_inflated_columns
1064
1065   $result->set_inflated_columns({ $col => $val, $rel_name => $obj, ... });
1066
1067 =over
1068
1069 =item Arguments: \%columndata
1070
1071 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
1072
1073 =back
1074
1075 Sets more than one column value at once. Any inflated values are
1076 deflated and the raw values stored.
1077
1078 Any related values passed as Result objects, using the relation name as a
1079 key, are reduced to the appropriate foreign key values and stored. If
1080 instead of related result objects, a hashref of column, value data is
1081 passed, will create the related object first then store.
1082
1083 Will even accept arrayrefs of data as a value to a
1084 L<DBIx::Class::Relationship/has_many> key, and create the related
1085 objects if necessary.
1086
1087 Be aware that the input hashref might be edited in place, so don't rely
1088 on it being the same after a call to C<set_inflated_columns>. If you
1089 need to preserve the hashref, it is sufficient to pass a shallow copy
1090 to C<set_inflated_columns>, e.g. ( { %{ $href } } )
1091
1092 See also L<DBIx::Class::Relationship::Base/set_from_related>.
1093
1094 =cut
1095
1096 sub set_inflated_columns {
1097   my ( $self, $upd ) = @_;
1098
1099   my ($rsrc, $colinfos);
1100
1101   foreach my $key (keys %$upd) {
1102     if (ref $upd->{$key}) {
1103       $rsrc ||= $self->result_source;
1104       my $info = $rsrc->relationship_info($key);
1105       my $acc_type = $info->{attrs}{accessor} || '';
1106
1107       if ($acc_type eq 'single') {
1108         my $rel_obj = delete $upd->{$key};
1109         $self->set_from_related($key => $rel_obj);
1110         $self->{_relationship_data}{$key} = $rel_obj;
1111       }
1112       elsif ($acc_type eq 'multi') {
1113         $self->throw_exception(
1114           "Recursive update is not supported over relationships of type '$acc_type' ($key)"
1115         );
1116       }
1117       elsif (
1118         exists( (
1119           ( $colinfos ||= $rsrc->columns_info )->{$key}
1120             ||
1121           {}
1122         )->{_inflate_info} )
1123       ) {
1124         $self->set_inflated_column($key, delete $upd->{$key});
1125       }
1126     }
1127   }
1128   $self->set_columns($upd);
1129 }
1130
1131 =head2 copy
1132
1133   my $copy = $orig->copy({ change => $to, ... });
1134
1135 =over
1136
1137 =item Arguments: \%replacementdata
1138
1139 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass> copy
1140
1141 =back
1142
1143 Inserts a new row into the database, as a copy of the original
1144 object. If a hashref of replacement data is supplied, these will take
1145 precedence over data in the original. Also any columns which have
1146 the L<column info attribute|DBIx::Class::ResultSource/add_columns>
1147 C<< is_auto_increment => 1 >> are explicitly removed before the copy,
1148 so that the database can insert its own autoincremented values into
1149 the new object.
1150
1151 Relationships will be followed by the copy procedure B<only> if the
1152 relationship specifies a true value for its
1153 L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
1154 is set by default on C<has_many> relationships and unset on all others.
1155
1156 =cut
1157
1158 sub copy {
1159   my ($self, $changes) = @_;
1160   $changes ||= {};
1161   my $col_data = { $self->get_columns };
1162
1163   my $rsrc = $self->result_source;
1164
1165   my $colinfo = $rsrc->columns_info;
1166   foreach my $col (keys %$col_data) {
1167     delete $col_data->{$col}
1168       if ( ! $colinfo->{$col} or $colinfo->{$col}{is_auto_increment} );
1169   }
1170
1171   my $new = { _column_data => $col_data };
1172   bless $new, ref $self;
1173
1174   $new->result_source_instance($rsrc);
1175   $new->set_inflated_columns($changes);
1176   $new->insert;
1177
1178   # Its possible we'll have 2 relations to the same Source. We need to make
1179   # sure we don't try to insert the same row twice else we'll violate unique
1180   # constraints
1181   my $rel_names_copied = {};
1182
1183   foreach my $rel_name ($rsrc->relationships) {
1184     my $rel_info = $rsrc->relationship_info($rel_name);
1185
1186     next unless $rel_info->{attrs}{cascade_copy};
1187
1188     my $foreign_vals;
1189     my $copied = $rel_names_copied->{ $rel_info->{source} } ||= {};
1190
1191     $copied->{$_->ID}++ or $_->copy(
1192
1193       $foreign_vals ||= $rsrc->_resolve_relationship_condition(
1194         infer_values_based_on => {},
1195         rel_name => $rel_name,
1196         self_result_object => $new,
1197
1198         self_alias => "\xFE", # irrelevant
1199         foreign_alias => "\xFF", # irrelevant,
1200       )->{inferred_values}
1201
1202     ) for $self->related_resultset($rel_name)->all;
1203   }
1204   return $new;
1205 }
1206
1207 =head2 store_column
1208
1209   $result->store_column($col => $val);
1210
1211 =over
1212
1213 =item Arguments: $columnname, $value
1214
1215 =item Return Value: The value sent to storage
1216
1217 =back
1218
1219 Set a raw value for a column without marking it as changed. This
1220 method is used internally by L</set_column> which you should probably
1221 be using.
1222
1223 This is the lowest level at which data is set on a result object,
1224 extend this method to catch all data setting methods.
1225
1226 =cut
1227
1228 sub store_column {
1229   my ($self, $column, $value) = @_;
1230   $self->throw_exception( "No such column '${column}' on " . ref $self )
1231     unless exists $self->{_column_data}{$column} || $self->result_source->has_column($column);
1232   $self->throw_exception( "set_column called for ${column} without value" )
1233     if @_ < 3;
1234
1235   my $vref;
1236   $self->{_column_data}{$column} = (
1237     # unpack potential { -value => "foo" }
1238     ( length ref $value and $vref = is_plain_value( $value ) )
1239       ? $$vref
1240       : $value
1241   );
1242 }
1243
1244 =head2 inflate_result
1245
1246   Class->inflate_result($result_source, \%me, \%prefetch?)
1247
1248 =over
1249
1250 =item Arguments: L<$result_source|DBIx::Class::ResultSource>, \%columndata, \%prefetcheddata
1251
1252 =item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
1253
1254 =back
1255
1256 All L<DBIx::Class::ResultSet> methods that retrieve data from the
1257 database and turn it into result objects call this method.
1258
1259 Extend this method in your Result classes to hook into this process,
1260 for example to rebless the result into a different class.
1261
1262 Reblessing can also be done more easily by setting C<result_class> in
1263 your Result class. See L<DBIx::Class::ResultSource/result_class>.
1264
1265 Different types of results can also be created from a particular
1266 L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1267
1268 =cut
1269
1270 sub inflate_result {
1271   my ($class, $rsrc, $me, $prefetch) = @_;
1272
1273   my $new = bless
1274     { _column_data => $me, _result_source => $rsrc },
1275     ref $class || $class
1276   ;
1277
1278   if ($prefetch) {
1279     for my $rel_name ( keys %$prefetch ) {
1280
1281       my $relinfo = $rsrc->relationship_info($rel_name) or do {
1282         my $err = sprintf
1283           "Inflation into non-existent relationship '%s' of '%s' requested",
1284           $rel_name,
1285           $rsrc->source_name,
1286         ;
1287         if (my ($colname) = sort { length($a) <=> length ($b) } keys %{$prefetch->{$rel_name}[0] || {}} ) {
1288           $err .= sprintf ", check the inflation specification (columns/as) ending in '...%s.%s'",
1289           $rel_name,
1290           $colname,
1291         }
1292
1293         $rsrc->throw_exception($err);
1294       };
1295
1296       $class->throw_exception("No accessor type declared for prefetched relationship '$rel_name'")
1297         unless $relinfo->{attrs}{accessor};
1298
1299       my $rel_rs = $new->related_resultset($rel_name);
1300
1301       my @rel_objects;
1302       if (
1303         @{ $prefetch->{$rel_name} || [] }
1304           and
1305         ref($prefetch->{$rel_name}) ne $DBIx::Class::ResultSource::RowParser::Util::null_branch_class
1306       ) {
1307
1308         if (ref $prefetch->{$rel_name}[0] eq 'ARRAY') {
1309           my $rel_rsrc = $rel_rs->result_source;
1310           my $rel_class = $rel_rs->result_class;
1311           my $rel_inflator = $rel_class->can('inflate_result');
1312           @rel_objects = map
1313             { $rel_class->$rel_inflator ( $rel_rsrc, @$_ ) }
1314             @{$prefetch->{$rel_name}}
1315           ;
1316         }
1317         else {
1318           @rel_objects = $rel_rs->result_class->inflate_result(
1319             $rel_rs->result_source, @{$prefetch->{$rel_name}}
1320           );
1321         }
1322       }
1323
1324       if ($relinfo->{attrs}{accessor} eq 'single') {
1325         $new->{_relationship_data}{$rel_name} = $rel_objects[0];
1326       }
1327       elsif ($relinfo->{attrs}{accessor} eq 'filter') {
1328         $new->{_inflated_column}{$rel_name} = $rel_objects[0];
1329       }
1330
1331       $rel_rs->set_cache(\@rel_objects);
1332     }
1333   }
1334
1335   $new->in_storage (1);
1336   return $new;
1337 }
1338
1339 =head2 update_or_insert
1340
1341   $result->update_or_insert
1342
1343 =over
1344
1345 =item Arguments: none
1346
1347 =item Return Value: Result of update or insert operation
1348
1349 =back
1350
1351 L</update>s the object if it's already in the database, according to
1352 L</in_storage>, else L</insert>s it.
1353
1354 =head2 insert_or_update
1355
1356   $obj->insert_or_update
1357
1358 Alias for L</update_or_insert>
1359
1360 =cut
1361
1362 sub insert_or_update :DBIC_method_is_indirect_sugar {
1363   DBIx::Class::_ENV_::ASSERT_NO_INTERNAL_INDIRECT_CALLS and fail_on_internal_call;
1364   shift->update_or_insert(@_);
1365 }
1366
1367 sub update_or_insert {
1368   my $self = shift;
1369   return ($self->in_storage ? $self->update : $self->insert);
1370 }
1371
1372 =head2 is_changed
1373
1374   my @changed_col_names = $result->is_changed();
1375   if ($result->is_changed()) { ... }
1376
1377 =over
1378
1379 =item Arguments: none
1380
1381 =item Return Value: 0|1 or @columnnames
1382
1383 =back
1384
1385 In list context returns a list of columns with uncommited changes, or
1386 in scalar context returns a true value if there are uncommitted
1387 changes.
1388
1389 =cut
1390
1391 sub is_changed {
1392   return keys %{shift->{_dirty_columns} || {}};
1393 }
1394
1395 =head2 is_column_changed
1396
1397   if ($result->is_column_changed('col')) { ... }
1398
1399 =over
1400
1401 =item Arguments: $columname
1402
1403 =item Return Value: 0|1
1404
1405 =back
1406
1407 Returns a true value if the column has uncommitted changes.
1408
1409 =cut
1410
1411 sub is_column_changed {
1412   my( $self, $col ) = @_;
1413   return exists $self->{_dirty_columns}->{$col};
1414 }
1415
1416 =head2 result_source
1417
1418   my $resultsource = $result->result_source;
1419
1420 =over
1421
1422 =item Arguments: L<$result_source?|DBIx::Class::ResultSource>
1423
1424 =item Return Value: L<$result_source|DBIx::Class::ResultSource>
1425
1426 =back
1427
1428 Accessor to the L<DBIx::Class::ResultSource> this object was created from.
1429
1430 =cut
1431
1432 sub result_source :DBIC_method_is_indirect_sugar {
1433   # While getter calls are routed through here for sensible exception text
1434   # it makes no sense to have setters do the same thing
1435   DBIx::Class::_ENV_::ASSERT_NO_INTERNAL_INDIRECT_CALLS
1436     and
1437   @_ > 1
1438     and
1439   fail_on_internal_call;
1440
1441   # this is essentially a `shift->result_source_instance(@_)` with handholding
1442   &{
1443     $_[0]->can('result_source_instance')
1444       ||
1445     $_[0]->throw_exception(
1446       "No ResultSource instance registered for '@{[ $_[0] ]}', did you forget to call @{[ ref $_[0] || $_[0] ]}->table(...) ?"
1447     )
1448   };
1449 }
1450
1451 =head2 register_column
1452
1453   $column_info = { .... };
1454   $class->register_column($column_name, $column_info);
1455
1456 =over
1457
1458 =item Arguments: $columnname, \%columninfo
1459
1460 =item Return Value: not defined
1461
1462 =back
1463
1464 Registers a column on the class. If the column_info has an 'accessor'
1465 key, creates an accessor named after the value if defined; if there is
1466 no such key, creates an accessor with the same name as the column
1467
1468 The column_info attributes are described in
1469 L<DBIx::Class::ResultSource/add_columns>
1470
1471 =cut
1472
1473 sub register_column {
1474   my ($class, $col, $info) = @_;
1475   my $acc = $col;
1476   if (exists $info->{accessor}) {
1477     return unless defined $info->{accessor};
1478     $acc = [ $info->{accessor}, $col ];
1479   }
1480   $class->mk_group_accessors('column' => $acc);
1481 }
1482
1483 =head2 get_from_storage
1484
1485   my $copy = $result->get_from_storage($attrs)
1486
1487 =over
1488
1489 =item Arguments: \%attrs
1490
1491 =item Return Value: A Result object
1492
1493 =back
1494
1495 Fetches a fresh copy of the Result object from the database and returns it.
1496 Throws an exception if a proper WHERE clause identifying the database row
1497 can not be constructed (i.e. if the original object does not contain its
1498 entire
1499  L<primary key|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
1500 ). If passed the \%attrs argument, will first apply these attributes to
1501 the resultset used to find the row.
1502
1503 This copy can then be used to compare to an existing result object, to
1504 determine if any changes have been made in the database since it was
1505 created.
1506
1507 To just update your Result object with any latest changes from the
1508 database, use L</discard_changes> instead.
1509
1510 The \%attrs argument should be compatible with
1511 L<DBIx::Class::ResultSet/ATTRIBUTES>.
1512
1513 =cut
1514
1515 sub get_from_storage {
1516     my $self = shift @_;
1517     my $attrs = shift @_;
1518     my $resultset = $self->result_source->resultset;
1519
1520     if(defined $attrs) {
1521       $resultset = $resultset->search(undef, $attrs);
1522     }
1523
1524     return $resultset->find($self->_storage_ident_condition);
1525 }
1526
1527 =head2 discard_changes
1528
1529   $result->discard_changes
1530
1531 =over
1532
1533 =item Arguments: none or $attrs
1534
1535 =item Return Value: self (updates object in-place)
1536
1537 =back
1538
1539 Re-selects the row from the database, losing any changes that had
1540 been made. Throws an exception if a proper C<WHERE> clause identifying
1541 the database row can not be constructed (i.e. if the original object
1542 does not contain its entire
1543 L<primary key|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>).
1544
1545 This method can also be used to refresh from storage, retrieving any
1546 changes made since the row was last read from storage.
1547
1548 $attrs, if supplied, is expected to be a hashref of attributes suitable for passing as the
1549 second argument to C<< $resultset->search($cond, $attrs) >>;
1550
1551 Note: If you are using L<DBIx::Class::Storage::DBI::Replicated> as your
1552 storage, a default of
1553 L<< C<< { force_pool => 'master' } >>
1554 |DBIx::Class::Storage::DBI::Replicated/SYNOPSIS >>  is automatically set for
1555 you. Prior to C<< DBIx::Class 0.08109 >> (before 2010) one would have been
1556 required to explicitly wrap the entire operation in a transaction to guarantee
1557 that up-to-date results are read from the master database.
1558
1559 =cut
1560
1561 sub discard_changes {
1562   my ($self, $attrs) = @_;
1563   return unless $self->in_storage; # Don't reload if we aren't real!
1564
1565   # add a replication default to read from the master only
1566   $attrs = { force_pool => 'master', %{$attrs||{}} };
1567
1568   if( my $current_storage = $self->get_from_storage($attrs)) {
1569
1570     # Set $self to the current.
1571     %$self = %$current_storage;
1572
1573     # Avoid a possible infinite loop with
1574     # sub DESTROY { $_[0]->discard_changes }
1575     bless $current_storage, 'Do::Not::Exist';
1576
1577     return $self;
1578   }
1579   else {
1580     $self->in_storage(0);
1581     return $self;
1582   }
1583 }
1584
1585 =head2 throw_exception
1586
1587 See L<DBIx::Class::Schema/throw_exception>.
1588
1589 =cut
1590
1591 sub throw_exception {
1592   my $self=shift;
1593
1594   if (
1595     ! DBIx::Class::_Util::in_internal_try
1596       and
1597     # FIXME - the try is 99% superfluous, but just in case
1598     my $rsrc = dbic_internal_try { $self->result_source_instance }
1599   ) {
1600     $rsrc->throw_exception(@_)
1601   }
1602   else {
1603     DBIx::Class::Exception->throw(@_);
1604   }
1605 }
1606
1607 =head2 id
1608
1609   my @pk = $result->id;
1610
1611 =over
1612
1613 =item Arguments: none
1614
1615 =item Returns: A list of primary key values
1616
1617 =back
1618
1619 Returns the primary key(s) for a row. Can't be called as a class method.
1620 Actually implemented in L<DBIx::Class::PK>
1621
1622 =head1 FURTHER QUESTIONS?
1623
1624 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
1625
1626 =head1 COPYRIGHT AND LICENSE
1627
1628 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1629 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1630 redistribute it and/or modify it under the same terms as the
1631 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
1632
1633 =cut
1634
1635 1;