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