redo Pg auto-columns using INSERT RETURNING
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Storage / DBI / InterBase.pm
CommitLineData
88a8d0fa 1package DBIx::Class::Storage::DBI::InterBase;
2
88a8d0fa 3use strict;
4use warnings;
637d2fae 5use base qw/DBIx::Class::Storage::DBI/;
88a8d0fa 6use mro 'c3';
88a8d0fa 7use List::Util();
8
9__PACKAGE__->mk_group_accessors(simple => qw/
2680ffe5 10 _auto_incs
88a8d0fa 11/);
12
90489c23 13=head1 NAME
14
15DBIx::Class::Storage::DBI::InterBase - Driver for the Firebird RDBMS
16
17=head1 DESCRIPTION
18
95570280 19This class implements autoincrements for Firebird using C<RETURNING> as well as
20L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> sets the limit dialect to
21C<FIRST X SKIP X> and provides L<DBIx::Class::InflateColumn::DateTime> support.
90489c23 22
dd2109ee 23You need to use either the
24L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> option or
25L</connect_call_use_softcommit> (see L</CAVEATS>) for your code to function
47ec67c3 26correctly with this driver. Otherwise you will likely get bizarre error messages
d1fc96c7 27such as C<no statement executing>. The alternative is to use the
28L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver, which is more suitable
29for long running processes such as under L<Catalyst>.
90489c23 30
c5827074 31To turn on L<DBIx::Class::InflateColumn::DateTime> support, see
32L</connect_call_datetime_setup>.
32323fc2 33
90489c23 34=cut
35
88a8d0fa 36sub _prep_for_execute {
37 my $self = shift;
38 my ($op, $extra_bind, $ident, $args) = @_;
39
88a8d0fa 40 if ($op eq 'insert') {
95570280 41 $self->_auto_incs([]);
42
28d28903 43 my %pk;
0a145954 44 @pk{$ident->primary_columns} = ();
6e8d182b 45
1ae0a36c 46 my @auto_inc_cols = grep {
47 my $inserting = $args->[0]{$_};
145b2a3d 48
6e8d182b 49 ($ident->column_info($_)->{is_auto_increment}
50 || exists $pk{$_})
51 && (
1ae0a36c 52 (not defined $inserting)
53 ||
2680ffe5 54 (ref $inserting eq 'SCALAR' && $$inserting =~ /^null\z/i)
1ae0a36c 55 )
56 } $ident->columns;
88a8d0fa 57
145b2a3d 58 if (@auto_inc_cols) {
1696e04f 59 $args->[1]{returning} = \@auto_inc_cols;
145b2a3d 60
2680ffe5 61 $self->_auto_incs->[0] = \@auto_inc_cols;
145b2a3d 62 }
88a8d0fa 63 }
64
1696e04f 65 return $self->next::method(@_);
1ae0a36c 66}
67
88a8d0fa 68sub _execute {
69 my $self = shift;
70 my ($op) = @_;
71
72 my ($rv, $sth, @bind) = $self->dbh_do($self->can('_dbh_execute'), @_);
73
2680ffe5 74 if ($op eq 'insert' && $self->_auto_incs) {
88a8d0fa 75 local $@;
145b2a3d 76 my (@auto_incs) = eval {
77 local $SIG{__WARN__} = sub {};
78 $sth->fetchrow_array
79 };
2680ffe5 80 $self->_auto_incs->[1] = \@auto_incs;
88a8d0fa 81 $sth->finish;
82 }
83
84 return wantarray ? ($rv, $sth, @bind) : $rv;
85}
86
e1958268 87sub _sequence_fetch {
88 my ($self, $nextval, $sequence) = @_;
89
90 if ($nextval ne 'nextval') {
91 $self->throw_exception("Can only fetch 'nextval' for a sequence");
92 }
93
94 $self->throw_exception('No sequence to fetch') unless $sequence;
95
96 my ($val) = $self->_get_dbh->selectrow_array(
97'SELECT GEN_ID(' . $self->sql_maker->_quote($sequence) .
98', 1) FROM rdb$database');
99
100 return $val;
101}
102
103sub _dbh_get_autoinc_seq {
104 my ($self, $dbh, $source, $col) = @_;
105
106 my $table_name = $source->from;
107 $table_name = $$table_name if ref $table_name;
108 $table_name = $self->sql_maker->quote_char ? $table_name : uc($table_name);
109
110 local $dbh->{LongReadLen} = 100000;
111 local $dbh->{LongTruncOk} = 1;
112
113 my $sth = $dbh->prepare(<<'EOF');
114SELECT t.rdb$trigger_source
115FROM rdb$triggers t
116WHERE t.rdb$relation_name = ?
117AND t.rdb$system_flag = 0 -- user defined
118AND t.rdb$trigger_type = 1 -- BEFORE INSERT
119EOF
120 $sth->execute($table_name);
121
122 while (my ($trigger) = $sth->fetchrow_array) {
123 my @trig_cols = map {
124 /^"([^"]+)/ ? $1 : uc($1)
125 } $trigger =~ /new\.("?\w+"?)/ig;
126
127 my ($quoted, $generator) = $trigger =~
128/(?:gen_id\s* \( \s* |next \s* value \s* for \s*)(")?(\w+)/ix;
129
130 if ($generator) {
131 $generator = uc $generator unless $quoted;
132
133 return $generator
134 if List::Util::first {
135 $self->sql_maker->quote_char ? ($_ eq $col) : (uc($_) eq uc($col))
136 } @trig_cols;
137 }
138 }
139
140 return undef;
141}
142
145b2a3d 143sub last_insert_id {
144 my ($self, $source, @cols) = @_;
145 my @result;
88a8d0fa 146
145b2a3d 147 my %auto_incs;
2680ffe5 148 @auto_incs{ @{ $self->_auto_incs->[0] } } =
149 @{ $self->_auto_incs->[1] };
145b2a3d 150
151 push @result, $auto_incs{$_} for @cols;
152
153 return @result;
154}
155
95570280 156sub insert {
157 my $self = shift;
158
159 my $updated_cols = $self->next::method(@_);
160
161 if ($self->_auto_incs->[0]) {
162 my %auto_incs;
163 @auto_incs{ @{ $self->_auto_incs->[0] } } = @{ $self->_auto_incs->[1] };
164
165 $updated_cols = { %$updated_cols, %auto_incs };
166 }
167
168 return $updated_cols;
169}
170
145b2a3d 171# this sub stolen from DB2
88a8d0fa 172
145b2a3d 173sub _sql_maker_opts {
174 my ( $self, $opts ) = @_;
175
176 if ( $opts ) {
177 $self->{_sql_maker_opts} = { %$opts };
178 }
179
180 return { limit_dialect => 'FirstSkip', %{$self->{_sql_maker_opts}||{}} };
181}
182
32323fc2 183sub _svp_begin {
184 my ($self, $name) = @_;
185
186 $self->_get_dbh->do("SAVEPOINT $name");
187}
188
189sub _svp_release {
190 my ($self, $name) = @_;
191
192 $self->_get_dbh->do("RELEASE SAVEPOINT $name");
193}
194
195sub _svp_rollback {
196 my ($self, $name) = @_;
197
198 $self->_get_dbh->do("ROLLBACK TO SAVEPOINT $name")
199}
200
201sub _ping {
202 my $self = shift;
203
204 my $dbh = $self->_dbh or return 0;
205
206 local $dbh->{RaiseError} = 1;
ecdf1ac8 207 local $dbh->{PrintError} = 0;
32323fc2 208
209 eval {
210 $dbh->do('select 1 from rdb$database');
211 };
212
213 return $@ ? 0 : 1;
214}
215
9633951d 216# We want dialect 3 for new features and quoting to work, DBD::InterBase uses
217# dialect 1 (interbase compat) by default.
218sub _init {
219 my $self = shift;
220 $self->_set_sql_dialect(3);
221}
222
223sub _set_sql_dialect {
224 my $self = shift;
225 my $val = shift || 3;
226
227 my $dsn = $self->_dbi_connect_info->[0];
228
229 return if ref($dsn) eq 'CODE';
230
231 if ($dsn !~ /ib_dialect=/) {
232 $self->_dbi_connect_info->[0] = "$dsn;ib_dialect=$val";
233 my $connected = defined $self->_dbh;
234 $self->disconnect;
235 $self->ensure_connected if $connected;
236 }
237}
238
dd2109ee 239=head2 connect_call_use_softcommit
240
241Used as:
242
243 on_connect_call => 'use_softcommit'
244
245In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the
246L<DBD::InterBase> C<ib_softcommit> option.
247
248You need either this option or C<< disable_sth_caching => 1 >> for
47ec67c3 249L<DBIx::Class> code to function correctly (otherwise you may get C<no statement
d1fc96c7 250executing> errors.) Or use the L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird>
251driver.
dd2109ee 252
253The downside of using this option is that your process will B<NOT> see UPDATEs,
254INSERTs and DELETEs from other processes for already open statements.
255
256=cut
257
258sub connect_call_use_softcommit {
a499b173 259 my $self = shift;
260
261 $self->_dbh->{ib_softcommit} = 1;
a499b173 262}
263
32323fc2 264=head2 connect_call_datetime_setup
9cd0b325 265
32323fc2 266Used as:
9cd0b325 267
32323fc2 268 on_connect_call => 'datetime_setup'
269
f0f8ac86 270In L<connect_info|DBIx::Class::Storage::DBI/connect_info> to set the date and
271timestamp formats using:
32323fc2 272
273 $dbh->{ib_time_all} = 'ISO';
274
275See L<DBD::InterBase> for more details.
276
277The C<TIMESTAMP> data type supports up to 4 digits after the decimal point for
278second precision. The full precision is used.
279
c5827074 280The C<DATE> data type stores the date portion only, and it B<MUST> be declared
281with:
282
283 data_type => 'date'
284
285in your Result class.
286
287Timestamp columns can be declared with either C<datetime> or C<timestamp>.
288
32323fc2 289You will need the L<DateTime::Format::Strptime> module for inflation to work.
290
291For L<DBIx::Class::Storage::DBI::ODBC::Firebird>, this is a noop and sub-second
292precision is not currently available.
293
294=cut
295
296sub connect_call_datetime_setup {
297 my $self = shift;
298
299 $self->_get_dbh->{ib_time_all} = 'ISO';
9cd0b325 300}
301
c5827074 302sub datetime_parser_type {
303 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format'
304}
32323fc2 305
c5827074 306package # hide from PAUSE
307 DBIx::Class::Storage::DBI::InterBase::DateTime::Format;
32323fc2 308
c5827074 309my $timestamp_format = '%Y-%m-%d %H:%M:%S.%4N'; # %F %T
310my $date_format = '%Y-%m-%d';
311
312my ($timestamp_parser, $date_parser);
313
314sub parse_datetime {
315 shift;
316 require DateTime::Format::Strptime;
317 $timestamp_parser ||= DateTime::Format::Strptime->new(
318 pattern => $timestamp_format,
319 on_error => 'croak',
320 );
321 return $timestamp_parser->parse_datetime(shift);
322}
323
324sub format_datetime {
325 shift;
326 require DateTime::Format::Strptime;
327 $timestamp_parser ||= DateTime::Format::Strptime->new(
328 pattern => $timestamp_format,
329 on_error => 'croak',
330 );
331 return $timestamp_parser->format_datetime(shift);
332}
333
334sub parse_date {
335 shift;
336 require DateTime::Format::Strptime;
337 $date_parser ||= DateTime::Format::Strptime->new(
338 pattern => $date_format,
339 on_error => 'croak',
340 );
341 return $date_parser->parse_datetime(shift);
342}
343
344sub format_date {
345 shift;
346 require DateTime::Format::Strptime;
347 $date_parser ||= DateTime::Format::Strptime->new(
348 pattern => $date_format,
32323fc2 349 on_error => 'croak',
350 );
c5827074 351 return $date_parser->format_datetime(shift);
9cd0b325 352}
353
145b2a3d 3541;
90489c23 355
356=head1 CAVEATS
357
358=over 4
359
360=item *
361
dd2109ee 362with L</connect_call_use_softcommit>, you will not be able to see changes made
363to data in other processes. If this is an issue, use
47ec67c3 364L<disable_sth_caching|DBIx::Class::Storage::DBI/disable_sth_caching> as a
365workaround for the C<no statement executing> errors, this of course adversely
366affects performance.
dd2109ee 367
d1fc96c7 368Alternately, use the L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver.
369
dd2109ee 370=item *
371
e1958268 372C<last_insert_id> support by default only works for Firebird versions 2 or
373greater, L<auto_nextval|DBIx::Class::ResultSource/auto_nextval> however should
374work with earlier versions.
90489c23 375
47ec67c3 376=item *
377
d1fc96c7 378Sub-second precision for TIMESTAMPs is not currently available when using the
379L<ODBC|DBIx::Class::Storage::DBI::ODBC::Firebird> driver.
47ec67c3 380
90489c23 381=back
382
383=head1 AUTHOR
384
385See L<DBIx::Class/AUTHOR> and L<DBIx::Class/CONTRIBUTORS>.
386
387=head1 LICENSE
388
389You may distribute this code under the same terms as Perl itself.
390
391=cut