Merge 'trunk' into 'storage-interbase'
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
1 package DBIx::Class::Storage::DBI;
2 # -*- mode: cperl; cperl-indent-level: 2 -*-
3
4 use strict;
5 use warnings;
6
7 use base qw/DBIx::Class::Storage::DBIHacks DBIx::Class::Storage/;
8 use mro 'c3';
9
10 use Carp::Clan qw/^DBIx::Class/;
11 use DBI;
12 use DBIx::Class::Storage::DBI::Cursor;
13 use DBIx::Class::Storage::Statistics;
14 use Scalar::Util();
15 use List::Util();
16 use Data::Dumper::Concise();
17 use Sub::Name ();
18
19 __PACKAGE__->mk_group_accessors('simple' =>
20   qw/_connect_info _dbi_connect_info _dbh _sql_maker _sql_maker_opts _conn_pid
21      _conn_tid transaction_depth _dbh_autocommit _driver_determined savepoints/
22 );
23
24 # the values for these accessors are picked out (and deleted) from
25 # the attribute hashref passed to connect_info
26 my @storage_options = qw/
27   on_connect_call on_disconnect_call on_connect_do on_disconnect_do
28   disable_sth_caching unsafe auto_savepoint
29 /;
30 __PACKAGE__->mk_group_accessors('simple' => @storage_options);
31
32
33 # default cursor class, overridable in connect_info attributes
34 __PACKAGE__->cursor_class('DBIx::Class::Storage::DBI::Cursor');
35
36 __PACKAGE__->mk_group_accessors('inherited' => qw/sql_maker_class/);
37 __PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks');
38
39
40 # Each of these methods need _determine_driver called before itself
41 # in order to function reliably. This is a purely DRY optimization
42 my @rdbms_specific_methods = qw/
43   sqlt_type
44   build_datetime_parser
45   datetime_parser_type
46
47   insert
48   insert_bulk
49   update
50   delete
51   select
52   select_single
53 /;
54
55 for my $meth (@rdbms_specific_methods) {
56
57   my $orig = __PACKAGE__->can ($meth)
58     or next;
59
60   no strict qw/refs/;
61   no warnings qw/redefine/;
62   *{__PACKAGE__ ."::$meth"} = Sub::Name::subname $meth => sub {
63     if (not $_[0]->_driver_determined) {
64       $_[0]->_determine_driver;
65       goto $_[0]->can($meth);
66     }
67     $orig->(@_);
68   };
69 }
70
71
72 =head1 NAME
73
74 DBIx::Class::Storage::DBI - DBI storage handler
75
76 =head1 SYNOPSIS
77
78   my $schema = MySchema->connect('dbi:SQLite:my.db');
79
80   $schema->storage->debug(1);
81
82   my @stuff = $schema->storage->dbh_do(
83     sub {
84       my ($storage, $dbh, @args) = @_;
85       $dbh->do("DROP TABLE authors");
86     },
87     @column_list
88   );
89
90   $schema->resultset('Book')->search({
91      written_on => $schema->storage->datetime_parser(DateTime->now)
92   });
93
94 =head1 DESCRIPTION
95
96 This class represents the connection to an RDBMS via L<DBI>.  See
97 L<DBIx::Class::Storage> for general information.  This pod only
98 documents DBI-specific methods and behaviors.
99
100 =head1 METHODS
101
102 =cut
103
104 sub new {
105   my $new = shift->next::method(@_);
106
107   $new->transaction_depth(0);
108   $new->_sql_maker_opts({});
109   $new->{savepoints} = [];
110   $new->{_in_dbh_do} = 0;
111   $new->{_dbh_gen} = 0;
112
113   $new;
114 }
115
116 =head2 connect_info
117
118 This method is normally called by L<DBIx::Class::Schema/connection>, which
119 encapsulates its argument list in an arrayref before passing them here.
120
121 The argument list may contain:
122
123 =over
124
125 =item *
126
127 The same 4-element argument set one would normally pass to
128 L<DBI/connect>, optionally followed by
129 L<extra attributes|/DBIx::Class specific connection attributes>
130 recognized by DBIx::Class:
131
132   $connect_info_args = [ $dsn, $user, $password, \%dbi_attributes?, \%extra_attributes? ];
133
134 =item *
135
136 A single code reference which returns a connected
137 L<DBI database handle|DBI/connect> optionally followed by
138 L<extra attributes|/DBIx::Class specific connection attributes> recognized
139 by DBIx::Class:
140
141   $connect_info_args = [ sub { DBI->connect (...) }, \%extra_attributes? ];
142
143 =item *
144
145 A single hashref with all the attributes and the dsn/user/password
146 mixed together:
147
148   $connect_info_args = [{
149     dsn => $dsn,
150     user => $user,
151     password => $pass,
152     %dbi_attributes,
153     %extra_attributes,
154   }];
155
156   $connect_info_args = [{
157     dbh_maker => sub { DBI->connect (...) },
158     %dbi_attributes,
159     %extra_attributes,
160   }];
161
162 This is particularly useful for L<Catalyst> based applications, allowing the
163 following config (L<Config::General> style):
164
165   <Model::DB>
166     schema_class   App::DB
167     <connect_info>
168       dsn          dbi:mysql:database=test
169       user         testuser
170       password     TestPass
171       AutoCommit   1
172     </connect_info>
173   </Model::DB>
174
175 The C<dsn>/C<user>/C<password> combination can be substituted by the
176 C<dbh_maker> key whose value is a coderef that returns a connected
177 L<DBI database handle|DBI/connect>
178
179 =back
180
181 Please note that the L<DBI> docs recommend that you always explicitly
182 set C<AutoCommit> to either I<0> or I<1>.  L<DBIx::Class> further
183 recommends that it be set to I<1>, and that you perform transactions
184 via our L<DBIx::Class::Schema/txn_do> method.  L<DBIx::Class> will set it
185 to I<1> if you do not do explicitly set it to zero.  This is the default
186 for most DBDs. See L</DBIx::Class and AutoCommit> for details.
187
188 =head3 DBIx::Class specific connection attributes
189
190 In addition to the standard L<DBI|DBI/ATTRIBUTES_COMMON_TO_ALL_HANDLES>
191 L<connection|DBI/Database_Handle_Attributes> attributes, DBIx::Class recognizes
192 the following connection options. These options can be mixed in with your other
193 L<DBI> connection attributes, or placed in a separate hashref
194 (C<\%extra_attributes>) as shown above.
195
196 Every time C<connect_info> is invoked, any previous settings for
197 these options will be cleared before setting the new ones, regardless of
198 whether any options are specified in the new C<connect_info>.
199
200
201 =over
202
203 =item on_connect_do
204
205 Specifies things to do immediately after connecting or re-connecting to
206 the database.  Its value may contain:
207
208 =over
209
210 =item a scalar
211
212 This contains one SQL statement to execute.
213
214 =item an array reference
215
216 This contains SQL statements to execute in order.  Each element contains
217 a string or a code reference that returns a string.
218
219 =item a code reference
220
221 This contains some code to execute.  Unlike code references within an
222 array reference, its return value is ignored.
223
224 =back
225
226 =item on_disconnect_do
227
228 Takes arguments in the same form as L</on_connect_do> and executes them
229 immediately before disconnecting from the database.
230
231 Note, this only runs if you explicitly call L</disconnect> on the
232 storage object.
233
234 =item on_connect_call
235
236 A more generalized form of L</on_connect_do> that calls the specified
237 C<connect_call_METHOD> methods in your storage driver.
238
239   on_connect_do => 'select 1'
240
241 is equivalent to:
242
243   on_connect_call => [ [ do_sql => 'select 1' ] ]
244
245 Its values may contain:
246
247 =over
248
249 =item a scalar
250
251 Will call the C<connect_call_METHOD> method.
252
253 =item a code reference
254
255 Will execute C<< $code->($storage) >>
256
257 =item an array reference
258
259 Each value can be a method name or code reference.
260
261 =item an array of arrays
262
263 For each array, the first item is taken to be the C<connect_call_> method name
264 or code reference, and the rest are parameters to it.
265
266 =back
267
268 Some predefined storage methods you may use:
269
270 =over
271
272 =item do_sql
273
274 Executes a SQL string or a code reference that returns a SQL string. This is
275 what L</on_connect_do> and L</on_disconnect_do> use.
276
277 It can take:
278
279 =over
280
281 =item a scalar
282
283 Will execute the scalar as SQL.
284
285 =item an arrayref
286
287 Taken to be arguments to L<DBI/do>, the SQL string optionally followed by the
288 attributes hashref and bind values.
289
290 =item a code reference
291
292 Will execute C<< $code->($storage) >> and execute the return array refs as
293 above.
294
295 =back
296
297 =item datetime_setup
298
299 Execute any statements necessary to initialize the database session to return
300 and accept datetime/timestamp values used with
301 L<DBIx::Class::InflateColumn::DateTime>.
302
303 Only necessary for some databases, see your specific storage driver for
304 implementation details.
305
306 =back
307
308 =item on_disconnect_call
309
310 Takes arguments in the same form as L</on_connect_call> and executes them
311 immediately before disconnecting from the database.
312
313 Calls the C<disconnect_call_METHOD> methods as opposed to the
314 C<connect_call_METHOD> methods called by L</on_connect_call>.
315
316 Note, this only runs if you explicitly call L</disconnect> on the
317 storage object.
318
319 =item disable_sth_caching
320
321 If set to a true value, this option will disable the caching of
322 statement handles via L<DBI/prepare_cached>.
323
324 =item limit_dialect
325
326 Sets the limit dialect. This is useful for JDBC-bridge among others
327 where the remote SQL-dialect cannot be determined by the name of the
328 driver alone. See also L<SQL::Abstract::Limit>.
329
330 =item quote_char
331
332 Specifies what characters to use to quote table and column names. If
333 you use this you will want to specify L</name_sep> as well.
334
335 C<quote_char> expects either a single character, in which case is it
336 is placed on either side of the table/column name, or an arrayref of length
337 2 in which case the table/column name is placed between the elements.
338
339 For example under MySQL you should use C<< quote_char => '`' >>, and for
340 SQL Server you should use C<< quote_char => [qw/[ ]/] >>.
341
342 =item name_sep
343
344 This only needs to be used in conjunction with C<quote_char>, and is used to
345 specify the character that separates elements (schemas, tables, columns) from
346 each other. In most cases this is simply a C<.>.
347
348 The consequences of not supplying this value is that L<SQL::Abstract>
349 will assume DBIx::Class' uses of aliases to be complete column
350 names. The output will look like I<"me.name"> when it should actually
351 be I<"me"."name">.
352
353 =item unsafe
354
355 This Storage driver normally installs its own C<HandleError>, sets
356 C<RaiseError> and C<ShowErrorStatement> on, and sets C<PrintError> off on
357 all database handles, including those supplied by a coderef.  It does this
358 so that it can have consistent and useful error behavior.
359
360 If you set this option to a true value, Storage will not do its usual
361 modifications to the database handle's attributes, and instead relies on
362 the settings in your connect_info DBI options (or the values you set in
363 your connection coderef, in the case that you are connecting via coderef).
364
365 Note that your custom settings can cause Storage to malfunction,
366 especially if you set a C<HandleError> handler that suppresses exceptions
367 and/or disable C<RaiseError>.
368
369 =item auto_savepoint
370
371 If this option is true, L<DBIx::Class> will use savepoints when nesting
372 transactions, making it possible to recover from failure in the inner
373 transaction without having to abort all outer transactions.
374
375 =item cursor_class
376
377 Use this argument to supply a cursor class other than the default
378 L<DBIx::Class::Storage::DBI::Cursor>.
379
380 =back
381
382 Some real-life examples of arguments to L</connect_info> and
383 L<DBIx::Class::Schema/connect>
384
385   # Simple SQLite connection
386   ->connect_info([ 'dbi:SQLite:./foo.db' ]);
387
388   # Connect via subref
389   ->connect_info([ sub { DBI->connect(...) } ]);
390
391   # Connect via subref in hashref
392   ->connect_info([{
393     dbh_maker => sub { DBI->connect(...) },
394     on_connect_do => 'alter session ...',
395   }]);
396
397   # A bit more complicated
398   ->connect_info(
399     [
400       'dbi:Pg:dbname=foo',
401       'postgres',
402       'my_pg_password',
403       { AutoCommit => 1 },
404       { quote_char => q{"}, name_sep => q{.} },
405     ]
406   );
407
408   # Equivalent to the previous example
409   ->connect_info(
410     [
411       'dbi:Pg:dbname=foo',
412       'postgres',
413       'my_pg_password',
414       { AutoCommit => 1, quote_char => q{"}, name_sep => q{.} },
415     ]
416   );
417
418   # Same, but with hashref as argument
419   # See parse_connect_info for explanation
420   ->connect_info(
421     [{
422       dsn         => 'dbi:Pg:dbname=foo',
423       user        => 'postgres',
424       password    => 'my_pg_password',
425       AutoCommit  => 1,
426       quote_char  => q{"},
427       name_sep    => q{.},
428     }]
429   );
430
431   # Subref + DBIx::Class-specific connection options
432   ->connect_info(
433     [
434       sub { DBI->connect(...) },
435       {
436           quote_char => q{`},
437           name_sep => q{@},
438           on_connect_do => ['SET search_path TO myschema,otherschema,public'],
439           disable_sth_caching => 1,
440       },
441     ]
442   );
443
444
445
446 =cut
447
448 sub connect_info {
449   my ($self, $info) = @_;
450
451   return $self->_connect_info if !$info;
452
453   $self->_connect_info($info); # copy for _connect_info
454
455   $info = $self->_normalize_connect_info($info)
456     if ref $info eq 'ARRAY';
457
458   for my $storage_opt (keys %{ $info->{storage_options} }) {
459     my $value = $info->{storage_options}{$storage_opt};
460
461     $self->$storage_opt($value);
462   }
463
464   # Kill sql_maker/_sql_maker_opts, so we get a fresh one with only
465   #  the new set of options
466   $self->_sql_maker(undef);
467   $self->_sql_maker_opts({});
468
469   for my $sql_maker_opt (keys %{ $info->{sql_maker_options} }) {
470     my $value = $info->{sql_maker_options}{$sql_maker_opt};
471
472     $self->_sql_maker_opts->{$sql_maker_opt} = $value;
473   }
474
475   my %attrs = (
476     %{ $self->_default_dbi_connect_attributes || {} },
477     %{ $info->{attributes} || {} },
478   );
479
480   my @args = @{ $info->{arguments} };
481
482   $self->_dbi_connect_info([@args,
483     %attrs && !(ref $args[0] eq 'CODE') ? \%attrs : ()]);
484
485   return $self->_connect_info;
486 }
487
488 sub _normalize_connect_info {
489   my ($self, $info_arg) = @_;
490   my %info;
491
492   my @args = @$info_arg;  # take a shallow copy for further mutilation
493
494   # combine/pre-parse arguments depending on invocation style
495
496   my %attrs;
497   if (ref $args[0] eq 'CODE') {     # coderef with optional \%extra_attributes
498     %attrs = %{ $args[1] || {} };
499     @args = $args[0];
500   }
501   elsif (ref $args[0] eq 'HASH') { # single hashref (i.e. Catalyst config)
502     %attrs = %{$args[0]};
503     @args = ();
504     if (my $code = delete $attrs{dbh_maker}) {
505       @args = $code;
506
507       my @ignored = grep { delete $attrs{$_} } (qw/dsn user password/);
508       if (@ignored) {
509         carp sprintf (
510             'Attribute(s) %s in connect_info were ignored, as they can not be applied '
511           . "to the result of 'dbh_maker'",
512
513           join (', ', map { "'$_'" } (@ignored) ),
514         );
515       }
516     }
517     else {
518       @args = delete @attrs{qw/dsn user password/};
519     }
520   }
521   else {                # otherwise assume dsn/user/password + \%attrs + \%extra_attrs
522     %attrs = (
523       % { $args[3] || {} },
524       % { $args[4] || {} },
525     );
526     @args = @args[0,1,2];
527   }
528
529   $info{arguments} = \@args;
530
531   my @storage_opts = grep exists $attrs{$_},
532     @storage_options, 'cursor_class';
533
534   @{ $info{storage_options} }{@storage_opts} =
535     delete @attrs{@storage_opts} if @storage_opts;
536
537   my @sql_maker_opts = grep exists $attrs{$_},
538     qw/limit_dialect quote_char name_sep/;
539
540   @{ $info{sql_maker_options} }{@sql_maker_opts} =
541     delete @attrs{@sql_maker_opts} if @sql_maker_opts;
542
543   $info{attributes} = \%attrs if %attrs;
544
545   return \%info;
546 }
547
548 sub _default_dbi_connect_attributes {
549   return {
550     AutoCommit => 1,
551     RaiseError => 1,
552     PrintError => 0,
553   };
554 }
555
556 =head2 on_connect_do
557
558 This method is deprecated in favour of setting via L</connect_info>.
559
560 =cut
561
562 =head2 on_disconnect_do
563
564 This method is deprecated in favour of setting via L</connect_info>.
565
566 =cut
567
568 sub _parse_connect_do {
569   my ($self, $type) = @_;
570
571   my $val = $self->$type;
572   return () if not defined $val;
573
574   my @res;
575
576   if (not ref($val)) {
577     push @res, [ 'do_sql', $val ];
578   } elsif (ref($val) eq 'CODE') {
579     push @res, $val;
580   } elsif (ref($val) eq 'ARRAY') {
581     push @res, map { [ 'do_sql', $_ ] } @$val;
582   } else {
583     $self->throw_exception("Invalid type for $type: ".ref($val));
584   }
585
586   return \@res;
587 }
588
589 =head2 dbh_do
590
591 Arguments: ($subref | $method_name), @extra_coderef_args?
592
593 Execute the given $subref or $method_name using the new exception-based
594 connection management.
595
596 The first two arguments will be the storage object that C<dbh_do> was called
597 on and a database handle to use.  Any additional arguments will be passed
598 verbatim to the called subref as arguments 2 and onwards.
599
600 Using this (instead of $self->_dbh or $self->dbh) ensures correct
601 exception handling and reconnection (or failover in future subclasses).
602
603 Your subref should have no side-effects outside of the database, as
604 there is the potential for your subref to be partially double-executed
605 if the database connection was stale/dysfunctional.
606
607 Example:
608
609   my @stuff = $schema->storage->dbh_do(
610     sub {
611       my ($storage, $dbh, @cols) = @_;
612       my $cols = join(q{, }, @cols);
613       $dbh->selectrow_array("SELECT $cols FROM foo");
614     },
615     @column_list
616   );
617
618 =cut
619
620 sub dbh_do {
621   my $self = shift;
622   my $code = shift;
623
624   my $dbh = $self->_get_dbh;
625
626   return $self->$code($dbh, @_) if $self->{_in_dbh_do}
627       || $self->{transaction_depth};
628
629   local $self->{_in_dbh_do} = 1;
630
631   my @result;
632   my $want_array = wantarray;
633
634   eval {
635
636     if($want_array) {
637         @result = $self->$code($dbh, @_);
638     }
639     elsif(defined $want_array) {
640         $result[0] = $self->$code($dbh, @_);
641     }
642     else {
643         $self->$code($dbh, @_);
644     }
645   };
646
647   # ->connected might unset $@ - copy
648   my $exception = $@;
649   if(!$exception) { return $want_array ? @result : $result[0] }
650
651   $self->throw_exception($exception) if $self->connected;
652
653   # We were not connected - reconnect and retry, but let any
654   #  exception fall right through this time
655   carp "Retrying $code after catching disconnected exception: $exception"
656     if $ENV{DBIC_DBIRETRY_DEBUG};
657   $self->_populate_dbh;
658   $self->$code($self->_dbh, @_);
659 }
660
661 # This is basically a blend of dbh_do above and DBIx::Class::Storage::txn_do.
662 # It also informs dbh_do to bypass itself while under the direction of txn_do,
663 #  via $self->{_in_dbh_do} (this saves some redundant eval and errorcheck, etc)
664 sub txn_do {
665   my $self = shift;
666   my $coderef = shift;
667
668   ref $coderef eq 'CODE' or $self->throw_exception
669     ('$coderef must be a CODE reference');
670
671   return $coderef->(@_) if $self->{transaction_depth} && ! $self->auto_savepoint;
672
673   local $self->{_in_dbh_do} = 1;
674
675   my @result;
676   my $want_array = wantarray;
677
678   my $tried = 0;
679   while(1) {
680     eval {
681       $self->_get_dbh;
682
683       $self->txn_begin;
684       if($want_array) {
685           @result = $coderef->(@_);
686       }
687       elsif(defined $want_array) {
688           $result[0] = $coderef->(@_);
689       }
690       else {
691           $coderef->(@_);
692       }
693       $self->txn_commit;
694     };
695
696     # ->connected might unset $@ - copy
697     my $exception = $@;
698     if(!$exception) { return $want_array ? @result : $result[0] }
699
700     if($tried++ || $self->connected) {
701       eval { $self->txn_rollback };
702       my $rollback_exception = $@;
703       if($rollback_exception) {
704         my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
705         $self->throw_exception($exception)  # propagate nested rollback
706           if $rollback_exception =~ /$exception_class/;
707
708         $self->throw_exception(
709           "Transaction aborted: ${exception}. "
710           . "Rollback failed: ${rollback_exception}"
711         );
712       }
713       $self->throw_exception($exception)
714     }
715
716     # We were not connected, and was first try - reconnect and retry
717     # via the while loop
718     carp "Retrying $coderef after catching disconnected exception: $exception"
719       if $ENV{DBIC_DBIRETRY_DEBUG};
720     $self->_populate_dbh;
721   }
722 }
723
724 =head2 disconnect
725
726 Our C<disconnect> method also performs a rollback first if the
727 database is not in C<AutoCommit> mode.
728
729 =cut
730
731 sub disconnect {
732   my ($self) = @_;
733
734   if( $self->_dbh ) {
735     my @actions;
736
737     push @actions, ( $self->on_disconnect_call || () );
738     push @actions, $self->_parse_connect_do ('on_disconnect_do');
739
740     $self->_do_connection_actions(disconnect_call_ => $_) for @actions;
741
742     $self->_dbh_rollback unless $self->_dbh_autocommit;
743
744     $self->_dbh->disconnect;
745     $self->_dbh(undef);
746     $self->{_dbh_gen}++;
747   }
748 }
749
750 =head2 with_deferred_fk_checks
751
752 =over 4
753
754 =item Arguments: C<$coderef>
755
756 =item Return Value: The return value of $coderef
757
758 =back
759
760 Storage specific method to run the code ref with FK checks deferred or
761 in MySQL's case disabled entirely.
762
763 =cut
764
765 # Storage subclasses should override this
766 sub with_deferred_fk_checks {
767   my ($self, $sub) = @_;
768   $sub->();
769 }
770
771 =head2 connected
772
773 =over
774
775 =item Arguments: none
776
777 =item Return Value: 1|0
778
779 =back
780
781 Verifies that the current database handle is active and ready to execute
782 an SQL statement (e.g. the connection did not get stale, server is still
783 answering, etc.) This method is used internally by L</dbh>.
784
785 =cut
786
787 sub connected {
788   my $self = shift;
789   return 0 unless $self->_seems_connected;
790
791   #be on the safe side
792   local $self->_dbh->{RaiseError} = 1;
793
794   return $self->_ping;
795 }
796
797 sub _seems_connected {
798   my $self = shift;
799
800   my $dbh = $self->_dbh
801     or return 0;
802
803   if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
804     $self->_dbh(undef);
805     $self->{_dbh_gen}++;
806     return 0;
807   }
808   else {
809     $self->_verify_pid;
810     return 0 if !$self->_dbh;
811   }
812
813   return $dbh->FETCH('Active');
814 }
815
816 sub _ping {
817   my $self = shift;
818
819   my $dbh = $self->_dbh or return 0;
820
821   return $dbh->ping;
822 }
823
824 # handle pid changes correctly
825 #  NOTE: assumes $self->_dbh is a valid $dbh
826 sub _verify_pid {
827   my ($self) = @_;
828
829   return if defined $self->_conn_pid && $self->_conn_pid == $$;
830
831   $self->_dbh->{InactiveDestroy} = 1;
832   $self->_dbh(undef);
833   $self->{_dbh_gen}++;
834
835   return;
836 }
837
838 sub ensure_connected {
839   my ($self) = @_;
840
841   unless ($self->connected) {
842     $self->_populate_dbh;
843   }
844 }
845
846 =head2 dbh
847
848 Returns a C<$dbh> - a data base handle of class L<DBI>. The returned handle
849 is guaranteed to be healthy by implicitly calling L</connected>, and if
850 necessary performing a reconnection before returning. Keep in mind that this
851 is very B<expensive> on some database engines. Consider using L<dbh_do>
852 instead.
853
854 =cut
855
856 sub dbh {
857   my ($self) = @_;
858
859   if (not $self->_dbh) {
860     $self->_populate_dbh;
861   } else {
862     $self->ensure_connected;
863   }
864   return $self->_dbh;
865 }
866
867 # this is the internal "get dbh or connect (don't check)" method
868 sub _get_dbh {
869   my $self = shift;
870   $self->_verify_pid if $self->_dbh;
871   $self->_populate_dbh unless $self->_dbh;
872   return $self->_dbh;
873 }
874
875 sub _sql_maker_args {
876     my ($self) = @_;
877
878     return (
879       bindtype=>'columns',
880       array_datatypes => 1,
881       limit_dialect => $self->_get_dbh,
882       %{$self->_sql_maker_opts}
883     );
884 }
885
886 sub sql_maker {
887   my ($self) = @_;
888   unless ($self->_sql_maker) {
889     my $sql_maker_class = $self->sql_maker_class;
890     $self->ensure_class_loaded ($sql_maker_class);
891     $self->_sql_maker($sql_maker_class->new( $self->_sql_maker_args ));
892   }
893   return $self->_sql_maker;
894 }
895
896 # nothing to do by default
897 sub _rebless {}
898 sub _init {}
899
900 sub _populate_dbh {
901   my ($self) = @_;
902
903   my @info = @{$self->_dbi_connect_info || []};
904   $self->_dbh(undef); # in case ->connected failed we might get sent here
905   $self->_dbh($self->_connect(@info));
906
907   $self->_conn_pid($$);
908   $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
909
910   $self->_determine_driver;
911
912   # Always set the transaction depth on connect, since
913   #  there is no transaction in progress by definition
914   $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
915
916   $self->_run_connection_actions unless $self->{_in_determine_driver};
917 }
918
919 sub _run_connection_actions {
920   my $self = shift;
921   my @actions;
922
923   push @actions, ( $self->on_connect_call || () );
924   push @actions, $self->_parse_connect_do ('on_connect_do');
925
926   $self->_do_connection_actions(connect_call_ => $_) for @actions;
927 }
928
929 sub _determine_driver {
930   my ($self) = @_;
931
932   if ((not $self->_driver_determined) && (not $self->{_in_determine_driver})) {
933     my $started_connected = 0;
934     local $self->{_in_determine_driver} = 1;
935
936     if (ref($self) eq __PACKAGE__) {
937       my $driver;
938       if ($self->_dbh) { # we are connected
939         $driver = $self->_dbh->{Driver}{Name};
940         $started_connected = 1;
941       } else {
942         # if connect_info is a CODEREF, we have no choice but to connect
943         if (ref $self->_dbi_connect_info->[0] &&
944             Scalar::Util::reftype($self->_dbi_connect_info->[0]) eq 'CODE') {
945           $self->_populate_dbh;
946           $driver = $self->_dbh->{Driver}{Name};
947         }
948         else {
949           # try to use dsn to not require being connected, the driver may still
950           # force a connection in _rebless to determine version
951           ($driver) = $self->_dbi_connect_info->[0] =~ /dbi:([^:]+):/i;
952         }
953       }
954
955       my $storage_class = "DBIx::Class::Storage::DBI::${driver}";
956       if ($self->load_optional_class($storage_class)) {
957         mro::set_mro($storage_class, 'c3');
958         bless $self, $storage_class;
959         $self->_rebless();
960       }
961     }
962
963     $self->_driver_determined(1);
964
965     $self->_init; # run driver-specific initializations
966
967     $self->_run_connection_actions
968         if !$started_connected && defined $self->_dbh;
969   }
970 }
971
972 sub _do_connection_actions {
973   my $self          = shift;
974   my $method_prefix = shift;
975   my $call          = shift;
976
977   if (not ref($call)) {
978     my $method = $method_prefix . $call;
979     $self->$method(@_);
980   } elsif (ref($call) eq 'CODE') {
981     $self->$call(@_);
982   } elsif (ref($call) eq 'ARRAY') {
983     if (ref($call->[0]) ne 'ARRAY') {
984       $self->_do_connection_actions($method_prefix, $_) for @$call;
985     } else {
986       $self->_do_connection_actions($method_prefix, @$_) for @$call;
987     }
988   } else {
989     $self->throw_exception (sprintf ("Don't know how to process conection actions of type '%s'", ref($call)) );
990   }
991
992   return $self;
993 }
994
995 sub connect_call_do_sql {
996   my $self = shift;
997   $self->_do_query(@_);
998 }
999
1000 sub disconnect_call_do_sql {
1001   my $self = shift;
1002   $self->_do_query(@_);
1003 }
1004
1005 # override in db-specific backend when necessary
1006 sub connect_call_datetime_setup { 1 }
1007
1008 sub _do_query {
1009   my ($self, $action) = @_;
1010
1011   if (ref $action eq 'CODE') {
1012     $action = $action->($self);
1013     $self->_do_query($_) foreach @$action;
1014   }
1015   else {
1016     # Most debuggers expect ($sql, @bind), so we need to exclude
1017     # the attribute hash which is the second argument to $dbh->do
1018     # furthermore the bind values are usually to be presented
1019     # as named arrayref pairs, so wrap those here too
1020     my @do_args = (ref $action eq 'ARRAY') ? (@$action) : ($action);
1021     my $sql = shift @do_args;
1022     my $attrs = shift @do_args;
1023     my @bind = map { [ undef, $_ ] } @do_args;
1024
1025     $self->_query_start($sql, @bind);
1026     $self->_get_dbh->do($sql, $attrs, @do_args);
1027     $self->_query_end($sql, @bind);
1028   }
1029
1030   return $self;
1031 }
1032
1033 sub _connect {
1034   my ($self, @info) = @_;
1035
1036   $self->throw_exception("You failed to provide any connection info")
1037     if !@info;
1038
1039   my ($old_connect_via, $dbh);
1040
1041   if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
1042     $old_connect_via = $DBI::connect_via;
1043     $DBI::connect_via = 'connect';
1044   }
1045
1046   eval {
1047     if(ref $info[0] eq 'CODE') {
1048        $dbh = $info[0]->();
1049     }
1050     else {
1051        $dbh = DBI->connect(@info);
1052     }
1053
1054     if($dbh && !$self->unsafe) {
1055       my $weak_self = $self;
1056       Scalar::Util::weaken($weak_self);
1057       $dbh->{HandleError} = sub {
1058           if ($weak_self) {
1059             $weak_self->throw_exception("DBI Exception: $_[0]");
1060           }
1061           else {
1062             # the handler may be invoked by something totally out of
1063             # the scope of DBIC
1064             croak ("DBI Exception: $_[0]");
1065           }
1066       };
1067       $dbh->{ShowErrorStatement} = 1;
1068       $dbh->{RaiseError} = 1;
1069       $dbh->{PrintError} = 0;
1070     }
1071   };
1072
1073   $DBI::connect_via = $old_connect_via if $old_connect_via;
1074
1075   $self->throw_exception("DBI Connection failed: " . ($@||$DBI::errstr))
1076     if !$dbh || $@;
1077
1078   $self->_dbh_autocommit($dbh->{AutoCommit});
1079
1080   $dbh;
1081 }
1082
1083 sub svp_begin {
1084   my ($self, $name) = @_;
1085
1086   $name = $self->_svp_generate_name
1087     unless defined $name;
1088
1089   $self->throw_exception ("You can't use savepoints outside a transaction")
1090     if $self->{transaction_depth} == 0;
1091
1092   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
1093     unless $self->can('_svp_begin');
1094
1095   push @{ $self->{savepoints} }, $name;
1096
1097   $self->debugobj->svp_begin($name) if $self->debug;
1098
1099   return $self->_svp_begin($name);
1100 }
1101
1102 sub svp_release {
1103   my ($self, $name) = @_;
1104
1105   $self->throw_exception ("You can't use savepoints outside a transaction")
1106     if $self->{transaction_depth} == 0;
1107
1108   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
1109     unless $self->can('_svp_release');
1110
1111   if (defined $name) {
1112     $self->throw_exception ("Savepoint '$name' does not exist")
1113       unless grep { $_ eq $name } @{ $self->{savepoints} };
1114
1115     # Dig through the stack until we find the one we are releasing.  This keeps
1116     # the stack up to date.
1117     my $svp;
1118
1119     do { $svp = pop @{ $self->{savepoints} } } while $svp ne $name;
1120   } else {
1121     $name = pop @{ $self->{savepoints} };
1122   }
1123
1124   $self->debugobj->svp_release($name) if $self->debug;
1125
1126   return $self->_svp_release($name);
1127 }
1128
1129 sub svp_rollback {
1130   my ($self, $name) = @_;
1131
1132   $self->throw_exception ("You can't use savepoints outside a transaction")
1133     if $self->{transaction_depth} == 0;
1134
1135   $self->throw_exception ("Your Storage implementation doesn't support savepoints")
1136     unless $self->can('_svp_rollback');
1137
1138   if (defined $name) {
1139       # If they passed us a name, verify that it exists in the stack
1140       unless(grep({ $_ eq $name } @{ $self->{savepoints} })) {
1141           $self->throw_exception("Savepoint '$name' does not exist!");
1142       }
1143
1144       # Dig through the stack until we find the one we are releasing.  This keeps
1145       # the stack up to date.
1146       while(my $s = pop(@{ $self->{savepoints} })) {
1147           last if($s eq $name);
1148       }
1149       # Add the savepoint back to the stack, as a rollback doesn't remove the
1150       # named savepoint, only everything after it.
1151       push(@{ $self->{savepoints} }, $name);
1152   } else {
1153       # We'll assume they want to rollback to the last savepoint
1154       $name = $self->{savepoints}->[-1];
1155   }
1156
1157   $self->debugobj->svp_rollback($name) if $self->debug;
1158
1159   return $self->_svp_rollback($name);
1160 }
1161
1162 sub _svp_generate_name {
1163     my ($self) = @_;
1164
1165     return 'savepoint_'.scalar(@{ $self->{'savepoints'} });
1166 }
1167
1168 sub txn_begin {
1169   my $self = shift;
1170
1171   # this means we have not yet connected and do not know the AC status
1172   # (e.g. coderef $dbh)
1173   $self->ensure_connected if (! defined $self->_dbh_autocommit);
1174
1175   if($self->{transaction_depth} == 0) {
1176     $self->debugobj->txn_begin()
1177       if $self->debug;
1178     $self->_dbh_begin_work;
1179   }
1180   elsif ($self->auto_savepoint) {
1181     $self->svp_begin;
1182   }
1183   $self->{transaction_depth}++;
1184 }
1185
1186 sub _dbh_begin_work {
1187   my $self = shift;
1188
1189   # if the user is utilizing txn_do - good for him, otherwise we need to
1190   # ensure that the $dbh is healthy on BEGIN.
1191   # We do this via ->dbh_do instead of ->dbh, so that the ->dbh "ping"
1192   # will be replaced by a failure of begin_work itself (which will be
1193   # then retried on reconnect)
1194   if ($self->{_in_dbh_do}) {
1195     $self->_dbh->begin_work;
1196   } else {
1197     $self->dbh_do(sub { $_[1]->begin_work });
1198   }
1199 }
1200
1201 sub txn_commit {
1202   my $self = shift;
1203   if ($self->{transaction_depth} == 1) {
1204     $self->debugobj->txn_commit()
1205       if ($self->debug);
1206     $self->_dbh_commit;
1207     $self->{transaction_depth} = 0
1208       if $self->_dbh_autocommit;
1209   }
1210   elsif($self->{transaction_depth} > 1) {
1211     $self->{transaction_depth}--;
1212     $self->svp_release
1213       if $self->auto_savepoint;
1214   }
1215 }
1216
1217 sub _dbh_commit {
1218   my $self = shift;
1219   my $dbh  = $self->_dbh
1220     or $self->throw_exception('cannot COMMIT on a disconnected handle');
1221   $dbh->commit;
1222 }
1223
1224 sub txn_rollback {
1225   my $self = shift;
1226   my $dbh = $self->_dbh;
1227   eval {
1228     if ($self->{transaction_depth} == 1) {
1229       $self->debugobj->txn_rollback()
1230         if ($self->debug);
1231       $self->{transaction_depth} = 0
1232         if $self->_dbh_autocommit;
1233       $self->_dbh_rollback;
1234     }
1235     elsif($self->{transaction_depth} > 1) {
1236       $self->{transaction_depth}--;
1237       if ($self->auto_savepoint) {
1238         $self->svp_rollback;
1239         $self->svp_release;
1240       }
1241     }
1242     else {
1243       die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
1244     }
1245   };
1246   if ($@) {
1247     my $error = $@;
1248     my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
1249     $error =~ /$exception_class/ and $self->throw_exception($error);
1250     # ensure that a failed rollback resets the transaction depth
1251     $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1;
1252     $self->throw_exception($error);
1253   }
1254 }
1255
1256 sub _dbh_rollback {
1257   my $self = shift;
1258   my $dbh  = $self->_dbh
1259     or $self->throw_exception('cannot ROLLBACK on a disconnected handle');
1260   $dbh->rollback;
1261 }
1262
1263 # This used to be the top-half of _execute.  It was split out to make it
1264 #  easier to override in NoBindVars without duping the rest.  It takes up
1265 #  all of _execute's args, and emits $sql, @bind.
1266 sub _prep_for_execute {
1267   my ($self, $op, $extra_bind, $ident, $args) = @_;
1268
1269   if( Scalar::Util::blessed($ident) && $ident->isa("DBIx::Class::ResultSource") ) {
1270     $ident = $ident->from();
1271   }
1272
1273   my ($sql, @bind) = $self->sql_maker->$op($ident, @$args);
1274
1275   unshift(@bind,
1276     map { ref $_ eq 'ARRAY' ? $_ : [ '!!dummy', $_ ] } @$extra_bind)
1277       if $extra_bind;
1278   return ($sql, \@bind);
1279 }
1280
1281
1282 sub _fix_bind_params {
1283     my ($self, @bind) = @_;
1284
1285     ### Turn @bind from something like this:
1286     ###   ( [ "artist", 1 ], [ "cdid", 1, 3 ] )
1287     ### to this:
1288     ###   ( "'1'", "'1'", "'3'" )
1289     return
1290         map {
1291             if ( defined( $_ && $_->[1] ) ) {
1292                 map { qq{'$_'}; } @{$_}[ 1 .. $#$_ ];
1293             }
1294             else { q{'NULL'}; }
1295         } @bind;
1296 }
1297
1298 sub _query_start {
1299     my ( $self, $sql, @bind ) = @_;
1300
1301     if ( $self->debug ) {
1302         @bind = $self->_fix_bind_params(@bind);
1303
1304         $self->debugobj->query_start( $sql, @bind );
1305     }
1306 }
1307
1308 sub _query_end {
1309     my ( $self, $sql, @bind ) = @_;
1310
1311     if ( $self->debug ) {
1312         @bind = $self->_fix_bind_params(@bind);
1313         $self->debugobj->query_end( $sql, @bind );
1314     }
1315 }
1316
1317 sub _dbh_execute {
1318   my ($self, $dbh, $op, $extra_bind, $ident, $bind_attributes, @args) = @_;
1319
1320   my ($sql, $bind) = $self->_prep_for_execute($op, $extra_bind, $ident, \@args);
1321
1322   $self->_query_start( $sql, @$bind );
1323
1324   my $sth = $self->sth($sql,$op);
1325
1326   my $placeholder_index = 1;
1327
1328   foreach my $bound (@$bind) {
1329     my $attributes = {};
1330     my($column_name, @data) = @$bound;
1331
1332     if ($bind_attributes) {
1333       $attributes = $bind_attributes->{$column_name}
1334       if defined $bind_attributes->{$column_name};
1335     }
1336
1337     foreach my $data (@data) {
1338       my $ref = ref $data;
1339       $data = $ref && $ref ne 'ARRAY' ? ''.$data : $data; # stringify args (except arrayrefs)
1340
1341       $sth->bind_param($placeholder_index, $data, $attributes);
1342       $placeholder_index++;
1343     }
1344   }
1345
1346   # Can this fail without throwing an exception anyways???
1347   my $rv = $sth->execute();
1348   $self->throw_exception($sth->errstr) if !$rv;
1349
1350   $self->_query_end( $sql, @$bind );
1351
1352   return (wantarray ? ($rv, $sth, @$bind) : $rv);
1353 }
1354
1355 sub _execute {
1356     my $self = shift;
1357     $self->dbh_do('_dbh_execute', @_);  # retry over disconnects
1358 }
1359
1360 sub insert {
1361   my ($self, $source, $to_insert) = @_;
1362
1363   my $ident = $source->from;
1364   my $bind_attributes = $self->source_bind_attributes($source);
1365
1366   my $updated_cols = {};
1367
1368   foreach my $col ( $source->columns ) {
1369     if ( !defined $to_insert->{$col} ) {
1370       my $col_info = $source->column_info($col);
1371
1372       if ( $col_info->{auto_nextval} ) {
1373         $updated_cols->{$col} = $to_insert->{$col} = $self->_sequence_fetch(
1374           'nextval',
1375           $col_info->{sequence} ||
1376             $self->_dbh_get_autoinc_seq($self->_get_dbh, $source)
1377         );
1378       }
1379     }
1380   }
1381
1382   $self->_execute('insert' => [], $source, $bind_attributes, $to_insert);
1383
1384   return $updated_cols;
1385 }
1386
1387 ## Currently it is assumed that all values passed will be "normal", i.e. not
1388 ## scalar refs, or at least, all the same type as the first set, the statement is
1389 ## only prepped once.
1390 sub insert_bulk {
1391   my ($self, $source, $cols, $data) = @_;
1392
1393   my %colvalues;
1394   @colvalues{@$cols} = (0..$#$cols);
1395
1396   for my $i (0..$#$cols) {
1397     my $first_val = $data->[0][$i];
1398     next unless ref $first_val eq 'SCALAR';
1399
1400     $colvalues{ $cols->[$i] } = $first_val;
1401   }
1402
1403   # check for bad data and stringify stringifiable objects
1404   my $bad_slice = sub {
1405     my ($msg, $col_idx, $slice_idx) = @_;
1406     $self->throw_exception(sprintf "%s for column '%s' in populate slice:\n%s",
1407       $msg,
1408       $cols->[$col_idx],
1409       do {
1410         local $Data::Dumper::Maxdepth = 1; # don't dump objects, if any
1411         Data::Dumper::Concise::Dumper({
1412           map { $cols->[$_] => $data->[$slice_idx][$_] } (0 .. $#$cols)
1413         }),
1414       }
1415     );
1416   };
1417
1418   for my $datum_idx (0..$#$data) {
1419     my $datum = $data->[$datum_idx];
1420
1421     for my $col_idx (0..$#$cols) {
1422       my $val            = $datum->[$col_idx];
1423       my $sqla_bind      = $colvalues{ $cols->[$col_idx] };
1424       my $is_literal_sql = (ref $sqla_bind) eq 'SCALAR';
1425
1426       if ($is_literal_sql) {
1427         if (not ref $val) {
1428           $bad_slice->('bind found where literal SQL expected', $col_idx, $datum_idx);
1429         }
1430         elsif ((my $reftype = ref $val) ne 'SCALAR') {
1431           $bad_slice->("$reftype reference found where literal SQL expected",
1432             $col_idx, $datum_idx);
1433         }
1434         elsif ($$val ne $$sqla_bind){
1435           $bad_slice->("inconsistent literal SQL value, expecting: '$$sqla_bind'",
1436             $col_idx, $datum_idx);
1437         }
1438       }
1439       elsif (my $reftype = ref $val) {
1440         require overload;
1441         if (overload::Method($val, '""')) {
1442           $datum->[$col_idx] = "".$val;
1443         }
1444         else {
1445           $bad_slice->("$reftype reference found where bind expected",
1446             $col_idx, $datum_idx);
1447         }
1448       }
1449     }
1450   }
1451
1452   my ($sql, $bind) = $self->_prep_for_execute (
1453     'insert', undef, $source, [\%colvalues]
1454   );
1455   my @bind = @$bind;
1456
1457   my $empty_bind = 1 if (not @bind) &&
1458     (grep { ref $_ eq 'SCALAR' } values %colvalues) == @$cols;
1459
1460   if ((not @bind) && (not $empty_bind)) {
1461     $self->throw_exception(
1462       'Cannot insert_bulk without support for placeholders'
1463     );
1464   }
1465
1466   # neither _execute_array, nor _execute_inserts_with_no_binds are
1467   # atomic (even if _execute _array is a single call). Thus a safety
1468   # scope guard
1469   my $guard = $self->txn_scope_guard unless $self->{transaction_depth} != 0;
1470
1471   $self->_query_start( $sql, ['__BULK__'] );
1472   my $sth = $self->sth($sql);
1473   my $rv = do {
1474     if ($empty_bind) {
1475       # bind_param_array doesn't work if there are no binds
1476       $self->_dbh_execute_inserts_with_no_binds( $sth, scalar @$data );
1477     }
1478     else {
1479 #      @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
1480       $self->_execute_array( $source, $sth, \@bind, $cols, $data );
1481     }
1482   };
1483
1484   $self->_query_end( $sql, ['__BULK__'] );
1485
1486
1487   $guard->commit if $guard;
1488
1489   return (wantarray ? ($rv, $sth, @bind) : $rv);
1490 }
1491
1492 sub _execute_array {
1493   my ($self, $source, $sth, $bind, $cols, $data, @extra) = @_;
1494
1495   ## This must be an arrayref, else nothing works!
1496   my $tuple_status = [];
1497
1498   ## Get the bind_attributes, if any exist
1499   my $bind_attributes = $self->source_bind_attributes($source);
1500
1501   ## Bind the values and execute
1502   my $placeholder_index = 1;
1503
1504   foreach my $bound (@$bind) {
1505
1506     my $attributes = {};
1507     my ($column_name, $data_index) = @$bound;
1508
1509     if( $bind_attributes ) {
1510       $attributes = $bind_attributes->{$column_name}
1511       if defined $bind_attributes->{$column_name};
1512     }
1513
1514     my @data = map { $_->[$data_index] } @$data;
1515
1516     $sth->bind_param_array(
1517       $placeholder_index,
1518       [@data],
1519       (%$attributes ?  $attributes : ()),
1520     );
1521     $placeholder_index++;
1522   }
1523
1524   my $rv = eval {
1525     $self->_dbh_execute_array($sth, $tuple_status, @extra);
1526   };
1527   my $err = $@ || $sth->errstr;
1528
1529 # Statement must finish even if there was an exception.
1530   eval { $sth->finish };
1531   $err = $@ unless $err;
1532
1533   if ($err) {
1534     my $i = 0;
1535     ++$i while $i <= $#$tuple_status && !ref $tuple_status->[$i];
1536
1537     $self->throw_exception("Unexpected populate error: $err")
1538       if ($i > $#$tuple_status);
1539
1540     $self->throw_exception(sprintf "%s for populate slice:\n%s",
1541       ($tuple_status->[$i][1] || $err),
1542       Data::Dumper::Concise::Dumper({
1543         map { $cols->[$_] => $data->[$i][$_] } (0 .. $#$cols)
1544       }),
1545     );
1546   }
1547   return $rv;
1548 }
1549
1550 sub _dbh_execute_array {
1551     my ($self, $sth, $tuple_status, @extra) = @_;
1552
1553     return $sth->execute_array({ArrayTupleStatus => $tuple_status});
1554 }
1555
1556 sub _dbh_execute_inserts_with_no_binds {
1557   my ($self, $sth, $count) = @_;
1558
1559   eval {
1560     my $dbh = $self->_get_dbh;
1561     local $dbh->{RaiseError} = 1;
1562     local $dbh->{PrintError} = 0;
1563
1564     $sth->execute foreach 1..$count;
1565   };
1566   my $exception = $@;
1567
1568 # Make sure statement is finished even if there was an exception.
1569   eval { $sth->finish };
1570   $exception = $@ unless $exception;
1571
1572   $self->throw_exception($exception) if $exception;
1573
1574   return $count;
1575 }
1576
1577 sub update {
1578   my ($self, $source, @args) = @_;
1579
1580   my $bind_attrs = $self->source_bind_attributes($source);
1581
1582   return $self->_execute('update' => [], $source, $bind_attrs, @args);
1583 }
1584
1585
1586 sub delete {
1587   my ($self, $source, @args) = @_;
1588
1589   my $bind_attrs = $self->source_bind_attributes($source);
1590
1591   return $self->_execute('delete' => [], $source, $bind_attrs, @args);
1592 }
1593
1594 # We were sent here because the $rs contains a complex search
1595 # which will require a subquery to select the correct rows
1596 # (i.e. joined or limited resultsets, or non-introspectable conditions)
1597 #
1598 # Generating a single PK column subquery is trivial and supported
1599 # by all RDBMS. However if we have a multicolumn PK, things get ugly.
1600 # Look at _multipk_update_delete()
1601 sub _subq_update_delete {
1602   my $self = shift;
1603   my ($rs, $op, $values) = @_;
1604
1605   my $rsrc = $rs->result_source;
1606
1607   # quick check if we got a sane rs on our hands
1608   my @pcols = $rsrc->_pri_cols;
1609
1610   my $sel = $rs->_resolved_attrs->{select};
1611   $sel = [ $sel ] unless ref $sel eq 'ARRAY';
1612
1613   if (
1614       join ("\x00", map { join '.', $rs->{attrs}{alias}, $_ } sort @pcols)
1615         ne
1616       join ("\x00", sort @$sel )
1617   ) {
1618     $self->throw_exception (
1619       '_subq_update_delete can not be called on resultsets selecting columns other than the primary keys'
1620     );
1621   }
1622
1623   if (@pcols == 1) {
1624     return $self->$op (
1625       $rsrc,
1626       $op eq 'update' ? $values : (),
1627       { $pcols[0] => { -in => $rs->as_query } },
1628     );
1629   }
1630
1631   else {
1632     return $self->_multipk_update_delete (@_);
1633   }
1634 }
1635
1636 # ANSI SQL does not provide a reliable way to perform a multicol-PK
1637 # resultset update/delete involving subqueries. So by default resort
1638 # to simple (and inefficient) delete_all style per-row opearations,
1639 # while allowing specific storages to override this with a faster
1640 # implementation.
1641 #
1642 sub _multipk_update_delete {
1643   return shift->_per_row_update_delete (@_);
1644 }
1645
1646 # This is the default loop used to delete/update rows for multi PK
1647 # resultsets, and used by mysql exclusively (because it can't do anything
1648 # else).
1649 #
1650 # We do not use $row->$op style queries, because resultset update/delete
1651 # is not expected to cascade (this is what delete_all/update_all is for).
1652 #
1653 # There should be no race conditions as the entire operation is rolled
1654 # in a transaction.
1655 #
1656 sub _per_row_update_delete {
1657   my $self = shift;
1658   my ($rs, $op, $values) = @_;
1659
1660   my $rsrc = $rs->result_source;
1661   my @pcols = $rsrc->_pri_cols;
1662
1663   my $guard = $self->txn_scope_guard;
1664
1665   # emulate the return value of $sth->execute for non-selects
1666   my $row_cnt = '0E0';
1667
1668   my $subrs_cur = $rs->cursor;
1669   my @all_pk = $subrs_cur->all;
1670   for my $pks ( @all_pk) {
1671
1672     my $cond;
1673     for my $i (0.. $#pcols) {
1674       $cond->{$pcols[$i]} = $pks->[$i];
1675     }
1676
1677     $self->$op (
1678       $rsrc,
1679       $op eq 'update' ? $values : (),
1680       $cond,
1681     );
1682
1683     $row_cnt++;
1684   }
1685
1686   $guard->commit;
1687
1688   return $row_cnt;
1689 }
1690
1691 sub _select {
1692   my $self = shift;
1693
1694   # localization is neccessary as
1695   # 1) there is no infrastructure to pass this around before SQLA2
1696   # 2) _select_args sets it and _prep_for_execute consumes it
1697   my $sql_maker = $self->sql_maker;
1698   local $sql_maker->{_dbic_rs_attrs};
1699
1700   return $self->_execute($self->_select_args(@_));
1701 }
1702
1703 sub _select_args_to_query {
1704   my $self = shift;
1705
1706   # localization is neccessary as
1707   # 1) there is no infrastructure to pass this around before SQLA2
1708   # 2) _select_args sets it and _prep_for_execute consumes it
1709   my $sql_maker = $self->sql_maker;
1710   local $sql_maker->{_dbic_rs_attrs};
1711
1712   # my ($op, $bind, $ident, $bind_attrs, $select, $cond, $order, $rows, $offset)
1713   #  = $self->_select_args($ident, $select, $cond, $attrs);
1714   my ($op, $bind, $ident, $bind_attrs, @args) =
1715     $self->_select_args(@_);
1716
1717   # my ($sql, $prepared_bind) = $self->_prep_for_execute($op, $bind, $ident, [ $select, $cond, $order, $rows, $offset ]);
1718   my ($sql, $prepared_bind) = $self->_prep_for_execute($op, $bind, $ident, \@args);
1719   $prepared_bind ||= [];
1720
1721   return wantarray
1722     ? ($sql, $prepared_bind, $bind_attrs)
1723     : \[ "($sql)", @$prepared_bind ]
1724   ;
1725 }
1726
1727 sub _select_args {
1728   my ($self, $ident, $select, $where, $attrs) = @_;
1729
1730   my ($alias2source, $rs_alias) = $self->_resolve_ident_sources ($ident);
1731
1732   my $sql_maker = $self->sql_maker;
1733   $sql_maker->{_dbic_rs_attrs} = {
1734     %$attrs,
1735     select => $select,
1736     from => $ident,
1737     where => $where,
1738     $rs_alias && $alias2source->{$rs_alias}
1739       ? ( _source_handle => $alias2source->{$rs_alias}->handle )
1740       : ()
1741     ,
1742   };
1743
1744   # calculate bind_attrs before possible $ident mangling
1745   my $bind_attrs = {};
1746   for my $alias (keys %$alias2source) {
1747     my $bindtypes = $self->source_bind_attributes ($alias2source->{$alias}) || {};
1748     for my $col (keys %$bindtypes) {
1749
1750       my $fqcn = join ('.', $alias, $col);
1751       $bind_attrs->{$fqcn} = $bindtypes->{$col} if $bindtypes->{$col};
1752
1753       # Unqialified column names are nice, but at the same time can be
1754       # rather ambiguous. What we do here is basically go along with
1755       # the loop, adding an unqualified column slot to $bind_attrs,
1756       # alongside the fully qualified name. As soon as we encounter
1757       # another column by that name (which would imply another table)
1758       # we unset the unqualified slot and never add any info to it
1759       # to avoid erroneous type binding. If this happens the users
1760       # only choice will be to fully qualify his column name
1761
1762       if (exists $bind_attrs->{$col}) {
1763         $bind_attrs->{$col} = {};
1764       }
1765       else {
1766         $bind_attrs->{$col} = $bind_attrs->{$fqcn};
1767       }
1768     }
1769   }
1770
1771   # adjust limits
1772   if (
1773     $attrs->{software_limit}
1774       ||
1775     $sql_maker->_default_limit_syntax eq "GenericSubQ"
1776   ) {
1777     $attrs->{software_limit} = 1;
1778   }
1779   else {
1780     $self->throw_exception("rows attribute must be positive if present")
1781       if (defined($attrs->{rows}) && !($attrs->{rows} > 0));
1782
1783     # MySQL actually recommends this approach.  I cringe.
1784     $attrs->{rows} = 2**48 if not defined $attrs->{rows} and defined $attrs->{offset};
1785   }
1786
1787   my @limit;
1788
1789   # see if we need to tear the prefetch apart otherwise delegate the limiting to the
1790   # storage, unless software limit was requested
1791   if (
1792     #limited has_many
1793     ( $attrs->{rows} && keys %{$attrs->{collapse}} )
1794        ||
1795     # limited prefetch with RNO subqueries
1796     (
1797       $attrs->{rows}
1798         &&
1799       $sql_maker->limit_dialect eq 'RowNumberOver'
1800         &&
1801       $attrs->{_prefetch_select}
1802         &&
1803       @{$attrs->{_prefetch_select}}
1804     )
1805       ||
1806     # grouped prefetch
1807     ( $attrs->{group_by}
1808         &&
1809       @{$attrs->{group_by}}
1810         &&
1811       $attrs->{_prefetch_select}
1812         &&
1813       @{$attrs->{_prefetch_select}}
1814     )
1815   ) {
1816     ($ident, $select, $where, $attrs)
1817       = $self->_adjust_select_args_for_complex_prefetch ($ident, $select, $where, $attrs);
1818   }
1819
1820   elsif (
1821     ($attrs->{rows} || $attrs->{offset})
1822       &&
1823     $sql_maker->limit_dialect eq 'RowNumberOver'
1824       &&
1825     (ref $ident eq 'ARRAY' && @$ident > 1)  # indicates a join
1826       &&
1827     scalar $self->_parse_order_by ($attrs->{order_by})
1828   ) {
1829     # the RNO limit dialect above mangles the SQL such that the join gets lost
1830     # wrap a subquery here
1831
1832     push @limit, delete @{$attrs}{qw/rows offset/};
1833
1834     my $subq = $self->_select_args_to_query (
1835       $ident,
1836       $select,
1837       $where,
1838       $attrs,
1839     );
1840
1841     $ident = {
1842       -alias => $attrs->{alias},
1843       -source_handle => $ident->[0]{-source_handle},
1844       $attrs->{alias} => $subq,
1845     };
1846
1847     # all part of the subquery now
1848     delete @{$attrs}{qw/order_by group_by having/};
1849     $where = undef;
1850   }
1851
1852   elsif (! $attrs->{software_limit} ) {
1853     push @limit, $attrs->{rows}, $attrs->{offset};
1854   }
1855
1856   # try to simplify the joinmap further (prune unreferenced type-single joins)
1857   $ident = $self->_prune_unused_joins ($ident, $select, $where, $attrs);
1858
1859 ###
1860   # This would be the point to deflate anything found in $where
1861   # (and leave $attrs->{bind} intact). Problem is - inflators historically
1862   # expect a row object. And all we have is a resultsource (it is trivial
1863   # to extract deflator coderefs via $alias2source above).
1864   #
1865   # I don't see a way forward other than changing the way deflators are
1866   # invoked, and that's just bad...
1867 ###
1868
1869   my $order = { map
1870     { $attrs->{$_} ? ( $_ => $attrs->{$_} ) : ()  }
1871     (qw/order_by group_by having/ )
1872   };
1873
1874   return ('select', $attrs->{bind}, $ident, $bind_attrs, $select, $where, $order, @limit);
1875 }
1876
1877 # Returns a counting SELECT for a simple count
1878 # query. Abstracted so that a storage could override
1879 # this to { count => 'firstcol' } or whatever makes
1880 # sense as a performance optimization
1881 sub _count_select {
1882   #my ($self, $source, $rs_attrs) = @_;
1883   return { count => '*' };
1884 }
1885
1886 # Returns a SELECT which will end up in the subselect
1887 # There may or may not be a group_by, as the subquery
1888 # might have been called to accomodate a limit
1889 #
1890 # Most databases would be happy with whatever ends up
1891 # here, but some choke in various ways.
1892 #
1893 sub _subq_count_select {
1894   my ($self, $source, $rs_attrs) = @_;
1895
1896   if (my $groupby = $rs_attrs->{group_by}) {
1897
1898     my $avail_columns = $self->_resolve_column_info ($rs_attrs->{from});
1899
1900     my $sel_index;
1901     for my $sel (@{$rs_attrs->{select}}) {
1902       if (ref $sel eq 'HASH' and $sel->{-as}) {
1903         $sel_index->{$sel->{-as}} = $sel;
1904       }
1905     }
1906
1907     my @selection;
1908     for my $g_part (@$groupby) {
1909       if (ref $g_part or $avail_columns->{$g_part}) {
1910         push @selection, $g_part;
1911       }
1912       elsif ($sel_index->{$g_part}) {
1913         push @selection, $sel_index->{$g_part};
1914       }
1915       else {
1916         $self->throw_exception ("group_by criteria '$g_part' not contained within current resultset source(s)");
1917       }
1918     }
1919
1920     return \@selection;
1921   }
1922
1923   my @pcols = map { join '.', $rs_attrs->{alias}, $_ } ($source->primary_columns);
1924   return @pcols ? \@pcols : [ 1 ];
1925 }
1926
1927 sub source_bind_attributes {
1928   my ($self, $source) = @_;
1929
1930   my $bind_attributes;
1931   foreach my $column ($source->columns) {
1932
1933     my $data_type = $source->column_info($column)->{data_type} || '';
1934     $bind_attributes->{$column} = $self->bind_attribute_by_data_type($data_type)
1935      if $data_type;
1936   }
1937
1938   return $bind_attributes;
1939 }
1940
1941 =head2 select
1942
1943 =over 4
1944
1945 =item Arguments: $ident, $select, $condition, $attrs
1946
1947 =back
1948
1949 Handle a SQL select statement.
1950
1951 =cut
1952
1953 sub select {
1954   my $self = shift;
1955   my ($ident, $select, $condition, $attrs) = @_;
1956   return $self->cursor_class->new($self, \@_, $attrs);
1957 }
1958
1959 sub select_single {
1960   my $self = shift;
1961   my ($rv, $sth, @bind) = $self->_select(@_);
1962   my @row = $sth->fetchrow_array;
1963   my @nextrow = $sth->fetchrow_array if @row;
1964   if(@row && @nextrow) {
1965     carp "Query returned more than one row.  SQL that returns multiple rows is DEPRECATED for ->find and ->single";
1966   }
1967   # Need to call finish() to work round broken DBDs
1968   $sth->finish();
1969   return @row;
1970 }
1971
1972 =head2 sth
1973
1974 =over 4
1975
1976 =item Arguments: $sql
1977
1978 =back
1979
1980 Returns a L<DBI> sth (statement handle) for the supplied SQL.
1981
1982 =cut
1983
1984 sub _dbh_sth {
1985   my ($self, $dbh, $sql) = @_;
1986
1987   # 3 is the if_active parameter which avoids active sth re-use
1988   my $sth = $self->disable_sth_caching
1989     ? $dbh->prepare($sql)
1990     : $dbh->prepare_cached($sql, {}, 3);
1991
1992   # XXX You would think RaiseError would make this impossible,
1993   #  but apparently that's not true :(
1994   $self->throw_exception($dbh->errstr) if !$sth;
1995
1996   $sth;
1997 }
1998
1999 sub sth {
2000   my ($self, $sql) = @_;
2001   $self->dbh_do('_dbh_sth', $sql);  # retry over disconnects
2002 }
2003
2004 sub _dbh_columns_info_for {
2005   my ($self, $dbh, $table) = @_;
2006
2007   if ($dbh->can('column_info')) {
2008     my %result;
2009     eval {
2010       my ($schema,$tab) = $table =~ /^(.+?)\.(.+)$/ ? ($1,$2) : (undef,$table);
2011       my $sth = $dbh->column_info( undef,$schema, $tab, '%' );
2012       $sth->execute();
2013       while ( my $info = $sth->fetchrow_hashref() ){
2014         my %column_info;
2015         $column_info{data_type}   = $info->{TYPE_NAME};
2016         $column_info{size}      = $info->{COLUMN_SIZE};
2017         $column_info{is_nullable}   = $info->{NULLABLE} ? 1 : 0;
2018         $column_info{default_value} = $info->{COLUMN_DEF};
2019         my $col_name = $info->{COLUMN_NAME};
2020         $col_name =~ s/^\"(.*)\"$/$1/;
2021
2022         $result{$col_name} = \%column_info;
2023       }
2024     };
2025     return \%result if !$@ && scalar keys %result;
2026   }
2027
2028   my %result;
2029   my $sth = $dbh->prepare($self->sql_maker->select($table, undef, \'1 = 0'));
2030   $sth->execute;
2031   my @columns = @{$sth->{NAME_lc}};
2032   for my $i ( 0 .. $#columns ){
2033     my %column_info;
2034     $column_info{data_type} = $sth->{TYPE}->[$i];
2035     $column_info{size} = $sth->{PRECISION}->[$i];
2036     $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
2037
2038     if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
2039       $column_info{data_type} = $1;
2040       $column_info{size}    = $2;
2041     }
2042
2043     $result{$columns[$i]} = \%column_info;
2044   }
2045   $sth->finish;
2046
2047   foreach my $col (keys %result) {
2048     my $colinfo = $result{$col};
2049     my $type_num = $colinfo->{data_type};
2050     my $type_name;
2051     if(defined $type_num && $dbh->can('type_info')) {
2052       my $type_info = $dbh->type_info($type_num);
2053       $type_name = $type_info->{TYPE_NAME} if $type_info;
2054       $colinfo->{data_type} = $type_name if $type_name;
2055     }
2056   }
2057
2058   return \%result;
2059 }
2060
2061 sub columns_info_for {
2062   my ($self, $table) = @_;
2063   $self->_dbh_columns_info_for ($self->_get_dbh, $table);
2064 }
2065
2066 =head2 last_insert_id
2067
2068 Return the row id of the last insert.
2069
2070 =cut
2071
2072 sub _dbh_last_insert_id {
2073     my ($self, $dbh, $source, $col) = @_;
2074
2075     my $id = eval { $dbh->last_insert_id (undef, undef, $source->name, $col) };
2076
2077     return $id if defined $id;
2078
2079     my $class = ref $self;
2080     $self->throw_exception ("No storage specific _dbh_last_insert_id() method implemented in $class, and the generic DBI::last_insert_id() failed");
2081 }
2082
2083 sub last_insert_id {
2084   my $self = shift;
2085   $self->_dbh_last_insert_id ($self->_dbh, @_);
2086 }
2087
2088 =head2 _native_data_type
2089
2090 =over 4
2091
2092 =item Arguments: $type_name
2093
2094 =back
2095
2096 This API is B<EXPERIMENTAL>, will almost definitely change in the future, and
2097 currently only used by L<::AutoCast|DBIx::Class::Storage::DBI::AutoCast> and
2098 L<::Sybase::ASE|DBIx::Class::Storage::DBI::Sybase::ASE>.
2099
2100 The default implementation returns C<undef>, implement in your Storage driver if
2101 you need this functionality.
2102
2103 Should map types from other databases to the native RDBMS type, for example
2104 C<VARCHAR2> to C<VARCHAR>.
2105
2106 Types with modifiers should map to the underlying data type. For example,
2107 C<INTEGER AUTO_INCREMENT> should become C<INTEGER>.
2108
2109 Composite types should map to the container type, for example
2110 C<ENUM(foo,bar,baz)> becomes C<ENUM>.
2111
2112 =cut
2113
2114 sub _native_data_type {
2115   #my ($self, $data_type) = @_;
2116   return undef
2117 }
2118
2119 # Check if placeholders are supported at all
2120 sub _placeholders_supported {
2121   my $self = shift;
2122   my $dbh  = $self->_get_dbh;
2123
2124   # some drivers provide a $dbh attribute (e.g. Sybase and $dbh->{syb_dynamic_supported})
2125   # but it is inaccurate more often than not
2126   eval {
2127     local $dbh->{PrintError} = 0;
2128     local $dbh->{RaiseError} = 1;
2129     $dbh->do('select ?', {}, 1);
2130   };
2131   return $@ ? 0 : 1;
2132 }
2133
2134 # Check if placeholders bound to non-string types throw exceptions
2135 #
2136 sub _typeless_placeholders_supported {
2137   my $self = shift;
2138   my $dbh  = $self->_get_dbh;
2139
2140   eval {
2141     local $dbh->{PrintError} = 0;
2142     local $dbh->{RaiseError} = 1;
2143     # this specifically tests a bind that is NOT a string
2144     $dbh->do('select 1 where 1 = ?', {}, 1);
2145   };
2146   return $@ ? 0 : 1;
2147 }
2148
2149 =head2 sqlt_type
2150
2151 Returns the database driver name.
2152
2153 =cut
2154
2155 sub sqlt_type {
2156   shift->_get_dbh->{Driver}->{Name};
2157 }
2158
2159 =head2 bind_attribute_by_data_type
2160
2161 Given a datatype from column info, returns a database specific bind
2162 attribute for C<< $dbh->bind_param($val,$attribute) >> or nothing if we will
2163 let the database planner just handle it.
2164
2165 Generally only needed for special case column types, like bytea in postgres.
2166
2167 =cut
2168
2169 sub bind_attribute_by_data_type {
2170     return;
2171 }
2172
2173 =head2 is_datatype_numeric
2174
2175 Given a datatype from column_info, returns a boolean value indicating if
2176 the current RDBMS considers it a numeric value. This controls how
2177 L<DBIx::Class::Row/set_column> decides whether to mark the column as
2178 dirty - when the datatype is deemed numeric a C<< != >> comparison will
2179 be performed instead of the usual C<eq>.
2180
2181 =cut
2182
2183 sub is_datatype_numeric {
2184   my ($self, $dt) = @_;
2185
2186   return 0 unless $dt;
2187
2188   return $dt =~ /^ (?:
2189     numeric | int(?:eger)? | (?:tiny|small|medium|big)int | dec(?:imal)? | real | float | double (?: \s+ precision)? | (?:big)?serial
2190   ) $/ix;
2191 }
2192
2193
2194 =head2 create_ddl_dir
2195
2196 =over 4
2197
2198 =item Arguments: $schema \@databases, $version, $directory, $preversion, \%sqlt_args
2199
2200 =back
2201
2202 Creates a SQL file based on the Schema, for each of the specified
2203 database engines in C<\@databases> in the given directory.
2204 (note: specify L<SQL::Translator> names, not L<DBI> driver names).
2205
2206 Given a previous version number, this will also create a file containing
2207 the ALTER TABLE statements to transform the previous schema into the
2208 current one. Note that these statements may contain C<DROP TABLE> or
2209 C<DROP COLUMN> statements that can potentially destroy data.
2210
2211 The file names are created using the C<ddl_filename> method below, please
2212 override this method in your schema if you would like a different file
2213 name format. For the ALTER file, the same format is used, replacing
2214 $version in the name with "$preversion-$version".
2215
2216 See L<SQL::Translator/METHODS> for a list of values for C<\%sqlt_args>.
2217 The most common value for this would be C<< { add_drop_table => 1 } >>
2218 to have the SQL produced include a C<DROP TABLE> statement for each table
2219 created. For quoting purposes supply C<quote_table_names> and
2220 C<quote_field_names>.
2221
2222 If no arguments are passed, then the following default values are assumed:
2223
2224 =over 4
2225
2226 =item databases  - ['MySQL', 'SQLite', 'PostgreSQL']
2227
2228 =item version    - $schema->schema_version
2229
2230 =item directory  - './'
2231
2232 =item preversion - <none>
2233
2234 =back
2235
2236 By default, C<\%sqlt_args> will have
2237
2238  { add_drop_table => 1, ignore_constraint_names => 1, ignore_index_names => 1 }
2239
2240 merged with the hash passed in. To disable any of those features, pass in a
2241 hashref like the following
2242
2243  { ignore_constraint_names => 0, # ... other options }
2244
2245
2246 WARNING: You are strongly advised to check all SQL files created, before applying
2247 them.
2248
2249 =cut
2250
2251 sub create_ddl_dir {
2252   my ($self, $schema, $databases, $version, $dir, $preversion, $sqltargs) = @_;
2253
2254   if(!$dir || !-d $dir) {
2255     carp "No directory given, using ./\n";
2256     $dir = "./";
2257   }
2258   $databases ||= ['MySQL', 'SQLite', 'PostgreSQL'];
2259   $databases = [ $databases ] if(ref($databases) ne 'ARRAY');
2260
2261   my $schema_version = $schema->schema_version || '1.x';
2262   $version ||= $schema_version;
2263
2264   $sqltargs = {
2265     add_drop_table => 1,
2266     ignore_constraint_names => 1,
2267     ignore_index_names => 1,
2268     %{$sqltargs || {}}
2269   };
2270
2271   unless (DBIx::Class::Optional::Dependencies->req_ok_for ('deploy')) {
2272     $self->throw_exception("Can't create a ddl file without " . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') );
2273   }
2274
2275   my $sqlt = SQL::Translator->new( $sqltargs );
2276
2277   $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
2278   my $sqlt_schema = $sqlt->translate({ data => $schema })
2279     or $self->throw_exception ($sqlt->error);
2280
2281   foreach my $db (@$databases) {
2282     $sqlt->reset();
2283     $sqlt->{schema} = $sqlt_schema;
2284     $sqlt->producer($db);
2285
2286     my $file;
2287     my $filename = $schema->ddl_filename($db, $version, $dir);
2288     if (-e $filename && ($version eq $schema_version )) {
2289       # if we are dumping the current version, overwrite the DDL
2290       carp "Overwriting existing DDL file - $filename";
2291       unlink($filename);
2292     }
2293
2294     my $output = $sqlt->translate;
2295     if(!$output) {
2296       carp("Failed to translate to $db, skipping. (" . $sqlt->error . ")");
2297       next;
2298     }
2299     if(!open($file, ">$filename")) {
2300       $self->throw_exception("Can't open $filename for writing ($!)");
2301       next;
2302     }
2303     print $file $output;
2304     close($file);
2305
2306     next unless ($preversion);
2307
2308     require SQL::Translator::Diff;
2309
2310     my $prefilename = $schema->ddl_filename($db, $preversion, $dir);
2311     if(!-e $prefilename) {
2312       carp("No previous schema file found ($prefilename)");
2313       next;
2314     }
2315
2316     my $difffile = $schema->ddl_filename($db, $version, $dir, $preversion);
2317     if(-e $difffile) {
2318       carp("Overwriting existing diff file - $difffile");
2319       unlink($difffile);
2320     }
2321
2322     my $source_schema;
2323     {
2324       my $t = SQL::Translator->new($sqltargs);
2325       $t->debug( 0 );
2326       $t->trace( 0 );
2327
2328       $t->parser( $db )
2329         or $self->throw_exception ($t->error);
2330
2331       my $out = $t->translate( $prefilename )
2332         or $self->throw_exception ($t->error);
2333
2334       $source_schema = $t->schema;
2335
2336       $source_schema->name( $prefilename )
2337         unless ( $source_schema->name );
2338     }
2339
2340     # The "new" style of producers have sane normalization and can support
2341     # diffing a SQL file against a DBIC->SQLT schema. Old style ones don't
2342     # And we have to diff parsed SQL against parsed SQL.
2343     my $dest_schema = $sqlt_schema;
2344
2345     unless ( "SQL::Translator::Producer::$db"->can('preprocess_schema') ) {
2346       my $t = SQL::Translator->new($sqltargs);
2347       $t->debug( 0 );
2348       $t->trace( 0 );
2349
2350       $t->parser( $db )
2351         or $self->throw_exception ($t->error);
2352
2353       my $out = $t->translate( $filename )
2354         or $self->throw_exception ($t->error);
2355
2356       $dest_schema = $t->schema;
2357
2358       $dest_schema->name( $filename )
2359         unless $dest_schema->name;
2360     }
2361
2362     my $diff = SQL::Translator::Diff::schema_diff($source_schema, $db,
2363                                                   $dest_schema,   $db,
2364                                                   $sqltargs
2365                                                  );
2366     if(!open $file, ">$difffile") {
2367       $self->throw_exception("Can't write to $difffile ($!)");
2368       next;
2369     }
2370     print $file $diff;
2371     close($file);
2372   }
2373 }
2374
2375 =head2 deployment_statements
2376
2377 =over 4
2378
2379 =item Arguments: $schema, $type, $version, $directory, $sqlt_args
2380
2381 =back
2382
2383 Returns the statements used by L</deploy> and L<DBIx::Class::Schema/deploy>.
2384
2385 The L<SQL::Translator> (not L<DBI>) database driver name can be explicitly
2386 provided in C<$type>, otherwise the result of L</sqlt_type> is used as default.
2387
2388 C<$directory> is used to return statements from files in a previously created
2389 L</create_ddl_dir> directory and is optional. The filenames are constructed
2390 from L<DBIx::Class::Schema/ddl_filename>, the schema name and the C<$version>.
2391
2392 If no C<$directory> is specified then the statements are constructed on the
2393 fly using L<SQL::Translator> and C<$version> is ignored.
2394
2395 See L<SQL::Translator/METHODS> for a list of values for C<$sqlt_args>.
2396
2397 =cut
2398
2399 sub deployment_statements {
2400   my ($self, $schema, $type, $version, $dir, $sqltargs) = @_;
2401   $type ||= $self->sqlt_type;
2402   $version ||= $schema->schema_version || '1.x';
2403   $dir ||= './';
2404   my $filename = $schema->ddl_filename($type, $version, $dir);
2405   if(-f $filename)
2406   {
2407       my $file;
2408       open($file, "<$filename")
2409         or $self->throw_exception("Can't open $filename ($!)");
2410       my @rows = <$file>;
2411       close($file);
2412       return join('', @rows);
2413   }
2414
2415   unless (DBIx::Class::Optional::Dependencies->req_ok_for ('deploy') ) {
2416     $self->throw_exception("Can't deploy without a ddl_dir or " . DBIx::Class::Optional::Dependencies->req_missing_for ('deploy') );
2417   }
2418
2419   # sources needs to be a parser arg, but for simplicty allow at top level
2420   # coming in
2421   $sqltargs->{parser_args}{sources} = delete $sqltargs->{sources}
2422       if exists $sqltargs->{sources};
2423
2424   my $tr = SQL::Translator->new(
2425     producer => "SQL::Translator::Producer::${type}",
2426     %$sqltargs,
2427     parser => 'SQL::Translator::Parser::DBIx::Class',
2428     data => $schema,
2429   );
2430
2431   my @ret;
2432   my $wa = wantarray;
2433   if ($wa) {
2434     @ret = $tr->translate;
2435   }
2436   else {
2437     $ret[0] = $tr->translate;
2438   }
2439
2440   $self->throw_exception( 'Unable to produce deployment statements: ' . $tr->error)
2441     unless (@ret && defined $ret[0]);
2442
2443   return $wa ? @ret : $ret[0];
2444 }
2445
2446 sub deploy {
2447   my ($self, $schema, $type, $sqltargs, $dir) = @_;
2448   my $deploy = sub {
2449     my $line = shift;
2450     return if($line =~ /^--/);
2451     return if(!$line);
2452     # next if($line =~ /^DROP/m);
2453     return if($line =~ /^BEGIN TRANSACTION/m);
2454     return if($line =~ /^COMMIT/m);
2455     return if $line =~ /^\s+$/; # skip whitespace only
2456     $self->_query_start($line);
2457     eval {
2458       # do a dbh_do cycle here, as we need some error checking in
2459       # place (even though we will ignore errors)
2460       $self->dbh_do (sub { $_[1]->do($line) });
2461     };
2462     if ($@) {
2463       carp qq{$@ (running "${line}")};
2464     }
2465     $self->_query_end($line);
2466   };
2467   my @statements = $schema->deployment_statements($type, undef, $dir, { %{ $sqltargs || {} }, no_comments => 1 } );
2468   if (@statements > 1) {
2469     foreach my $statement (@statements) {
2470       $deploy->( $statement );
2471     }
2472   }
2473   elsif (@statements == 1) {
2474     foreach my $line ( split(";\n", $statements[0])) {
2475       $deploy->( $line );
2476     }
2477   }
2478 }
2479
2480 =head2 datetime_parser
2481
2482 Returns the datetime parser class
2483
2484 =cut
2485
2486 sub datetime_parser {
2487   my $self = shift;
2488   return $self->{datetime_parser} ||= do {
2489     $self->build_datetime_parser(@_);
2490   };
2491 }
2492
2493 =head2 datetime_parser_type
2494
2495 Defines (returns) the datetime parser class - currently hardwired to
2496 L<DateTime::Format::MySQL>
2497
2498 =cut
2499
2500 sub datetime_parser_type { "DateTime::Format::MySQL"; }
2501
2502 =head2 build_datetime_parser
2503
2504 See L</datetime_parser>
2505
2506 =cut
2507
2508 sub build_datetime_parser {
2509   my $self = shift;
2510   my $type = $self->datetime_parser_type(@_);
2511   $self->ensure_class_loaded ($type);
2512   return $type;
2513 }
2514
2515
2516 =head2 is_replicating
2517
2518 A boolean that reports if a particular L<DBIx::Class::Storage::DBI> is set to
2519 replicate from a master database.  Default is undef, which is the result
2520 returned by databases that don't support replication.
2521
2522 =cut
2523
2524 sub is_replicating {
2525     return;
2526
2527 }
2528
2529 =head2 lag_behind_master
2530
2531 Returns a number that represents a certain amount of lag behind a master db
2532 when a given storage is replicating.  The number is database dependent, but
2533 starts at zero and increases with the amount of lag. Default in undef
2534
2535 =cut
2536
2537 sub lag_behind_master {
2538     return;
2539 }
2540
2541 =head2 relname_to_table_alias
2542
2543 =over 4
2544
2545 =item Arguments: $relname, $join_count
2546
2547 =back
2548
2549 L<DBIx::Class> uses L<DBIx::Class::Relationship> names as table aliases in
2550 queries.
2551
2552 This hook is to allow specific L<DBIx::Class::Storage> drivers to change the
2553 way these aliases are named.
2554
2555 The default behavior is C<"$relname_$join_count" if $join_count > 1>, otherwise
2556 C<"$relname">.
2557
2558 =cut
2559
2560 sub relname_to_table_alias {
2561   my ($self, $relname, $join_count) = @_;
2562
2563   my $alias = ($join_count && $join_count > 1 ?
2564     join('_', $relname, $join_count) : $relname);
2565
2566   return $alias;
2567 }
2568
2569 sub DESTROY {
2570   my $self = shift;
2571
2572   $self->_verify_pid if $self->_dbh;
2573
2574   # some databases need this to stop spewing warnings
2575   if (my $dbh = $self->_dbh) {
2576     local $@;
2577     eval {
2578       %{ $dbh->{CachedKids} } = ();
2579       $dbh->disconnect;
2580     };
2581   }
2582
2583   $self->_dbh(undef);
2584 }
2585
2586 1;
2587
2588 =head1 USAGE NOTES
2589
2590 =head2 DBIx::Class and AutoCommit
2591
2592 DBIx::Class can do some wonderful magic with handling exceptions,
2593 disconnections, and transactions when you use C<< AutoCommit => 1 >>
2594 (the default) combined with C<txn_do> for transaction support.
2595
2596 If you set C<< AutoCommit => 0 >> in your connect info, then you are always
2597 in an assumed transaction between commits, and you're telling us you'd
2598 like to manage that manually.  A lot of the magic protections offered by
2599 this module will go away.  We can't protect you from exceptions due to database
2600 disconnects because we don't know anything about how to restart your
2601 transactions.  You're on your own for handling all sorts of exceptional
2602 cases if you choose the C<< AutoCommit => 0 >> path, just as you would
2603 be with raw DBI.
2604
2605
2606 =head1 AUTHORS
2607
2608 Matt S. Trout <mst@shadowcatsystems.co.uk>
2609
2610 Andy Grundman <andy@hybridized.org>
2611
2612 =head1 LICENSE
2613
2614 You may distribute this code under the same terms as Perl itself.
2615
2616 =cut