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