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