Clenaup text
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Row.pm
CommitLineData
7624b19f 1package DBIx::Class::Row;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class/;
701da8c4 7use Carp::Clan qw/^DBIx::Class/;
33dd4e80 8use Scalar::Util ();
9c6d6d93 9use Scope::Guard;
1edd1722 10
0d5d1f12 11###
12### Internal method
13### Do not use
14###
e0cdf2cb 15BEGIN {
16 *MULTICREATE_DEBUG =
17 $ENV{DBIC_MULTICREATE_DEBUG}
18 ? sub () { 1 }
19 : sub () { 0 };
20}
21
aec3eff1 22__PACKAGE__->mk_group_accessors('simple' => qw/_source_handle/);
8c49f629 23
75d07914 24=head1 NAME
7624b19f 25
26DBIx::Class::Row - Basic row methods
27
28=head1 SYNOPSIS
29
30=head1 DESCRIPTION
31
32This class is responsible for defining and doing basic operations on rows
1ea77c14 33derived from L<DBIx::Class::ResultSource> objects.
7624b19f 34
a2531bf2 35Row objects are returned from L<DBIx::Class::ResultSet>s using the
ea36f4e4 36L<create|DBIx::Class::ResultSet/create>, L<find|DBIx::Class::ResultSet/find>,
37L<next|DBIx::Class::ResultSet/next> and L<all|DBIx::Class::ResultSet/all> methods,
38as well as invocations of 'single' (
39L<belongs_to|DBIx::Class::Relationship/belongs_to>,
40L<has_one|DBIx::Class::Relationship/has_one> or
41L<might_have|DBIx::Class::Relationship/might_have>)
42relationship accessors of L<DBIx::Class::Row> objects.
a2531bf2 43
7624b19f 44=head1 METHODS
45
8091aa91 46=head2 new
7624b19f 47
a2531bf2 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
7624b19f 57
a2531bf2 58=back
59
60While you can create a new row object by calling C<new> directly on
61this class, you are better off calling it on a
62L<DBIx::Class::ResultSet> object.
63
64When calling it directly, you will not get a complete, usable row
65object until you pass or set the C<source_handle> attribute, to a
66L<DBIx::Class::ResultSource> instance that is attached to a
67L<DBIx::Class::Schema> with a valid connection.
68
69C<$attrs> is a hashref of column name, value data. It can also contain
70some other attributes such as the C<source_handle>.
7624b19f 71
33dd4e80 72Passing an object, or an arrayref of objects as a value will call
73L<DBIx::Class::Relationship::Base/set_from_related> for you. When
74passed a hashref or an arrayref of hashrefs as the value, these will
75be turned into objects via new_related, and treated as if you had
76passed objects.
77
264f1571 78For a more involved explanation, see L<DBIx::Class::ResultSet/create>.
79
dc5f0ad3 80Please note that if a value is not passed to new, no value will be sent
81in the SQL INSERT call, and the column will therefore assume whatever
82default value was specified in your database. While DBIC will retrieve the
83value of autoincrement columns, it will never make an explicit database
84trip to retrieve default values assigned by the RDBMS. You can explicitly
85request that all values be fetched back from the database by calling
86L</discard_changes>, or you can supply an explicit C<undef> to columns
87with 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
7624b19f 97=cut
98
33dd4e80 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
370f2ba2 106sub __new_related_find_or_new_helper {
107 my ($self, $relname, $data) = @_;
108 if ($self->__their_pk_needs_us($relname, $data)) {
de404241 109 MULTICREATE_DEBUG and warn "MC $self constructing $relname via new_result";
370f2ba2 110 return $self->result_source
111 ->related_source($relname)
112 ->resultset
113 ->new_result($data);
114 }
6d0ee587 115 if ($self->result_source->_pk_depends_on($relname, $data)) {
de404241 116 MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new";
370f2ba2 117 return $self->result_source
118 ->related_source($relname)
119 ->resultset
de404241 120 ->find_or_new($data);
370f2ba2 121 }
de404241 122 MULTICREATE_DEBUG and warn "MC $self constructing $relname via find_or_new_related";
370f2ba2 123 return $self->find_or_new_related($relname, $data);
124}
125
126sub __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
6d0ee587 135 return 1 if $rel_source->_pk_depends_on($key, $us);
370f2ba2 136 }
137 return 0;
138}
139
7624b19f 140sub new {
448f820f 141 my ($class, $attrs) = @_;
7624b19f 142 $class = ref $class if ref $class;
04786a4c 143
e60dc79f 144 my $new = {
145 _column_data => {},
146 };
04786a4c 147 bless $new, $class;
148
448f820f 149 if (my $handle = delete $attrs->{-source_handle}) {
150 $new->_source_handle($handle);
151 }
370f2ba2 152
153 my $source;
154 if ($source = delete $attrs->{-result_source}) {
e9fe476b 155 $new->result_source($source);
156 }
a6a280b9 157
09e1f723 158 if (my $related = delete $attrs->{-from_resultset}) {
159 @{$new->{_ignore_at_insert}={}}{@$related} = ();
160 }
161
7624b19f 162 if ($attrs) {
27f01d1f 163 $new->throw_exception("attrs must be a hashref")
164 unless ref($attrs) eq 'HASH';
61a622ee 165
166 my ($related,$inflated);
de7c7c53 167 ## Pretend all the rels are actual objects, unset below if not, for insert() to fix
168 $new->{_rel_in_storage} = 1;
8222f722 169
61a622ee 170 foreach my $key (keys %$attrs) {
171 if (ref $attrs->{$key}) {
af2d42c0 172 ## Can we extract this lot to use with update(_or .. ) ?
370f2ba2 173 confess "Can't do multi-create without result source" unless $source;
174 my $info = $source->relationship_info($key);
61a622ee 175 if ($info && $info->{attrs}{accessor}
c4a30d56 176 && $info->{attrs}{accessor} eq 'single')
61a622ee 177 {
de7c7c53 178 my $rel_obj = delete $attrs->{$key};
33dd4e80 179 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 180 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 181 }
2bc3c81e 182
e0cdf2cb 183 if ($rel_obj->in_storage) {
184 $new->set_from_related($key, $rel_obj);
185 } else {
186 $new->{_rel_in_storage} = 0;
09e1f723 187 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj\n";
e0cdf2cb 188 }
2bc3c81e 189
de7c7c53 190 $related->{$key} = $rel_obj;
61a622ee 191 next;
33dd4e80 192 } elsif ($info && $info->{attrs}{accessor}
193 && $info->{attrs}{accessor} eq 'multi'
194 && ref $attrs->{$key} eq 'ARRAY') {
2ec8e594 195 my $others = delete $attrs->{$key};
e0cdf2cb 196 my $total = @$others;
197 my @objects;
198 foreach my $idx (0 .. $#$others) {
199 my $rel_obj = $others->[$idx];
2ec8e594 200 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 201 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 202 }
2bc3c81e 203
e0cdf2cb 204 if ($rel_obj->in_storage) {
205 $new->set_from_related($key, $rel_obj);
206 } else {
207 $new->{_rel_in_storage} = 0;
208 MULTICREATE_DEBUG and
09e1f723 209 warn "MC $new uninserted $key $rel_obj (${\($idx+1)} of $total)\n";
e0cdf2cb 210 }
370f2ba2 211 $new->set_from_related($key, $rel_obj) if $rel_obj->in_storage;
e0cdf2cb 212 push(@objects, $rel_obj);
2ec8e594 213 }
e0cdf2cb 214 $related->{$key} = \@objects;
2ec8e594 215 next;
216 } elsif ($info && $info->{attrs}{accessor}
217 && $info->{attrs}{accessor} eq 'filter')
61a622ee 218 {
33dd4e80 219 ## 'filter' should disappear and get merged in with 'single' above!
2ec8e594 220 my $rel_obj = delete $attrs->{$key};
33dd4e80 221 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 222 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 223 }
e0cdf2cb 224 unless ($rel_obj->in_storage) {
225 $new->{_rel_in_storage} = 0;
09e1f723 226 MULTICREATE_DEBUG and warn "MC $new uninserted $key $rel_obj";
e0cdf2cb 227 }
33dd4e80 228 $inflated->{$key} = $rel_obj;
61a622ee 229 next;
2ec8e594 230 } elsif ($class->has_column($key)
231 && $class->column_info($key)->{_inflate_info}) {
61a622ee 232 $inflated->{$key} = $attrs->{$key};
233 next;
234 }
235 }
236 $new->throw_exception("No such column $key on $class")
237 unless $class->has_column($key);
238 $new->store_column($key => $attrs->{$key});
7624b19f 239 }
f90375dd 240
61a622ee 241 $new->{_relationship_data} = $related if $related;
242 $new->{_inflated_column} = $inflated if $inflated;
7624b19f 243 }
04786a4c 244
7624b19f 245 return $new;
246}
247
8091aa91 248=head2 insert
7624b19f 249
a2531bf2 250 $row->insert;
251
252=over
7624b19f 253
a2531bf2 254=item Arguments: none
255
256=item Returns: The Row object
257
258=back
259
260Inserts an object previously created by L</new> into the database if
261it isn't already in there. Returns the object itself. Requires the
262object's result source to be set, or the class to have a
263result_source_instance method. To insert an entirely new row into
264the database, use C<create> (see L<DBIx::Class::ResultSet/create>).
7624b19f 265
e91e756c 266To fetch an uninserted row object, call
267L<new|DBIx::Class::ResultSet/new> on a resultset.
268
264f1571 269This will also insert any uninserted, related objects held inside this
270one, see L<DBIx::Class::ResultSet/create> for more details.
271
7624b19f 272=cut
273
274sub insert {
275 my ($self) = @_;
276 return $self if $self->in_storage;
6aba697f 277 my $source = $self->result_source;
278 $source ||= $self->result_source($self->result_source_instance)
097d3227 279 if $self->can('result_source_instance');
aeb1bf75 280 $self->throw_exception("No result_source set on this object; can't insert")
281 unless $source;
6e399b4f 282
9c6d6d93 283 my $rollback_guard;
284
33dd4e80 285 # Check if we stored uninserted relobjs here in new()
33dd4e80 286 my %related_stuff = (%{$self->{_relationship_data} || {}},
287 %{$self->{_inflated_column} || {}});
9c6d6d93 288
ae66ef47 289 if(!$self->{_rel_in_storage}) {
8222f722 290
9c6d6d93 291 # The guard will save us if we blow out of this scope via die
1bc193ac 292 $rollback_guard = $source->storage->txn_scope_guard;
9c6d6d93 293
8222f722 294 ## Should all be in relationship_data, but we need to get rid of the
295 ## 'filter' reltype..
296 ## These are the FK rels, need their IDs for the insert.
9c6d6d93 297
298 my @pri = $self->primary_columns;
299
300 REL: foreach my $relname (keys %related_stuff) {
a8c98174 301
302 my $rel_obj = $related_stuff{$relname};
303
304 next REL unless (Scalar::Util::blessed($rel_obj)
305 && $rel_obj->isa('DBIx::Class::Row'));
306
6d0ee587 307 next REL unless $source->_pk_depends_on(
370f2ba2 308 $relname, { $rel_obj->get_columns }
309 );
9c6d6d93 310
de404241 311 MULTICREATE_DEBUG and warn "MC $self pre-reconstructing $relname $rel_obj\n";
e0cdf2cb 312
de404241 313 my $them = { %{$rel_obj->{_relationship_data} || {} }, $rel_obj->get_inflated_columns };
8cfe052c 314 my $re = $self->result_source
315 ->related_source($relname)
316 ->resultset
317 ->find_or_create($them);
de404241 318 %{$rel_obj} = %{$re};
a8c98174 319 $self->set_from_related($relname, $rel_obj);
320 delete $related_stuff{$relname};
33dd4e80 321 }
322 }
6e399b4f 323
09e1f723 324 MULTICREATE_DEBUG and do {
325 no warnings 'uninitialized';
326 warn "MC $self inserting (".join(', ', $self->get_columns).")\n";
327 };
ef5f6b0a 328 my $updated_cols = $source->storage->insert($source, { $self->get_columns });
645de900 329 foreach my $col (keys %$updated_cols) {
330 $self->store_column($col, $updated_cols->{$col});
331 }
ac8e89d7 332
333 ## PK::Auto
3fda409f 334 my @auto_pri = grep {
335 !defined $self->get_column($_) ||
336 ref($self->get_column($_)) eq 'SCALAR'
337 } $self->primary_columns;
338
339 if (@auto_pri) {
340 #$self->throw_exception( "More than one possible key found for auto-inc on ".ref $self )
341 # if defined $too_many;
e0cdf2cb 342 MULTICREATE_DEBUG and warn "MC $self fetching missing PKs ".join(', ', @auto_pri)."\n";
ac8e89d7 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');
3fda409f 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;
ac8e89d7 350 }
33dd4e80 351
e0cdf2cb 352
370f2ba2 353 $self->{_dirty_columns} = {};
354 $self->{related_resultsets} = {};
355
ae66ef47 356 if(!$self->{_rel_in_storage}) {
09e1f723 357 ## Now do the relationships that need our ID (has_many etc.)
8222f722 358 foreach my $relname (keys %related_stuff) {
9c6d6d93 359 my $rel_obj = $related_stuff{$relname};
360 my @cands;
361 if (Scalar::Util::blessed($rel_obj)
362 && $rel_obj->isa('DBIx::Class::Row')) {
363 @cands = ($rel_obj);
364 } elsif (ref $rel_obj eq 'ARRAY') {
365 @cands = @$rel_obj;
366 }
367 if (@cands) {
368 my $reverse = $source->reverse_relationship_info($relname);
369 foreach my $obj (@cands) {
370 $obj->set_from_related($_, $self) for keys %$reverse;
e912f5f0 371 my $them = { %{$obj->{_relationship_data} || {} }, $obj->get_inflated_columns };
370f2ba2 372 if ($self->__their_pk_needs_us($relname, $them)) {
09e1f723 373 if (exists $self->{_ignore_at_insert}{$relname}) {
374 MULTICREATE_DEBUG and warn "MC $self skipping post-insert on $relname";
375 } else {
376 MULTICREATE_DEBUG and warn "MC $self re-creating $relname $obj";
de404241 377 my $re = $self->result_source
378 ->related_source($relname)
379 ->resultset
380 ->find_or_create($them);
09e1f723 381 %{$obj} = %{$re};
382 MULTICREATE_DEBUG and warn "MC $self new $relname $obj";
383 }
370f2ba2 384 } else {
e0cdf2cb 385 MULTICREATE_DEBUG and warn "MC $self post-inserting $obj";
370f2ba2 386 $obj->insert();
387 }
8222f722 388 }
33dd4e80 389 }
390 }
09e1f723 391 delete $self->{_ignore_at_insert};
1bc193ac 392 $rollback_guard->commit;
33dd4e80 393 }
33dd4e80 394
7624b19f 395 $self->in_storage(1);
729b29ae 396 undef $self->{_orig_ident};
7624b19f 397 return $self;
398}
399
8091aa91 400=head2 in_storage
7624b19f 401
a2531bf2 402 $row->in_storage; # Get value
403 $row->in_storage(1); # Set value
404
405=over
406
407=item Arguments: none or 1|0
408
409=item Returns: 1|0
410
411=back
7624b19f 412
e91e756c 413Indicates whether the object exists as a row in the database or
414not. This is set to true when L<DBIx::Class::ResultSet/find>,
415L<DBIx::Class::ResultSet/create> or L<DBIx::Class::ResultSet/insert>
416are used.
417
418Creating a row object using L<DBIx::Class::ResultSet/new>, or calling
419L</delete> on one, sets it to false.
7624b19f 420
421=cut
422
423sub in_storage {
424 my ($self, $val) = @_;
425 $self->{_in_storage} = $val if @_ > 1;
426 return $self->{_in_storage};
427}
428
8091aa91 429=head2 update
7624b19f 430
a2531bf2 431 $row->update(\%columns?)
432
433=over
7624b19f 434
a2531bf2 435=item Arguments: none or a hashref
7624b19f 436
a2531bf2 437=item Returns: The Row object
438
439=back
440
441Throws an exception if the row object is not yet in the database,
442according to L</in_storage>.
443
444This method issues an SQL UPDATE query to commit any changes to the
445object to the database if required.
446
447Also takes an optional hashref of C<< column_name => value> >> pairs
448to update on the object first. Be aware that the hashref will be
449passed to C<set_inflated_columns>, which might edit it in place, so
450don't rely on it being the same after a call to C<update>. If you
451need to preserve the hashref, it is sufficient to pass a shallow copy
452to C<update>, e.g. ( { %{ $href } } )
d5d833d9 453
05d1bc9c 454If the values passed or any of the column values set on the object
455contain scalar references, eg:
456
a2531bf2 457 $row->last_modified(\'NOW()');
05d1bc9c 458 # OR
a2531bf2 459 $row->update({ last_modified => \'NOW()' });
05d1bc9c 460
461The update will pass the values verbatim into SQL. (See
462L<SQL::Abstract> docs). The values in your Row object will NOT change
463as a result of the update call, if you want the object to be updated
464with the actual values from the database, call L</discard_changes>
465after the update.
466
a2531bf2 467 $row->update()->discard_changes();
468
469To determine before calling this method, which column values have
470changed and will be updated, call L</get_dirty_columns>.
471
472To check if any columns will be updated, call L</is_changed>.
473
474To force a column to be updated, call L</make_column_dirty> before
475this method.
05d1bc9c 476
7624b19f 477=cut
478
479sub update {
480 my ($self, $upd) = @_;
701da8c4 481 $self->throw_exception( "Not in database" ) unless $self->in_storage;
4b12b3c2 482 my $ident_cond = $self->ident_condition;
483 $self->throw_exception("Cannot safely update a row in a PK-less table")
484 if ! keys %$ident_cond;
6e399b4f 485
bacf6f12 486 $self->set_inflated_columns($upd) if $upd;
5a9e0e60 487 my %to_update = $self->get_dirty_columns;
488 return $self unless keys %to_update;
88cb6a1d 489 my $rows = $self->result_source->storage->update(
f4afcd5d 490 $self->result_source, \%to_update,
491 $self->{_orig_ident} || $ident_cond
492 );
7624b19f 493 if ($rows == 0) {
701da8c4 494 $self->throw_exception( "Can't update ${self}: row not found" );
7624b19f 495 } elsif ($rows > 1) {
701da8c4 496 $self->throw_exception("Can't update ${self}: updated more than one row");
7624b19f 497 }
498 $self->{_dirty_columns} = {};
64acc2bc 499 $self->{related_resultsets} = {};
729b29ae 500 undef $self->{_orig_ident};
7624b19f 501 return $self;
502}
503
8091aa91 504=head2 delete
7624b19f 505
a2531bf2 506 $row->delete
507
508=over
509
510=item Arguments: none
7624b19f 511
a2531bf2 512=item Returns: The Row object
513
514=back
515
516Throws an exception if the object is not in the database according to
517L</in_storage>. Runs an SQL DELETE statement using the primary key
518values to locate the row.
519
520The object is still perfectly usable, but L</in_storage> will
ea36f4e4 521now return 0 and the object must be reinserted using L</insert>
a2531bf2 522before it can be used to L</update> the row again.
523
524If you delete an object in a class with a C<has_many> relationship, an
525attempt is made to delete all the related objects as well. To turn
526this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
527hashref of the relationship, see L<DBIx::Class::Relationship>. Any
528database-level cascade or restrict will take precedence over a
529DBIx-Class-based cascading delete.
530
b1d16ffd 531If you delete an object within a txn_do() (see L<DBIx::Class::Storage/txn_do>)
532and the transaction subsequently fails, the row object will remain marked as
533not being in storage. If you know for a fact that the object is still in
534storage (i.e. by inspecting the cause of the transaction's failure), you can
535use C<< $obj->in_storage(1) >> to restore consistency between the object and
536the database. This would allow a subsequent C<< $obj->delete >> to work
537as expected.
538
a2531bf2 539See also L<DBIx::Class::ResultSet/delete>.
7624b19f 540
541=cut
542
543sub delete {
544 my $self = shift;
545 if (ref $self) {
701da8c4 546 $self->throw_exception( "Not in database" ) unless $self->in_storage;
728e60a3 547 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
4b12b3c2 548 $self->throw_exception("Cannot safely delete a row in a PK-less table")
549 if ! keys %$ident_cond;
e0f56292 550 foreach my $column (keys %$ident_cond) {
75d07914 551 $self->throw_exception("Can't delete the object unless it has loaded the primary keys")
552 unless exists $self->{_column_data}{$column};
e0f56292 553 }
88cb6a1d 554 $self->result_source->storage->delete(
7af8b477 555 $self->result_source, $ident_cond);
7624b19f 556 $self->in_storage(undef);
7624b19f 557 } else {
701da8c4 558 $self->throw_exception("Can't do class delete without a ResultSource instance")
097d3227 559 unless $self->can('result_source_instance');
aeb1bf75 560 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
561 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
097d3227 562 $self->result_source_instance->resultset->search(@_)->delete;
7624b19f 563 }
564 return $self;
565}
566
8091aa91 567=head2 get_column
7624b19f 568
a2531bf2 569 my $val = $row->get_column($col);
570
571=over
572
573=item Arguments: $columnname
574
575=item Returns: The value of the column
576
577=back
578
579Throws an exception if the column name given doesn't exist according
580to L</has_column>.
7624b19f 581
e91e756c 582Returns a raw column value from the row object, if it has already
583been fetched from the database or set by an accessor.
584
585If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
586will be deflated and returned.
7624b19f 587
ea36f4e4 588Note that if you used the C<columns> or the C<select/as>
589L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
590which C<$row> was derived, and B<did not include> C<$columnname> in the list,
591this method will return C<undef> even if the database contains some value.
592
a2531bf2 593To retrieve all loaded column values as a hash, use L</get_columns>.
594
7624b19f 595=cut
596
597sub get_column {
598 my ($self, $column) = @_;
701da8c4 599 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
aeb1bf75 600 return $self->{_column_data}{$column} if exists $self->{_column_data}{$column};
61a622ee 601 if (exists $self->{_inflated_column}{$column}) {
602 return $self->store_column($column,
603 $self->_deflated_column($column, $self->{_inflated_column}{$column}));
604 }
701da8c4 605 $self->throw_exception( "No such column '${column}'" ) unless $self->has_column($column);
7624b19f 606 return undef;
607}
608
9b83fccd 609=head2 has_column_loaded
610
a2531bf2 611 if ( $row->has_column_loaded($col) ) {
9b83fccd 612 print "$col has been loaded from db";
613 }
614
a2531bf2 615=over
616
617=item Arguments: $columnname
618
619=item Returns: 0|1
620
621=back
622
9b83fccd 623Returns a true value if the column value has been loaded from the
624database (or set locally).
625
626=cut
627
def81720 628sub has_column_loaded {
629 my ($self, $column) = @_;
630 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
61a622ee 631 return 1 if exists $self->{_inflated_column}{$column};
aeb1bf75 632 return exists $self->{_column_data}{$column};
def81720 633}
634
8091aa91 635=head2 get_columns
076a6864 636
a2531bf2 637 my %data = $row->get_columns;
638
639=over
640
641=item Arguments: none
076a6864 642
a2531bf2 643=item Returns: A hash of columnname, value pairs.
644
645=back
646
647Returns all loaded column data as a hash, containing raw values. To
648get just one value for a particular column, use L</get_column>.
076a6864 649
c0a171bf 650See L</get_inflated_columns> to get the inflated values.
651
076a6864 652=cut
653
654sub get_columns {
655 my $self = shift;
61a622ee 656 if (exists $self->{_inflated_column}) {
657 foreach my $col (keys %{$self->{_inflated_column}}) {
658 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}))
c4a30d56 659 unless exists $self->{_column_data}{$col};
61a622ee 660 }
661 }
cb5f2eea 662 return %{$self->{_column_data}};
d7156e50 663}
664
665=head2 get_dirty_columns
666
a2531bf2 667 my %data = $row->get_dirty_columns;
668
669=over
670
671=item Arguments: none
d7156e50 672
a2531bf2 673=item Returns: A hash of column, value pairs
674
675=back
676
677Only returns the column, value pairs for those columns that have been
678changed on this object since the last L</update> or L</insert> call.
679
680See L</get_columns> to fetch all column/value pairs.
d7156e50 681
682=cut
683
684sub get_dirty_columns {
685 my $self = shift;
686 return map { $_ => $self->{_column_data}{$_} }
687 keys %{$self->{_dirty_columns}};
076a6864 688}
689
6dbea98e 690=head2 make_column_dirty
691
a2531bf2 692 $row->make_column_dirty($col)
693
694=over
695
696=item Arguments: $columnname
697
698=item Returns: undefined
699
700=back
701
702Throws an exception if the column does not exist.
703
704Marks a column as having been changed regardless of whether it has
705really changed.
6dbea98e 706
707=cut
708sub make_column_dirty {
709 my ($self, $column) = @_;
710
711 $self->throw_exception( "No such column '${column}'" )
712 unless exists $self->{_column_data}{$column} || $self->has_column($column);
713 $self->{_dirty_columns}{$column} = 1;
714}
715
ba4a6453 716=head2 get_inflated_columns
717
e91e756c 718 my %inflated_data = $obj->get_inflated_columns;
ba4a6453 719
a2531bf2 720=over
721
722=item Arguments: none
723
724=item Returns: A hash of column, object|value pairs
725
726=back
727
728Returns a hash of all column keys and associated values. Values for any
729columns set to use inflation will be inflated and returns as objects.
730
731See L</get_columns> to get the uninflated values.
732
733See L<DBIx::Class::InflateColumn> for how to setup inflation.
ba4a6453 734
735=cut
736
737sub get_inflated_columns {
738 my $self = shift;
739 return map {
740 my $accessor = $self->column_info($_)->{'accessor'} || $_;
741 ($_ => $self->$accessor);
de404241 742 } grep $self->has_column_loaded($_), $self->columns;
ba4a6453 743}
744
8091aa91 745=head2 set_column
7624b19f 746
a2531bf2 747 $row->set_column($col => $val);
748
749=over
750
751=item Arguments: $columnname, $value
752
753=item Returns: $value
754
755=back
7624b19f 756
e91e756c 757Sets a raw column value. If the new value is different from the old one,
a2531bf2 758the column is marked as dirty for when you next call L</update>.
7624b19f 759
ea36f4e4 760If passed an object or reference as a value, this method will happily
761attempt to store it, and a later L</insert> or L</update> will try and
a2531bf2 762stringify/numify as appropriate. To set an object to be deflated
763instead, see L</set_inflated_columns>.
e91e756c 764
7624b19f 765=cut
766
767sub set_column {
1d0057bd 768 my ($self, $column, $new_value) = @_;
769
729b29ae 770 $self->{_orig_ident} ||= $self->ident_condition;
1d0057bd 771 my $old_value = $self->get_column($column);
772
773 $self->store_column($column, $new_value);
8f9eff75 774
775 my $dirty;
776 if (defined $old_value xor defined $new_value) {
777 $dirty = 1;
778 }
779 elsif (not defined $old_value) { # both undef
780 $dirty = 0;
781 }
782 elsif ($old_value eq $new_value) {
783 $dirty = 0;
784 }
785 else { # do a numeric comparison if datatype allows it
786 my $colinfo = $self->column_info ($column);
787
788 # cache for speed
789 if (not defined $colinfo->{is_numeric}) {
790 $colinfo->{is_numeric} =
791 $self->result_source->schema->storage->is_datatype_numeric ($colinfo->{data_type})
792 ? 1
793 : 0
794 ;
795 }
796
797 if ($colinfo->{is_numeric}) {
0bad1823 798 $dirty = $old_value != $new_value;
8f9eff75 799 }
800 else {
801 $dirty = 1;
802 }
803 }
804
805 # sadly the update code just checks for keys, not for their value
806 $self->{_dirty_columns}{$column} = 1 if $dirty;
e60dc79f 807
808 # XXX clear out the relation cache for this column
809 delete $self->{related_resultsets}{$column};
810
1d0057bd 811 return $new_value;
7624b19f 812}
813
8091aa91 814=head2 set_columns
076a6864 815
a2531bf2 816 $row->set_columns({ $col => $val, ... });
817
818=over
076a6864 819
a2531bf2 820=item Arguments: \%columndata
821
822=item Returns: The Row object
823
824=back
825
826Sets multiple column, raw value pairs at once.
827
828Works as L</set_column>.
076a6864 829
830=cut
831
832sub set_columns {
833 my ($self,$data) = @_;
a2ca474b 834 foreach my $col (keys %$data) {
835 $self->set_column($col,$data->{$col});
076a6864 836 }
c01ab172 837 return $self;
076a6864 838}
839
bacf6f12 840=head2 set_inflated_columns
841
a2531bf2 842 $row->set_inflated_columns({ $col => $val, $relname => $obj, ... });
843
844=over
845
846=item Arguments: \%columndata
847
848=item Returns: The Row object
849
850=back
851
852Sets more than one column value at once. Any inflated values are
853deflated and the raw values stored.
bacf6f12 854
a2531bf2 855Any related values passed as Row objects, using the relation name as a
856key, are reduced to the appropriate foreign key values and stored. If
857instead of related row objects, a hashref of column, value data is
858passed, will create the related object first then store.
859
860Will even accept arrayrefs of data as a value to a
861L<DBIx::Class::Relationship/has_many> key, and create the related
862objects if necessary.
863
864Be aware that the input hashref might be edited in place, so dont rely
865on it being the same after a call to C<set_inflated_columns>. If you
866need to preserve the hashref, it is sufficient to pass a shallow copy
867to C<set_inflated_columns>, e.g. ( { %{ $href } } )
868
869See also L<DBIx::Class::Relationship::Base/set_from_related>.
bacf6f12 870
871=cut
872
873sub set_inflated_columns {
874 my ( $self, $upd ) = @_;
875 foreach my $key (keys %$upd) {
876 if (ref $upd->{$key}) {
877 my $info = $self->relationship_info($key);
878 if ($info && $info->{attrs}{accessor}
879 && $info->{attrs}{accessor} eq 'single')
880 {
881 my $rel = delete $upd->{$key};
882 $self->set_from_related($key => $rel);
a7be8807 883 $self->{_relationship_data}{$key} = $rel;
bacf6f12 884 } elsif ($info && $info->{attrs}{accessor}
a7be8807 885 && $info->{attrs}{accessor} eq 'multi') {
886 $self->throw_exception(
887 "Recursive update is not supported over relationships of type multi ($key)"
888 );
bacf6f12 889 }
890 elsif ($self->has_column($key)
891 && exists $self->column_info($key)->{_inflate_info})
892 {
a7be8807 893 $self->set_inflated_column($key, delete $upd->{$key});
bacf6f12 894 }
895 }
896 }
897 $self->set_columns($upd);
898}
899
8091aa91 900=head2 copy
076a6864 901
902 my $copy = $orig->copy({ change => $to, ... });
903
a2531bf2 904=over
905
906=item Arguments: \%replacementdata
907
908=item Returns: The Row object copy
909
910=back
911
912Inserts a new row into the database, as a copy of the original
913object. If a hashref of replacement data is supplied, these will take
ce0893e0 914precedence over data in the original. Also any columns which have
915the L<column info attribute|DBIx::Class::ResultSource/add_columns>
916C<< is_auto_increment => 1 >> are explicitly removed before the copy,
917so that the database can insert its own autoincremented values into
918the new object.
a2531bf2 919
f928c965 920Relationships will be followed by the copy procedure B<only> if the
921relationship specifes a true value for its
922L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
923is set by default on C<has_many> relationships and unset on all others.
076a6864 924
925=cut
926
c01ab172 927sub copy {
928 my ($self, $changes) = @_;
333cce60 929 $changes ||= {};
fde6e28e 930 my $col_data = { %{$self->{_column_data}} };
931 foreach my $col (keys %$col_data) {
932 delete $col_data->{$col}
933 if $self->result_source->column_info($col)->{is_auto_increment};
934 }
04786a4c 935
936 my $new = { _column_data => $col_data };
937 bless $new, ref $self;
938
83419ec6 939 $new->result_source($self->result_source);
bacf6f12 940 $new->set_inflated_columns($changes);
333cce60 941 $new->insert;
35688220 942
943 # Its possible we'll have 2 relations to the same Source. We need to make
944 # sure we don't try to insert the same row twice esle we'll violate unique
945 # constraints
946 my $rels_copied = {};
947
333cce60 948 foreach my $rel ($self->result_source->relationships) {
949 my $rel_info = $self->result_source->relationship_info($rel);
35688220 950
951 next unless $rel_info->{attrs}{cascade_copy};
952
6d0ee587 953 my $resolved = $self->result_source->_resolve_condition(
35688220 954 $rel_info->{cond}, $rel, $new
955 );
956
957 my $copied = $rels_copied->{ $rel_info->{source} } ||= {};
958 foreach my $related ($self->search_related($rel)) {
959 my $id_str = join("\0", $related->id);
960 next if $copied->{$id_str};
961 $copied->{$id_str} = 1;
962 my $rel_copy = $related->copy($resolved);
333cce60 963 }
35688220 964
333cce60 965 }
2c4c67b6 966 return $new;
c01ab172 967}
968
8091aa91 969=head2 store_column
7624b19f 970
a2531bf2 971 $row->store_column($col => $val);
7624b19f 972
a2531bf2 973=over
974
975=item Arguments: $columnname, $value
976
ea36f4e4 977=item Returns: The value sent to storage
a2531bf2 978
979=back
980
981Set a raw value for a column without marking it as changed. This
982method is used internally by L</set_column> which you should probably
983be using.
984
985This is the lowest level at which data is set on a row object,
986extend this method to catch all data setting methods.
7624b19f 987
988=cut
989
990sub store_column {
991 my ($self, $column, $value) = @_;
75d07914 992 $self->throw_exception( "No such column '${column}'" )
d7156e50 993 unless exists $self->{_column_data}{$column} || $self->has_column($column);
75d07914 994 $self->throw_exception( "set_column called for ${column} without value" )
7624b19f 995 if @_ < 3;
996 return $self->{_column_data}{$column} = $value;
997}
998
b52e9bf8 999=head2 inflate_result
1000
c01ab172 1001 Class->inflate_result($result_source, \%me, \%prefetch?)
b52e9bf8 1002
a2531bf2 1003=over
1004
1005=item Arguments: $result_source, \%columndata, \%prefetcheddata
1006
1007=item Returns: A Row object
1008
1009=back
1010
1011All L<DBIx::Class::ResultSet> methods that retrieve data from the
1012database and turn it into row objects call this method.
1013
1014Extend this method in your Result classes to hook into this process,
1015for example to rebless the result into a different class.
1016
1017Reblessing can also be done more easily by setting C<result_class> in
1018your Result class. See L<DBIx::Class::ResultSource/result_class>.
b52e9bf8 1019
db2b2eb6 1020Different types of results can also be created from a particular
1021L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1022
b52e9bf8 1023=cut
1024
1025sub inflate_result {
c01ab172 1026 my ($class, $source, $me, $prefetch) = @_;
aec3eff1 1027
1028 my ($source_handle) = $source;
1029
1030 if ($source->isa('DBIx::Class::ResultSourceHandle')) {
1031 $source = $source_handle->resolve
1032 } else {
1033 $source_handle = $source->handle
1034 }
1035
04786a4c 1036 my $new = {
aec3eff1 1037 _source_handle => $source_handle,
04786a4c 1038 _column_data => $me,
1039 _in_storage => 1
1040 };
1041 bless $new, (ref $class || $class);
1042
7fb16f1a 1043 my $schema;
64acc2bc 1044 foreach my $pre (keys %{$prefetch||{}}) {
1045 my $pre_val = $prefetch->{$pre};
f9cc31dd 1046 my $pre_source = $source->related_source($pre);
a86b1efe 1047 $class->throw_exception("Can't prefetch non-existent relationship ${pre}")
1048 unless $pre_source;
0f66a01b 1049 if (ref($pre_val->[0]) eq 'ARRAY') { # multi
a86b1efe 1050 my @pre_objects;
1051 foreach my $pre_rec (@$pre_val) {
75d07914 1052 unless ($pre_source->primary_columns == grep { exists $pre_rec->[0]{$_}
5a5bec6c 1053 and defined $pre_rec->[0]{$_} } $pre_source->primary_columns) {
a86b1efe 1054 next;
1055 }
1056 push(@pre_objects, $pre_source->result_class->inflate_result(
1057 $pre_source, @{$pre_rec}));
1058 }
1059 $new->related_resultset($pre)->set_cache(\@pre_objects);
62e87ea8 1060 } elsif (defined $pre_val->[0]) {
a86b1efe 1061 my $fetched;
75d07914 1062 unless ($pre_source->primary_columns == grep { exists $pre_val->[0]{$_}
a86b1efe 1063 and !defined $pre_val->[0]{$_} } $pre_source->primary_columns)
1064 {
1065 $fetched = $pre_source->result_class->inflate_result(
75d07914 1066 $pre_source, @{$pre_val});
a86b1efe 1067 }
1068 my $accessor = $source->relationship_info($pre)->{attrs}{accessor};
1069 $class->throw_exception("No accessor for prefetched $pre")
1070 unless defined $accessor;
1071 if ($accessor eq 'single') {
1072 $new->{_relationship_data}{$pre} = $fetched;
1073 } elsif ($accessor eq 'filter') {
1074 $new->{_inflated_column}{$pre} = $fetched;
1075 } else {
1076 $class->throw_exception("Prefetch not supported with accessor '$accessor'");
1077 }
faf79003 1078 $new->related_resultset($pre)->set_cache([ $fetched ]);
b52e9bf8 1079 }
1080 }
7624b19f 1081 return $new;
1082}
1083
9b465d00 1084=head2 update_or_insert
7624b19f 1085
a2531bf2 1086 $row->update_or_insert
1087
1088=over
7624b19f 1089
a2531bf2 1090=item Arguments: none
1091
1092=item Returns: Result of update or insert operation
1093
1094=back
1095
1096L</Update>s the object if it's already in the database, according to
1097L</in_storage>, else L</insert>s it.
7624b19f 1098
9b83fccd 1099=head2 insert_or_update
1100
1101 $obj->insert_or_update
1102
1103Alias for L</update_or_insert>
1104
7624b19f 1105=cut
1106
370f2ba2 1107sub insert_or_update { shift->update_or_insert(@_) }
1108
9b465d00 1109sub update_or_insert {
7624b19f 1110 my $self = shift;
1111 return ($self->in_storage ? $self->update : $self->insert);
1112}
1113
8091aa91 1114=head2 is_changed
7624b19f 1115
a2531bf2 1116 my @changed_col_names = $row->is_changed();
1117 if ($row->is_changed()) { ... }
1118
1119=over
7624b19f 1120
a2531bf2 1121=item Arguments: none
1122
1123=item Returns: 0|1 or @columnnames
1124
1125=back
1126
1127In list context returns a list of columns with uncommited changes, or
9b83fccd 1128in scalar context returns a true value if there are uncommitted
1129changes.
1130
7624b19f 1131=cut
1132
1133sub is_changed {
1134 return keys %{shift->{_dirty_columns} || {}};
1135}
228dbcb4 1136
1137=head2 is_column_changed
1138
a2531bf2 1139 if ($row->is_column_changed('col')) { ... }
1140
1141=over
1142
1143=item Arguments: $columname
1144
1145=item Returns: 0|1
1146
1147=back
228dbcb4 1148
9b83fccd 1149Returns a true value if the column has uncommitted changes.
1150
228dbcb4 1151=cut
1152
1153sub is_column_changed {
1154 my( $self, $col ) = @_;
1155 return exists $self->{_dirty_columns}->{$col};
1156}
7624b19f 1157
097d3227 1158=head2 result_source
1159
a2531bf2 1160 my $resultsource = $row->result_source;
1161
1162=over
1163
1164=item Arguments: none
097d3227 1165
a2531bf2 1166=item Returns: a ResultSource instance
1167
1168=back
1169
1170Accessor to the L<DBIx::Class::ResultSource> this object was created from.
87c4e602 1171
aec3eff1 1172=cut
1173
1174sub result_source {
1175 my $self = shift;
1176
1177 if (@_) {
1178 $self->_source_handle($_[0]->handle);
1179 } else {
1180 $self->_source_handle->resolve;
1181 }
1182}
1183
9b83fccd 1184=head2 register_column
27f01d1f 1185
9b83fccd 1186 $column_info = { .... };
1187 $class->register_column($column_name, $column_info);
27f01d1f 1188
a2531bf2 1189=over
1190
1191=item Arguments: $columnname, \%columninfo
1192
1193=item Returns: undefined
1194
1195=back
1196
9b83fccd 1197Registers a column on the class. If the column_info has an 'accessor'
1198key, creates an accessor named after the value if defined; if there is
1199no such key, creates an accessor with the same name as the column
1f23a877 1200
9b83fccd 1201The column_info attributes are described in
1202L<DBIx::Class::ResultSource/add_columns>
1f23a877 1203
097d3227 1204=cut
1205
1f23a877 1206sub register_column {
1207 my ($class, $col, $info) = @_;
91b0fbd7 1208 my $acc = $col;
1209 if (exists $info->{accessor}) {
1210 return unless defined $info->{accessor};
1211 $acc = [ $info->{accessor}, $col ];
1212 }
1213 $class->mk_group_accessors('column' => $acc);
1f23a877 1214}
1215
a2531bf2 1216=head2 get_from_storage
1217
1218 my $copy = $row->get_from_storage($attrs)
1219
1220=over
b9b4e52f 1221
a2531bf2 1222=item Arguments: \%attrs
b9b4e52f 1223
a2531bf2 1224=item Returns: A Row object
1225
1226=back
1227
1228Fetches a fresh copy of the Row object from the database and returns it.
1229
1230If passed the \%attrs argument, will first apply these attributes to
1231the resultset used to find the row.
1232
1233This copy can then be used to compare to an existing row object, to
1234determine if any changes have been made in the database since it was
1235created.
1236
1237To just update your Row object with any latest changes from the
1238database, use L</discard_changes> instead.
1239
1240The \%attrs argument should be compatible with
1241L<DBIx::Class::ResultSet/ATTRIBUTES>.
7e38d850 1242
b9b4e52f 1243=cut
1244
a737512c 1245sub get_from_storage {
b9b4e52f 1246 my $self = shift @_;
7e38d850 1247 my $attrs = shift @_;
7e38d850 1248 my $resultset = $self->result_source->resultset;
1249
1250 if(defined $attrs) {
1251 $resultset = $resultset->search(undef, $attrs);
1252 }
1253
728e60a3 1254 return $resultset->find($self->{_orig_ident} || $self->ident_condition);
b9b4e52f 1255}
701da8c4 1256
5160b401 1257=head2 throw_exception
701da8c4 1258
a2531bf2 1259See L<DBIx::Class::Schema/throw_exception>.
701da8c4 1260
1261=cut
1262
1263sub throw_exception {
1264 my $self=shift;
66cab05c 1265 if (ref $self && ref $self->result_source && $self->result_source->schema) {
701da8c4 1266 $self->result_source->schema->throw_exception(@_);
1267 } else {
1268 croak(@_);
1269 }
1270}
1271
33cf6616 1272=head2 id
1273
a2531bf2 1274 my @pk = $row->id;
1275
1276=over
1277
1278=item Arguments: none
1279
1280=item Returns: A list of primary key values
1281
1282=back
1283
33cf6616 1284Returns the primary key(s) for a row. Can't be called as a class method.
f7043881 1285Actually implemented in L<DBIx::Class::PK>
33cf6616 1286
1287=head2 discard_changes
1288
a2531bf2 1289 $row->discard_changes
1290
1291=over
1292
1293=item Arguments: none
1294
1295=item Returns: nothing (updates object in-place)
1296
1297=back
1298
1299Retrieves and sets the row object data from the database, losing any
1300local changes made.
33cf6616 1301
1302This method can also be used to refresh from storage, retrieving any
1303changes made since the row was last read from storage. Actually
f7043881 1304implemented in L<DBIx::Class::PK>
33cf6616 1305
1306=cut
1307
7624b19f 13081;
1309
7624b19f 1310=head1 AUTHORS
1311
daec44b8 1312Matt S. Trout <mst@shadowcatsystems.co.uk>
7624b19f 1313
1314=head1 LICENSE
1315
1316You may distribute this code under the same terms as Perl itself.
1317
1318=cut