Add new TODO items
[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/;
701da8c4 7use Carp::Clan qw/^DBIx::Class/;
33dd4e80 8use Scalar::Util ();
9c6d6d93 9use Scope::Guard;
1edd1722 10
aec3eff1 11__PACKAGE__->mk_group_accessors('simple' => qw/_source_handle/);
8c49f629 12
75d07914 13=head1 NAME
7624b19f 14
15DBIx::Class::Row - Basic row methods
16
17=head1 SYNOPSIS
18
19=head1 DESCRIPTION
20
21This class is responsible for defining and doing basic operations on rows
1ea77c14 22derived from L<DBIx::Class::ResultSource> objects.
7624b19f 23
a2531bf2 24Row objects are returned from L<DBIx::Class::ResultSet>s using the
25L<DBIx::Class::ResultSet/create>, L<DBIx::Class::ResultSet/find>,
26L<DBIx::Class::ResultSet/next> and L<DBIx::Class::ResultSet/all> methods.
27
7624b19f 28=head1 METHODS
29
8091aa91 30=head2 new
7624b19f 31
a2531bf2 32 my $row = My::Class->new(\%attrs);
33
34 my $row = $schema->resultset('MySource')->new(\%colsandvalues);
35
36=over
37
38=item Arguments: \%attrs or \%colsandvalues
39
40=item Returns: A Row object
7624b19f 41
a2531bf2 42=back
43
44While you can create a new row object by calling C<new> directly on
45this class, you are better off calling it on a
46L<DBIx::Class::ResultSet> object.
47
48When calling it directly, you will not get a complete, usable row
49object until you pass or set the C<source_handle> attribute, to a
50L<DBIx::Class::ResultSource> instance that is attached to a
51L<DBIx::Class::Schema> with a valid connection.
52
53C<$attrs> is a hashref of column name, value data. It can also contain
54some other attributes such as the C<source_handle>.
7624b19f 55
33dd4e80 56Passing an object, or an arrayref of objects as a value will call
57L<DBIx::Class::Relationship::Base/set_from_related> for you. When
58passed a hashref or an arrayref of hashrefs as the value, these will
59be turned into objects via new_related, and treated as if you had
60passed objects.
61
264f1571 62For a more involved explanation, see L<DBIx::Class::ResultSet/create>.
63
7624b19f 64=cut
65
33dd4e80 66## 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().
67## This only works because DBIC doesnt yet care to check whether the new_related objects have been passed all their mandatory columns
68## When doing the later insert, we need to make sure the PKs are set.
69## using _relationship_data in new and funky ways..
70## check Relationship::CascadeActions and Relationship::Accessor for compat
71## tests!
72
370f2ba2 73sub __new_related_find_or_new_helper {
74 my ($self, $relname, $data) = @_;
75 if ($self->__their_pk_needs_us($relname, $data)) {
76 return $self->result_source
77 ->related_source($relname)
78 ->resultset
79 ->new_result($data);
80 }
81 if ($self->result_source->pk_depends_on($relname, $data)) {
82 return $self->result_source
83 ->related_source($relname)
84 ->resultset
76b8cf98 85 ->find_or_create($data);
370f2ba2 86 }
87 return $self->find_or_new_related($relname, $data);
88}
89
90sub __their_pk_needs_us { # this should maybe be in resultsource.
91 my ($self, $relname, $data) = @_;
92 my $source = $self->result_source;
93 my $reverse = $source->reverse_relationship_info($relname);
94 my $rel_source = $source->related_source($relname);
95 my $us = { $self->get_columns };
96 foreach my $key (keys %$reverse) {
97 # if their primary key depends on us, then we have to
98 # just create a result and we'll fill it out afterwards
99 return 1 if $rel_source->pk_depends_on($key, $us);
100 }
101 return 0;
102}
103
7624b19f 104sub new {
448f820f 105 my ($class, $attrs) = @_;
7624b19f 106 $class = ref $class if ref $class;
04786a4c 107
e60dc79f 108 my $new = {
109 _column_data => {},
110 };
04786a4c 111 bless $new, $class;
112
448f820f 113 if (my $handle = delete $attrs->{-source_handle}) {
114 $new->_source_handle($handle);
115 }
370f2ba2 116
117 my $source;
118 if ($source = delete $attrs->{-result_source}) {
e9fe476b 119 $new->result_source($source);
120 }
a6a280b9 121
7624b19f 122 if ($attrs) {
27f01d1f 123 $new->throw_exception("attrs must be a hashref")
124 unless ref($attrs) eq 'HASH';
61a622ee 125
126 my ($related,$inflated);
de7c7c53 127 ## Pretend all the rels are actual objects, unset below if not, for insert() to fix
128 $new->{_rel_in_storage} = 1;
8222f722 129
61a622ee 130 foreach my $key (keys %$attrs) {
131 if (ref $attrs->{$key}) {
af2d42c0 132 ## Can we extract this lot to use with update(_or .. ) ?
370f2ba2 133 confess "Can't do multi-create without result source" unless $source;
134 my $info = $source->relationship_info($key);
61a622ee 135 if ($info && $info->{attrs}{accessor}
c4a30d56 136 && $info->{attrs}{accessor} eq 'single')
61a622ee 137 {
de7c7c53 138 my $rel_obj = delete $attrs->{$key};
33dd4e80 139 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 140 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 141 }
2bc3c81e 142
143 $new->{_rel_in_storage} = 0 unless ($rel_obj->in_storage);
144
370f2ba2 145 $new->set_from_related($key, $rel_obj) if $rel_obj->in_storage;
de7c7c53 146 $related->{$key} = $rel_obj;
61a622ee 147 next;
33dd4e80 148 } elsif ($info && $info->{attrs}{accessor}
149 && $info->{attrs}{accessor} eq 'multi'
150 && ref $attrs->{$key} eq 'ARRAY') {
2ec8e594 151 my $others = delete $attrs->{$key};
152 foreach my $rel_obj (@$others) {
153 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 154 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 155 }
2bc3c81e 156
157 $new->{_rel_in_storage} = 0 unless ($rel_obj->in_storage);
370f2ba2 158 $new->set_from_related($key, $rel_obj) if $rel_obj->in_storage;
2ec8e594 159 }
160 $related->{$key} = $others;
161 next;
162 } elsif ($info && $info->{attrs}{accessor}
163 && $info->{attrs}{accessor} eq 'filter')
61a622ee 164 {
33dd4e80 165 ## 'filter' should disappear and get merged in with 'single' above!
2ec8e594 166 my $rel_obj = delete $attrs->{$key};
33dd4e80 167 if(!Scalar::Util::blessed($rel_obj)) {
370f2ba2 168 $rel_obj = $new->__new_related_find_or_new_helper($key, $rel_obj);
33dd4e80 169 }
370f2ba2 170 $new->{_rel_in_storage} = 0 unless ($rel_obj->in_storage);
33dd4e80 171 $inflated->{$key} = $rel_obj;
61a622ee 172 next;
2ec8e594 173 } elsif ($class->has_column($key)
174 && $class->column_info($key)->{_inflate_info}) {
61a622ee 175 $inflated->{$key} = $attrs->{$key};
176 next;
177 }
178 }
179 $new->throw_exception("No such column $key on $class")
180 unless $class->has_column($key);
181 $new->store_column($key => $attrs->{$key});
7624b19f 182 }
f90375dd 183
61a622ee 184 $new->{_relationship_data} = $related if $related;
185 $new->{_inflated_column} = $inflated if $inflated;
7624b19f 186 }
04786a4c 187
7624b19f 188 return $new;
189}
190
8091aa91 191=head2 insert
7624b19f 192
a2531bf2 193 $row->insert;
194
195=over
7624b19f 196
a2531bf2 197=item Arguments: none
198
199=item Returns: The Row object
200
201=back
202
203Inserts an object previously created by L</new> into the database if
204it isn't already in there. Returns the object itself. Requires the
205object's result source to be set, or the class to have a
206result_source_instance method. To insert an entirely new row into
207the database, use C<create> (see L<DBIx::Class::ResultSet/create>).
7624b19f 208
e91e756c 209To fetch an uninserted row object, call
210L<new|DBIx::Class::ResultSet/new> on a resultset.
211
264f1571 212This will also insert any uninserted, related objects held inside this
213one, see L<DBIx::Class::ResultSet/create> for more details.
214
7624b19f 215=cut
216
217sub insert {
218 my ($self) = @_;
219 return $self if $self->in_storage;
6aba697f 220 my $source = $self->result_source;
221 $source ||= $self->result_source($self->result_source_instance)
097d3227 222 if $self->can('result_source_instance');
aeb1bf75 223 $self->throw_exception("No result_source set on this object; can't insert")
224 unless $source;
6e399b4f 225
9c6d6d93 226 my $rollback_guard;
227
33dd4e80 228 # Check if we stored uninserted relobjs here in new()
33dd4e80 229 my %related_stuff = (%{$self->{_relationship_data} || {}},
230 %{$self->{_inflated_column} || {}});
9c6d6d93 231
ae66ef47 232 if(!$self->{_rel_in_storage}) {
8222f722 233
9c6d6d93 234 # The guard will save us if we blow out of this scope via die
1bc193ac 235 $rollback_guard = $source->storage->txn_scope_guard;
9c6d6d93 236
8222f722 237 ## Should all be in relationship_data, but we need to get rid of the
238 ## 'filter' reltype..
239 ## These are the FK rels, need their IDs for the insert.
9c6d6d93 240
241 my @pri = $self->primary_columns;
242
243 REL: foreach my $relname (keys %related_stuff) {
a8c98174 244
245 my $rel_obj = $related_stuff{$relname};
246
247 next REL unless (Scalar::Util::blessed($rel_obj)
248 && $rel_obj->isa('DBIx::Class::Row'));
249
370f2ba2 250 next REL unless $source->pk_depends_on(
251 $relname, { $rel_obj->get_columns }
252 );
9c6d6d93 253
a8c98174 254 $rel_obj->insert();
255 $self->set_from_related($relname, $rel_obj);
256 delete $related_stuff{$relname};
33dd4e80 257 }
258 }
6e399b4f 259
ef5f6b0a 260 my $updated_cols = $source->storage->insert($source, { $self->get_columns });
261 $self->set_columns($updated_cols);
ac8e89d7 262
263 ## PK::Auto
3fda409f 264 my @auto_pri = grep {
265 !defined $self->get_column($_) ||
266 ref($self->get_column($_)) eq 'SCALAR'
267 } $self->primary_columns;
268
269 if (@auto_pri) {
270 #$self->throw_exception( "More than one possible key found for auto-inc on ".ref $self )
271 # if defined $too_many;
ac8e89d7 272
273 my $storage = $self->result_source->storage;
274 $self->throw_exception( "Missing primary key but Storage doesn't support last_insert_id" )
275 unless $storage->can('last_insert_id');
3fda409f 276 my @ids = $storage->last_insert_id($self->result_source,@auto_pri);
277 $self->throw_exception( "Can't get last insert id" )
278 unless (@ids == @auto_pri);
279 $self->store_column($auto_pri[$_] => $ids[$_]) for 0 .. $#ids;
ac8e89d7 280 }
33dd4e80 281
370f2ba2 282 $self->{_dirty_columns} = {};
283 $self->{related_resultsets} = {};
284
ae66ef47 285 if(!$self->{_rel_in_storage}) {
8222f722 286 ## Now do the has_many rels, that need $selfs ID.
287 foreach my $relname (keys %related_stuff) {
9c6d6d93 288 my $rel_obj = $related_stuff{$relname};
289 my @cands;
290 if (Scalar::Util::blessed($rel_obj)
291 && $rel_obj->isa('DBIx::Class::Row')) {
292 @cands = ($rel_obj);
293 } elsif (ref $rel_obj eq 'ARRAY') {
294 @cands = @$rel_obj;
295 }
296 if (@cands) {
297 my $reverse = $source->reverse_relationship_info($relname);
298 foreach my $obj (@cands) {
299 $obj->set_from_related($_, $self) for keys %$reverse;
76b8cf98 300 my $them = { $obj->get_inflated_columns };
370f2ba2 301 if ($self->__their_pk_needs_us($relname, $them)) {
302 $obj = $self->find_or_create_related($relname, $them);
303 } else {
304 $obj->insert();
305 }
8222f722 306 }
33dd4e80 307 }
308 }
1bc193ac 309 $rollback_guard->commit;
33dd4e80 310 }
33dd4e80 311
7624b19f 312 $self->in_storage(1);
729b29ae 313 undef $self->{_orig_ident};
7624b19f 314 return $self;
315}
316
8091aa91 317=head2 in_storage
7624b19f 318
a2531bf2 319 $row->in_storage; # Get value
320 $row->in_storage(1); # Set value
321
322=over
323
324=item Arguments: none or 1|0
325
326=item Returns: 1|0
327
328=back
7624b19f 329
e91e756c 330Indicates whether the object exists as a row in the database or
331not. This is set to true when L<DBIx::Class::ResultSet/find>,
332L<DBIx::Class::ResultSet/create> or L<DBIx::Class::ResultSet/insert>
333are used.
334
335Creating a row object using L<DBIx::Class::ResultSet/new>, or calling
336L</delete> on one, sets it to false.
7624b19f 337
338=cut
339
340sub in_storage {
341 my ($self, $val) = @_;
342 $self->{_in_storage} = $val if @_ > 1;
343 return $self->{_in_storage};
344}
345
8091aa91 346=head2 update
7624b19f 347
a2531bf2 348 $row->update(\%columns?)
349
350=over
7624b19f 351
a2531bf2 352=item Arguments: none or a hashref
7624b19f 353
a2531bf2 354=item Returns: The Row object
355
356=back
357
358Throws an exception if the row object is not yet in the database,
359according to L</in_storage>.
360
361This method issues an SQL UPDATE query to commit any changes to the
362object to the database if required.
363
364Also takes an optional hashref of C<< column_name => value> >> pairs
365to update on the object first. Be aware that the hashref will be
366passed to C<set_inflated_columns>, which might edit it in place, so
367don't rely on it being the same after a call to C<update>. If you
368need to preserve the hashref, it is sufficient to pass a shallow copy
369to C<update>, e.g. ( { %{ $href } } )
d5d833d9 370
05d1bc9c 371If the values passed or any of the column values set on the object
372contain scalar references, eg:
373
a2531bf2 374 $row->last_modified(\'NOW()');
05d1bc9c 375 # OR
a2531bf2 376 $row->update({ last_modified => \'NOW()' });
05d1bc9c 377
378The update will pass the values verbatim into SQL. (See
379L<SQL::Abstract> docs). The values in your Row object will NOT change
380as a result of the update call, if you want the object to be updated
381with the actual values from the database, call L</discard_changes>
382after the update.
383
a2531bf2 384 $row->update()->discard_changes();
385
386To determine before calling this method, which column values have
387changed and will be updated, call L</get_dirty_columns>.
388
389To check if any columns will be updated, call L</is_changed>.
390
391To force a column to be updated, call L</make_column_dirty> before
392this method.
05d1bc9c 393
7624b19f 394=cut
395
396sub update {
397 my ($self, $upd) = @_;
701da8c4 398 $self->throw_exception( "Not in database" ) unless $self->in_storage;
4b12b3c2 399 my $ident_cond = $self->ident_condition;
400 $self->throw_exception("Cannot safely update a row in a PK-less table")
401 if ! keys %$ident_cond;
6e399b4f 402
bacf6f12 403 $self->set_inflated_columns($upd) if $upd;
5a9e0e60 404 my %to_update = $self->get_dirty_columns;
405 return $self unless keys %to_update;
88cb6a1d 406 my $rows = $self->result_source->storage->update(
f4afcd5d 407 $self->result_source, \%to_update,
408 $self->{_orig_ident} || $ident_cond
409 );
7624b19f 410 if ($rows == 0) {
701da8c4 411 $self->throw_exception( "Can't update ${self}: row not found" );
7624b19f 412 } elsif ($rows > 1) {
701da8c4 413 $self->throw_exception("Can't update ${self}: updated more than one row");
7624b19f 414 }
415 $self->{_dirty_columns} = {};
64acc2bc 416 $self->{related_resultsets} = {};
729b29ae 417 undef $self->{_orig_ident};
7624b19f 418 return $self;
419}
420
8091aa91 421=head2 delete
7624b19f 422
a2531bf2 423 $row->delete
424
425=over
426
427=item Arguments: none
7624b19f 428
a2531bf2 429=item Returns: The Row object
430
431=back
432
433Throws an exception if the object is not in the database according to
434L</in_storage>. Runs an SQL DELETE statement using the primary key
435values to locate the row.
436
437The object is still perfectly usable, but L</in_storage> will
438now return 0 and the object must reinserted using L</insert>
439before it can be used to L</update> the row again.
440
441If you delete an object in a class with a C<has_many> relationship, an
442attempt is made to delete all the related objects as well. To turn
443this behaviour off, pass C<< cascade_delete => 0 >> in the C<$attr>
444hashref of the relationship, see L<DBIx::Class::Relationship>. Any
445database-level cascade or restrict will take precedence over a
446DBIx-Class-based cascading delete.
447
448See also L<DBIx::Class::ResultSet/delete>.
7624b19f 449
450=cut
451
452sub delete {
453 my $self = shift;
454 if (ref $self) {
701da8c4 455 $self->throw_exception( "Not in database" ) unless $self->in_storage;
728e60a3 456 my $ident_cond = $self->{_orig_ident} || $self->ident_condition;
4b12b3c2 457 $self->throw_exception("Cannot safely delete a row in a PK-less table")
458 if ! keys %$ident_cond;
e0f56292 459 foreach my $column (keys %$ident_cond) {
75d07914 460 $self->throw_exception("Can't delete the object unless it has loaded the primary keys")
461 unless exists $self->{_column_data}{$column};
e0f56292 462 }
88cb6a1d 463 $self->result_source->storage->delete(
7af8b477 464 $self->result_source, $ident_cond);
7624b19f 465 $self->in_storage(undef);
7624b19f 466 } else {
701da8c4 467 $self->throw_exception("Can't do class delete without a ResultSource instance")
097d3227 468 unless $self->can('result_source_instance');
aeb1bf75 469 my $attrs = @_ > 1 && ref $_[$#_] eq 'HASH' ? { %{pop(@_)} } : {};
470 my $query = ref $_[0] eq 'HASH' ? $_[0] : {@_};
097d3227 471 $self->result_source_instance->resultset->search(@_)->delete;
7624b19f 472 }
473 return $self;
474}
475
8091aa91 476=head2 get_column
7624b19f 477
a2531bf2 478 my $val = $row->get_column($col);
479
480=over
481
482=item Arguments: $columnname
483
484=item Returns: The value of the column
485
486=back
487
488Throws an exception if the column name given doesn't exist according
489to L</has_column>.
7624b19f 490
e91e756c 491Returns a raw column value from the row object, if it has already
492been fetched from the database or set by an accessor.
493
494If an L<inflated value|DBIx::Class::InflateColumn> has been set, it
495will be deflated and returned.
7624b19f 496
a2531bf2 497To retrieve all loaded column values as a hash, use L</get_columns>.
498
7624b19f 499=cut
500
501sub get_column {
502 my ($self, $column) = @_;
701da8c4 503 $self->throw_exception( "Can't fetch data as class method" ) unless ref $self;
aeb1bf75 504 return $self->{_column_data}{$column} if exists $self->{_column_data}{$column};
61a622ee 505 if (exists $self->{_inflated_column}{$column}) {
506 return $self->store_column($column,
507 $self->_deflated_column($column, $self->{_inflated_column}{$column}));
508 }
701da8c4 509 $self->throw_exception( "No such column '${column}'" ) unless $self->has_column($column);
7624b19f 510 return undef;
511}
512
9b83fccd 513=head2 has_column_loaded
514
a2531bf2 515 if ( $row->has_column_loaded($col) ) {
9b83fccd 516 print "$col has been loaded from db";
517 }
518
a2531bf2 519=over
520
521=item Arguments: $columnname
522
523=item Returns: 0|1
524
525=back
526
9b83fccd 527Returns a true value if the column value has been loaded from the
528database (or set locally).
529
530=cut
531
def81720 532sub has_column_loaded {
533 my ($self, $column) = @_;
534 $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
61a622ee 535 return 1 if exists $self->{_inflated_column}{$column};
aeb1bf75 536 return exists $self->{_column_data}{$column};
def81720 537}
538
8091aa91 539=head2 get_columns
076a6864 540
a2531bf2 541 my %data = $row->get_columns;
542
543=over
544
545=item Arguments: none
076a6864 546
a2531bf2 547=item Returns: A hash of columnname, value pairs.
548
549=back
550
551Returns all loaded column data as a hash, containing raw values. To
552get just one value for a particular column, use L</get_column>.
076a6864 553
554=cut
555
556sub get_columns {
557 my $self = shift;
61a622ee 558 if (exists $self->{_inflated_column}) {
559 foreach my $col (keys %{$self->{_inflated_column}}) {
560 $self->store_column($col, $self->_deflated_column($col, $self->{_inflated_column}{$col}))
c4a30d56 561 unless exists $self->{_column_data}{$col};
61a622ee 562 }
563 }
cb5f2eea 564 return %{$self->{_column_data}};
d7156e50 565}
566
567=head2 get_dirty_columns
568
a2531bf2 569 my %data = $row->get_dirty_columns;
570
571=over
572
573=item Arguments: none
d7156e50 574
a2531bf2 575=item Returns: A hash of column, value pairs
576
577=back
578
579Only returns the column, value pairs for those columns that have been
580changed on this object since the last L</update> or L</insert> call.
581
582See L</get_columns> to fetch all column/value pairs.
d7156e50 583
584=cut
585
586sub get_dirty_columns {
587 my $self = shift;
588 return map { $_ => $self->{_column_data}{$_} }
589 keys %{$self->{_dirty_columns}};
076a6864 590}
591
6dbea98e 592=head2 make_column_dirty
593
a2531bf2 594 $row->make_column_dirty($col)
595
596=over
597
598=item Arguments: $columnname
599
600=item Returns: undefined
601
602=back
603
604Throws an exception if the column does not exist.
605
606Marks a column as having been changed regardless of whether it has
607really changed.
6dbea98e 608
609=cut
610sub make_column_dirty {
611 my ($self, $column) = @_;
612
613 $self->throw_exception( "No such column '${column}'" )
614 unless exists $self->{_column_data}{$column} || $self->has_column($column);
615 $self->{_dirty_columns}{$column} = 1;
616}
617
ba4a6453 618=head2 get_inflated_columns
619
e91e756c 620 my %inflated_data = $obj->get_inflated_columns;
ba4a6453 621
a2531bf2 622=over
623
624=item Arguments: none
625
626=item Returns: A hash of column, object|value pairs
627
628=back
629
630Returns a hash of all column keys and associated values. Values for any
631columns set to use inflation will be inflated and returns as objects.
632
633See L</get_columns> to get the uninflated values.
634
635See L<DBIx::Class::InflateColumn> for how to setup inflation.
ba4a6453 636
637=cut
638
639sub get_inflated_columns {
640 my $self = shift;
641 return map {
642 my $accessor = $self->column_info($_)->{'accessor'} || $_;
643 ($_ => $self->$accessor);
644 } $self->columns;
645}
646
8091aa91 647=head2 set_column
7624b19f 648
a2531bf2 649 $row->set_column($col => $val);
650
651=over
652
653=item Arguments: $columnname, $value
654
655=item Returns: $value
656
657=back
7624b19f 658
e91e756c 659Sets a raw column value. If the new value is different from the old one,
a2531bf2 660the column is marked as dirty for when you next call L</update>.
7624b19f 661
a2531bf2 662If passed an object or reference as a value, this will happily attempt
663store it, and a later L</insert> or L</update> will try and
664stringify/numify as appropriate. To set an object to be deflated
665instead, see L</set_inflated_columns>.
e91e756c 666
7624b19f 667=cut
668
669sub set_column {
1d0057bd 670 my ($self, $column, $new_value) = @_;
671
729b29ae 672 $self->{_orig_ident} ||= $self->ident_condition;
1d0057bd 673 my $old_value = $self->get_column($column);
674
675 $self->store_column($column, $new_value);
87772e46 676 $self->{_dirty_columns}{$column} = 1
1d0057bd 677 if (defined $old_value xor defined $new_value) || (defined $old_value && $old_value ne $new_value);
e60dc79f 678
679 # XXX clear out the relation cache for this column
680 delete $self->{related_resultsets}{$column};
681
1d0057bd 682 return $new_value;
7624b19f 683}
684
8091aa91 685=head2 set_columns
076a6864 686
a2531bf2 687 $row->set_columns({ $col => $val, ... });
688
689=over
076a6864 690
a2531bf2 691=item Arguments: \%columndata
692
693=item Returns: The Row object
694
695=back
696
697Sets multiple column, raw value pairs at once.
698
699Works as L</set_column>.
076a6864 700
701=cut
702
703sub set_columns {
704 my ($self,$data) = @_;
a2ca474b 705 foreach my $col (keys %$data) {
706 $self->set_column($col,$data->{$col});
076a6864 707 }
c01ab172 708 return $self;
076a6864 709}
710
bacf6f12 711=head2 set_inflated_columns
712
a2531bf2 713 $row->set_inflated_columns({ $col => $val, $relname => $obj, ... });
714
715=over
716
717=item Arguments: \%columndata
718
719=item Returns: The Row object
720
721=back
722
723Sets more than one column value at once. Any inflated values are
724deflated and the raw values stored.
bacf6f12 725
a2531bf2 726Any related values passed as Row objects, using the relation name as a
727key, are reduced to the appropriate foreign key values and stored. If
728instead of related row objects, a hashref of column, value data is
729passed, will create the related object first then store.
730
731Will even accept arrayrefs of data as a value to a
732L<DBIx::Class::Relationship/has_many> key, and create the related
733objects if necessary.
734
735Be aware that the input hashref might be edited in place, so dont rely
736on it being the same after a call to C<set_inflated_columns>. If you
737need to preserve the hashref, it is sufficient to pass a shallow copy
738to C<set_inflated_columns>, e.g. ( { %{ $href } } )
739
740See also L<DBIx::Class::Relationship::Base/set_from_related>.
bacf6f12 741
742=cut
743
744sub set_inflated_columns {
745 my ( $self, $upd ) = @_;
746 foreach my $key (keys %$upd) {
747 if (ref $upd->{$key}) {
748 my $info = $self->relationship_info($key);
749 if ($info && $info->{attrs}{accessor}
750 && $info->{attrs}{accessor} eq 'single')
751 {
752 my $rel = delete $upd->{$key};
753 $self->set_from_related($key => $rel);
754 $self->{_relationship_data}{$key} = $rel;
755 } elsif ($info && $info->{attrs}{accessor}
756 && $info->{attrs}{accessor} eq 'multi'
757 && ref $upd->{$key} eq 'ARRAY') {
758 my $others = delete $upd->{$key};
759 foreach my $rel_obj (@$others) {
760 if(!Scalar::Util::blessed($rel_obj)) {
761 $rel_obj = $self->create_related($key, $rel_obj);
762 }
763 }
764 $self->{_relationship_data}{$key} = $others;
765# $related->{$key} = $others;
766 next;
767 }
768 elsif ($self->has_column($key)
769 && exists $self->column_info($key)->{_inflate_info})
770 {
771 $self->set_inflated_column($key, delete $upd->{$key});
772 }
773 }
774 }
775 $self->set_columns($upd);
776}
777
8091aa91 778=head2 copy
076a6864 779
780 my $copy = $orig->copy({ change => $to, ... });
781
a2531bf2 782=over
783
784=item Arguments: \%replacementdata
785
786=item Returns: The Row object copy
787
788=back
789
790Inserts a new row into the database, as a copy of the original
791object. If a hashref of replacement data is supplied, these will take
792precedence over data in the original.
793
794If the row has related objects in a
795L<DBIx::Class::Relationship/has_many> then those objects may be copied
796too depending on the L<cascade_copy|DBIx::Class::Relationship>
797relationship attribute.
076a6864 798
799=cut
800
c01ab172 801sub copy {
802 my ($self, $changes) = @_;
333cce60 803 $changes ||= {};
fde6e28e 804 my $col_data = { %{$self->{_column_data}} };
805 foreach my $col (keys %$col_data) {
806 delete $col_data->{$col}
807 if $self->result_source->column_info($col)->{is_auto_increment};
808 }
04786a4c 809
810 my $new = { _column_data => $col_data };
811 bless $new, ref $self;
812
83419ec6 813 $new->result_source($self->result_source);
bacf6f12 814 $new->set_inflated_columns($changes);
333cce60 815 $new->insert;
35688220 816
817 # Its possible we'll have 2 relations to the same Source. We need to make
818 # sure we don't try to insert the same row twice esle we'll violate unique
819 # constraints
820 my $rels_copied = {};
821
333cce60 822 foreach my $rel ($self->result_source->relationships) {
823 my $rel_info = $self->result_source->relationship_info($rel);
35688220 824
825 next unless $rel_info->{attrs}{cascade_copy};
826
827 my $resolved = $self->result_source->resolve_condition(
828 $rel_info->{cond}, $rel, $new
829 );
830
831 my $copied = $rels_copied->{ $rel_info->{source} } ||= {};
832 foreach my $related ($self->search_related($rel)) {
833 my $id_str = join("\0", $related->id);
834 next if $copied->{$id_str};
835 $copied->{$id_str} = 1;
836 my $rel_copy = $related->copy($resolved);
333cce60 837 }
35688220 838
333cce60 839 }
2c4c67b6 840 return $new;
c01ab172 841}
842
8091aa91 843=head2 store_column
7624b19f 844
a2531bf2 845 $row->store_column($col => $val);
7624b19f 846
a2531bf2 847=over
848
849=item Arguments: $columnname, $value
850
851=item Returns: The value set
852
853=back
854
855Set a raw value for a column without marking it as changed. This
856method is used internally by L</set_column> which you should probably
857be using.
858
859This is the lowest level at which data is set on a row object,
860extend this method to catch all data setting methods.
7624b19f 861
862=cut
863
864sub store_column {
865 my ($self, $column, $value) = @_;
75d07914 866 $self->throw_exception( "No such column '${column}'" )
d7156e50 867 unless exists $self->{_column_data}{$column} || $self->has_column($column);
75d07914 868 $self->throw_exception( "set_column called for ${column} without value" )
7624b19f 869 if @_ < 3;
870 return $self->{_column_data}{$column} = $value;
871}
872
b52e9bf8 873=head2 inflate_result
874
c01ab172 875 Class->inflate_result($result_source, \%me, \%prefetch?)
b52e9bf8 876
a2531bf2 877=over
878
879=item Arguments: $result_source, \%columndata, \%prefetcheddata
880
881=item Returns: A Row object
882
883=back
884
885All L<DBIx::Class::ResultSet> methods that retrieve data from the
886database and turn it into row objects call this method.
887
888Extend this method in your Result classes to hook into this process,
889for example to rebless the result into a different class.
890
891Reblessing can also be done more easily by setting C<result_class> in
892your Result class. See L<DBIx::Class::ResultSource/result_class>.
b52e9bf8 893
894=cut
895
896sub inflate_result {
c01ab172 897 my ($class, $source, $me, $prefetch) = @_;
aec3eff1 898
899 my ($source_handle) = $source;
900
901 if ($source->isa('DBIx::Class::ResultSourceHandle')) {
902 $source = $source_handle->resolve
903 } else {
904 $source_handle = $source->handle
905 }
906
04786a4c 907 my $new = {
aec3eff1 908 _source_handle => $source_handle,
04786a4c 909 _column_data => $me,
910 _in_storage => 1
911 };
912 bless $new, (ref $class || $class);
913
7fb16f1a 914 my $schema;
64acc2bc 915 foreach my $pre (keys %{$prefetch||{}}) {
916 my $pre_val = $prefetch->{$pre};
f9cc31dd 917 my $pre_source = $source->related_source($pre);
a86b1efe 918 $class->throw_exception("Can't prefetch non-existent relationship ${pre}")
919 unless $pre_source;
0f66a01b 920 if (ref($pre_val->[0]) eq 'ARRAY') { # multi
a86b1efe 921 my @pre_objects;
922 foreach my $pre_rec (@$pre_val) {
75d07914 923 unless ($pre_source->primary_columns == grep { exists $pre_rec->[0]{$_}
5a5bec6c 924 and defined $pre_rec->[0]{$_} } $pre_source->primary_columns) {
a86b1efe 925 next;
926 }
927 push(@pre_objects, $pre_source->result_class->inflate_result(
928 $pre_source, @{$pre_rec}));
929 }
930 $new->related_resultset($pre)->set_cache(\@pre_objects);
62e87ea8 931 } elsif (defined $pre_val->[0]) {
a86b1efe 932 my $fetched;
75d07914 933 unless ($pre_source->primary_columns == grep { exists $pre_val->[0]{$_}
a86b1efe 934 and !defined $pre_val->[0]{$_} } $pre_source->primary_columns)
935 {
936 $fetched = $pre_source->result_class->inflate_result(
75d07914 937 $pre_source, @{$pre_val});
a86b1efe 938 }
9809a6df 939 $new->related_resultset($pre)->set_cache([ $fetched ]);
a86b1efe 940 my $accessor = $source->relationship_info($pre)->{attrs}{accessor};
941 $class->throw_exception("No accessor for prefetched $pre")
942 unless defined $accessor;
943 if ($accessor eq 'single') {
944 $new->{_relationship_data}{$pre} = $fetched;
945 } elsif ($accessor eq 'filter') {
946 $new->{_inflated_column}{$pre} = $fetched;
947 } else {
948 $class->throw_exception("Prefetch not supported with accessor '$accessor'");
949 }
b52e9bf8 950 }
951 }
7624b19f 952 return $new;
953}
954
9b465d00 955=head2 update_or_insert
7624b19f 956
a2531bf2 957 $row->update_or_insert
958
959=over
7624b19f 960
a2531bf2 961=item Arguments: none
962
963=item Returns: Result of update or insert operation
964
965=back
966
967L</Update>s the object if it's already in the database, according to
968L</in_storage>, else L</insert>s it.
7624b19f 969
9b83fccd 970=head2 insert_or_update
971
972 $obj->insert_or_update
973
974Alias for L</update_or_insert>
975
7624b19f 976=cut
977
370f2ba2 978sub insert_or_update { shift->update_or_insert(@_) }
979
9b465d00 980sub update_or_insert {
7624b19f 981 my $self = shift;
982 return ($self->in_storage ? $self->update : $self->insert);
983}
984
8091aa91 985=head2 is_changed
7624b19f 986
a2531bf2 987 my @changed_col_names = $row->is_changed();
988 if ($row->is_changed()) { ... }
989
990=over
7624b19f 991
a2531bf2 992=item Arguments: none
993
994=item Returns: 0|1 or @columnnames
995
996=back
997
998In list context returns a list of columns with uncommited changes, or
9b83fccd 999in scalar context returns a true value if there are uncommitted
1000changes.
1001
7624b19f 1002=cut
1003
1004sub is_changed {
1005 return keys %{shift->{_dirty_columns} || {}};
1006}
228dbcb4 1007
1008=head2 is_column_changed
1009
a2531bf2 1010 if ($row->is_column_changed('col')) { ... }
1011
1012=over
1013
1014=item Arguments: $columname
1015
1016=item Returns: 0|1
1017
1018=back
228dbcb4 1019
9b83fccd 1020Returns a true value if the column has uncommitted changes.
1021
228dbcb4 1022=cut
1023
1024sub is_column_changed {
1025 my( $self, $col ) = @_;
1026 return exists $self->{_dirty_columns}->{$col};
1027}
7624b19f 1028
097d3227 1029=head2 result_source
1030
a2531bf2 1031 my $resultsource = $row->result_source;
1032
1033=over
1034
1035=item Arguments: none
097d3227 1036
a2531bf2 1037=item Returns: a ResultSource instance
1038
1039=back
1040
1041Accessor to the L<DBIx::Class::ResultSource> this object was created from.
87c4e602 1042
aec3eff1 1043=cut
1044
1045sub result_source {
1046 my $self = shift;
1047
1048 if (@_) {
1049 $self->_source_handle($_[0]->handle);
1050 } else {
1051 $self->_source_handle->resolve;
1052 }
1053}
1054
9b83fccd 1055=head2 register_column
27f01d1f 1056
9b83fccd 1057 $column_info = { .... };
1058 $class->register_column($column_name, $column_info);
27f01d1f 1059
a2531bf2 1060=over
1061
1062=item Arguments: $columnname, \%columninfo
1063
1064=item Returns: undefined
1065
1066=back
1067
9b83fccd 1068Registers a column on the class. If the column_info has an 'accessor'
1069key, creates an accessor named after the value if defined; if there is
1070no such key, creates an accessor with the same name as the column
1f23a877 1071
9b83fccd 1072The column_info attributes are described in
1073L<DBIx::Class::ResultSource/add_columns>
1f23a877 1074
097d3227 1075=cut
1076
1f23a877 1077sub register_column {
1078 my ($class, $col, $info) = @_;
91b0fbd7 1079 my $acc = $col;
1080 if (exists $info->{accessor}) {
1081 return unless defined $info->{accessor};
1082 $acc = [ $info->{accessor}, $col ];
1083 }
1084 $class->mk_group_accessors('column' => $acc);
1f23a877 1085}
1086
a2531bf2 1087=head2 get_from_storage
1088
1089 my $copy = $row->get_from_storage($attrs)
1090
1091=over
b9b4e52f 1092
a2531bf2 1093=item Arguments: \%attrs
b9b4e52f 1094
a2531bf2 1095=item Returns: A Row object
1096
1097=back
1098
1099Fetches a fresh copy of the Row object from the database and returns it.
1100
1101If passed the \%attrs argument, will first apply these attributes to
1102the resultset used to find the row.
1103
1104This copy can then be used to compare to an existing row object, to
1105determine if any changes have been made in the database since it was
1106created.
1107
1108To just update your Row object with any latest changes from the
1109database, use L</discard_changes> instead.
1110
1111The \%attrs argument should be compatible with
1112L<DBIx::Class::ResultSet/ATTRIBUTES>.
7e38d850 1113
b9b4e52f 1114=cut
1115
a737512c 1116sub get_from_storage {
b9b4e52f 1117 my $self = shift @_;
7e38d850 1118 my $attrs = shift @_;
7e38d850 1119 my $resultset = $self->result_source->resultset;
1120
1121 if(defined $attrs) {
1122 $resultset = $resultset->search(undef, $attrs);
1123 }
1124
728e60a3 1125 return $resultset->find($self->{_orig_ident} || $self->ident_condition);
b9b4e52f 1126}
701da8c4 1127
5160b401 1128=head2 throw_exception
701da8c4 1129
a2531bf2 1130See L<DBIx::Class::Schema/throw_exception>.
701da8c4 1131
1132=cut
1133
1134sub throw_exception {
1135 my $self=shift;
66cab05c 1136 if (ref $self && ref $self->result_source && $self->result_source->schema) {
701da8c4 1137 $self->result_source->schema->throw_exception(@_);
1138 } else {
1139 croak(@_);
1140 }
1141}
1142
33cf6616 1143=head2 id
1144
a2531bf2 1145 my @pk = $row->id;
1146
1147=over
1148
1149=item Arguments: none
1150
1151=item Returns: A list of primary key values
1152
1153=back
1154
33cf6616 1155Returns the primary key(s) for a row. Can't be called as a class method.
f7043881 1156Actually implemented in L<DBIx::Class::PK>
33cf6616 1157
1158=head2 discard_changes
1159
a2531bf2 1160 $row->discard_changes
1161
1162=over
1163
1164=item Arguments: none
1165
1166=item Returns: nothing (updates object in-place)
1167
1168=back
1169
1170Retrieves and sets the row object data from the database, losing any
1171local changes made.
33cf6616 1172
1173This method can also be used to refresh from storage, retrieving any
1174changes made since the row was last read from storage. Actually
f7043881 1175implemented in L<DBIx::Class::PK>
33cf6616 1176
1177=cut
1178
7624b19f 11791;
1180
7624b19f 1181=head1 AUTHORS
1182
daec44b8 1183Matt S. Trout <mst@shadowcatsystems.co.uk>
7624b19f 1184
1185=head1 LICENSE
1186
1187You may distribute this code under the same terms as Perl itself.
1188
1189=cut