From: zby Date: Thu, 29 Jan 2009 15:47:33 +0000 (+0000) Subject: columns first X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=commitdiff_plain;h=0b1be0a3f6673341cfacf787490a3a208fb882e3 columns first --- diff --git a/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm b/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm index a152dc0..50be123 100644 --- a/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm +++ b/lib/DBIx/Class/ResultSet/RecursiveUpdate.pm @@ -30,39 +30,31 @@ sub recursive_update { } $object ||= $self->new( {} ); + # first update columns and other accessors - so that later related records can be found for my $name ( keys %$updates ){ - if($object->can($name)){ - my $value = $updates->{$name}; + if( $self->is_for_column( $object, $name, $updates->{$name} ) ) { + $object->$name( $updates->{$name} ); + } + } + for my $name ( keys %$updates ){ + if($object->can($name) && !$self->is_for_column( $object, $name, $updates->{$name} ) ){ # updating relations that that should be done before the row is inserted into the database # like belongs_to - if( $object->result_source->has_relationship($name) - and - ref $value - ){ my $info = $object->result_source->relationship_info( $name ); if( $info and not $info->{attrs}{accessor} eq 'multi' and _master_relation_cond( $object, $info->{cond}, $self->_get_pk_for_related( $name ) ) ){ my $related_result = $object->related_resultset( $name ); - my $sub_object = $related_result->recursive_update( $value ); + my $sub_object = $related_result->recursive_update( $updates->{$name} ); $object->set_from_related( $name, $sub_object ); } - } - # columns and other accessors - elsif( $object->result_source->has_column($name) - or - !$object->can( 'set_' . $name ) - ) { - $object->$name($value); - } } - #warn Dumper($object->{_column_data}); use Data::Dumper; } $self->_delete_empty_auto_increment($object); # don't allow insert to recurse to related objects - we do the recursion ourselves - $object->{_rel_in_storage} = 1; +# $object->{_rel_in_storage} = 1; # warn Dumper( $object->{_column_data} ); $object->update_or_insert; @@ -104,6 +96,20 @@ sub recursive_update { return $object; } +sub is_for_column { + my( $self, $object, $name, $value ) = @_; + return + $object->can($name) + && !( + $object->result_source->has_relationship($name) + && ref( $value ) + ) + && ( + $object->result_source->has_column($name) + || !$object->can( 'set_' . $name ) + ) +} + sub is_m2m { my( $self, $relation ) = @_; my $rclass = $self->result_class; diff --git a/t/var/dvdzbr.db b/t/var/dvdzbr.db index 430d2c0..ffd99d8 100644 Binary files a/t/var/dvdzbr.db and b/t/var/dvdzbr.db differ