1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
package # hide from PAUSE
DBICTest::Schema::Artist;
use base qw/DBICTest::BaseResult/;
use Carp qw/confess/;
__PACKAGE__->table('artist');
__PACKAGE__->source_info({
"source_info_key_A" => "source_info_value_A",
"source_info_key_B" => "source_info_value_B",
"source_info_key_C" => "source_info_value_C",
});
__PACKAGE__->add_columns(
'artistid' => {
data_type => 'integer',
is_auto_increment => 1,
},
'name' => {
data_type => 'varchar',
size => 100,
is_nullable => 1,
},
rank => {
data_type => 'integer',
default_value => 13,
},
charfield => {
data_type => 'char',
size => 10,
is_nullable => 1,
},
);
__PACKAGE__->set_primary_key('artistid');
__PACKAGE__->add_unique_constraint(['name']);
__PACKAGE__->add_unique_constraint(artist => ['artistid']); # do not remove, part of a test
__PACKAGE__->add_unique_constraint(u_nullable => [qw/charfield rank/]);
__PACKAGE__->mk_classdata('field_name_for', {
artistid => 'primary key',
name => 'artist name',
});
__PACKAGE__->has_many(
cds => 'DBICTest::Schema::CD', undef,
{ order_by => { -asc => 'year'} },
);
__PACKAGE__->has_many(
cds_80s => 'DBICTest::Schema::CD',
sub {
my $args = shift;
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my @missing_args = grep { ! defined $args->{$_} }
qw/self_alias foreign_alias self_resultsource foreign_relname/;
confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
if @missing_args;
return (
{ "$args->{foreign_alias}.artist" => { '=' => { -ident => "$args->{self_alias}.artistid"} },
"$args->{foreign_alias}.year" => { '>' => 1979, '<' => 1990 },
},
$args->{self_rowobj} && {
"$args->{foreign_alias}.artist" => $args->{self_rowobj}->artistid,
"$args->{foreign_alias}.year" => { '>' => 1979, '<' => 1990 },
}
);
},
);
__PACKAGE__->has_many(
cds_84 => 'DBICTest::Schema::CD',
sub {
my $args = shift;
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my @missing_args = grep { ! defined $args->{$_} }
qw/self_alias foreign_alias self_resultsource foreign_relname/;
confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
if @missing_args;
return (
{ "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
"$args->{foreign_alias}.year" => 1984,
},
$args->{self_rowobj} && {
"$args->{foreign_alias}.artist" => $args->{self_rowobj}->artistid,
"$args->{foreign_alias}.year" => 1984,
}
);
}
);
__PACKAGE__->has_many(
cds_90s => 'DBICTest::Schema::CD',
sub {
my $args = shift;
# This is for test purposes only. A regular user does not
# need to sanity check the passed-in arguments, this is what
# the tests are for :)
my @missing_args = grep { ! defined $args->{$_} }
qw/self_alias foreign_alias self_resultsource foreign_relname/;
confess "Required arguments not supplied to custom rel coderef: @missing_args\n"
if @missing_args;
return (
{ "$args->{foreign_alias}.artist" => { -ident => "$args->{self_alias}.artistid" },
"$args->{foreign_alias}.year" => { '>' => 1989, '<' => 2000 },
}
);
}
);
__PACKAGE__->has_many(
cds_unordered => 'DBICTest::Schema::CD'
);
__PACKAGE__->has_many(
cds_very_very_very_long_relationship_name => 'DBICTest::Schema::CD'
);
__PACKAGE__->has_many( twokeys => 'DBICTest::Schema::TwoKeys' );
__PACKAGE__->has_many( onekeys => 'DBICTest::Schema::OneKey' );
__PACKAGE__->has_many(
artist_undirected_maps => 'DBICTest::Schema::ArtistUndirectedMap',
[ {'foreign.id1' => 'self.artistid'}, {'foreign.id2' => 'self.artistid'} ],
{ cascade_copy => 0 } # this would *so* not make sense
);
__PACKAGE__->has_many(
artwork_to_artist => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id'
);
__PACKAGE__->many_to_many('artworks', 'artwork_to_artist', 'artwork');
sub sqlt_deploy_hook {
my ($self, $sqlt_table) = @_;
if ($sqlt_table->schema->translator->producer_type =~ /SQLite$/ ) {
$sqlt_table->add_index( name => 'artist_name_hookidx', fields => ['name'] )
or die $sqlt_table->error;
}
}
sub store_column {
my ($self, $name, $value) = @_;
$value = 'X '.$value if ($name eq 'name' && $value && $value =~ /(X )?store_column test/);
$self->next::method($name, $value);
}
1;
|