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