X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FPK.pm;h=eb2540dde1e694b457b11e2e8ed50437928e303e;hb=8091aa9182ff763aa607dd82f4d61b99f8adab37;hp=ed0b830a4302fae3d52ef7ac3a8a11ea8c012792;hpb=1a14aa3f5016c456db28c148abab256ea72776df;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/PK.pm b/lib/DBIx/Class/PK.pm index ed0b830..eb2540d 100644 --- a/lib/DBIx/Class/PK.pm +++ b/lib/DBIx/Class/PK.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Tie::IxHash; -use base qw/Class::Data::Inheritable/; +use base qw/DBIx::Class::Row/; __PACKAGE__->mk_classdata('_primaries' => {}); @@ -16,16 +16,13 @@ DBIx::Class::PK - Primary Key class =head1 DESCRIPTION -This class represents methods handling primary keys -and depending on them. +This class contains methods for handling primary keys and methods +depending on them. =head1 METHODS -=over 4 - =cut - sub _ident_cond { my ($class) = @_; return join(" AND ", map { "$_ = ?" } keys %{$class->_primaries}); @@ -36,14 +33,31 @@ sub _ident_values { return (map { $self->{_column_data}{$_} } keys %{$self->_primaries}); } +=head2 set_primary_key(@cols) + +Defines one or more columns as primary key for this class. Should be +called after C. + +=cut + sub set_primary_key { my ($class, @cols) = @_; + # check if primary key columns are valid columns + for (@cols) { + $class->throw( "Column $_ can't be used as primary key because it isn't defined in $class" ) + unless $class->has_column($_); + } my %pri; - tie %pri, 'Tie::IxHash'; - %pri = map { $_ => {} } @cols; + tie %pri, 'Tie::IxHash', map { $_ => {} } @cols; $class->_primaries(\%pri); } +=head2 find(@colvalues), find(\%cols) + +Finds a row based on its primary key(s). + +=cut + sub find { my ($class, @vals) = @_; my $attrs = (@vals > 1 && ref $vals[$#vals] eq 'HASH' ? pop(@vals) : {}); @@ -71,6 +85,13 @@ sub find { return (@row ? $class->_row_to_object(\@cols, \@row) : ()); } +=head2 discard_changes + +Re-selects the row from the database, losing any changes that had +been made. + +=cut + sub discard_changes { my ($self) = @_; delete $self->{_dirty_columns}; @@ -82,11 +103,16 @@ sub discard_changes { } delete @{$self}{keys %$self}; @{$self}{keys %$reload} = values %$reload; - #$self->store_column($_ => $reload->get_column($_)) - # foreach keys %{$self->_columns}; return $self; } +=head2 id + +Returns the primary key(s) for a row. Can't be called as +a class method. + +=cut + sub id { my ($self) = @_; $self->throw( "Can't call id() as a class method" ) unless ref $self; @@ -94,13 +120,47 @@ sub id { return (wantarray ? @pk : $pk[0]); } +=head2 primary_columns + +Read-only accessor which returns the list of primary keys for a class +(in scalar context, only returns the first primary key). + +=cut + sub primary_columns { return keys %{shift->_primaries}; } -1; +=head2 ID + +Returns a unique id string identifying a row object by primary key. +Used by L and +L. + +=cut -=back +sub ID { + my ($self) = @_; + $self->throw( "Can't call ID() as a class method" ) unless ref $self; + return undef unless $self->in_storage; + return $self->_create_ID(map { $_ => $self->{_column_data}{$_} } keys %{$self->_primaries}); +} + +sub _create_ID { + my ($class,%vals) = @_; + return undef unless 0 == grep { !defined } values %vals; + $class = ref $class || $class; + return join '|', $class, map { $_ . '=' . $vals{$_} } sort keys %vals; +} + +sub ident_condition { + my ($self) = @_; + my %cond; + $cond{$_} = $self->get_column($_) for $self->primary_columns; + return \%cond; +} + +1; =head1 AUTHORS