create now on resultset as well
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Table.pm
index 2a491e4..717e522 100644 (file)
@@ -5,437 +5,149 @@ use warnings;
 
 use DBIx::Class::ResultSet;
 
-use base qw/Class::Data::Inheritable/;
+use Carp qw/croak/;
 
-__PACKAGE__->mk_classdata('_columns' => {});
+use base qw/DBIx::Class/;
+__PACKAGE__->load_components(qw/AccessorGroup/);
 
-__PACKAGE__->mk_classdata('_table_name');
-
-__PACKAGE__->mk_classdata('table_alias'); # FIXME: Doesn't actually do anything yet!
-
-__PACKAGE__->mk_classdata('_resultset_class' => 'DBIx::Class::ResultSet');
-
-sub iterator_class { shift->_resultset_class(@_) }
+__PACKAGE__->mk_group_accessors('simple' =>
+  qw/_columns _primaries name resultset_class result_class storage/);
 
 =head1 NAME 
 
-DBIx::Class::Table - Basic table methods
+DBIx::Class::Table - Table object
 
 =head1 SYNOPSIS
 
 =head1 DESCRIPTION
 
-This class is responsible for defining and doing basic operations on 
-L<DBIx::Class> objects.
+This class is responsible for defining and doing table-level operations on 
+L<DBIx::Class> classes.
 
 =head1 METHODS
 
-=over 4
-
-=item new
-
-  my $obj = My::Class->new($attrs);
-
-Creates a new object from column => value mappings passed as a hash ref
-
 =cut
 
 sub new {
   my ($class, $attrs) = @_;
   $class = ref $class if ref $class;
-  my $new = bless({ _column_data => { } }, $class);
-  if ($attrs) {
-    $new->throw("attrs must be a hashref" ) unless ref($attrs) eq 'HASH';
-    while (my ($k, $v) = each %{$attrs}) {
-      $new->store_column($k => $v);
-    }
-  }
+  my $new = bless({ %{$attrs || {}} }, $class);
+  $new->{resultset_class} ||= 'DBIx::Class::ResultSet';
+  $new->{_columns} ||= {};
+  $new->{name} ||= "!!NAME NOT SET!!";
   return $new;
 }
 
-=item insert
-
-  $obj->insert;
-
-Inserts an object into the database if it isn't already in there. Returns
-the object itself.
-
-=cut
-
-sub insert {
-  my ($self) = @_;
-  return $self if $self->in_storage;
-  #use Data::Dumper; warn Dumper($self);
-  my %in;
-  $in{$_} = $self->get_column($_)
-    for grep { defined $self->get_column($_) } $self->columns;
-  my %out = %{ $self->storage->insert($self->_table_name, \%in) };
-  $self->store_column($_, $out{$_})
-    for grep { $self->get_column($_) ne $out{$_} } keys %out;
-  $self->in_storage(1);
-  $self->{_dirty_columns} = {};
-  return $self;
-}
-
-=item in_storage
-
-  $obj->in_storage; # Get value
-  $obj->in_storage(1); # Set value
-
-Indicated whether the object exists as a row in the database or not
-
-=cut
-
-sub in_storage {
-  my ($self, $val) = @_;
-  $self->{_in_storage} = $val if @_ > 1;
-  return $self->{_in_storage};
-}
-
-=item create
-
-  my $new = My::Class->create($attrs);
-
-A shortcut for My::Class->new($attrs)->insert;
-
-=cut
-
-sub create {
-  my ($class, $attrs) = @_;
-  $class->throw( "create needs a hashref" ) unless ref $attrs eq 'HASH';
-  return $class->new($attrs)->insert;
-}
-
-=item update
-
-  $obj->update;
-
-Must be run on an object that is already in the database; issues an SQL
-UPDATE query to commit any changes to the object to the db if required.
-
-=cut
-
-sub update {
-  my ($self, $upd) = @_;
-  $self->throw( "Not in database" ) unless $self->in_storage;
-  my %to_update = %{$upd || {}};
-  $to_update{$_} = $self->get_column($_) for $self->is_changed;
-  return -1 unless keys %to_update;
-  my $rows = $self->storage->update($self->_table_name, \%to_update,
-                                      $self->ident_condition);
-  if ($rows == 0) {
-    $self->throw( "Can't update ${self}: row not found" );
-  } elsif ($rows > 1) {
-    $self->throw("Can't update ${self}: updated more than one row");
-  }
-  $self->{_dirty_columns} = {};
-  return $self;
-}
-
-sub ident_condition {
-  my ($self) = @_;
-  my %cond;
-  $cond{$_} = $self->get_column($_) for keys %{$self->_primaries};
-  return \%cond;
-}
-
-=item delete
-
-  $obj->delete
-
-Deletes the object from the database. The object is still perfectly usable
-accessor-wise etc. but ->in_storage will now return 0 and the object must
-be re ->insert'ed before it can be ->update'ed
-
-=cut
-
-sub delete {
-  my $self = shift;
-  if (ref $self) {
-    $self->throw( "Not in database" ) unless $self->in_storage;
-    #warn $self->_ident_cond.' '.join(', ', $self->_ident_values);
-    $self->storage->delete($self->_table_name, $self->ident_condition);
-    $self->in_storage(undef);
-    #$self->store_column($_ => undef) for $self->primary_columns;
-      # Should probably also arrange to trash PK if auto
-      # but if we do, post-delete cascade triggers fail :/
-  } else {
-    my $attrs = { };
-    if (@_ > 1 && ref $_[$#_] eq 'HASH') {
-      $attrs = { %{ pop(@_) } };
-    }
-    my $query = (ref $_[0] eq 'HASH' ? $_[0] : {@_});
-    $self->storage->delete($self->_table_name, $query);
+sub add_columns {
+  my ($self, @cols) = @_;
+  while (my $col = shift @cols) {
+    $self->_columns->{$col} = (ref $cols[0] ? shift : {});
   }
-  return $self;
 }
 
-=item get_column
+*add_column = \&add_columns;
 
-  my $val = $obj->get_column($col);
+=head2 add_columns
 
-Fetches a column value
+  $table->add_columns(qw/col1 col2 col3/);
 
-=cut
+  $table->add_columns('col1' => \%col1_info, 'col2' => \%col2_info, ...);
 
-sub get_column {
-  my ($self, $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;
-}
+Adds columns to the table object. If supplied key => hashref pairs uses
+the hashref as the column_info for that column.
 
-=item set_column
+=head2 add_column
 
-  $obj->set_column($col => $val);
+  $table->add_column('col' => \%info?);
 
-Sets a column value; if the new value is different to the old the column
-is marked as dirty for when you next call $obj->update
+Convenience alias to add_columns
 
 =cut
 
-sub set_column {
+sub resultset {
   my $self = shift;
-  my ($column) = @_;
-  my $old = $self->get_column($column);
-  my $ret = $self->store_column(@_);
-  $self->{_dirty_columns}{$column} = 1 unless defined $old && $old eq $ret;
-  return $ret;
-}
-
-=item store_column
-
-  $obj->store_column($col => $val);
-
-Sets a column value without marking it as dirty
-
-=cut
-
-sub store_column {
-  my ($self, $column, $value) = @_;
-  $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;
-}
-
-sub _register_columns {
-  my ($class, @cols) = @_;
-  my $names = { %{$class->_columns} };
-  $names->{$_} ||= {} for @cols;
-  $class->_columns($names); 
-}
-
-sub _mk_column_accessors {
-  my ($class, @cols) = @_;
-  $class->mk_group_accessors('column' => @cols);
-}
-
-=item add_columns
-
-  __PACKAGE__->add_columns(qw/col1 col2 col3/);
-
-Adds columns to the current package, and creates accessors for them
-
-=cut
-
-sub add_columns {
-  my ($class, @cols) = @_;
-  $class->_register_columns(@cols);
-  $class->_mk_column_accessors(@cols);
-}
-
-=item search_literal
-
-  my @obj    = $class->search_literal($literal_where_cond, @bind);
-  my $cursor = $class->search_literal($literal_where_cond, @bind);
-
-=cut
-
-sub search_literal {
-  my ($class, $cond, @vals) = @_;
-  $cond =~ s/^\s*WHERE//i;
-  my $attrs = (ref $vals[$#vals] eq 'HASH' ? { %{ pop(@vals) } } : {});
-  $attrs->{bind} = \@vals;
-  return $class->search(\$cond, $attrs);
+  return $self->{resultset} ||= $self->resultset_class->new($self);
 }
 
-=item count_literal
-
-  my $count = $class->count_literal($literal_where_cond);
-
-=cut
+=head2 has_column                                                                
+                                                                                
+  if ($obj->has_column($col)) { ... }                                           
+                                                                                
+Returns 1 if the table has a column of this name, 0 otherwise.                  
+                                                                                
+=cut                                                                            
 
-sub count_literal {
-  my ($class, $cond, @vals) = @_;
-  $cond =~ s/^\s*WHERE//i;
-  my $attrs = (ref $vals[$#vals] eq 'HASH' ? pop(@vals) : {});
-  $attrs->{bind} = [ @vals ];
-  return $class->count($cond, $attrs);
+sub has_column {
+  my ($self, $column) = @_;
+  return exists $self->_columns->{$column};
 }
 
-=item count
-
-  my $count = $class->count({ foo => 3 });
-
-=cut
-
-sub count {
-  my $class = shift;
-  my $attrs = { };
-  if (@_ > 1 && ref $_[$#_] eq 'HASH') {
-    $attrs = { %{ pop(@_) } };
-  }
-  my $query  = ref $_[0] eq "HASH" || (@_ == 1) ? shift: {@_};
-  my @cols = 'COUNT(*)';
-  my $cursor = $class->storage->select($class->_table_name, \@cols,
-                                         $query, $attrs);
-  return ($cursor->next)[0];
-}
+=head2 column_info                                                               
+                                                                                
+  my $info = $obj->column_info($col);                                           
+                                                                                
+Returns the column metadata hashref for a column.
+                                                                                
+=cut                                                                            
 
-sub cursor_to_resultset {
-  my ($class, $sth, $args, $cols, $attrs) = @_;
-  my $rs_class = $class->_resultset_class;
-  eval "use $rs_class;";
-  my $rs = $rs_class->new($class, $sth, $args, $cols, $attrs);
-  return (wantarray ? $rs->all : $rs);
-}
-
-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_storage(1);
-  return $new;
+sub column_info {
+  my ($self, $column) = @_;
+  croak "No such column $column" unless exists $self->_columns->{$column};
+  return $self->_columns->{$column};
 }
 
-=item search 
+=head2 columns
 
-  my @obj    = $class->search({ foo => 3 });
-  my $cursor = $class->search({ foo => 3 });
+  my @column_names = $obj->columns;                                             
+                                                                                
+=cut                                                                            
 
-=cut
-
-sub search {
-  my $class = shift;
-  #warn "@_";
-  my $attrs = { };
-  if (@_ > 1 && ref $_[$#_] eq 'HASH') {
-    $attrs = { %{ pop(@_) } };
-  }
-  my $query    = (@_ == 1 || ref $_[0] eq "HASH" ? shift: {@_});
-  my @cols = $class->_select_columns;
-  return $class->cursor_to_resultset(undef, $attrs->{bind}, \@cols,
-                                    { where => $query, %$attrs });
+sub columns {
+  croak "columns() is a read-only accessor, did you mean add_columns()?" if (@_ > 1);
+  return keys %{shift->_columns};
 }
 
-=item search_like
-
-Identical to search except defaults to 'LIKE' instead of '=' in condition
+=head2 set_primary_key(@cols)                                                   
+                                                                                
+Defines one or more columns as primary key for this table. Should be            
+called after C<add_columns>.
+                                                                                
+=cut                                                                            
 
-=cut
-
-sub search_like {
-  my $class    = shift;
-  my $attrs = { };
-  if (@_ > 1 && ref $_[$#_] eq 'HASH') {
-    $attrs = pop(@_);
+sub set_primary_key {
+  my ($self, @cols) = @_;
+  # check if primary key columns are valid columns
+  for (@cols) {
+    $self->throw("No such column $_ on table ".$self->name)
+      unless $self->has_column($_);
   }
-  my $query    = ref $_[0] eq "HASH" ? { %{shift()} }: {@_};
-  $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
-  return $class->search($query, { %$attrs });
-}
-
-sub _select_columns {
-  return keys %{$_[0]->_columns};
-}
-
-=item copy
-
-  my $copy = $orig->copy({ change => $to, ... });
-
-=cut
-
-sub copy {
-  my ($self, $changes) = @_;
-  my $new = bless({ _column_data => { %{$self->{_column_data}}} }, ref $self);
-  $new->set_column($_ => $changes->{$_}) for keys %$changes;
-  return $new->insert;
+  $self->_primaries(\@cols);
 }
 
-#sub _cond_resolve {
-#  my ($self, $query, $attrs) = @_;
-#  return '1 = 1' unless keys %$query;
-#  my $op = $attrs->{'cmp'} || '=';
-#  my $cond = join(' AND ',
-#               map { (defined $query->{$_}
-#                       ? "$_ $op ?"
-#                       : (do { delete $query->{$_}; "$_ IS NULL"; }));
-#                   } keys %$query);
-#  return ($cond, values %$query);
-#}
-
-=item table
-
-  __PACKAGE__->table('tbl_name');
+=head2 primary_columns                                                          
+                                                                                
+Read-only accessor which returns the list of primary keys.
+                                                                                
+=cut                                                                            
 
-=cut
-
-sub table {
-  shift->_table_name(@_);
+sub primary_columns {
+  return @{shift->_primaries||[]};
 }
 
-=item find_or_create
+=head2 from
 
-  $class->find_or_create({ key => $val, ... });
-
-Searches for a record matching the search condition; if it doesn't find one,
-creates one and returns that instead
+Returns the FROM entry for the table (i.e. the table name)
 
 =cut
 
-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 from { return shift->name(@_); }
 
-=item insert_or_update
-
-  $obj->insert_or_update
-
-Updates the object if it's already in the db, else inserts it
-
-=cut
-
-sub insert_or_update {
-  my $self = shift;
-  return ($self->in_storage ? $self->update : $self->insert);
-}
-
-=item is_changed
-
-  my @changed_col_names = $obj->is_changed
-
-=cut
-
-sub is_changed {
-  return keys %{shift->{_dirty_columns} || {}};
-}
-
-sub columns { return keys %{shift->_columns}; }
 
 1;
 
-=back
-
 =head1 AUTHORS
 
-Matt S. Trout <perl-stuff@trout.me.uk>
+Matt S. Trout <mst@shadowcatsystems.co.uk>
 
 =head1 LICENSE