Factor SQL-standard deferred FK checks into a component
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Pg.pm
1 package DBIx::Class::Storage::DBI::Pg;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::Storage::DBI::SetConstraintsDeferred/;
7
8 use DBIx::Class::Carp;
9 use Try::Tiny;
10 use namespace::clean;
11
12 __PACKAGE__->sql_limit_dialect ('LimitOffset');
13 __PACKAGE__->sql_quote_char ('"');
14 __PACKAGE__->datetime_parser_type ('DateTime::Format::Pg');
15 __PACKAGE__->_use_multicolumn_in (1);
16
17 sub _determine_supports_insert_returning {
18   return shift->_server_info->{normalized_dbms_version} >= 8.002
19     ? 1
20     : 0
21   ;
22 }
23
24 # only used when INSERT ... RETURNING is disabled
25 sub last_insert_id {
26   my ($self,$source,@cols) = @_;
27
28   my @values;
29
30   my $col_info = $source->columns_info(\@cols);
31
32   for my $col (@cols) {
33     my $seq = ( $col_info->{$col}{sequence} ||= $self->dbh_do('_dbh_get_autoinc_seq', $source, $col) )
34       or $self->throw_exception( sprintf(
35         "Could not determine sequence for column '%s.%s', please consider adding a schema-qualified sequence to its column info",
36           $source->name,
37           $col,
38       ));
39
40     push @values, $self->_dbh->last_insert_id(undef, undef, undef, undef, {sequence => $seq});
41   }
42
43   return @values;
44 }
45
46 sub _sequence_fetch {
47   my ($self, $function, $sequence) = @_;
48
49   $self->throw_exception('No sequence to fetch') unless $sequence;
50
51   my ($val) = $self->_get_dbh->selectrow_array(
52     sprintf ("select %s('%s')", $function, (ref $sequence eq 'SCALAR') ? $$sequence : $sequence)
53   );
54
55   return $val;
56 }
57
58 sub _dbh_get_autoinc_seq {
59   my ($self, $dbh, $source, $col) = @_;
60
61   my $schema;
62   my $table = $source->name;
63
64   # deref table name if it needs it
65   $table = $$table
66       if ref $table eq 'SCALAR';
67
68   # parse out schema name if present
69   if( $table =~ /^(.+)\.(.+)$/ ) {
70     ( $schema, $table ) = ( $1, $2 );
71   }
72
73   # get the column default using a Postgres-specific pg_catalog query
74   my $seq_expr = $self->_dbh_get_column_default( $dbh, $schema, $table, $col );
75
76   # if no default value is set on the column, or if we can't parse the
77   # default value as a sequence, throw.
78   unless ( defined $seq_expr and $seq_expr =~ /^nextval\(+'([^']+)'::(?:text|regclass)\)/i ) {
79     $seq_expr = '' unless defined $seq_expr;
80     $schema = "$schema." if defined $schema && length $schema;
81     $self->throw_exception( sprintf (
82       "No sequence found for '%s%s.%s', check the RDBMS table definition or explicitly set the ".
83       "'sequence' for this column in %s",
84         $schema ? "$schema." : '',
85         $table,
86         $col,
87         $source->source_name,
88     ));
89   }
90
91   return $1;  # exception thrown unless match is made above
92 }
93
94 # custom method for fetching column default, since column_info has a
95 # bug with older versions of DBD::Pg
96 sub _dbh_get_column_default {
97   my ( $self, $dbh, $schema, $table, $col ) = @_;
98
99   # Build and execute a query into the pg_catalog to find the Pg
100   # expression for the default value for this column in this table.
101   # If the table name is schema-qualified, query using that specific
102   # schema name.
103
104   # Otherwise, find the table in the standard Postgres way, using the
105   # search path.  This is done with the pg_catalog.pg_table_is_visible
106   # function, which returns true if a given table is 'visible',
107   # meaning the first table of that name to be found in the search
108   # path.
109
110   # I *think* we can be assured that this query will always find the
111   # correct column according to standard Postgres semantics.
112   #
113   # -- rbuels
114
115   my $sqlmaker = $self->sql_maker;
116   local $sqlmaker->{bindtype} = 'normal';
117
118   my ($where, @bind) = $sqlmaker->where ({
119     'a.attnum' => {'>', 0},
120     'c.relname' => $table,
121     'a.attname' => $col,
122     -not_bool => 'a.attisdropped',
123     (defined $schema && length $schema)
124       ? ( 'n.nspname' => $schema )
125       : ( -bool => \'pg_catalog.pg_table_is_visible(c.oid)' )
126   });
127
128   my ($seq_expr) = $dbh->selectrow_array(<<EOS,undef,@bind);
129
130 SELECT
131   (SELECT pg_catalog.pg_get_expr(d.adbin, d.adrelid)
132    FROM pg_catalog.pg_attrdef d
133    WHERE d.adrelid = a.attrelid AND d.adnum = a.attnum AND a.atthasdef)
134 FROM pg_catalog.pg_class c
135      LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
136      JOIN pg_catalog.pg_attribute a ON a.attrelid = c.oid
137 $where
138
139 EOS
140
141   return $seq_expr;
142 }
143
144
145 sub sqlt_type {
146   return 'PostgreSQL';
147 }
148
149 sub bind_attribute_by_data_type {
150   my ($self,$data_type) = @_;
151
152   if ($self->_is_binary_lob_type($data_type)) {
153     # this is a hot-ish codepath, use an escape flag to minimize
154     # amount of function/method calls
155     # additionally version.pm is cock, and memleaks on multiple
156     # ->VERSION calls
157     # the flag is stored in the DBD namespace, so that Class::Unload
158     # will work (unlikely, but still)
159     unless ($DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__) {
160       if ($self->_server_info->{normalized_dbms_version} >= 9.0) {
161         try { DBD::Pg->VERSION('2.17.2'); 1 } or carp (
162           __PACKAGE__.': BYTEA columns are known to not work on Pg >= 9.0 with DBD::Pg < 2.17.2'
163         );
164       }
165       elsif (not try { DBD::Pg->VERSION('2.9.2'); 1 } ) { carp (
166         __PACKAGE__.': DBD::Pg 2.9.2 or greater is strongly recommended for BYTEA column support'
167       )}
168
169       $DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__ = 1;
170     }
171
172     return { pg_type => DBD::Pg::PG_BYTEA() };
173   }
174   else {
175     return undef;
176   }
177 }
178
179 sub _exec_svp_begin {
180     my ($self, $name) = @_;
181
182     $self->_dbh->pg_savepoint($name);
183 }
184
185 sub _exec_svp_release {
186     my ($self, $name) = @_;
187
188     $self->_dbh->pg_release($name);
189 }
190
191 sub _exec_svp_rollback {
192     my ($self, $name) = @_;
193
194     $self->_dbh->pg_rollback_to($name);
195 }
196
197 sub deployment_statements {
198   my $self = shift;;
199   my ($schema, $type, $version, $dir, $sqltargs, @rest) = @_;
200
201   $sqltargs ||= {};
202
203   if (
204     ! exists $sqltargs->{producer_args}{postgres_version}
205       and
206     my $dver = $self->_server_info->{normalized_dbms_version}
207   ) {
208     $sqltargs->{producer_args}{postgres_version} = $dver;
209   }
210
211   $self->next::method($schema, $type, $version, $dir, $sqltargs, @rest);
212 }
213
214 1;
215
216 __END__
217
218 =head1 NAME
219
220 DBIx::Class::Storage::DBI::Pg - Automatic primary key class for PostgreSQL
221
222 =head1 SYNOPSIS
223
224   # In your result (table) classes
225   use base 'DBIx::Class::Core';
226   __PACKAGE__->set_primary_key('id');
227
228 =head1 DESCRIPTION
229
230 This class implements autoincrements for PostgreSQL.
231
232 =head1 POSTGRESQL SCHEMA SUPPORT
233
234 This driver supports multiple PostgreSQL schemas, with one caveat: for
235 performance reasons, data about the search path, sequence names, and
236 so forth is queried as needed and CACHED for subsequent uses.
237
238 For this reason, once your schema is instantiated, you should not
239 change the PostgreSQL schema search path for that schema's database
240 connection. If you do, Bad Things may happen.
241
242 You should do any necessary manipulation of the search path BEFORE
243 instantiating your schema object, or as part of the on_connect_do
244 option to connect(), for example:
245
246    my $schema = My::Schema->connect
247                   ( $dsn,$user,$pass,
248                     { on_connect_do =>
249                         [ 'SET search_path TO myschema, foo, public' ],
250                     },
251                   );
252
253 =head1 FURTHER QUESTIONS?
254
255 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
256
257 =head1 COPYRIGHT AND LICENSE
258
259 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
260 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
261 redistribute it and/or modify it under the same terms as the
262 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.