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