item => head2 in docs
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto.pm
1 package DBIx::Class::PK::Auto;
2
3 #use base qw/DBIx::Class::PK/;
4 use base qw/DBIx::Class/;
5 use strict;
6 use warnings;
7
8 =head1 NAME 
9
10 DBIx::Class::PK::Auto - Automatic Primary Key class
11
12 =head1 SYNOPSIS
13
14 =head1 DESCRIPTION
15
16 This class overrides the insert method to get automatically
17 incremented primary keys.
18
19 You don't want to be using this directly - instead load the appropriate
20 one for your database, e.g. PK::Auto::SQLite
21
22 =head1 METHODS
23
24 =head2 insert
25
26 Overrides insert so that it will get the value of autoincremented
27 primary keys.
28
29 =cut
30
31 sub insert {
32   my ($self, @rest) = @_;
33   my $ret = $self->next::method(@rest);
34
35   # if all primaries are already populated, skip auto-inc
36   my $populated = 0;
37   map { $populated++ if defined $self->get_column($_) } $self->primary_columns;
38   return $ret if ( $populated == scalar $self->primary_columns );
39
40   my ($pri, $too_many) =
41     (grep { $self->column_info($_)->{'auto_increment'} }
42        $self->primary_columns)
43     || $self->primary_columns;
44   $self->throw( "More than one possible key found for auto-inc on ".ref $self )
45     if $too_many;
46   unless (defined $self->get_column($pri)) {
47     $self->throw( "Can't auto-inc for $pri on ".ref $self.": no _last_insert_id method" )
48       unless $self->can('last_insert_id');
49     my $id = $self->last_insert_id;
50     $self->throw( "Can't get last insert id" ) unless $id;
51     $self->store_column($pri => $id);
52   }
53   return $ret;
54 }
55
56 =head2 sequence
57
58 Manually define the correct sequence for your table, to avoid the overhead
59 associated with looking up the sequence automatically.
60
61 =cut
62
63 __PACKAGE__->mk_classdata('sequence');
64
65 1;
66
67 =head1 AUTHORS
68
69 Matt S. Trout <mst@shadowcatsystems.co.uk>
70
71 =head1 LICENSE
72
73 You may distribute this code under the same terms as Perl itself.
74
75 =cut
76