1 package DBIx::Class::Row;
6 use base qw/DBIx::Class/;
7 use Carp::Clan qw/^DBIx::Class/;
17 $ENV{DBIC_MULTICREATE_DEBUG}
22 __PACKAGE__->mk_group_accessors('simple' => qw/_source_handle/);
26 DBIx::Class::Row - Basic row methods
32 This class is responsible for defining and doing basic operations on rows
33 derived from L<DBIx::Class::ResultSource> objects.
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.
48 my $row = My::Class->new(\%attrs);
50 my $row = $schema->resultset('MySource')->new(\%colsandvalues);
54 =item Arguments: \%attrs or \%colsandvalues
56 =item Returns: A Row object
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.
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.
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>.
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
78 For a more involved explanation, see L<DBIx::Class::ResultSet/create>.
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.
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
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
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)
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)
120 ->find_or_new($data);
122 MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new_related";
123 return $self->find_or_new_related($relname, $data);
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);
141 my ($class, $attrs) = @_;
142 $class = ref $class if ref $class;
149 if (my $handle = delete $attrs->{-source_handle}) {
150 $new->_source_handle($handle);
154 if ($source = delete $attrs->{-result_source}) {
155 $new->result_source($source);
158 if (my $related = delete $attrs->{-from_resultset}) {
159 @{$new->{_ignore_at_insert}={}}{@$related} = ();
163 $new->throw_exception("attrs must be a hashref")
164 unless ref($attrs) eq 'HASH';
166 my ($related,$inflated);
168 foreach my $key (keys %$attrs) {
169 if (ref $attrs->{$key}) {
170 ## Can we extract this lot to use with update(_or .. ) ?
171 confess "Can't do multi-create without result source" unless $source;
172 my $info = $source->relationship_info($key);
173 if ($info && $info->{attrs}{accessor}
174 && $info->{attrs}{accessor} 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);
181 if ($rel_obj->in_storage) {
182 $new->{_rel_in_storage}{$key} = 1;
183 $new->set_from_related($key, $rel_obj);
185 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj\n";
188 $related->{$key} = $rel_obj;
190 } elsif ($info && $info->{attrs}{accessor}
191 && $info->{attrs}{accessor} eq 'multi'
192 && ref $attrs->{$key} eq 'ARRAY') {
193 my $others = delete $attrs->{$key};
194 my $total = @$others;
196 foreach my $idx (0 .. $#$others) {
197 my $rel_obj = $others->[$idx];
198 if(!Scalar::Util::blessed($rel_obj)) {
199 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
202 if ($rel_obj->in_storage) {
203 $rel_obj->throw_exception ('A multi relationship can not be pre-existing when doing multicreate. Something went wrong');
205 MULTICREATE_DEBUG and
206 warn "MC $new uninserted $key $rel_obj (${\($idx+1)} of $total)\n";
208 push(@objects, $rel_obj);
210 $related->{$key} = \@objects;
212 } elsif ($info && $info->{attrs}{accessor}
213 && $info->{attrs}{accessor} eq 'filter')
215 ## 'filter' should disappear and get merged in with 'single' above!
216 my $rel_obj = delete $attrs->{$key};
217 if(!Scalar::Util::blessed($rel_obj)) {
218 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
220 if ($rel_obj->in_storage) {
221 $new->{_rel_in_storage}{$key} = 1;
224 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj";
226 $inflated->{$key} = $rel_obj;
228 } elsif ($class->has_column($key)
229 && $class->column_info($key)->{_inflate_info}) {
230 $inflated->{$key} = $attrs->{$key};
234 $new->throw_exception("No such column $key on $class")
235 unless $class->has_column($key);
236 $new->store_column($key => $attrs->{$key});
239 $new->{_relationship_data} = $related if $related;
240 $new->{_inflated_column} = $inflated if $inflated;
252 =item Arguments: none
254 =item Returns: The Row object
258 Inserts an object previously created by L</new> into the database if
259 it isn't already in there. Returns the object itself. Requires the
260 object's result source to be set, or the class to have a
261 result_source_instance method. To insert an entirely new row into
262 the database, use C<create> (see L<DBIx::Class::ResultSet/create>).
264 To fetch an uninserted row object, call
265 L<new|DBIx::Class::ResultSet/new> on a resultset.
267 This will also insert any uninserted, related objects held inside this
268 one, see L<DBIx::Class::ResultSet/create> for more details.
274 return $self if $self->in_storage;
275 my $source = $self->result_source;
276 $source ||= $self->result_source($self->result_source_instance)
277 if $self->can('result_source_instance');
278 $self->throw_exception("No result_source set on this object; can't insert")
283 # Check if we stored uninserted relobjs here in new()
284 my %related_stuff = (%{$self->{_relationship_data} || {}},
285 %{$self->{_inflated_column} || {}});
287 # insert what needs to be inserted before us
289 for my $relname (keys %related_stuff) {
290 my $rel_obj = $related_stuff{$relname};
292 if (! $self->{_rel_in_storage}{$relname}) {
293 next unless (Scalar::Util::blessed($rel_obj)
294 && $rel_obj->isa('DBIx::Class::Row'));
296 next unless $source->_pk_depends_on(
297 $relname, { $rel_obj->get_columns }
300 # The guard will save us if we blow out of this scope via die
301 $rollback_guard ||= $source->storage->txn_scope_guard;
303 MULTICREATE_DEBUG and warn "MC $self pre-reconstructing $relname $rel_obj\n";
305 my $them = { %{$rel_obj->{_relationship_data} || {} }, $rel_obj->get_inflated_columns };
306 my $re = $self->result_source
307 ->related_source($relname)
309 ->find_or_create($them);
311 %{$rel_obj} = %{$re};
312 $self->{_rel_in_storage}{$relname} = 1;
315 $self->set_from_related($relname, $rel_obj);
316 delete $related_stuff{$relname};
319 # start a transaction here if not started yet and there is more stuff
321 if (keys %related_stuff) {
322 $rollback_guard ||= $source->storage->txn_scope_guard
325 MULTICREATE_DEBUG and do {
326 no warnings 'uninitialized';
327 warn "MC $self inserting (".join(', ', $self->get_columns).")\n";
329 my $updated_cols = $source->storage->insert($source, { $self->get_columns });
330 foreach my $col (keys %$updated_cols) {
331 $self->store_column($col, $updated_cols->{$col});
335 my @auto_pri = grep {
336 (not defined $self->get_column($_))
338 (ref($self->get_column($_)) eq 'SCALAR')
339 } $self->primary_columns;
342 MULTICREATE_DEBUG and warn "MC $self fetching missing PKs ".join(', ', @auto_pri)."\n";
343 my $storage = $self->result_source->storage;
344 $self->throw_exception( "Missing primary key but Storage doesn't support last_insert_id" )
345 unless $storage->can('last_insert_id');
346 my @ids = $storage->last_insert_id($self->result_source,@auto_pri);
347 $self->throw_exception( "Can't get last insert id" )
348 unless (@ids == @auto_pri);
349 $self->store_column($auto_pri[$_] => $ids[$_]) for 0 .. $#ids;
353 $self->{_dirty_columns} = {};
354 $self->{related_resultsets} = {};
356 foreach my $relname (keys %related_stuff) {
357 my $rel_obj = $related_stuff{$relname};
359 if (Scalar::Util::blessed($rel_obj)
360 && $rel_obj->isa('DBIx::Class::Row'))
364 elsif (ref $rel_obj eq 'ARRAY') {
369 my $reverse = $source->reverse_relationship_info($relname);
370 foreach my $obj (@cands) {
371 $obj->set_from_related($_, $self) for keys %$reverse;
372 my $them = { %{$obj->{_relationship_data} || {} }, $obj->get_inflated_columns };
373 if ($self->__their_pk_needs_us($relname, $them)) {
374 if (exists $self->{_ignore_at_insert}{$relname}) {
375 MULTICREATE_DEBUG and warn "MC $self skipping post-insert on $relname";
377 MULTICREATE_DEBUG and warn "MC $self re-creating $relname $obj";
378 my $re = $self->result_source
379 ->related_source($relname)
383 MULTICREATE_DEBUG and warn "MC $self new $relname $obj";
386 MULTICREATE_DEBUG and warn "MC $self post-inserting $obj";
393 $self->in_storage(1);
394 delete $self->{_orig_ident};
395 delete $self->{_ignore_at_insert};
396 $rollback_guard->commit if $rollback_guard;
403 $row->in_storage; # Get value
404 $row->in_storage(1); # Set value
408 =item Arguments: none or 1|0
414 Indicates whether the object exists as a row in the database or
415 not. This is set to true when L<DBIx::Class::ResultSet/find>,
416 L<DBIx::Class::ResultSet/create> or L<DBIx::Class::ResultSet/insert>
419 Creating a row object using L<DBIx::Class::ResultSet/new>, or calling
420 L</delete> on one, sets it to false.
425 my ($self, $val) = @_;
426 $self->{_in_storage} = $val if @_ > 1;
427 return $self->{_in_storage};
432 $row->update(\%columns?)
436 =item Arguments: none or a hashref
438 =item Returns: The Row object
442 Throws an exception if the row object is not yet in the database,
443 according to L</in_storage>.
445 This method issues an SQL UPDATE query to commit any changes to the
446 object to the database if required.
448 Also takes an optional hashref of C<< column_name => value> >> pairs
449 to update on the object first. Be aware that the hashref will be
450 passed to C<set_inflated_columns>, which might edit it in place, so
451 don't rely on it being the same after a call to C<update>. If you
452 need to preserve the hashref, it is sufficient to pass a shallow copy
453 to C<update>, e.g. ( { %{ $href } } )
455 If the values passed or any of the column values set on the object
456 contain scalar references, eg:
458 $row->last_modified(\'NOW()');
460 $row->update({ last_modified => \'NOW()' });
462 The update will pass the values verbatim into SQL. (See
463 L<SQL::Abstract> docs). The values in your Row object will NOT change
464 as a result of the update call, if you want the object to be updated
465 with the actual values from the database, call L</discard_changes>
468 $row->update()->discard_changes();
470 To determine before calling this method, which column values have
471 changed and will be updated, call L</get_dirty_columns>.
473 To check if any columns will be updated, call L</is_changed>.
475 To force a column to be updated, call L</make_column_dirty> before
481 my ($self, $upd) = @_;
482 $self->throw_exception( "Not in database" ) unless $self->in_storage;
483 my $ident_cond = $self->ident_condition;
484 $self->throw_exception("Cannot safely update a row in a PK-less table")
485 if ! keys %$ident_cond;
487 $self->set_inflated_columns($upd) if $upd;
488 my %to_update = $self->get_dirty_columns;
489 return $self unless keys %to_update;
490 my $rows = $self->result_source->storage->update(
491 $self->result_source, \%to_update,
492 $self->{_orig_ident} || $ident_cond
495 $self->throw_exception( "Can't update ${self}: row not found" );
496 } elsif ($rows > 1) {
497 $self->throw_exception("Can't update ${self}: updated more than one row");
499 $self->{_dirty_columns} = {};
500 $self->{related_resultsets} = {};
501 undef $self->{_orig_ident};
511 =item Arguments: none
513 =item Returns: The Row object
517 Throws an exception if the object is not in the database according to
518 L</in_storage>. Runs an SQL DELETE statement using the primary key
519 values to locate the row.
521 The object is still perfectly usable, but L</in_storage> will
522 now return 0 and the object must be reinserted using L</insert>
523 before it can be used to L</update> the row again.
525 If you delete an object in a class with a C<has_many> relationship, an
526 attempt is made to delete all the related objects as well. To turn
527 this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
528 hashref of the relationship, see L<DBIx::Class::Relationship>. Any
529 database-level cascade or restrict will take precedence over a
530 DBIx-Class-based cascading delete.
532 If you delete an object within a txn_do() (see L<DBIx::Class::Storage/txn_do>)
533 and the transaction subsequently fails, the row object will remain marked as
534 not being in storage. If you know for a fact that the object is still in
535 storage (i.e. by inspecting the cause of the transaction's failure), you can
536 use C<< $obj->in_storage(1) >> to restore consistency between the object and
537 the database. This would allow a subsequent C<< $obj->delete >> to work
540 See also L<DBIx::Class::ResultSet/delete>.
547 $self->throw_exception( "Not in database" ) unless $self->in_storage;
548 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
549 $self->throw_exception("Cannot safely delete a row in a PK-less table")
550 if ! keys %$ident_cond;
551 foreach my $column (keys %$ident_cond) {
552 $self->throw_exception("Can't delete the object unless it has loaded the primary keys")
553 unless exists $self->{_column_data}{$column};
555 $self->result_source->storage->delete(
556 $self->result_source, $ident_cond);
557 $self->in_storage(undef);
559 $self->throw_exception("Can't do class delete without a ResultSource instance")
560 unless $self->can('result_source_instance');
561 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
562 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
563 $self->result_source_instance->resultset->search(@_)->delete;
570 my $val = $row->get_column($col);
574 =item Arguments: $columnname
576 =item Returns: The value of the column
580 Throws an exception if the column name given doesn't exist according
583 Returns a raw column value from the row object, if it has already
584 been fetched from the database or set by an accessor.
586 If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
587 will be deflated and returned.
589 Note that if you used the C<columns> or the C<select/as>
590 L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
591 which C<$row> was derived, and B<did not include> C<$columnname> in the list,
592 this method will return C<undef> even if the database contains some value.
594 To retrieve all loaded column values as a hash, use L</get_columns>.
599 my ($self, $column) = @_;
600 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
601 return $self->{_column_data}{$column} if exists $self->{_column_data}{$column};
602 if (exists $self->{_inflated_column}{$column}) {
603 return $self->store_column($column,
604 $self->_deflated_column($column, $self->{_inflated_column}{$column}));
606 $self->throw_exception( "No such column '${column}'" ) unless $self->has_column($column);
610 =head2 has_column_loaded
612 if ( $row->has_column_loaded($col) ) {
613 print "$col has been loaded from db";
618 =item Arguments: $columnname
624 Returns a true value if the column value has been loaded from the
625 database (or set locally).
629 sub has_column_loaded {
630 my ($self, $column) = @_;
631 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
632 return 1 if exists $self->{_inflated_column}{$column};
633 return exists $self->{_column_data}{$column};
638 my %data = $row->get_columns;
642 =item Arguments: none
644 =item Returns: A hash of columnname, value pairs.
648 Returns all loaded column data as a hash, containing raw values. To
649 get just one value for a particular column, use L</get_column>.
651 See L</get_inflated_columns> to get the inflated values.
657 if (exists $self->{_inflated_column}) {
658 foreach my $col (keys %{$self->{_inflated_column}}) {
659 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}))
660 unless exists $self->{_column_data}{$col};
663 return %{$self->{_column_data}};
666 =head2 get_dirty_columns
668 my %data = $row->get_dirty_columns;
672 =item Arguments: none
674 =item Returns: A hash of column, value pairs
678 Only returns the column, value pairs for those columns that have been
679 changed on this object since the last L</update> or L</insert> call.
681 See L</get_columns> to fetch all column/value pairs.
685 sub get_dirty_columns {
687 return map { $_ => $self->{_column_data}{$_} }
688 keys %{$self->{_dirty_columns}};
691 =head2 make_column_dirty
693 $row->make_column_dirty($col)
697 =item Arguments: $columnname
699 =item Returns: undefined
703 Throws an exception if the column does not exist.
705 Marks a column as having been changed regardless of whether it has
709 sub make_column_dirty {
710 my ($self, $column) = @_;
712 $self->throw_exception( "No such column '${column}'" )
713 unless exists $self->{_column_data}{$column} || $self->has_column($column);
715 # the entire clean/dirty code relies on exists, not on true/false
716 return 1 if exists $self->{_dirty_columns}{$column};
718 $self->{_dirty_columns}{$column} = 1;
720 # if we are just now making the column dirty, and if there is an inflated
721 # value, force it over the deflated one
722 if (exists $self->{_inflated_column}{$column}) {
723 $self->store_column($column,
724 $self->_deflated_column(
725 $column, $self->{_inflated_column}{$column}
731 =head2 get_inflated_columns
733 my %inflated_data = $obj->get_inflated_columns;
737 =item Arguments: none
739 =item Returns: A hash of column, object|value pairs
743 Returns a hash of all column keys and associated values. Values for any
744 columns set to use inflation will be inflated and returns as objects.
746 See L</get_columns> to get the uninflated values.
748 See L<DBIx::Class::InflateColumn> for how to setup inflation.
752 sub get_inflated_columns {
755 my $accessor = $self->column_info($_)->{'accessor'} || $_;
756 ($_ => $self->$accessor);
757 } grep $self->has_column_loaded($_), $self->columns;
762 $row->set_column($col => $val);
766 =item Arguments: $columnname, $value
768 =item Returns: $value
772 Sets a raw column value. If the new value is different from the old one,
773 the column is marked as dirty for when you next call L</update>.
775 If passed an object or reference as a value, this method will happily
776 attempt to store it, and a later L</insert> or L</update> will try and
777 stringify/numify as appropriate. To set an object to be deflated
778 instead, see L</set_inflated_columns>.
783 my ($self, $column, $new_value) = @_;
785 $self->{_orig_ident} ||= $self->ident_condition;
786 my $old_value = $self->get_column($column);
788 $self->store_column($column, $new_value);
791 if (!$self->in_storage) { # no point tracking dirtyness on uninserted data
794 elsif (defined $old_value xor defined $new_value) {
797 elsif (not defined $old_value) { # both undef
800 elsif ($old_value eq $new_value) {
803 else { # do a numeric comparison if datatype allows it
804 my $colinfo = $self->column_info ($column);
806 # cache for speed (the object may *not* have a resultsource instance)
807 if (not defined $colinfo->{is_numeric} && $self->_source_handle) {
808 $colinfo->{is_numeric} =
809 $self->result_source->schema->storage->is_datatype_numeric ($colinfo->{data_type})
815 if ($colinfo->{is_numeric}) {
816 $dirty = $old_value != $new_value;
823 # sadly the update code just checks for keys, not for their value
824 $self->{_dirty_columns}{$column} = 1 if $dirty;
826 # XXX clear out the relation cache for this column
827 delete $self->{related_resultsets}{$column};
834 $row->set_columns({ $col => $val, ... });
838 =item Arguments: \%columndata
840 =item Returns: The Row object
844 Sets multiple column, raw value pairs at once.
846 Works as L</set_column>.
851 my ($self,$data) = @_;
852 foreach my $col (keys %$data) {
853 $self->set_column($col,$data->{$col});
858 =head2 set_inflated_columns
860 $row->set_inflated_columns({ $col => $val, $relname => $obj, ... });
864 =item Arguments: \%columndata
866 =item Returns: The Row object
870 Sets more than one column value at once. Any inflated values are
871 deflated and the raw values stored.
873 Any related values passed as Row objects, using the relation name as a
874 key, are reduced to the appropriate foreign key values and stored. If
875 instead of related row objects, a hashref of column, value data is
876 passed, will create the related object first then store.
878 Will even accept arrayrefs of data as a value to a
879 L<DBIx::Class::Relationship/has_many> key, and create the related
880 objects if necessary.
882 Be aware that the input hashref might be edited in place, so dont rely
883 on it being the same after a call to C<set_inflated_columns>. If you
884 need to preserve the hashref, it is sufficient to pass a shallow copy
885 to C<set_inflated_columns>, e.g. ( { %{ $href } } )
887 See also L<DBIx::Class::Relationship::Base/set_from_related>.
891 sub set_inflated_columns {
892 my ( $self, $upd ) = @_;
893 foreach my $key (keys %$upd) {
894 if (ref $upd->{$key}) {
895 my $info = $self->relationship_info($key);
896 if ($info && $info->{attrs}{accessor}
897 && $info->{attrs}{accessor} eq 'single')
899 my $rel = delete $upd->{$key};
900 $self->set_from_related($key => $rel);
901 $self->{_relationship_data}{$key} = $rel;
902 } elsif ($info && $info->{attrs}{accessor}
903 && $info->{attrs}{accessor} eq 'multi') {
904 $self->throw_exception(
905 "Recursive update is not supported over relationships of type multi ($key)"
908 elsif ($self->has_column($key)
909 && exists $self->column_info($key)->{_inflate_info})
911 $self->set_inflated_column($key, delete $upd->{$key});
915 $self->set_columns($upd);
920 my $copy = $orig->copy({ change => $to, ... });
924 =item Arguments: \%replacementdata
926 =item Returns: The Row object copy
930 Inserts a new row into the database, as a copy of the original
931 object. If a hashref of replacement data is supplied, these will take
932 precedence over data in the original. Also any columns which have
933 the L<column info attribute|DBIx::Class::ResultSource/add_columns>
934 C<< is_auto_increment => 1 >> are explicitly removed before the copy,
935 so that the database can insert its own autoincremented values into
938 Relationships will be followed by the copy procedure B<only> if the
939 relationship specifes a true value for its
940 L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
941 is set by default on C<has_many> relationships and unset on all others.
946 my ($self, $changes) = @_;
948 my $col_data = { %{$self->{_column_data}} };
949 foreach my $col (keys %$col_data) {
950 delete $col_data->{$col}
951 if $self->result_source->column_info($col)->{is_auto_increment};
954 my $new = { _column_data => $col_data };
955 bless $new, ref $self;
957 $new->result_source($self->result_source);
958 $new->set_inflated_columns($changes);
961 # Its possible we'll have 2 relations to the same Source. We need to make
962 # sure we don't try to insert the same row twice esle we'll violate unique
964 my $rels_copied = {};
966 foreach my $rel ($self->result_source->relationships) {
967 my $rel_info = $self->result_source->relationship_info($rel);
969 next unless $rel_info->{attrs}{cascade_copy};
971 my $resolved = $self->result_source->_resolve_condition(
972 $rel_info->{cond}, $rel, $new
975 my $copied = $rels_copied->{ $rel_info->{source} } ||= {};
976 foreach my $related ($self->search_related($rel)) {
977 my $id_str = join("\0", $related->id);
978 next if $copied->{$id_str};
979 $copied->{$id_str} = 1;
980 my $rel_copy = $related->copy($resolved);
989 $row->store_column($col => $val);
993 =item Arguments: $columnname, $value
995 =item Returns: The value sent to storage
999 Set a raw value for a column without marking it as changed. This
1000 method is used internally by L</set_column> which you should probably
1003 This is the lowest level at which data is set on a row object,
1004 extend this method to catch all data setting methods.
1009 my ($self, $column, $value) = @_;
1010 $self->throw_exception( "No such column '${column}'" )
1011 unless exists $self->{_column_data}{$column} || $self->has_column($column);
1012 $self->throw_exception( "set_column called for ${column} without value" )
1014 return $self->{_column_data}{$column} = $value;
1017 =head2 inflate_result
1019 Class->inflate_result($result_source, \%me, \%prefetch?)
1023 =item Arguments: $result_source, \%columndata, \%prefetcheddata
1025 =item Returns: A Row object
1029 All L<DBIx::Class::ResultSet> methods that retrieve data from the
1030 database and turn it into row objects call this method.
1032 Extend this method in your Result classes to hook into this process,
1033 for example to rebless the result into a different class.
1035 Reblessing can also be done more easily by setting C<result_class> in
1036 your Result class. See L<DBIx::Class::ResultSource/result_class>.
1038 Different types of results can also be created from a particular
1039 L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1043 sub inflate_result {
1044 my ($class, $source, $me, $prefetch) = @_;
1046 my ($source_handle) = $source;
1048 if ($source->isa('DBIx::Class::ResultSourceHandle')) {
1049 $source = $source_handle->resolve
1051 $source_handle = $source->handle
1055 _source_handle => $source_handle,
1056 _column_data => $me,
1058 bless $new, (ref $class || $class);
1061 foreach my $pre (keys %{$prefetch||{}}) {
1062 my $pre_val = $prefetch->{$pre};
1063 my $pre_source = $source->related_source($pre);
1064 $class->throw_exception("Can't prefetch non-existent relationship ${pre}")
1066 if (ref($pre_val->[0]) eq 'ARRAY') { # multi
1069 for my $me_pref (@$pre_val) {
1071 # the collapser currently *could* return bogus elements with all
1072 # columns set to undef
1074 for (values %{$me_pref->[0]}) {
1080 next unless $has_def;
1082 push @pre_objects, $pre_source->result_class->inflate_result(
1083 $pre_source, @$me_pref
1087 $new->related_resultset($pre)->set_cache(\@pre_objects);
1088 } elsif (defined $pre_val->[0]) {
1090 unless ($pre_source->primary_columns == grep { exists $pre_val->[0]{$_}
1091 and !defined $pre_val->[0]{$_} } $pre_source->primary_columns)
1093 $fetched = $pre_source->result_class->inflate_result(
1094 $pre_source, @{$pre_val});
1096 my $accessor = $source->relationship_info($pre)->{attrs}{accessor};
1097 $class->throw_exception("No accessor for prefetched $pre")
1098 unless defined $accessor;
1099 if ($accessor eq 'single') {
1100 $new->{_relationship_data}{$pre} = $fetched;
1101 } elsif ($accessor eq 'filter') {
1102 $new->{_inflated_column}{$pre} = $fetched;
1104 $class->throw_exception("Implicit prefetch (via select/columns) not supported with accessor '$accessor'");
1106 $new->related_resultset($pre)->set_cache([ $fetched ]);
1110 $new->in_storage (1);
1114 =head2 update_or_insert
1116 $row->update_or_insert
1120 =item Arguments: none
1122 =item Returns: Result of update or insert operation
1126 L</Update>s the object if it's already in the database, according to
1127 L</in_storage>, else L</insert>s it.
1129 =head2 insert_or_update
1131 $obj->insert_or_update
1133 Alias for L</update_or_insert>
1137 sub insert_or_update { shift->update_or_insert(@_) }
1139 sub update_or_insert {
1141 return ($self->in_storage ? $self->update : $self->insert);
1146 my @changed_col_names = $row->is_changed();
1147 if ($row->is_changed()) { ... }
1151 =item Arguments: none
1153 =item Returns: 0|1 or @columnnames
1157 In list context returns a list of columns with uncommited changes, or
1158 in scalar context returns a true value if there are uncommitted
1164 return keys %{shift->{_dirty_columns} || {}};
1167 =head2 is_column_changed
1169 if ($row->is_column_changed('col')) { ... }
1173 =item Arguments: $columname
1179 Returns a true value if the column has uncommitted changes.
1183 sub is_column_changed {
1184 my( $self, $col ) = @_;
1185 return exists $self->{_dirty_columns}->{$col};
1188 =head2 result_source
1190 my $resultsource = $row->result_source;
1194 =item Arguments: none
1196 =item Returns: a ResultSource instance
1200 Accessor to the L<DBIx::Class::ResultSource> this object was created from.
1208 $self->_source_handle($_[0]->handle);
1210 $self->_source_handle->resolve;
1214 =head2 register_column
1216 $column_info = { .... };
1217 $class->register_column($column_name, $column_info);
1221 =item Arguments: $columnname, \%columninfo
1223 =item Returns: undefined
1227 Registers a column on the class. If the column_info has an 'accessor'
1228 key, creates an accessor named after the value if defined; if there is
1229 no such key, creates an accessor with the same name as the column
1231 The column_info attributes are described in
1232 L<DBIx::Class::ResultSource/add_columns>
1236 sub register_column {
1237 my ($class, $col, $info) = @_;
1239 if (exists $info->{accessor}) {
1240 return unless defined $info->{accessor};
1241 $acc = [ $info->{accessor}, $col ];
1243 $class->mk_group_accessors('column' => $acc);
1246 =head2 get_from_storage
1248 my $copy = $row->get_from_storage($attrs)
1252 =item Arguments: \%attrs
1254 =item Returns: A Row object
1258 Fetches a fresh copy of the Row object from the database and returns it.
1260 If passed the \%attrs argument, will first apply these attributes to
1261 the resultset used to find the row.
1263 This copy can then be used to compare to an existing row object, to
1264 determine if any changes have been made in the database since it was
1267 To just update your Row object with any latest changes from the
1268 database, use L</discard_changes> instead.
1270 The \%attrs argument should be compatible with
1271 L<DBIx::Class::ResultSet/ATTRIBUTES>.
1275 sub get_from_storage {
1276 my $self = shift @_;
1277 my $attrs = shift @_;
1278 my $resultset = $self->result_source->resultset;
1280 if(defined $attrs) {
1281 $resultset = $resultset->search(undef, $attrs);
1284 return $resultset->find($self->{_orig_ident} || $self->ident_condition);
1287 =head2 discard_changes ($attrs)
1289 Re-selects the row from the database, losing any changes that had
1292 This method can also be used to refresh from storage, retrieving any
1293 changes made since the row was last read from storage.
1295 $attrs is expected to be a hashref of attributes suitable for passing as the
1296 second argument to $resultset->search($cond, $attrs);
1300 sub discard_changes {
1301 my ($self, $attrs) = @_;
1302 delete $self->{_dirty_columns};
1303 return unless $self->in_storage; # Don't reload if we aren't real!
1305 # add a replication default to read from the master only
1306 $attrs = { force_pool => 'master', %{$attrs||{}} };
1308 if( my $current_storage = $self->get_from_storage($attrs)) {
1310 # Set $self to the current.
1311 %$self = %$current_storage;
1313 # Avoid a possible infinite loop with
1314 # sub DESTROY { $_[0]->discard_changes }
1315 bless $current_storage, 'Do::Not::Exist';
1320 $self->in_storage(0);
1326 =head2 throw_exception
1328 See L<DBIx::Class::Schema/throw_exception>.
1332 sub throw_exception {
1334 if (ref $self && ref $self->result_source && $self->result_source->schema) {
1335 $self->result_source->schema->throw_exception(@_);
1347 =item Arguments: none
1349 =item Returns: A list of primary key values
1353 Returns the primary key(s) for a row. Can't be called as a class method.
1354 Actually implemented in L<DBIx::Class::PK>
1356 =head2 discard_changes
1358 $row->discard_changes
1362 =item Arguments: none
1364 =item Returns: nothing (updates object in-place)
1368 Retrieves and sets the row object data from the database, losing any
1371 This method can also be used to refresh from storage, retrieving any
1372 changes made since the row was last read from storage. Actually
1373 implemented in L<DBIx::Class::PK>
1375 Note: If you are using L<DBIx::Class::Storage::DBI::Replicated> as your
1376 storage, please kept in mind that if you L</discard_changes> on a row that you
1377 just updated or created, you should wrap the entire bit inside a transaction.
1378 Otherwise you run the risk that you insert or update to the master database
1379 but read from a replicant database that has not yet been updated from the
1380 master. This will result in unexpected results.
1388 Matt S. Trout <mst@shadowcatsystems.co.uk>
1392 You may distribute this code under the same terms as Perl itself.