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