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