The test is designed to work with blob-updates only, remove plain values
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK.pm
CommitLineData
dbd7896f 1package DBIx::Class::PK;
2
3use strict;
4use warnings;
5
1edd1722 6use base qw/DBIx::Class::Row/;
dbd7896f 7
75d07914 8=head1 NAME
34d52be2 9
10DBIx::Class::PK - Primary Key class
11
12=head1 SYNOPSIS
13
14=head1 DESCRIPTION
15
75d07914 16This class contains methods for handling primary keys and methods
8091aa91 17depending on them.
34d52be2 18
19=head1 METHODS
20
34d52be2 21=cut
22
8091aa91 23=head2 id
076652e8 24
8091aa91 25Returns the primary key(s) for a row. Can't be called as
076652e8 26a class method.
27
28=cut
29
604d9f38 30sub id {
31 my ($self) = @_;
bc0c9800 32 $self->throw_exception( "Can't call id() as a class method" )
33 unless ref $self;
b946a283 34 my @id_vals = $self->_ident_values;
35 return (wantarray ? @id_vals : $id_vals[0]);
604d9f38 36}
37
bbd107cf 38sub _ident_values {
39 my ($self) = @_;
90f250bc 40
b946a283 41 my (@ids, @missing);
42
43 for ($self->_pri_cols) {
5ef76b8b 44 push @ids, exists $self->{_column_data_in_storage}{$_}
45 ? $self->{_column_data_in_storage}{$_}
46 : $self->get_column($_)
47 ;
b946a283 48 push @missing, $_ if (! defined $ids[-1] and ! $self->has_column_loaded ($_) );
49 }
50
51 if (@missing && $self->in_storage) {
52 $self->throw_exception (
53 'Unable to uniquely identify row object with missing PK columns: '
54 . join (', ', @missing )
55 );
56 }
57
58 return @ids;
bbd107cf 59}
60
8091aa91 61=head2 ID
62
63Returns a unique id string identifying a row object by primary key.
75d07914 64Used by L<DBIx::Class::CDBICompat::LiveObjectIndex> and
8091aa91 65L<DBIx::Class::ObjectCache>.
66
bbd107cf 67=over
68
69=item WARNING
70
71The default C<_create_ID> method used by this function orders the returned
72values by the alphabetical order of the primary column names, B<unlike>
73the L</id> method, which follows the same order in which columns were fed
74to L<DBIx::Class::ResultSource/set_primary_key>.
75
76=back
77
8091aa91 78=cut
79
48700d09 80sub ID {
81 my ($self) = @_;
bc0c9800 82 $self->throw_exception( "Can't call ID() as a class method" )
83 unless ref $self;
48700d09 84 return undef unless $self->in_storage;
b946a283 85 return $self->_create_ID(%{$self->ident_condition});
48700d09 86}
87
88sub _create_ID {
b946a283 89 my ($self, %vals) = @_;
90f3f5ff 90 return undef unless 0 == grep { !defined } values %vals;
bc0c9800 91 return join '|', ref $self || $self, $self->result_source->name,
75d07914 92 map { $_ . '=' . $vals{$_} } sort keys %vals;
48700d09 93}
94
9b83fccd 95=head2 ident_condition
96
97 my $cond = $result_source->ident_condition();
98
99 my $cond = $result_source->ident_condition('alias');
100
101Produces a condition hash to locate a row based on the primary key(s).
102
103=cut
104
103647d5 105sub ident_condition {
fea3d045 106 my ($self, $alias) = @_;
b946a283 107
108 my @pks = $self->_pri_cols;
109 my @vals = $self->_ident_values;
110
111 my (%cond, @undef);
e04df8ec 112 my $prefix = defined $alias ? $alias.'.' : '';
b946a283 113 for my $col (@pks) {
114 if (! defined ($cond{$prefix.$col} = shift @vals) ) {
115 push @undef, $col;
116 }
117 }
118
119 if (@undef && $self->in_storage) {
120 $self->throw_exception (
121 'Unable to construct row object identity condition due to NULL PK columns: '
122 . join (', ', @undef)
123 );
124 }
125
103647d5 126 return \%cond;
127}
128
dbd7896f 1291;
34d52be2 130
34d52be2 131=head1 AUTHORS
132
daec44b8 133Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 134
135=head1 LICENSE
136
137You may distribute this code under the same terms as Perl itself.
138
139=cut
140