package DBIx::Custom::Next::Model; use Object::Simple -base; use Carp 'croak'; use DBIx::Custom::Next::Util '_subname'; # Carp trust relationship push @DBIx::Custom::Next::CARP_NOT, __PACKAGE__; has [qw/dbi table created_at updated_at bind_type join primary_key/], columns => sub { [] }; our $AUTOLOAD; sub AUTOLOAD { my $self = shift; # Method name my ($package, $mname) = $AUTOLOAD =~ /^([\w\:]+)\:\:(\w+)$/; # Method $self->{_methods} ||= {}; if (my $method = $self->{_methods}->{$mname}) { return $self->$method(@_) } elsif (my $dbi_method = $self->dbi->can($mname)) { $self->dbi->$dbi_method(@_); } elsif ($self->{dbh} && (my $dbh_method = $self->dbh->can($mname))) { $self->dbi->dbh->$dbh_method(@_); } else { croak qq{Can't locate object method "$mname" via "$package" } . _subname; } } my @methods = qw/insert update update_all delete delete_all select count/; for my $method (@methods) { my $code = qq/sub {/ . qq/my \$self = shift;/ . qq/\$self->dbi->$method(/; $code .= qq/shift,/ if $method eq 'insert' || $method eq 'update' || $method eq 'update_all'; my @attrs = qw/table primary_key bind_type/; my @insert_attrs = qw/created_at updated_at/; my @update_attrs = qw/updated_at/; my @select_attrs = qw/join/; if ($method eq 'insert') { push @attrs, @insert_attrs } elsif ($method eq 'update') { push @attrs, @update_attrs } elsif (index($method, 'select') != -1) { push @attrs, @select_attrs } for my $attr (@attrs) { $code .= "exists \$self->{$attr} ? ($attr => \$self->{$attr}) : (),"; } $code .= qq/\@_);/ . qq/}/; no strict 'refs'; *{__PACKAGE__ . "::$method"} = eval $code; croak $code if $@; } sub update_or_insert { my ($self, $param, %opt) = @_; croak "update_or_insert method need primary_key and id option " unless (defined $opt{id} || defined $self->{id}) && (defined $opt{primary_key} || defined $self->{primary_key}); my $statement_opt = $opt{option} || {}; my $rows = $self->select(%opt, %{$statement_opt->{select} || {}})->all; if (@$rows == 0) { return $self->insert($param, %opt, %{$statement_opt->{insert} || {}}); } elsif (@$rows == 1) { return $self->update($param, %opt, %{$statement_opt->{update} || {}}); } else { croak "selected row must be one " . _subname; } } sub DESTROY { } sub helper { my $self = shift; # Merge my $methods = ref $_[0] eq 'HASH' ? $_[0] : {@_}; $self->{_methods} = {%{$self->{_methods} || {}}, %$methods}; return $self; } sub mycolumn { my $self = shift; my $table = shift unless ref $_[0]; my $columns = shift; $table ||= $self->table || ''; $columns ||= $self->columns; return $self->dbi->mycolumn($table, $columns); } sub new { my $self = shift->SUPER::new(@_); # Check attribute names my @attrs = keys %$self; for my $attr (@attrs) { croak qq{"$attr" is invalid attribute name } . _subname unless $self->can($attr); } # Cache for my $attr (qw/dbi table created_at updated_at bind_type join primary_key/) { $self->$attr; $self->{$attr} = undef unless exists $self->{$attr}; } $self->columns; return $self; } 1; =head1 NAME DBIx::Custom::Next::Model - Model =head1 SYNOPSIS use DBIx::Custom::Next::Model; my $model = DBIx::Custom::Next::Model->new(table => 'books'); =head1 ATTRIBUTES =head2 C my $dbi = $model->dbi; $model = $model->dbi($dbi); L object. =head2 C my $created_at = $model->created_at; $model = $model->created_at('created_datatime'); Create timestamp column, this is passed to C or C method. =head2 C my $join = $model->join; $model = $model->join( ['left outer join company on book.company_id = company.id'] ); Join clause, this value is passed to C method. =head2 C my $model = $model->table; $model = $model->table('book'); Table name, this is passed to C method =head2 C my $updated_at = $model->updated_at; $model = $model->updated_at('updated_datatime'); Updated timestamp column, this is passed to C method. =head1 METHODS L inherits all methods from L, and you can use all methods of L and L and implements the following new ones. =head2 C my $count = $model->count; Get rows count. Options is same as C
attribute of the model is used. If column names is omitted, C attribute of the model is used. =head2 C my $model = DBIx::Custom::Next::Model->new; Create a L object. =head2 C of L except that you don't have to specify options if you set attribute in model. =head2 C $model->update(...); Same as C of L except that you don't have to specify options if you set attribute in model. =head2 C $model->update_all(param => \%param); Same as C of L except that you don't have to specify options if you set attribute in model. =head2 C $model->update_or_insert(...); Same as C of L except that you don't have to specify options if you set attribute in model. =cut