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