Fold column_info() into columns_info()
[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';
e5053694 9use DBIx::Class::_Util qw( dbic_internal_try fail_on_internal_call );
6dd43920 10use DBIx::Class::Carp;
f6d731aa 11use SQL::Abstract qw( is_literal_value is_plain_value );
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
5529838f 54L<Result Class|DBIx::Class::Manual::Glossary/Result Class>.
93711422 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 {
a5f5e470 128 my ($self, $rel_name, $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:
a5f5e470 133 my $rel_rs = $rsrc->related_source($rel_name)->resultset;
72c2540d 134 my $new_rel_obj = $rel_rs->new_result($values);
68888c09 135 my $proc_data = { $new_rel_obj->get_columns };
136
a5f5e470 137 if ($self->__their_pk_needs_us($rel_name)) {
138 MULTICREATE_DEBUG and print STDERR "MC $self constructing $rel_name via new_result\n";
68888c09 139 return $new_rel_obj;
370f2ba2 140 }
a5f5e470 141 elsif ($rsrc->_pk_depends_on($rel_name, $proc_data )) {
68888c09 142 if (! keys %$proc_data) {
143 # there is nothing to search for - blind create
a5f5e470 144 MULTICREATE_DEBUG and print STDERR "MC $self constructing default-insert $rel_name\n";
68888c09 145 }
146 else {
a5f5e470 147 MULTICREATE_DEBUG and print STDERR "MC $self constructing $rel_name 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 (
a5f5e470 158 "Unable to determine relationship '$rel_name' direction from '$us', "
159 . "possibly due to a missing reverse-relationship on '$rel_name' to '$us'."
854929cb 160 );
370f2ba2 161 }
370f2ba2 162}
163
164sub __their_pk_needs_us { # this should maybe be in resultsource.
a5f5e470 165 my ($self, $rel_name) = @_;
72c2540d 166 my $rsrc = $self->result_source;
a5f5e470 167 my $reverse = $rsrc->reverse_relationship_info($rel_name);
168 my $rel_source = $rsrc->related_source($rel_name);
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
b83736a7 199 my( $related, $inflated, $colinfos );
8222f722 200
61a622ee 201 foreach my $key (keys %$attrs) {
f8193780 202 if (ref $attrs->{$key} and ! is_literal_value($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;
4006691d 259 }
260 elsif (
b83736a7 261 ( $colinfos ||= $rsrc->columns_info )
262 ->{$key}{_inflate_info}
4006691d 263 ) {
61a622ee 264 $inflated->{$key} = $attrs->{$key};
265 next;
266 }
267 }
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
e5053694 345 my $storage = $rsrc->schema->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;
a5f5e470 355 for my $rel_name (keys %related_stuff) {
356 my $rel_obj = $related_stuff{$rel_name};
9c6d6d93 357
a5f5e470 358 if (! $self->{_rel_in_storage}{$rel_name}) {
6298a324 359 next unless (blessed $rel_obj && $rel_obj->isa('DBIx::Class::Row'));
a8c98174 360
72c2540d 361 next unless $rsrc->_pk_depends_on(
a5f5e470 362 $rel_name, { $rel_obj->get_columns }
d4fe33d0 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
a5f5e470 368 MULTICREATE_DEBUG and print STDERR "MC $self pre-reconstructing $rel_name $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
5567c8f8 374 if (keys %$them and $existing = $rsrc->related_source($rel_name)
68888c09 375 ->resultset
376 ->find($them)
377 ) {
378 %{$rel_obj} = %{$existing};
379 }
380 else {
381 $rel_obj->insert;
382 }
d4fe33d0 383
a5f5e470 384 $self->{_rel_in_storage}{$rel_name} = 1;
33dd4e80 385 }
d4fe33d0 386
a5f5e470 387 $self->set_from_related($rel_name, $rel_obj);
388 delete $related_stuff{$rel_name};
d4fe33d0 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
59d017a0 419 (
420 defined $current_rowdata{$_}
421 and
422 # one of the few spots doing forced-stringification
423 # needed to work around objects with defined stringification
424 # but *without* overloaded comparison (ugh!)
425 "$current_rowdata{$_}" ne "$returned_cols->{$_}"
426 )
8b9473f5 427 );
ac8e89d7 428 }
33dd4e80 429
5ef76b8b 430 delete $self->{_column_data_in_storage};
431 $self->in_storage(1);
e0cdf2cb 432
370f2ba2 433 $self->{_dirty_columns} = {};
434 $self->{related_resultsets} = {};
435
a5f5e470 436 foreach my $rel_name (keys %related_stuff) {
437 next unless $rsrc->has_relationship ($rel_name);
31c3800e 438
a5f5e470 439 my @cands = ref $related_stuff{$rel_name} eq 'ARRAY'
440 ? @{$related_stuff{$rel_name}}
441 : $related_stuff{$rel_name}
31c3800e 442 ;
d4fe33d0 443
6298a324 444 if (@cands && blessed $cands[0] && $cands[0]->isa('DBIx::Class::Row')
31c3800e 445 ) {
a5f5e470 446 my $reverse = $rsrc->reverse_relationship_info($rel_name);
d4fe33d0 447 foreach my $obj (@cands) {
448 $obj->set_from_related($_, $self) for keys %$reverse;
a5f5e470 449 if ($self->__their_pk_needs_us($rel_name)) {
450 if (exists $self->{_ignore_at_insert}{$rel_name}) {
451 MULTICREATE_DEBUG and print STDERR "MC $self skipping post-insert on $rel_name\n";
65ee2b31 452 }
453 else {
a5f5e470 454 MULTICREATE_DEBUG and print STDERR "MC $self inserting $rel_name $obj\n";
65ee2b31 455 $obj->insert;
370f2ba2 456 }
d4fe33d0 457 } else {
eed5492f 458 MULTICREATE_DEBUG and print STDERR "MC $self post-inserting $obj\n";
d4fe33d0 459 $obj->insert();
8222f722 460 }
33dd4e80 461 }
462 }
463 }
33dd4e80 464
d4fe33d0 465 delete $self->{_ignore_at_insert};
5ef76b8b 466
d4fe33d0 467 $rollback_guard->commit if $rollback_guard;
468
7624b19f 469 return $self;
470}
471
8091aa91 472=head2 in_storage
7624b19f 473
47d7b769 474 $result->in_storage; # Get value
475 $result->in_storage(1); # Set value
a2531bf2 476
477=over
478
479=item Arguments: none or 1|0
480
fb13a49f 481=item Return Value: 1|0
a2531bf2 482
483=back
7624b19f 484
e91e756c 485Indicates whether the object exists as a row in the database or
486not. This is set to true when L<DBIx::Class::ResultSet/find>,
5529838f 487L<DBIx::Class::ResultSet/create> or L<DBIx::Class::Row/insert>
488are invoked.
e91e756c 489
69bc5f2b 490Creating a result object using L<DBIx::Class::ResultSet/new_result>, or
491calling L</delete> on one, sets it to false.
7624b19f 492
7624b19f 493
8091aa91 494=head2 update
7624b19f 495
47d7b769 496 $result->update(\%columns?)
a2531bf2 497
498=over
7624b19f 499
a2531bf2 500=item Arguments: none or a hashref
7624b19f 501
fb13a49f 502=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
a2531bf2 503
504=back
505
fb13a49f 506Throws an exception if the result object is not yet in the database,
47d7b769 507according to L</in_storage>. Returns the object itself.
a2531bf2 508
509This method issues an SQL UPDATE query to commit any changes to the
d6988be8 510object to the database if required (see L</get_dirty_columns>).
511It throws an exception if a proper WHERE clause uniquely identifying
512the database row can not be constructed (see
513L<significance of primary keys|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
514for more details).
a2531bf2 515
0d0fcdbf 516Also takes an optional hashref of C<< column_name => value >> pairs
a2531bf2 517to update on the object first. Be aware that the hashref will be
518passed to C<set_inflated_columns>, which might edit it in place, so
519don't rely on it being the same after a call to C<update>. If you
520need to preserve the hashref, it is sufficient to pass a shallow copy
521to C<update>, e.g. ( { %{ $href } } )
d5d833d9 522
05d1bc9c 523If the values passed or any of the column values set on the object
48580715 524contain scalar references, e.g.:
05d1bc9c 525
47d7b769 526 $result->last_modified(\'NOW()')->update();
05d1bc9c 527 # OR
47d7b769 528 $result->update({ last_modified => \'NOW()' });
05d1bc9c 529
530The update will pass the values verbatim into SQL. (See
fb13a49f 531L<SQL::Abstract> docs). The values in your Result object will NOT change
05d1bc9c 532as a result of the update call, if you want the object to be updated
533with the actual values from the database, call L</discard_changes>
534after the update.
535
47d7b769 536 $result->update()->discard_changes();
a2531bf2 537
538To determine before calling this method, which column values have
539changed and will be updated, call L</get_dirty_columns>.
540
541To check if any columns will be updated, call L</is_changed>.
542
543To force a column to be updated, call L</make_column_dirty> before
544this method.
05d1bc9c 545
7624b19f 546=cut
547
548sub update {
549 my ($self, $upd) = @_;
6e399b4f 550
bacf6f12 551 $self->set_inflated_columns($upd) if $upd;
de5ce481 552
014789be 553 my %to_update = $self->get_dirty_columns
554 or return $self;
555
de5ce481 556 $self->throw_exception( "Not in database" ) unless $self->in_storage;
557
e5053694 558 my $rows = $self->result_source->schema->storage->update(
867f1b28 559 $self->result_source, \%to_update, $self->_storage_ident_condition
cf856357 560 );
7624b19f 561 if ($rows == 0) {
701da8c4 562 $self->throw_exception( "Can't update ${self}: row not found" );
7624b19f 563 } elsif ($rows > 1) {
701da8c4 564 $self->throw_exception("Can't update ${self}: updated more than one row");
7624b19f 565 }
566 $self->{_dirty_columns} = {};
64acc2bc 567 $self->{related_resultsets} = {};
5ef76b8b 568 delete $self->{_column_data_in_storage};
7624b19f 569 return $self;
570}
571
8091aa91 572=head2 delete
7624b19f 573
47d7b769 574 $result->delete
a2531bf2 575
576=over
577
578=item Arguments: none
7624b19f 579
fb13a49f 580=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
a2531bf2 581
582=back
583
584Throws an exception if the object is not in the database according to
d6988be8 585L</in_storage>. Also throws an exception if a proper WHERE clause
586uniquely identifying the database row can not be constructed (see
587L<significance of primary keys|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
588for more details).
a2531bf2 589
590The object is still perfectly usable, but L</in_storage> will
ea36f4e4 591now return 0 and the object must be reinserted using L</insert>
b6d347e0 592before it can be used to L</update> the row again.
a2531bf2 593
594If you delete an object in a class with a C<has_many> relationship, an
595attempt is made to delete all the related objects as well. To turn
596this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
597hashref of the relationship, see L<DBIx::Class::Relationship>. Any
598database-level cascade or restrict will take precedence over a
281e677e 599DBIx-Class-based cascading delete, since DBIx-Class B<deletes the
600main row first> and only then attempts to delete any remaining related
601rows.
a2531bf2 602
b1d16ffd 603If you delete an object within a txn_do() (see L<DBIx::Class::Storage/txn_do>)
fb13a49f 604and the transaction subsequently fails, the result object will remain marked as
b1d16ffd 605not being in storage. If you know for a fact that the object is still in
606storage (i.e. by inspecting the cause of the transaction's failure), you can
607use C<< $obj->in_storage(1) >> to restore consistency between the object and
608the database. This would allow a subsequent C<< $obj->delete >> to work
609as expected.
610
a2531bf2 611See also L<DBIx::Class::ResultSet/delete>.
7624b19f 612
613=cut
614
615sub delete {
616 my $self = shift;
617 if (ref $self) {
701da8c4 618 $self->throw_exception( "Not in database" ) unless $self->in_storage;
cf856357 619
e5053694 620 $self->result_source->schema->storage->delete(
867f1b28 621 $self->result_source, $self->_storage_ident_condition
cf856357 622 );
623
5ef76b8b 624 delete $self->{_column_data_in_storage};
4c8ef945 625 $self->in_storage(0);
cf856357 626 }
627 else {
ddcc02d1 628 my $rsrc = dbic_internal_try { $self->result_source_instance }
5298bbb5 629 or $self->throw_exception("Can't do class delete without a ResultSource instance");
630
aeb1bf75 631 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
632 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
5298bbb5 633 $rsrc->resultset->search(@_)->delete;
7624b19f 634 }
635 return $self;
636}
637
8091aa91 638=head2 get_column
7624b19f 639
47d7b769 640 my $val = $result->get_column($col);
a2531bf2 641
642=over
643
644=item Arguments: $columnname
645
fb13a49f 646=item Return Value: The value of the column
a2531bf2 647
648=back
649
650Throws an exception if the column name given doesn't exist according
16667b3a 651to L<has_column|DBIx::Class::ResultSource/has_column>.
7624b19f 652
fb13a49f 653Returns a raw column value from the result object, if it has already
e91e756c 654been fetched from the database or set by an accessor.
655
656If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
657will be deflated and returned.
7624b19f 658
ea36f4e4 659Note that if you used the C<columns> or the C<select/as>
660L<search attributes|DBIx::Class::ResultSet/ATTRIBUTES> on the resultset from
47d7b769 661which C<$result> was derived, and B<did not include> C<$columnname> in the list,
ea36f4e4 662this method will return C<undef> even if the database contains some value.
663
a2531bf2 664To retrieve all loaded column values as a hash, use L</get_columns>.
665
7624b19f 666=cut
667
668sub get_column {
669 my ($self, $column) = @_;
701da8c4 670 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
5ae153d7 671
672 return $self->{_column_data}{$column}
673 if exists $self->{_column_data}{$column};
674
61a622ee 675 if (exists $self->{_inflated_column}{$column}) {
5ae153d7 676 # deflate+return cycle
677 return $self->store_column($column, $self->_deflated_column(
678 $column, $self->{_inflated_column}{$column}
679 ));
61a622ee 680 }
5ae153d7 681
75ef16a7 682 $self->throw_exception( "No such column '${column}' on " . ref $self )
4006691d 683 unless $self->result_source->has_column($column);
5ae153d7 684
7624b19f 685 return undef;
686}
687
9b83fccd 688=head2 has_column_loaded
689
47d7b769 690 if ( $result->has_column_loaded($col) ) {
9b83fccd 691 print "$col has been loaded from db";
692 }
693
a2531bf2 694=over
695
696=item Arguments: $columnname
697
fb13a49f 698=item Return Value: 0|1
a2531bf2 699
700=back
701
9b83fccd 702Returns a true value if the column value has been loaded from the
703database (or set locally).
704
705=cut
706
def81720 707sub has_column_loaded {
708 my ($self, $column) = @_;
709 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
5ae153d7 710
711 return (
712 exists $self->{_inflated_column}{$column}
713 or
714 exists $self->{_column_data}{$column}
715 ) ? 1 : 0;
def81720 716}
717
8091aa91 718=head2 get_columns
076a6864 719
47d7b769 720 my %data = $result->get_columns;
a2531bf2 721
722=over
723
724=item Arguments: none
076a6864 725
fb13a49f 726=item Return Value: A hash of columnname, value pairs.
a2531bf2 727
728=back
729
730Returns all loaded column data as a hash, containing raw values. To
731get just one value for a particular column, use L</get_column>.
076a6864 732
c0a171bf 733See L</get_inflated_columns> to get the inflated values.
734
076a6864 735=cut
736
737sub get_columns {
738 my $self = shift;
61a622ee 739 if (exists $self->{_inflated_column}) {
5ae153d7 740 # deflate cycle for each inflation, including filter rels
61a622ee 741 foreach my $col (keys %{$self->{_inflated_column}}) {
6dd43920 742 unless (exists $self->{_column_data}{$col}) {
743
744 # if cached related_resultset is present assume this was a prefetch
745 carp_unique(
746 "Returning primary keys of prefetched 'filter' rels as part of get_columns() is deprecated and will "
747 . 'eventually be removed entirely (set DBIC_COLUMNS_INCLUDE_FILTER_RELS to disable this warning)'
748 ) if (
749 ! $ENV{DBIC_COLUMNS_INCLUDE_FILTER_RELS}
750 and
751 defined $self->{related_resultsets}{$col}
752 and
753 defined $self->{related_resultsets}{$col}->get_cache
754 );
755
756 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}));
757 }
61a622ee 758 }
759 }
cb5f2eea 760 return %{$self->{_column_data}};
d7156e50 761}
762
763=head2 get_dirty_columns
764
47d7b769 765 my %data = $result->get_dirty_columns;
a2531bf2 766
767=over
768
769=item Arguments: none
d7156e50 770
fb13a49f 771=item Return Value: A hash of column, value pairs
a2531bf2 772
773=back
774
775Only returns the column, value pairs for those columns that have been
776changed on this object since the last L</update> or L</insert> call.
777
778See L</get_columns> to fetch all column/value pairs.
d7156e50 779
780=cut
781
782sub get_dirty_columns {
783 my $self = shift;
784 return map { $_ => $self->{_column_data}{$_} }
785 keys %{$self->{_dirty_columns}};
076a6864 786}
787
6dbea98e 788=head2 make_column_dirty
789
47d7b769 790 $result->make_column_dirty($col)
a2531bf2 791
792=over
793
794=item Arguments: $columnname
795
fb13a49f 796=item Return Value: not defined
a2531bf2 797
798=back
799
800Throws an exception if the column does not exist.
801
802Marks a column as having been changed regardless of whether it has
b6d347e0 803really changed.
6dbea98e 804
805=cut
4c8ef945 806
6dbea98e 807sub make_column_dirty {
808 my ($self, $column) = @_;
809
75ef16a7 810 $self->throw_exception( "No such column '${column}' on " . ref $self )
4006691d 811 unless exists $self->{_column_data}{$column} || $self->result_source->has_column($column);
497d874a 812
b6d347e0 813 # the entire clean/dirty code relies on exists, not on true/false
497d874a 814 return 1 if exists $self->{_dirty_columns}{$column};
815
6dbea98e 816 $self->{_dirty_columns}{$column} = 1;
497d874a 817
818 # if we are just now making the column dirty, and if there is an inflated
819 # value, force it over the deflated one
820 if (exists $self->{_inflated_column}{$column}) {
821 $self->store_column($column,
822 $self->_deflated_column(
823 $column, $self->{_inflated_column}{$column}
824 )
825 );
826 }
6dbea98e 827}
828
ba4a6453 829=head2 get_inflated_columns
830
e91e756c 831 my %inflated_data = $obj->get_inflated_columns;
ba4a6453 832
a2531bf2 833=over
834
835=item Arguments: none
836
fb13a49f 837=item Return Value: A hash of column, object|value pairs
a2531bf2 838
839=back
840
841Returns a hash of all column keys and associated values. Values for any
842columns set to use inflation will be inflated and returns as objects.
843
844See L</get_columns> to get the uninflated values.
845
846See L<DBIx::Class::InflateColumn> for how to setup inflation.
ba4a6453 847
848=cut
849
850sub get_inflated_columns {
851 my $self = shift;
d61b2132 852
4006691d 853 my $loaded_colinfo = $self->result_source->columns_info;
854 $self->has_column_loaded($_) or delete $loaded_colinfo->{$_}
855 for keys %$loaded_colinfo;
d61b2132 856
6dd43920 857 my %cols_to_return = ( %{$self->{_column_data}}, %$loaded_colinfo );
858
859 unless ($ENV{DBIC_COLUMNS_INCLUDE_FILTER_RELS}) {
860 for (keys %$loaded_colinfo) {
861 # if cached related_resultset is present assume this was a prefetch
862 if (
863 $loaded_colinfo->{$_}{_inflate_info}
864 and
865 defined $self->{related_resultsets}{$_}
866 and
867 defined $self->{related_resultsets}{$_}->get_cache
868 ) {
869 carp_unique(
870 "Returning prefetched 'filter' rels as part of get_inflated_columns() is deprecated and will "
871 . 'eventually be removed entirely (set DBIC_COLUMNS_INCLUDE_FILTER_RELS to disable this warning)'
872 );
873 last;
874 }
d61b2132 875 }
876 }
877
6dd43920 878 map { $_ => (
879 (
880 ! exists $loaded_colinfo->{$_}
881 or
882 (
883 exists $loaded_colinfo->{$_}{accessor}
884 and
885 ! defined $loaded_colinfo->{$_}{accessor}
886 )
887 ) ? $self->get_column($_)
888 : $self->${ \(
889 defined $loaded_colinfo->{$_}{accessor}
890 ? $loaded_colinfo->{$_}{accessor}
891 : $_
892 )}
893 )} keys %cols_to_return;
ba4a6453 894}
895
ca8a1270 896sub _is_column_numeric {
57e9c142 897 my ($self, $column) = @_;
898
5567c8f8 899 my $rsrc;
57e9c142 900
5567c8f8 901 return undef
902 unless ( $rsrc = $self->result_source )->has_column($column);
903
b83736a7 904 my $colinfo = $rsrc->columns_info->{$column};
0bb1a52f 905
906 # cache for speed (the object may *not* have a resultsource instance)
50261284 907 if (
908 ! defined $colinfo->{is_numeric}
909 and
5567c8f8 910 my $storage = dbic_internal_try { $rsrc->schema->storage }
50261284 911 ) {
0bb1a52f 912 $colinfo->{is_numeric} =
50261284 913 $storage->is_datatype_numeric ($colinfo->{data_type})
0bb1a52f 914 ? 1
915 : 0
916 ;
917 }
918
919 return $colinfo->{is_numeric};
920}
921
8091aa91 922=head2 set_column
7624b19f 923
47d7b769 924 $result->set_column($col => $val);
a2531bf2 925
926=over
927
928=item Arguments: $columnname, $value
929
fb13a49f 930=item Return Value: $value
a2531bf2 931
932=back
7624b19f 933
e91e756c 934Sets a raw column value. If the new value is different from the old one,
a2531bf2 935the column is marked as dirty for when you next call L</update>.
7624b19f 936
ea36f4e4 937If passed an object or reference as a value, this method will happily
938attempt to store it, and a later L</insert> or L</update> will try and
a2531bf2 939stringify/numify as appropriate. To set an object to be deflated
93711422 940instead, see L</set_inflated_columns>, or better yet, use L</$column_accessor>.
e91e756c 941
7624b19f 942=cut
943
944sub set_column {
1d0057bd 945 my ($self, $column, $new_value) = @_;
946
5ef76b8b 947 my $had_value = $self->has_column_loaded($column);
5ae153d7 948 my $old_value = $self->get_column($column);
1d0057bd 949
b236052f 950 $new_value = $self->store_column($column, $new_value);
8f9eff75 951
cde96798 952 my $dirty =
953 $self->{_dirty_columns}{$column}
954 ||
57e9c142 955 ( $self->in_storage # no point tracking dirtyness on uninserted data
cde96798 956 ? ! $self->_eq_column_values ($column, $old_value, $new_value)
957 : 1
57e9c142 958 )
cde96798 959 ;
8f9eff75 960
35f5c265 961 if ($dirty) {
962 # FIXME sadly the update code just checks for keys, not for their value
963 $self->{_dirty_columns}{$column} = 1;
964
965 # Clear out the relation/inflation cache related to this column
966 #
967 # FIXME - this is a quick *largely incorrect* hack, pending a more
968 # serious rework during the merge of single and filter rels
a5f5e470 969 my $rel_names = $self->result_source->{_relationships};
970 for my $rel_name (keys %$rel_names) {
35f5c265 971
a5f5e470 972 my $acc = $rel_names->{$rel_name}{attrs}{accessor} || '';
35f5c265 973
a5f5e470 974 if ( $acc eq 'single' and $rel_names->{$rel_name}{attrs}{fk_columns}{$column} ) {
975 delete $self->{related_resultsets}{$rel_name};
976 delete $self->{_relationship_data}{$rel_name};
977 #delete $self->{_inflated_column}{$rel_name};
35f5c265 978 }
a5f5e470 979 elsif ( $acc eq 'filter' and $rel_name eq $column) {
980 delete $self->{related_resultsets}{$rel_name};
981 #delete $self->{_relationship_data}{$rel_name};
982 delete $self->{_inflated_column}{$rel_name};
35f5c265 983 }
8f9eff75 984 }
5ef76b8b 985
986 if (
987 # value change from something (even if NULL)
988 $had_value
989 and
990 # no storage - no storage-value
5ae153d7 991 $self->in_storage
5ef76b8b 992 and
993 # no value already stored (multiple changes before commit to storage)
994 ! exists $self->{_column_data_in_storage}{$column}
995 and
996 $self->_track_storage_value($column)
997 ) {
998 $self->{_column_data_in_storage}{$column} = $old_value;
8f9eff75 999 }
1000 }
1001
1d0057bd 1002 return $new_value;
7624b19f 1003}
e60dc79f 1004
cde96798 1005sub _eq_column_values {
1006 my ($self, $col, $old, $new) = @_;
e60dc79f 1007
cde96798 1008 if (defined $old xor defined $new) {
1009 return 0;
1010 }
1011 elsif (not defined $old) { # both undef
1012 return 1;
1013 }
3705e3b2 1014 elsif (
1015 is_literal_value $old
1016 or
1017 is_literal_value $new
1018 ) {
1019 return 0;
1020 }
cde96798 1021 elsif ($old eq $new) {
1022 return 1;
1023 }
1024 elsif ($self->_is_column_numeric($col)) { # do a numeric comparison if datatype allows it
1025 return $old == $new;
1026 }
1027 else {
1028 return 0;
1029 }
1030}
1031
5ef76b8b 1032# returns a boolean indicating if the passed column should have its original
1033# value tracked between column changes and commitment to storage
1034sub _track_storage_value {
1035 my ($self, $col) = @_;
87b12551 1036 return scalar grep
1037 { $col eq $_ }
1038 $self->result_source->primary_columns
1039 ;
7624b19f 1040}
1041
8091aa91 1042=head2 set_columns
076a6864 1043
47d7b769 1044 $result->set_columns({ $col => $val, ... });
a2531bf2 1045
b6d347e0 1046=over
076a6864 1047
a2531bf2 1048=item Arguments: \%columndata
1049
fb13a49f 1050=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
a2531bf2 1051
1052=back
1053
1054Sets multiple column, raw value pairs at once.
1055
1056Works as L</set_column>.
076a6864 1057
1058=cut
1059
1060sub set_columns {
72c2540d 1061 my ($self, $values) = @_;
1062 $self->set_column( $_, $values->{$_} ) for keys %$values;
c01ab172 1063 return $self;
076a6864 1064}
1065
bacf6f12 1066=head2 set_inflated_columns
1067
a5f5e470 1068 $result->set_inflated_columns({ $col => $val, $rel_name => $obj, ... });
a2531bf2 1069
1070=over
1071
1072=item Arguments: \%columndata
1073
fb13a49f 1074=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
a2531bf2 1075
1076=back
1077
1078Sets more than one column value at once. Any inflated values are
b6d347e0 1079deflated and the raw values stored.
bacf6f12 1080
fb13a49f 1081Any related values passed as Result objects, using the relation name as a
a2531bf2 1082key, are reduced to the appropriate foreign key values and stored. If
fb13a49f 1083instead of related result objects, a hashref of column, value data is
a2531bf2 1084passed, will create the related object first then store.
1085
1086Will even accept arrayrefs of data as a value to a
1087L<DBIx::Class::Relationship/has_many> key, and create the related
1088objects if necessary.
1089
c1300297 1090Be aware that the input hashref might be edited in place, so don't rely
a2531bf2 1091on it being the same after a call to C<set_inflated_columns>. If you
1092need to preserve the hashref, it is sufficient to pass a shallow copy
1093to C<set_inflated_columns>, e.g. ( { %{ $href } } )
1094
1095See also L<DBIx::Class::Relationship::Base/set_from_related>.
bacf6f12 1096
1097=cut
1098
1099sub set_inflated_columns {
1100 my ( $self, $upd ) = @_;
b83736a7 1101
1102 my ($rsrc, $colinfos);
1103
bacf6f12 1104 foreach my $key (keys %$upd) {
1105 if (ref $upd->{$key}) {
4006691d 1106 $rsrc ||= $self->result_source;
1107 my $info = $rsrc->relationship_info($key);
b82c8a28 1108 my $acc_type = $info->{attrs}{accessor} || '';
5ae153d7 1109
b82c8a28 1110 if ($acc_type eq 'single') {
72c2540d 1111 my $rel_obj = delete $upd->{$key};
1112 $self->set_from_related($key => $rel_obj);
1113 $self->{_relationship_data}{$key} = $rel_obj;
bacf6f12 1114 }
b82c8a28 1115 elsif ($acc_type eq 'multi') {
1116 $self->throw_exception(
1117 "Recursive update is not supported over relationships of type '$acc_type' ($key)"
1118 );
1119 }
4006691d 1120 elsif (
b83736a7 1121 exists( (
1122 ( $colinfos ||= $rsrc->columns_info )->{$key}
1123 ||
1124 {}
1125 )->{_inflate_info} )
4006691d 1126 ) {
a7be8807 1127 $self->set_inflated_column($key, delete $upd->{$key});
bacf6f12 1128 }
1129 }
1130 }
b6d347e0 1131 $self->set_columns($upd);
bacf6f12 1132}
1133
8091aa91 1134=head2 copy
076a6864 1135
1136 my $copy = $orig->copy({ change => $to, ... });
1137
a2531bf2 1138=over
1139
1140=item Arguments: \%replacementdata
1141
fb13a49f 1142=item Return Value: L<$result|DBIx::Class::Manual::ResultClass> copy
a2531bf2 1143
1144=back
1145
1146Inserts a new row into the database, as a copy of the original
1147object. If a hashref of replacement data is supplied, these will take
ce0893e0 1148precedence over data in the original. Also any columns which have
1149the L<column info attribute|DBIx::Class::ResultSource/add_columns>
1150C<< is_auto_increment => 1 >> are explicitly removed before the copy,
1151so that the database can insert its own autoincremented values into
1152the new object.
a2531bf2 1153
f928c965 1154Relationships will be followed by the copy procedure B<only> if the
48580715 1155relationship specifies a true value for its
f928c965 1156L<cascade_copy|DBIx::Class::Relationship::Base> attribute. C<cascade_copy>
1157is set by default on C<has_many> relationships and unset on all others.
076a6864 1158
1159=cut
1160
c01ab172 1161sub copy {
1162 my ($self, $changes) = @_;
333cce60 1163 $changes ||= {};
cc506f8b 1164 my $col_data = { $self->get_columns };
52416317 1165
4006691d 1166 my $rsrc = $self->result_source;
1167
cc506f8b 1168 my $colinfo = $rsrc->columns_info;
fde6e28e 1169 foreach my $col (keys %$col_data) {
1170 delete $col_data->{$col}
cc506f8b 1171 if ( ! $colinfo->{$col} or $colinfo->{$col}{is_auto_increment} );
fde6e28e 1172 }
04786a4c 1173
1174 my $new = { _column_data => $col_data };
1175 bless $new, ref $self;
1176
4006691d 1177 $new->result_source($rsrc);
bacf6f12 1178 $new->set_inflated_columns($changes);
333cce60 1179 $new->insert;
35688220 1180
b6d347e0 1181 # Its possible we'll have 2 relations to the same Source. We need to make
48580715 1182 # sure we don't try to insert the same row twice else we'll violate unique
35688220 1183 # constraints
a5f5e470 1184 my $rel_names_copied = {};
35688220 1185
4006691d 1186 foreach my $rel_name ($rsrc->relationships) {
1187 my $rel_info = $rsrc->relationship_info($rel_name);
35688220 1188
1189 next unless $rel_info->{attrs}{cascade_copy};
b6d347e0 1190
a4e58b18 1191 my $foreign_vals;
a5f5e470 1192 my $copied = $rel_names_copied->{ $rel_info->{source} } ||= {};
b6d347e0 1193
a4e58b18 1194 $copied->{$_->ID}++ or $_->copy(
1195
1196 $foreign_vals ||= $rsrc->_resolve_relationship_condition(
1197 infer_values_based_on => {},
1198 rel_name => $rel_name,
1199 self_result_object => $new,
1200
1201 self_alias => "\xFE", # irrelevant
1202 foreign_alias => "\xFF", # irrelevant,
1203 )->{inferred_values}
1204
e5053694 1205 ) for $self->related_resultset($rel_name)->all;
333cce60 1206 }
2c4c67b6 1207 return $new;
c01ab172 1208}
1209
8091aa91 1210=head2 store_column
7624b19f 1211
47d7b769 1212 $result->store_column($col => $val);
7624b19f 1213
a2531bf2 1214=over
1215
1216=item Arguments: $columnname, $value
1217
fb13a49f 1218=item Return Value: The value sent to storage
a2531bf2 1219
1220=back
1221
1222Set a raw value for a column without marking it as changed. This
1223method is used internally by L</set_column> which you should probably
1224be using.
1225
fb13a49f 1226This is the lowest level at which data is set on a result object,
a2531bf2 1227extend this method to catch all data setting methods.
7624b19f 1228
1229=cut
1230
1231sub store_column {
1232 my ($self, $column, $value) = @_;
75ef16a7 1233 $self->throw_exception( "No such column '${column}' on " . ref $self )
4006691d 1234 unless exists $self->{_column_data}{$column} || $self->result_source->has_column($column);
75d07914 1235 $self->throw_exception( "set_column called for ${column} without value" )
7624b19f 1236 if @_ < 3;
f6d731aa 1237
59d017a0 1238 my $vref;
1239 $self->{_column_data}{$column} = (
1240 # unpack potential { -value => "foo" }
1241 ( length ref $value and $vref = is_plain_value( $value ) )
1242 ? $$vref
1243 : $value
1244 );
7624b19f 1245}
1246
b52e9bf8 1247=head2 inflate_result
1248
c01ab172 1249 Class->inflate_result($result_source, \%me, \%prefetch?)
b52e9bf8 1250
a2531bf2 1251=over
1252
fb13a49f 1253=item Arguments: L<$result_source|DBIx::Class::ResultSource>, \%columndata, \%prefetcheddata
a2531bf2 1254
fb13a49f 1255=item Return Value: L<$result|DBIx::Class::Manual::ResultClass>
a2531bf2 1256
1257=back
1258
1259All L<DBIx::Class::ResultSet> methods that retrieve data from the
fb13a49f 1260database and turn it into result objects call this method.
a2531bf2 1261
1262Extend this method in your Result classes to hook into this process,
1263for example to rebless the result into a different class.
1264
1265Reblessing can also be done more easily by setting C<result_class> in
1266your Result class. See L<DBIx::Class::ResultSource/result_class>.
b52e9bf8 1267
db2b2eb6 1268Different types of results can also be created from a particular
1269L<DBIx::Class::ResultSet>, see L<DBIx::Class::ResultSet/result_class>.
1270
b52e9bf8 1271=cut
1272
1273sub inflate_result {
72c2540d 1274 my ($class, $rsrc, $me, $prefetch) = @_;
aec3eff1 1275
50261284 1276 my $new = bless
72c2540d 1277 { _column_data => $me, _result_source => $rsrc },
50261284 1278 ref $class || $class
1279 ;
04786a4c 1280
ce556881 1281 if ($prefetch) {
a5f5e470 1282 for my $rel_name ( keys %$prefetch ) {
35c77aa3 1283
a5f5e470 1284 my $relinfo = $rsrc->relationship_info($rel_name) or do {
3b4c4d72 1285 my $err = sprintf
1286 "Inflation into non-existent relationship '%s' of '%s' requested",
a5f5e470 1287 $rel_name,
3b4c4d72 1288 $rsrc->source_name,
1289 ;
a5f5e470 1290 if (my ($colname) = sort { length($a) <=> length ($b) } keys %{$prefetch->{$rel_name}[0] || {}} ) {
3b4c4d72 1291 $err .= sprintf ", check the inflation specification (columns/as) ending in '...%s.%s'",
a5f5e470 1292 $rel_name,
3b4c4d72 1293 $colname,
1294 }
1295
1296 $rsrc->throw_exception($err);
1297 };
1298
a5f5e470 1299 $class->throw_exception("No accessor type declared for prefetched relationship '$rel_name'")
3b4c4d72 1300 unless $relinfo->{attrs}{accessor};
1301
a5f5e470 1302 my $rel_rs = $new->related_resultset($rel_name);
93b306f0 1303
72c2540d 1304 my @rel_objects;
52864fbd 1305 if (
a5f5e470 1306 @{ $prefetch->{$rel_name} || [] }
52864fbd 1307 and
a5f5e470 1308 ref($prefetch->{$rel_name}) ne $DBIx::Class::ResultSource::RowParser::Util::null_branch_class
52864fbd 1309 ) {
25a942fa 1310
a5f5e470 1311 if (ref $prefetch->{$rel_name}[0] eq 'ARRAY') {
3b4c4d72 1312 my $rel_rsrc = $rel_rs->result_source;
1313 my $rel_class = $rel_rs->result_class;
1314 my $rel_inflator = $rel_class->can('inflate_result');
1315 @rel_objects = map
1316 { $rel_class->$rel_inflator ( $rel_rsrc, @$_ ) }
a5f5e470 1317 @{$prefetch->{$rel_name}}
3b4c4d72 1318 ;
1319 }
1320 else {
1321 @rel_objects = $rel_rs->result_class->inflate_result(
a5f5e470 1322 $rel_rs->result_source, @{$prefetch->{$rel_name}}
3b4c4d72 1323 );
1324 }
ce556881 1325 }
908aa1bb 1326
3b4c4d72 1327 if ($relinfo->{attrs}{accessor} eq 'single') {
a5f5e470 1328 $new->{_relationship_data}{$rel_name} = $rel_objects[0];
ce556881 1329 }
3b4c4d72 1330 elsif ($relinfo->{attrs}{accessor} eq 'filter') {
a5f5e470 1331 $new->{_inflated_column}{$rel_name} = $rel_objects[0];
ce556881 1332 }
b82c8a28 1333
93b306f0 1334 $rel_rs->set_cache(\@rel_objects);
b52e9bf8 1335 }
1336 }
35c77aa3 1337
1338 $new->in_storage (1);
7624b19f 1339 return $new;
1340}
1341
9b465d00 1342=head2 update_or_insert
7624b19f 1343
47d7b769 1344 $result->update_or_insert
a2531bf2 1345
1346=over
7624b19f 1347
a2531bf2 1348=item Arguments: none
1349
fb13a49f 1350=item Return Value: Result of update or insert operation
a2531bf2 1351
1352=back
1353
5529838f 1354L</update>s the object if it's already in the database, according to
a2531bf2 1355L</in_storage>, else L</insert>s it.
7624b19f 1356
9b83fccd 1357=head2 insert_or_update
1358
1359 $obj->insert_or_update
1360
1361Alias for L</update_or_insert>
1362
7624b19f 1363=cut
1364
e5053694 1365sub insert_or_update {
1366 DBIx::Class::_ENV_::ASSERT_NO_INTERNAL_INDIRECT_CALLS and fail_on_internal_call;
1367 shift->update_or_insert(@_);
1368}
370f2ba2 1369
9b465d00 1370sub update_or_insert {
7624b19f 1371 my $self = shift;
1372 return ($self->in_storage ? $self->update : $self->insert);
1373}
1374
8091aa91 1375=head2 is_changed
7624b19f 1376
47d7b769 1377 my @changed_col_names = $result->is_changed();
1378 if ($result->is_changed()) { ... }
a2531bf2 1379
1380=over
7624b19f 1381
a2531bf2 1382=item Arguments: none
1383
fb13a49f 1384=item Return Value: 0|1 or @columnnames
a2531bf2 1385
1386=back
1387
1388In list context returns a list of columns with uncommited changes, or
9b83fccd 1389in scalar context returns a true value if there are uncommitted
1390changes.
1391
7624b19f 1392=cut
1393
1394sub is_changed {
1395 return keys %{shift->{_dirty_columns} || {}};
1396}
228dbcb4 1397
1398=head2 is_column_changed
1399
47d7b769 1400 if ($result->is_column_changed('col')) { ... }
a2531bf2 1401
1402=over
1403
1404=item Arguments: $columname
1405
fb13a49f 1406=item Return Value: 0|1
a2531bf2 1407
1408=back
228dbcb4 1409
9b83fccd 1410Returns a true value if the column has uncommitted changes.
1411
228dbcb4 1412=cut
1413
1414sub is_column_changed {
1415 my( $self, $col ) = @_;
1416 return exists $self->{_dirty_columns}->{$col};
1417}
7624b19f 1418
097d3227 1419=head2 result_source
1420
47d7b769 1421 my $resultsource = $result->result_source;
a2531bf2 1422
1423=over
1424
fb13a49f 1425=item Arguments: L<$result_source?|DBIx::Class::ResultSource>
097d3227 1426
fb13a49f 1427=item Return Value: L<$result_source|DBIx::Class::ResultSource>
a2531bf2 1428
1429=back
1430
1431Accessor to the L<DBIx::Class::ResultSource> this object was created from.
87c4e602 1432
aec3eff1 1433=cut
1434
1435sub result_source {
f064a2ab 1436 # this is essentially a `shift->result_source_instance(@_)` with handholding
1437 &{
1438 $_[0]->can('result_source_instance')
1439 ||
1440 $_[0]->throw_exception(
1441 "No result source instance registered for '@{[ $_[0] ]}', did you forget to call @{[ ref $_[0] || $_[0] ]}->table(...) ?"
1442 )
1443 };
aec3eff1 1444}
1445
9b83fccd 1446=head2 register_column
27f01d1f 1447
9b83fccd 1448 $column_info = { .... };
1449 $class->register_column($column_name, $column_info);
27f01d1f 1450
a2531bf2 1451=over
1452
1453=item Arguments: $columnname, \%columninfo
1454
fb13a49f 1455=item Return Value: not defined
a2531bf2 1456
1457=back
1458
9b83fccd 1459Registers a column on the class. If the column_info has an 'accessor'
1460key, creates an accessor named after the value if defined; if there is
1461no such key, creates an accessor with the same name as the column
1f23a877 1462
9b83fccd 1463The column_info attributes are described in
1464L<DBIx::Class::ResultSource/add_columns>
1f23a877 1465
097d3227 1466=cut
1467
1f23a877 1468sub register_column {
1469 my ($class, $col, $info) = @_;
91b0fbd7 1470 my $acc = $col;
1471 if (exists $info->{accessor}) {
1472 return unless defined $info->{accessor};
1473 $acc = [ $info->{accessor}, $col ];
1474 }
1475 $class->mk_group_accessors('column' => $acc);
1f23a877 1476}
1477
a2531bf2 1478=head2 get_from_storage
1479
47d7b769 1480 my $copy = $result->get_from_storage($attrs)
a2531bf2 1481
1482=over
b9b4e52f 1483
a2531bf2 1484=item Arguments: \%attrs
b9b4e52f 1485
fb13a49f 1486=item Return Value: A Result object
a2531bf2 1487
1488=back
1489
fb13a49f 1490Fetches a fresh copy of the Result object from the database and returns it.
d6988be8 1491Throws an exception if a proper WHERE clause identifying the database row
1492can not be constructed (i.e. if the original object does not contain its
1493entire
1494 L<primary key|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>
1495). If passed the \%attrs argument, will first apply these attributes to
a2531bf2 1496the resultset used to find the row.
1497
fb13a49f 1498This copy can then be used to compare to an existing result object, to
a2531bf2 1499determine if any changes have been made in the database since it was
1500created.
1501
fb13a49f 1502To just update your Result object with any latest changes from the
a2531bf2 1503database, use L</discard_changes> instead.
1504
1505The \%attrs argument should be compatible with
1506L<DBIx::Class::ResultSet/ATTRIBUTES>.
7e38d850 1507
b9b4e52f 1508=cut
1509
a737512c 1510sub get_from_storage {
b9b4e52f 1511 my $self = shift @_;
7e38d850 1512 my $attrs = shift @_;
7e38d850 1513 my $resultset = $self->result_source->resultset;
b6d347e0 1514
7e38d850 1515 if(defined $attrs) {
bbd107cf 1516 $resultset = $resultset->search(undef, $attrs);
7e38d850 1517 }
b6d347e0 1518
867f1b28 1519 return $resultset->find($self->_storage_ident_condition);
b9b4e52f 1520}
701da8c4 1521
93711422 1522=head2 discard_changes
fde05eb9 1523
47d7b769 1524 $result->discard_changes
fde05eb9 1525
1526=over
1527
1528=item Arguments: none or $attrs
1529
fb13a49f 1530=item Return Value: self (updates object in-place)
fde05eb9 1531
1532=back
bbd107cf 1533
1534Re-selects the row from the database, losing any changes that had
fde05eb9 1535been made. Throws an exception if a proper C<WHERE> clause identifying
d6988be8 1536the database row can not be constructed (i.e. if the original object
1537does not contain its entire
fde05eb9 1538L<primary key|DBIx::Class::Manual::Intro/The Significance and Importance of Primary Keys>).
bbd107cf 1539
1540This method can also be used to refresh from storage, retrieving any
1541changes made since the row was last read from storage.
1542
fde05eb9 1543$attrs, if supplied, is expected to be a hashref of attributes suitable for passing as the
1544second argument to C<< $resultset->search($cond, $attrs) >>;
1545
1546Note: If you are using L<DBIx::Class::Storage::DBI::Replicated> as your
3dd506b8 1547storage, a default of
1548L<< C<< { force_pool => 'master' } >>
1549|DBIx::Class::Storage::DBI::Replicated/SYNOPSIS >> is automatically set for
1550you. Prior to C<< DBIx::Class 0.08109 >> (before 2010) one would have been
1551required to explicitly wrap the entire operation in a transaction to guarantee
1552that up-to-date results are read from the master database.
bbd107cf 1553
1554=cut
1555
1556sub discard_changes {
1557 my ($self, $attrs) = @_;
bbd107cf 1558 return unless $self->in_storage; # Don't reload if we aren't real!
1559
1560 # add a replication default to read from the master only
1561 $attrs = { force_pool => 'master', %{$attrs||{}} };
1562
1563 if( my $current_storage = $self->get_from_storage($attrs)) {
1564
1565 # Set $self to the current.
1566 %$self = %$current_storage;
1567
1568 # Avoid a possible infinite loop with
1569 # sub DESTROY { $_[0]->discard_changes }
1570 bless $current_storage, 'Do::Not::Exist';
1571
1572 return $self;
1573 }
1574 else {
1575 $self->in_storage(0);
1576 return $self;
1577 }
1578}
1579
5160b401 1580=head2 throw_exception
701da8c4 1581
a2531bf2 1582See L<DBIx::Class::Schema/throw_exception>.
701da8c4 1583
1584=cut
1585
1586sub throw_exception {
1587 my $self=shift;
1a58752c 1588
ddcc02d1 1589 if (
78de6edd 1590 ! DBIx::Class::_Util::in_internal_try
ddcc02d1 1591 and
78de6edd 1592 my $rsrc = dbic_internal_try { $self->result_source }
ddcc02d1 1593 ) {
4f52479b 1594 $rsrc->throw_exception(@_)
1a58752c 1595 }
1596 else {
1597 DBIx::Class::Exception->throw(@_);
701da8c4 1598 }
1599}
1600
33cf6616 1601=head2 id
1602
47d7b769 1603 my @pk = $result->id;
a2531bf2 1604
1605=over
1606
1607=item Arguments: none
1608
1609=item Returns: A list of primary key values
1610
1611=back
1612
33cf6616 1613Returns the primary key(s) for a row. Can't be called as a class method.
f7043881 1614Actually implemented in L<DBIx::Class::PK>
33cf6616 1615
a2bd3796 1616=head1 FURTHER QUESTIONS?
7624b19f 1617
a2bd3796 1618Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
7624b19f 1619
a2bd3796 1620=head1 COPYRIGHT AND LICENSE
7624b19f 1621
a2bd3796 1622This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1623by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1624redistribute it and/or modify it under the same terms as the
1625L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
7624b19f 1626
1627=cut
fde05eb9 1628
16291;