Merge the last bits of indirect callchain optimization
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto.pm
index 6928ba7..b4d509c 100644 (file)
@@ -5,76 +5,51 @@ use base qw/DBIx::Class/;
 use strict;
 use warnings;
 
-=head1 NAME 
-
-DBIx::Class::PK::Auto - Automatic Primary Key class
-
-=head1 SYNOPSIS
-
-=head1 DESCRIPTION
-
-This class overrides the insert method to get automatically
-incremented primary keys.
-
-You don't want to be using this directly - instead load the appropriate
-one for your database, e.g. PK::Auto::SQLite
+1;
 
-=head1 METHODS
+__END__
 
-=over 4
+=head1 NAME
 
-=item insert
+DBIx::Class::PK::Auto - Automatic primary key class
 
-Overrides insert so that it will get the value of autoincremented
-primary keys.
+=head1 SYNOPSIS
 
-=cut
+use base 'DBIx::Class::Core';
+__PACKAGE__->set_primary_key('id');
 
-sub insert {
-  my ($self, @rest) = @_;
-  my $ret = $self->next::method(@rest);
+=head1 DESCRIPTION
 
-  # if all primaries are already populated, skip auto-inc
-  my $populated = 0;
-  map { $populated++ if defined $self->get_column($_) } $self->primary_columns;
-  return $ret if ( $populated == scalar $self->primary_columns );
+This class overrides the insert method to get automatically incremented primary
+keys.
 
-  my ($pri, $too_many) =
-    (grep { $self->column_info($_)->{'auto_increment'} }
-       $self->primary_columns)
-    || $self->primary_columns;
-  $self->throw( "More than one possible key found for auto-inc on ".ref $self )
-    if $too_many;
-  unless (defined $self->get_column($pri)) {
-    $self->throw( "Can't auto-inc for $pri on ".ref $self.": no _last_insert_id method" )
-      unless $self->can('last_insert_id');
-    my $id = $self->last_insert_id;
-    $self->throw( "Can't get last insert id" ) unless $id;
-    $self->store_column($pri => $id);
-  }
-  return $ret;
-}
+PK::Auto is now part of Core.
 
-=item sequence
+See L<DBIx::Class::Manual::Component> for details of component interactions.
 
-Manually define the correct sequence for your table, to avoid the overhead
-associated with looking up the sequence automatically.
+=head1 LOGIC
 
-=cut
+C<PK::Auto> does this by letting the database assign the primary key field and
+fetching the assigned value afterwards.
 
-__PACKAGE__->mk_classdata('sequence');
+=head1 METHODS
 
-1;
+=head2 insert
 
-=back
+The code that was handled here is now in Row for efficiency.
 
-=head1 AUTHORS
+=head2 sequence
 
-Matt S. Trout <mst@shadowcatsystems.co.uk>
+The code that was handled here is now in ResultSource, and is being proxied to
+Row as well.
 
-=head1 LICENSE
+=head1 FURTHER QUESTIONS?
 
-You may distribute this code under the same terms as Perl itself.
+Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
 
-=cut
+=head1 COPYRIGHT AND LICENSE
 
+This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
+by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
+redistribute it and/or modify it under the same terms as the
+L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.