}
}
- ## do bulk insert on current row
- my @values = map { [ @$_{@names} ] } @$data;
+ ## merge with the conditions from $self (inherited conditions)
+ my ($inherited_cond) = $self->_merge_with_cond({});
+ delete @{$inherited_cond}{@names};
+ my @inherited_names = keys %$inherited_cond;
+ my @values;
+ foreach my $row (@$data) {
+ my %row_data;
+ @row_data{@names} = @{$row}{@names};
+ my ($merged_cond) = $self->_merge_with_cond(\%row_data);
+ push @values, [ @{$merged_cond}{@names, @inherited_names} ];
+ }
+ push @names, @inherited_names;
+ ## do bulk insert on current row
$self->result_source->storage->insert_bulk(
$self->result_source,
\@names,
$self->throw_exception( "new_result needs a hash" )
unless (ref $values eq 'HASH');
- my %new;
+ my ($merged_cond, $from_resultset) = $self->_merge_with_cond($values);
+
+ my %new = (
+ %$merged_cond,
+ @$from_resultset
+ ? (-from_resultset => $from_resultset)
+ : (),
+ -source_handle => $self->_source_handle,
+ -result_source => $self->result_source, # DO NOT REMOVE THIS, REQUIRED
+ );
+
+ return $self->result_class->new(\%new);
+}
+
+# _merge_with_cond
+#
+# Merges $values (a hashref) with the condition in the resultset and returns
+# the resulting hashref and an arrayref that contains the keys that are coming
+# from related resultsets.
+
+sub _merge_with_cond {
+ my ($self, $values) = @_;
+
+ my (%merged_cond, @from_resultset);
+
my $alias = $self->{attrs}{alias};
if (
defined $self->{cond}
&& $self->{cond} eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION
) {
- %new = %{ $self->{attrs}{related_objects} || {} }; # nothing might have been inserted yet
- $new{-from_resultset} = [ keys %new ] if keys %new;
+ %merged_cond = %{ $self->{attrs}{related_objects} || {} }; # nothing might have been inserted yet
+ @from_resultset = keys %merged_cond;
} else {
$self->throw_exception(
"Can't abstract implicit construct, condition not a hash"
# precendence must be given to passed values over values inherited from
# the cond, so the order here is important.
- my %implied = %{$self->_remove_alias($collapsed_cond, $alias)};
- while( my($col,$value) = each %implied ){
- if(ref($value) eq 'HASH' && keys(%$value) && (keys %$value)[0] eq '='){
- $new{$col} = $value->{'='};
+ my %implied = %{$self->_remove_alias($collapsed_cond, $alias)};
+ while ( my($col, $value) = each %implied ) {
+ if (ref($value) eq 'HASH' && keys(%$value) && (keys %$value)[0] eq '=') {
+ $merged_cond{$col} = $value->{'='};
next;
}
- $new{$col} = $value if $self->_is_deterministic_value($value);
+ $merged_cond{$col} = $value if $self->_is_deterministic_value($value);
}
}
- %new = (
- %new,
+ %merged_cond = (
+ %merged_cond,
%{ $self->_remove_alias($values, $alias) },
- -source_handle => $self->_source_handle,
- -result_source => $self->result_source, # DO NOT REMOVE THIS, REQUIRED
);
- return $self->result_class->new(\%new);
+ return (\%merged_cond, \@from_resultset);
}
# _is_deterministic_value
use lib qw(t/lib);
use DBICTest;
-plan tests => 142;
+plan tests => 182;
## ----------------------------------------------------------------------------
## ----------------------------------------------------------------------------
my $schema = DBICTest->init_schema();
+
+$schema->resultset('Genre')->create({
+ genreid => 1,
+ name => 'Mixed',
+});
+
my $art_rs = $schema->resultset('Artist');
+my $restricted_art_rs = $art_rs->search({rank => 42});
my $cd_rs = $schema->resultset('CD');
+my $restricted_cd_rs = $cd_rs->search({genreid => 1});
ok( $schema, 'Got a Schema object');
ok( $art_rs, 'Got Good Artist Resultset');
## Get the result row objects.
- my ($girl, $crap, $damn, $formerly) = $art_rs->populate($artists);
+ my ($girl, $crap, $damn, $formerly) = $restricted_art_rs->populate($artists);
## Do we have the right object?
ok( $girl->name eq 'Angsty-Whiny Girl', "Got Correct name for result object");
ok( $damn->name eq 'Like I Give a Damn', "Got Correct name for result object");
ok( $formerly->name eq 'Formerly Named', "Got Correct name for result object");
+ cmp_ok( $crap->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $girl->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $damn->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $formerly->rank, '==', 42, "Got Correct rank for result object");
## Create the expected children sub objects?
## Get the result row objects.
- my ($girl, $crap, $damn, $formerly) = $art_rs->populate($artists);
+ my ($girl, $crap, $damn, $formerly) = $restricted_art_rs->populate($artists);
## Do we have the right object?
ok( $girl->artistid == $first_aid, "Got Correct artist PK for result object");
ok( $damn->name eq 'PK_Like I Give a Damn', "Got Correct name for result object");
ok( $formerly->name eq 'PK_Formerly Named', "Got Correct name for result object");
+ cmp_ok( $crap->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $girl->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $damn->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $formerly->rank, '==', 42, "Got Correct rank for result object");
## Create the expected children sub objects?
},
];
- my ($cdA, $cdB) = $cd_rs->populate($cds);
+ my ($cdA, $cdB) = $restricted_cd_rs->populate($cds);
isa_ok($cdA, 'DBICTest::CD', 'Created CD');
isa_ok($cdA->artist, 'DBICTest::Artist', 'Set Artist');
is($cdA->artist->name, 'Fred BloggsC', 'Set Artist to FredC');
+ isa_ok($cdA->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdA->genre->id, '==', 1, 'Set Genre ID to 1');
isa_ok($cdB, 'DBICTest::CD', 'Created CD');
isa_ok($cdB->artist, 'DBICTest::Artist', 'Set Artist');
is($cdB->artist->name, 'Fred BloggsD', 'Set Artist to FredD');
+ isa_ok($cdB->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdB->genre->id, '==', 1, 'Set Genre ID to 1');
}
BELONGS_TO_WITH_PKs: {
},
];
- my ($cdA, $cdB) = $cd_rs->populate($cds);
+ my ($cdA, $cdB) = $restricted_cd_rs->populate($cds);
isa_ok($cdA, 'DBICTest::CD', 'Created CD');
isa_ok($cdA->artist, 'DBICTest::Artist', 'Set Artist');
is($cdA->artist->name, 'Fred BloggsC', 'Set Artist to FredC');
+ isa_ok($cdA->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdA->genre->id, '==', 1, 'Set Genre ID to 1');
isa_ok($cdB, 'DBICTest::CD', 'Created CD');
isa_ok($cdB->artist, 'DBICTest::Artist', 'Set Artist');
is($cdB->artist->name, 'Fred BloggsD', 'Set Artist to FredD');
ok($cdB->artist->artistid == $aid, "Got Expected Artist ID");
+ isa_ok($cdB->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdB->genre->id, '==', 1, 'Set Genre ID to 1');
}
}
## Get the result row objects.
- $art_rs->populate($artists);
+ $restricted_art_rs->populate($artists);
my ($undef, $girl, $formerly, $damn, $crap) = $art_rs->search(
ok( $damn->name eq 'VOID_PK_Like I Give a Damn', "Got Correct name for result object");
ok( $formerly->name eq 'VOID_PK_Formerly Named', "Got Correct name for result object");
ok( !defined $undef->name, "Got Correct name 'is undef' for result object");
+ cmp_ok( $crap->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $girl->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $damn->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $formerly->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $undef->rank, '==', 42, "Got Correct rank for result object");
## Create the expected children sub objects?
ok( $crap->can('cds'), "Has cds relationship");
},
];
- $cd_rs->populate($cds);
+ $restricted_cd_rs->populate($cds);
my ($cdA, $cdB) = $cd_rs->search(
{title=>[sort map {$_->{title}} @$cds]},
isa_ok($cdA, 'DBICTest::CD', 'Created CD');
isa_ok($cdA->artist, 'DBICTest::Artist', 'Set Artist');
is($cdA->artist->name, 'Fred BloggsCB', 'Set Artist to FredCB');
+ isa_ok($cdA->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdA->genre->id, '==', 1, 'Set Genre ID to 1');
isa_ok($cdB, 'DBICTest::CD', 'Created CD');
isa_ok($cdB->artist, 'DBICTest::Artist', 'Set Artist');
is($cdB->artist->name, 'Fred BloggsDB', 'Set Artist to FredDB');
ok($cdB->artist->artistid == $aid, "Got Expected Artist ID");
+ isa_ok($cdB->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdB->genre->id, '==', 1, 'Set Genre ID to 1');
}
BELONGS_TO_NO_PKs: {
},
];
- $cd_rs->populate($cds);
+ $restricted_cd_rs->populate($cds);
my ($cdA, $cdB, $cdC) = $cd_rs->search(
{title=>[sort map {$_->{title}} @$cds]},
isa_ok($cdA->artist, 'DBICTest::Artist', 'Set Artist');
is($cdA->title, 'Some CD3BB', 'Found Expected title');
is($cdA->artist->name, 'Fred BloggsCBB', 'Set Artist to FredCBB');
+ isa_ok($cdA->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdA->genre->id, '==', 1, 'Set Genre ID to 1');
isa_ok($cdB, 'DBICTest::CD', 'Created CD');
isa_ok($cdB->artist, 'DBICTest::Artist', 'Set Artist');
is($cdB->title, 'Some CD4BB', 'Found Expected title');
is($cdB->artist->name, 'Fred BloggsDBB', 'Set Artist to FredDBB');
+ isa_ok($cdB->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdB->genre->id, '==', 1, 'Set Genre ID to 1');
isa_ok($cdC, 'DBICTest::CD', 'Created CD');
isa_ok($cdC->artist, 'DBICTest::Artist', 'Set Artist');
is($cdC->title, 'Some CD5BB', 'Found Expected title');
is( $cdC->artist->name, undef, 'Set Artist to something undefined');
+ isa_ok($cdC->genre, 'DBICTest::Genre', 'Set Genre');
+ cmp_ok($cdC->genre->id, '==', 1, 'Set Genre ID to 1');
}
## Get the result row objects.
- $art_rs->populate($artists);
+ $restricted_art_rs->populate($artists);
my ($girl, $formerly, $damn, $crap) = $art_rs->search(
{name=>[sort map {$_->{name}} @$artists]},
ok( $girl->name eq 'VOID_Angsty-Whiny Girl', "Got Correct name for result object");
ok( $damn->name eq 'VOID_Like I Give a Damn', "Got Correct name for result object");
ok( $formerly->name eq 'VOID_Formerly Named', "Got Correct name for result object");
+ cmp_ok( $crap->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $girl->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $damn->rank, '==', 42, "Got Correct rank for result object");
+ cmp_ok( $formerly->rank, '==', 42, "Got Correct rank for result object");
## Create the expected children sub objects?
ok( $crap->can('cds'), "Has cds relationship");
}
ARRAYREF_OF_ARRAYREF_STYLE: {
- $art_rs->populate([
+ $restricted_art_rs->populate([
[qw/artistid name/],
[1000, 'A Formally Unknown Singer'],
[1001, 'A singer that jumped the shark two albums ago'],
is $jumped->name, 'A singer that jumped the shark two albums ago', 'Correct Name';
is $cool->name, 'An actually cool singer.', 'Correct Name';
- my ($cooler, $lamer) = $art_rs->populate([
+ cmp_ok $unknown->rank, '==', 42, 'Correct Rank';
+ cmp_ok $jumped->rank, '==', 42, 'Correct Rank';
+ cmp_ok $cool->rank, '==', 42, 'Correct Rank';
+
+ my ($cooler, $lamer) = $restricted_art_rs->populate([
[qw/artistid name/],
[1003, 'Cooler'],
[1004, 'Lamer'],
is $cooler->name, 'Cooler', 'Correct Name';
is $lamer->name, 'Lamer', 'Correct Name';
-}
\ No newline at end of file
+
+ cmp_ok $cooler->rank, '==', 42, 'Correct Rank';
+ cmp_ok $lamer->rank, '==', 42, 'Correct Rank';
+}