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