X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FTable.pm;h=ed2e86efeacd5e8013830caecfbcf85cb1f542ad;hb=78bab9cad621ac5e3d1d12b02c41d662dec7a22a;hp=51d7ceb819c7298bea51b77348364dbe631c6bec;hpb=604d9f388716261ca478b574f891928e8e0852ef;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Table.pm b/lib/DBIx/Class/Table.pm index 51d7ceb..ed2e86e 100644 --- a/lib/DBIx/Class/Table.pm +++ b/lib/DBIx/Class/Table.pm @@ -3,20 +3,41 @@ package DBIx::Class::Table; use strict; use warnings; -use base qw/Class::Data::Inheritable DBIx::Class::SQL/; +use DBIx::Class::Cursor; + +use base qw/Class::Data::Inheritable/; __PACKAGE__->mk_classdata('_columns' => {}); __PACKAGE__->mk_classdata('_table_name'); -__PACKAGE__->mk_classdata('table_alias'); # FIXME XXX +__PACKAGE__->mk_classdata('table_alias'); # FIXME: Doesn't actually do anything yet! + +__PACKAGE__->mk_classdata('_cursor_class' => 'DBIx::Class::Cursor'); + +=head1 NAME + +DBIx::Class::Table - Basic table methods + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +This class is responsible for defining and doing basic operations on +L objects. + +=head1 METHODS + +=over 4 + +=cut sub new { my ($class, $attrs) = @_; $class = ref $class if ref $class; my $new = bless({ _column_data => { } }, $class); if ($attrs) { - die "attrs must be a hashref" unless ref($attrs) eq 'HASH'; + $new->throw("attrs must be a hashref" ) unless ref($attrs) eq 'HASH'; while (my ($k, $v) = each %{$attrs}) { $new->store_column($k => $v); } @@ -26,29 +47,32 @@ sub new { sub insert { my ($self) = @_; - return if $self->{_in_database}; + return if $self->in_database; + #use Data::Dumper; warn Dumper($self); my $sth = $self->_get_sth('insert', [ keys %{$self->{_column_data}} ], $self->_table_name, undef); $sth->execute(values %{$self->{_column_data}}); $sth->finish; - $self->{_in_database} = 1; + $self->in_database(1); $self->{_dirty_columns} = {}; return $self; } sub in_database { - return $_[0]->{_in_database}; + my ($self, $val) = @_; + $self->{_in_database} = $val if @_ > 1; + return $self->{_in_database}; } sub create { my ($class, $attrs) = @_; - die "create needs a hashref" unless ref $attrs eq 'HASH'; + $class->throw( "create needs a hashref" ) unless ref $attrs eq 'HASH'; return $class->new($attrs)->insert; } sub update { my ($self) = @_; - die "Not in database" unless $self->{_in_database}; + $self->throw( "Not in database" ) unless $self->in_database; my @to_update = keys %{$self->{_dirty_columns} || {}}; return -1 unless @to_update; my $sth = $self->_get_sth('update', \@to_update, @@ -57,9 +81,9 @@ sub update { $self->_ident_values ); $sth->finish; if ($rows == 0) { - die "Can't update $self: row not found"; + $self->throw( "Can't update $self: row not found" ); } elsif ($rows > 1) { - die "Can't update $self: updated more than one row"; + $self->throw("Can't update $self: updated more than one row"); } $self->{_dirty_columns} = {}; return $self; @@ -68,13 +92,13 @@ sub update { sub delete { my $self = shift; if (ref $self) { - die "Not in database" unless $self->{_in_database}; + $self->throw( "Not in database" ) unless $self->in_database; #warn $self->_ident_cond.' '.join(', ', $self->_ident_values); my $sth = $self->_get_sth('delete', undef, $self->_table_name, $self->_ident_cond); $sth->execute($self->_ident_values); $sth->finish; - delete $self->{_in_database}; + $self->in_database(undef); } else { my $attrs = { }; if (@_ > 1 && ref $_[$#_] eq 'HASH') { @@ -91,9 +115,11 @@ sub delete { sub get_column { my ($self, $column) = @_; - die "Can't fetch data as class method" unless ref $self; - die "No such column '${column}'" unless $self->_columns->{$column}; - return $self->{_column_data}{$column} if $self->_columns->{$column}; + $self->throw( "Can't fetch data as class method" ) unless ref $self; + $self->throw( "No such column '${column}'" ) unless $self->_columns->{$column}; + return $self->{_column_data}{$column} + if exists $self->{_column_data}{$column}; + return undef; } sub set_column { @@ -106,8 +132,10 @@ sub set_column { sub store_column { my ($self, $column, $value) = @_; - die "No such column '${column}'" unless $self->_columns->{$column}; - die "set_column called for ${column} without value" if @_ < 3; + $self->throw( "No such column '${column}'" ) + unless $self->_columns->{$column}; + $self->throw( "set_column called for ${column} without value" ) + if @_ < 3; return $self->{_column_data}{$column} = $value; } @@ -136,22 +164,24 @@ sub retrieve_from_sql { my @cols = $class->_select_columns($attrs); my $sth = $class->_get_sth( 'select', \@cols, $class->_table_name, $cond); #warn "$cond @vals"; - return $class->sth_to_objects($sth, \@vals, \@cols); + return $class->sth_to_objects($sth, \@vals, \@cols, { where => $cond }); } sub sth_to_objects { - my ($class, $sth, $args, $cols) = @_; + my ($class, $sth, $args, $cols, $attrs) = @_; my @cols = ((ref $cols eq 'ARRAY') ? @$cols : @{$sth->{NAME_lc}} ); - $sth->execute(@$args); - my @found; - while (my @row = $sth->fetchrow_array) { - my $new = $class->new; - $new->store_column($_, shift @row) for @cols; - $new->{_in_database} = 1; - push(@found, $new); - } - $sth->finish; - return @found; + my $cursor_class = $class->_cursor_class; + eval "use $cursor_class;"; + my $cursor = $cursor_class->new($class, $sth, $args, \@cols, $attrs); + return (wantarray ? $cursor->all : $cursor); +} + +sub _row_to_object { # WARNING: Destructive to @$row + my ($class, $cols, $row) = @_; + my $new = $class->new; + $new->store_column($_, shift @$row) for @$cols; + $new->in_database(1); + return $new; } sub search { @@ -162,7 +192,7 @@ sub search { } my $query = ref $_[0] eq "HASH" ? shift: {@_}; my ($cond, @param) = $class->_cond_resolve($query, $attrs); - return $class->retrieve_from_sql($cond, @param); + return $class->retrieve_from_sql($cond, @param, $attrs); } sub search_like { @@ -201,4 +231,29 @@ sub table { shift->_table_name(@_); } +sub find_or_create { + my $class = shift; + my $hash = ref $_[0] eq "HASH" ? shift: {@_}; + my ($exists) = $class->search($hash); + return defined($exists) ? $exists : $class->create($hash); +} + +sub retrieve_all { + my ($class) = @_; + return $class->retrieve_from_sql( '1' ); +} + 1; + +=back + +=head1 AUTHORS + +Matt S. Trout + +=head1 LICENSE + +You may distribute this code under the same terms as Perl itself. + +=cut +