Fix to make the Postgresql-code handle Schemas. This should be non-intrusive to non...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
CommitLineData
8b445e33 1package DBIx::Class::Storage::DBI;
e673f011 2# -*- mode: cperl; cperl-indent-level: 2 -*-
8b445e33 3
a62cf8d4 4use base 'DBIx::Class::Storage';
5
20a2c954 6use strict;
7use warnings;
8b445e33 8use DBI;
aeaf3ce2 9use SQL::Abstract::Limit;
28927b50 10use DBIx::Class::Storage::DBI::Cursor;
92b858c9 11use IO::File;
701da8c4 12use Carp::Clan qw/DBIx::Class/;
8b445e33 13
bd7efd39 14BEGIN {
15
cb5f2eea 16package DBIC::SQL::Abstract; # Would merge upstream, but nate doesn't reply :(
bd7efd39 17
18use base qw/SQL::Abstract::Limit/;
19
54540863 20sub select {
21 my ($self, $table, $fields, $where, $order, @rest) = @_;
6346a152 22 $table = $self->_quote($table) unless ref($table);
54540863 23 @rest = (-1) unless defined $rest[0];
8839560b 24 local $self->{having_bind} = [];
bc0c9800 25 my ($sql, @ret) = $self->SUPER::select(
26 $table, $self->_recurse_fields($fields), $where, $order, @rest
27 );
8839560b 28 return wantarray ? ($sql, @ret, @{$self->{having_bind}}) : $sql;
54540863 29}
30
6346a152 31sub insert {
32 my $self = shift;
33 my $table = shift;
34 $table = $self->_quote($table) unless ref($table);
35 $self->SUPER::insert($table, @_);
36}
37
38sub update {
39 my $self = shift;
40 my $table = shift;
41 $table = $self->_quote($table) unless ref($table);
42 $self->SUPER::update($table, @_);
43}
44
45sub delete {
46 my $self = shift;
47 my $table = shift;
48 $table = $self->_quote($table) unless ref($table);
49 $self->SUPER::delete($table, @_);
50}
51
54540863 52sub _emulate_limit {
53 my $self = shift;
54 if ($_[3] == -1) {
55 return $_[1].$self->_order_by($_[2]);
56 } else {
57 return $self->SUPER::_emulate_limit(@_);
58 }
59}
60
61sub _recurse_fields {
62 my ($self, $fields) = @_;
63 my $ref = ref $fields;
64 return $self->_quote($fields) unless $ref;
65 return $$fields if $ref eq 'SCALAR';
66
67 if ($ref eq 'ARRAY') {
68 return join(', ', map { $self->_recurse_fields($_) } @$fields);
69 } elsif ($ref eq 'HASH') {
70 foreach my $func (keys %$fields) {
71 return $self->_sqlcase($func)
72 .'( '.$self->_recurse_fields($fields->{$func}).' )';
73 }
74 }
75}
76
77sub _order_by {
78 my $self = shift;
79 my $ret = '';
8839560b 80 my @extra;
54540863 81 if (ref $_[0] eq 'HASH') {
82 if (defined $_[0]->{group_by}) {
83 $ret = $self->_sqlcase(' group by ')
84 .$self->_recurse_fields($_[0]->{group_by});
85 }
8839560b 86 if (defined $_[0]->{having}) {
87 my $frag;
88 ($frag, @extra) = $self->_recurse_where($_[0]->{having});
89 push(@{$self->{having_bind}}, @extra);
90 $ret .= $self->_sqlcase(' having ').$frag;
91 }
54540863 92 if (defined $_[0]->{order_by}) {
93 $ret .= $self->SUPER::_order_by($_[0]->{order_by});
94 }
e535069e 95 } elsif(ref $_[0] eq 'SCALAR') {
96 $ret = $self->_sqlcase(' order by ').${ $_[0] };
54540863 97 } else {
98 $ret = $self->SUPER::_order_by(@_);
99 }
100 return $ret;
101}
102
f48dd03f 103sub _order_directions {
104 my ($self, $order) = @_;
105 $order = $order->{order_by} if ref $order eq 'HASH';
106 return $self->SUPER::_order_directions($order);
107}
108
2a816814 109sub _table {
bd7efd39 110 my ($self, $from) = @_;
111 if (ref $from eq 'ARRAY') {
112 return $self->_recurse_from(@$from);
113 } elsif (ref $from eq 'HASH') {
114 return $self->_make_as($from);
115 } else {
6346a152 116 return $from; # would love to quote here but _table ends up getting called
117 # twice during an ->select without a limit clause due to
118 # the way S::A::Limit->select works. should maybe consider
119 # bypassing this and doing S::A::select($self, ...) in
120 # our select method above. meantime, quoting shims have
121 # been added to select/insert/update/delete here
bd7efd39 122 }
123}
124
125sub _recurse_from {
126 my ($self, $from, @join) = @_;
127 my @sqlf;
128 push(@sqlf, $self->_make_as($from));
129 foreach my $j (@join) {
130 my ($to, $on) = @$j;
73856587 131
54540863 132 # check whether a join type exists
133 my $join_clause = '';
134 if (ref($to) eq 'HASH' and exists($to->{-join_type})) {
135 $join_clause = ' '.uc($to->{-join_type}).' JOIN ';
136 } else {
137 $join_clause = ' JOIN ';
138 }
73856587 139 push(@sqlf, $join_clause);
140
bd7efd39 141 if (ref $to eq 'ARRAY') {
142 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
143 } else {
96cdbbab 144 push(@sqlf, $self->_make_as($to));
bd7efd39 145 }
146 push(@sqlf, ' ON ', $self->_join_condition($on));
147 }
148 return join('', @sqlf);
149}
150
151sub _make_as {
152 my ($self, $from) = @_;
54540863 153 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_ : $self->_quote($_)) }
bc0c9800 154 reverse each %{$self->_skip_options($from)});
73856587 155}
156
157sub _skip_options {
54540863 158 my ($self, $hash) = @_;
159 my $clean_hash = {};
160 $clean_hash->{$_} = $hash->{$_}
161 for grep {!/^-/} keys %$hash;
162 return $clean_hash;
bd7efd39 163}
164
165sub _join_condition {
166 my ($self, $cond) = @_;
5efe4c79 167 if (ref $cond eq 'HASH') {
168 my %j;
bc0c9800 169 for (keys %$cond) {
170 my $x = '= '.$self->_quote($cond->{$_}); $j{$_} = \$x;
171 };
5efe4c79 172 return $self->_recurse_where(\%j);
173 } elsif (ref $cond eq 'ARRAY') {
174 return join(' OR ', map { $self->_join_condition($_) } @$cond);
175 } else {
176 die "Can't handle this yet!";
177 }
bd7efd39 178}
179
2a816814 180sub _quote {
181 my ($self, $label) = @_;
182 return '' unless defined $label;
3b24f6ea 183 return "*" if $label eq '*';
41728a6e 184 return $label unless $self->{quote_char};
3b24f6ea 185 if(ref $self->{quote_char} eq "ARRAY"){
186 return $self->{quote_char}->[0] . $label . $self->{quote_char}->[1]
187 if !defined $self->{name_sep};
188 my $sep = $self->{name_sep};
189 return join($self->{name_sep},
190 map { $self->{quote_char}->[0] . $_ . $self->{quote_char}->[1] }
191 split(/\Q$sep\E/,$label));
192 }
2a816814 193 return $self->SUPER::_quote($label);
194}
195
f66596f9 196sub _RowNum {
197 my $self = shift;
198 my $c;
199 $_[0] =~ s/SELECT (.*?) FROM/
200 'SELECT '.join(', ', map { $_.' AS col'.++$c } split(', ', $1)).' FROM'/e;
201 $self->SUPER::_RowNum(@_);
202}
203
7be93b07 204# Accessor for setting limit dialect. This is useful
205# for JDBC-bridge among others where the remote SQL-dialect cannot
206# be determined by the name of the driver alone.
207#
208sub limit_dialect {
209 my $self = shift;
210 $self->{limit_dialect} = shift if @_;
211 return $self->{limit_dialect};
212}
213
2437a1e3 214sub quote_char {
215 my $self = shift;
216 $self->{quote_char} = shift if @_;
217 return $self->{quote_char};
218}
219
220sub name_sep {
221 my $self = shift;
222 $self->{name_sep} = shift if @_;
223 return $self->{name_sep};
224}
225
226
227
228
486ad69b 229package DBIx::Class::Storage::DBI::DebugCallback;
230
231sub print {
232 my ($self, $string) = @_;
233 $string =~ m/^(\w+)/;
234 ${$self}->($1, $string);
235}
236
bd7efd39 237} # End of BEGIN block
238
8b445e33 239use base qw/DBIx::Class/;
240
1f692767 241__PACKAGE__->load_components(qw/AccessorGroup/);
8b445e33 242
223b8fe3 243__PACKAGE__->mk_group_accessors('simple' =>
1b45b01e 244 qw/_connect_info _dbh _sql_maker _conn_pid _conn_tid debug debugfh
1346e22d 245 cursor on_connect_do transaction_depth/);
8091aa91 246
8b445e33 247sub new {
223b8fe3 248 my $new = bless({}, ref $_[0] || $_[0]);
28927b50 249 $new->cursor("DBIx::Class::Storage::DBI::Cursor");
d79f59b9 250 $new->transaction_depth(0);
5e65c358 251 if (defined($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG}) &&
252 ($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG} =~ /=(.+)$/)) {
bc0c9800 253 $new->debugfh(IO::File->new($1, 'w'))
254 or $new->throw_exception("Cannot open trace file $1");
92b858c9 255 } else {
256 $new->debugfh(IO::File->new('>&STDERR'));
257 }
28927b50 258 $new->debug(1) if $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG};
223b8fe3 259 return $new;
8b445e33 260}
261
1c339d71 262sub throw_exception {
263 my ($self, $msg) = @_;
3b042bcb 264 croak($msg);
1c339d71 265}
266
75d07914 267=head1 NAME
8b445e33 268
269DBIx::Class::Storage::DBI - DBI storage handler
270
271=head1 SYNOPSIS
272
273=head1 DESCRIPTION
274
275This class represents the connection to the database
276
277=head1 METHODS
278
8b445e33 279=cut
280
1b45b01e 281=head2 connect_info
282
283Connection information arrayref. Can either be the same arguments
284one would pass to DBI->connect, or a code-reference which returns
285a connected database handle. In either case, there is an optional
286final element in the arrayref, which can hold a hashref of
287connection-specific Storage::DBI options. These include
288C<on_connect_do>, and the sql_maker options C<limit_dialect>,
289C<quote_char>, and C<name_sep>. Examples:
290
291 ->connect_info([ 'dbi:SQLite:./foo.db' ]);
292 ->connect_info(sub { DBI->connect(...) });
293 ->connect_info([ 'dbi:Pg:dbname=foo',
294 'postgres',
295 '',
296 { AutoCommit => 0 },
297 { quote_char => q{`}, name_sep => q{@} },
298 ]);
299
d7c4c15c 300=head2 on_connect_do
301
302Executes the sql statements given as a listref on every db connect.
303
92b858c9 304=head2 debug
305
306Causes SQL trace information to be emitted on C<debugfh> filehandle
307(or C<STDERR> if C<debugfh> has not specifically been set).
308
309=head2 debugfh
310
311Sets or retrieves the filehandle used for trace/debug output. This
312should be an IO::Handle compatible object (only the C<print> method is
313used). Initially set to be STDERR - although see information on the
314L<DBIX_CLASS_STORAGE_DBI_DEBUG> environment variable.
315
486ad69b 316=head2 debugcb
317
318Sets a callback to be executed each time a statement is run; takes a sub
319reference. Overrides debugfh. Callback is executed as $sub->($op, $info)
320where $op is SELECT/INSERT/UPDATE/DELETE and $info is what would normally
321be printed.
322
d7c4c15c 323=cut
324
486ad69b 325sub debugcb {
326 my ($self, $cb) = @_;
327 my $cb_obj = bless(\$cb, 'DBIx::Class::Storage::DBI::DebugCallback');
328 $self->debugfh($cb_obj);
329}
330
412db1f4 331sub disconnect {
332 my ($self) = @_;
333
92925617 334 if( $self->connected ) {
335 $self->_dbh->rollback unless $self->_dbh->{AutoCommit};
336 $self->_dbh->disconnect;
337 $self->_dbh(undef);
338 }
412db1f4 339}
340
341sub connected {
8b445e33 342 my ($self) = @_;
412db1f4 343
1346e22d 344 if(my $dbh = $self->_dbh) {
345 if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
346 $self->_sql_maker(undef);
347 return $self->_dbh(undef);
348 }
349 elsif($self->_conn_pid != $$) {
350 $self->_dbh->{InactiveDestroy} = 1;
351 $self->_sql_maker(undef);
352 return $self->_dbh(undef)
353 }
354 return ($dbh->FETCH('Active') && $dbh->ping);
355 }
356
357 return 0;
412db1f4 358}
359
360sub ensure_connected {
361 my ($self) = @_;
362
363 unless ($self->connected) {
8b445e33 364 $self->_populate_dbh;
365 }
412db1f4 366}
367
c235bbae 368=head2 dbh
369
370Returns the dbh - a data base handle of class L<DBI>.
371
372=cut
373
412db1f4 374sub dbh {
375 my ($self) = @_;
376
377 $self->ensure_connected;
8b445e33 378 return $self->_dbh;
379}
380
48c69e7c 381sub sql_maker {
382 my ($self) = @_;
fdc1c3d0 383 unless ($self->_sql_maker) {
bd7efd39 384 $self->_sql_maker(new DBIC::SQL::Abstract( limit_dialect => $self->dbh ));
48c69e7c 385 }
386 return $self->_sql_maker;
387}
388
1b45b01e 389sub connect_info {
390 my ($self, $info_arg) = @_;
391
392 if($info_arg) {
393 my $info = [ @$info_arg ]; # copy because we can alter it
394 my $last_info = $info->[-1];
395 if(ref $last_info eq 'HASH') {
396 my $used;
397 if(my $on_connect_do = $last_info->{on_connect_do}) {
398 $used = 1;
67008979 399 $self->on_connect_do($on_connect_do);
1b45b01e 400 }
67008979 401 for my $sql_maker_opt (qw/limit_dialect quote_char name_sep/) {
1b45b01e 402 if(my $opt_val = $last_info->{$sql_maker_opt}) {
403 $used = 1;
404 $self->sql_maker->$sql_maker_opt($opt_val);
405 }
406 }
407
408 # remove our options hashref if it was there, to avoid confusing
409 # DBI in the case the user didn't use all 4 DBI options, as in:
410 # [ 'dbi:SQLite:foo.db', { quote_char => q{`} } ]
411 pop(@$info) if $used;
412 }
413
414 $self->_connect_info($info);
415 }
416
417 $self->_connect_info;
418}
419
8b445e33 420sub _populate_dbh {
421 my ($self) = @_;
1b45b01e 422 my @info = @{$self->_connect_info || []};
8b445e33 423 $self->_dbh($self->_connect(@info));
8484b01d 424 my $dbh = $self->_dbh;
425 my $driver = $dbh->{Driver}->{Name};
426 if ( $driver eq 'ODBC' and $dbh->get_info(17) =~ m{^DB2/400} ) {
427 $driver = 'ODBC400';
428 }
34470972 429 eval "require DBIx::Class::Storage::DBI::${driver}";
430 unless ($@) {
843f8ecd 431 bless $self, "DBIx::Class::Storage::DBI::${driver}";
432 }
d7c4c15c 433 # if on-connect sql statements are given execute them
434 foreach my $sql_statement (@{$self->on_connect_do || []}) {
435 $self->_dbh->do($sql_statement);
436 }
5ef3e508 437
1346e22d 438 $self->_conn_pid($$);
439 $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
8b445e33 440}
441
442sub _connect {
443 my ($self, @info) = @_;
5ef3e508 444
9d31f7dc 445 $self->throw_exception("You failed to provide any connection info")
446 if !@info;
447
90ec6cad 448 my ($old_connect_via, $dbh);
449
5ef3e508 450 if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
90ec6cad 451 $old_connect_via = $DBI::connect_via;
5ef3e508 452 $DBI::connect_via = 'connect';
5ef3e508 453 }
454
75db246c 455 eval {
456 if(ref $info[0] eq 'CODE') {
457 $dbh = &{$info[0]};
458 }
459 else {
460 $dbh = DBI->connect(@info);
461 }
462 };
90ec6cad 463
464 $DBI::connect_via = $old_connect_via if $old_connect_via;
465
75db246c 466 if (!$dbh || $@) {
467 $self->throw_exception("DBI Connection failed: " . ($@ || $DBI::errstr));
468 }
90ec6cad 469
e571e823 470 $dbh;
8b445e33 471}
472
8091aa91 473=head2 txn_begin
8b445e33 474
8091aa91 475Calls begin_work on the current dbh.
8b445e33 476
181a28f4 477See L<DBIx::Class::Schema> for the txn_do() method, which allows for
478an entire code block to be executed transactionally.
479
8b445e33 480=cut
481
8091aa91 482sub txn_begin {
d79f59b9 483 my $self = shift;
a32e8402 484 if ($self->{transaction_depth}++ == 0) {
485 my $dbh = $self->dbh;
486 if ($dbh->{AutoCommit}) {
487 $self->debugfh->print("BEGIN WORK\n")
488 if ($self->debug);
489 $dbh->begin_work;
490 }
986e4fca 491 }
8091aa91 492}
8b445e33 493
8091aa91 494=head2 txn_commit
8b445e33 495
8091aa91 496Issues a commit against the current dbh.
8b445e33 497
8091aa91 498=cut
499
500sub txn_commit {
d79f59b9 501 my $self = shift;
502 if ($self->{transaction_depth} == 0) {
a32e8402 503 my $dbh = $self->dbh;
504 unless ($dbh->{AutoCommit}) {
986e4fca 505 $self->debugfh->print("COMMIT\n")
506 if ($self->debug);
a32e8402 507 $dbh->commit;
986e4fca 508 }
8091aa91 509 }
510 else {
986e4fca 511 if (--$self->{transaction_depth} == 0) {
512 $self->debugfh->print("COMMIT\n")
513 if ($self->debug);
514 $self->dbh->commit;
515 }
8091aa91 516 }
517}
518
519=head2 txn_rollback
520
181a28f4 521Issues a rollback against the current dbh. A nested rollback will
522throw a L<DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION> exception,
523which allows the rollback to propagate to the outermost transaction.
8b445e33 524
525=cut
526
8091aa91 527sub txn_rollback {
d79f59b9 528 my $self = shift;
a62cf8d4 529
530 eval {
531 if ($self->{transaction_depth} == 0) {
a32e8402 532 my $dbh = $self->dbh;
533 unless ($dbh->{AutoCommit}) {
986e4fca 534 $self->debugfh->print("ROLLBACK\n")
535 if ($self->debug);
a32e8402 536 $dbh->rollback;
986e4fca 537 }
a62cf8d4 538 }
539 else {
986e4fca 540 if (--$self->{transaction_depth} == 0) {
541 $self->debugfh->print("ROLLBACK\n")
542 if ($self->debug);
543 $self->dbh->rollback;
544 }
545 else {
1346e22d 546 die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
986e4fca 547 }
a62cf8d4 548 }
549 };
550
551 if ($@) {
552 my $error = $@;
553 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
554 $error =~ /$exception_class/ and $self->throw_exception($error);
555 $self->{transaction_depth} = 0; # ensure that a failed rollback
556 $self->throw_exception($error); # resets the transaction depth
8091aa91 557 }
558}
8b445e33 559
223b8fe3 560sub _execute {
561 my ($self, $op, $extra_bind, $ident, @args) = @_;
562 my ($sql, @bind) = $self->sql_maker->$op($ident, @args);
944f30bf 563 unshift(@bind, @$extra_bind) if $extra_bind;
f59ffc79 564 if ($self->debug) {
e673f011 565 my @debug_bind = map { defined $_ ? qq{'$_'} : q{'NULL'} } @bind;
181a28f4 566 $self->debugfh->print("$sql: " . join(', ', @debug_bind) . "\n");
f59ffc79 567 }
75db246c 568 my $sth = eval { $self->sth($sql,$op) };
569
570 if (!$sth || $@) {
571 $self->throw_exception('no sth generated via sql (' . ($@ || $self->_dbh->errstr) . "): $sql");
572 }
573
438adc0e 574 @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
701da8c4 575 my $rv;
75d07914 576 if ($sth) {
95dad7e2 577 $rv = eval { $sth->execute(@bind) };
578
579 if ($@ || !$rv) {
580 $self->throw_exception("Error executing '$sql': ".($@ || $sth->errstr));
581 }
75d07914 582 } else {
1c339d71 583 $self->throw_exception("'$sql' did not generate a statement.");
701da8c4 584 }
223b8fe3 585 return (wantarray ? ($rv, $sth, @bind) : $rv);
586}
587
8b445e33 588sub insert {
589 my ($self, $ident, $to_insert) = @_;
bc0c9800 590 $self->throw_exception(
591 "Couldn't insert ".join(', ',
592 map "$_ => $to_insert->{$_}", keys %$to_insert
593 )." into ${ident}"
594 ) unless ($self->_execute('insert' => [], $ident, $to_insert));
8b445e33 595 return $to_insert;
596}
597
598sub update {
223b8fe3 599 return shift->_execute('update' => [], @_);
8b445e33 600}
601
602sub delete {
223b8fe3 603 return shift->_execute('delete' => [], @_);
8b445e33 604}
605
de705b51 606sub _select {
8b445e33 607 my ($self, $ident, $select, $condition, $attrs) = @_;
223b8fe3 608 my $order = $attrs->{order_by};
609 if (ref $condition eq 'SCALAR') {
610 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
611 }
8839560b 612 if (exists $attrs->{group_by} || $attrs->{having}) {
bc0c9800 613 $order = {
614 group_by => $attrs->{group_by},
615 having => $attrs->{having},
616 ($order ? (order_by => $order) : ())
617 };
54540863 618 }
5c91499f 619 my @args = ('select', $attrs->{bind}, $ident, $select, $condition, $order);
9229f20a 620 if ($attrs->{software_limit} ||
621 $self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
622 $attrs->{software_limit} = 1;
5c91499f 623 } else {
624 push @args, $attrs->{rows}, $attrs->{offset};
625 }
de705b51 626 return $self->_execute(@args);
627}
628
629sub select {
630 my $self = shift;
631 my ($ident, $select, $condition, $attrs) = @_;
cb5f2eea 632 return $self->cursor->new($self, \@_, $attrs);
8b445e33 633}
634
6157db4f 635# Need to call finish() to work round broken DBDs
636
1a14aa3f 637sub select_single {
de705b51 638 my $self = shift;
639 my ($rv, $sth, @bind) = $self->_select(@_);
6157db4f 640 my @row = $sth->fetchrow_array;
641 $sth->finish();
642 return @row;
1a14aa3f 643}
644
8b445e33 645sub sth {
cb5f2eea 646 my ($self, $sql) = @_;
91fa659e 647 # 3 is the if_active parameter which avoids active sth re-use
648 return $self->dbh->prepare_cached($sql, {}, 3);
8b445e33 649}
650
a953d8d9 651=head2 columns_info_for
652
653Returns database type info for a given table columns.
654
655=cut
656
657sub columns_info_for {
0d67fe74 658 my ($self, $table) = @_;
bfe10d87 659
a32e8402 660 my $dbh = $self->dbh;
661
662 if ($dbh->can('column_info')) {
a953d8d9 663 my %result;
a32e8402 664 my $old_raise_err = $dbh->{RaiseError};
665 my $old_print_err = $dbh->{PrintError};
666 $dbh->{RaiseError} = 1;
667 $dbh->{PrintError} = 0;
0d67fe74 668 eval {
4d272ce5 669 my ($schema,$tab) = $table =~ /^(.+?)\.(.+)$/ ? ($1,$2) : (undef,$table);
670 my $sth = $dbh->column_info( undef,$schema, $tab, '%' );
0d67fe74 671 $sth->execute();
672 while ( my $info = $sth->fetchrow_hashref() ){
bfe10d87 673 my %column_info;
0d67fe74 674 $column_info{data_type} = $info->{TYPE_NAME};
675 $column_info{size} = $info->{COLUMN_SIZE};
676 $column_info{is_nullable} = $info->{NULLABLE} ? 1 : 0;
677 $column_info{default_value} = $info->{COLUMN_DEF};
678
679 $result{$info->{COLUMN_NAME}} = \%column_info;
680 }
681 };
a32e8402 682 $dbh->{RaiseError} = $old_raise_err;
683 $dbh->{PrintError} = $old_print_err;
0d67fe74 684 return \%result if !$@;
685 }
686
687 my %result;
a32e8402 688 my $sth = $dbh->prepare("SELECT * FROM $table WHERE 1=0");
0d67fe74 689 $sth->execute;
690 my @columns = @{$sth->{NAME_lc}};
691 for my $i ( 0 .. $#columns ){
692 my %column_info;
693 my $type_num = $sth->{TYPE}->[$i];
694 my $type_name;
a32e8402 695 if(defined $type_num && $dbh->can('type_info')) {
696 my $type_info = $dbh->type_info($type_num);
0d67fe74 697 $type_name = $type_info->{TYPE_NAME} if $type_info;
a953d8d9 698 }
0d67fe74 699 $column_info{data_type} = $type_name ? $type_name : $type_num;
700 $column_info{size} = $sth->{PRECISION}->[$i];
701 $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
702
703 if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
704 $column_info{data_type} = $1;
705 $column_info{size} = $2;
706 }
707
708 $result{$columns[$i]} = \%column_info;
709 }
bfe10d87 710
0d67fe74 711 return \%result;
a953d8d9 712}
713
843f8ecd 714sub last_insert_id {
715 my ($self, $row) = @_;
716
717 return $self->dbh->func('last_insert_rowid');
718
719}
720
90ec6cad 721sub sqlt_type { shift->dbh->{Driver}->{Name} }
1c339d71 722
e673f011 723sub create_ddl_dir
724{
725 my ($self, $schema, $databases, $version, $dir, $sqltargs) = @_;
726
727 if(!$dir || !-d $dir)
728 {
729 warn "No directory given, using ./\n";
730 $dir = "./";
731 }
732 $databases ||= ['MySQL', 'SQLite', 'PostgreSQL'];
733 $databases = [ $databases ] if(ref($databases) ne 'ARRAY');
734 $version ||= $schema->VERSION || '1.x';
735
1c339d71 736 eval "use SQL::Translator";
737 $self->throw_exception("Can't deploy without SQL::Translator: $@") if $@;
e673f011 738
739 my $sqlt = SQL::Translator->new({
740# debug => 1,
741 add_drop_table => 1,
742 });
743 foreach my $db (@$databases)
744 {
745 $sqlt->reset();
746 $sqlt->parser('SQL::Translator::Parser::DBIx::Class');
747# $sqlt->parser_args({'DBIx::Class' => $schema);
748 $sqlt->data($schema);
749 $sqlt->producer($db);
750
751 my $file;
752 my $filename = $schema->ddl_filename($db, $dir, $version);
753 if(-e $filename)
754 {
755 $self->throw_exception("$filename already exists, skipping $db");
756 next;
757 }
758 open($file, ">$filename")
759 or $self->throw_exception("Can't open $filename for writing ($!)");
760 my $output = $sqlt->translate;
761#use Data::Dumper;
762# print join(":", keys %{$schema->source_registrations});
763# print Dumper($sqlt->schema);
764 if(!$output)
765 {
766 $self->throw_exception("Failed to translate to $db. (" . $sqlt->error . ")");
767 next;
768 }
769 print $file $output;
770 close($file);
771 }
772
773}
774
775sub deployment_statements {
776 my ($self, $schema, $type, $version, $dir, $sqltargs) = @_;
777 $type ||= $self->sqlt_type;
778 $version ||= $schema->VERSION || '1.x';
779 $dir ||= './';
0382d607 780 eval "use SQL::Translator";
781 if(!$@)
782 {
783 eval "use SQL::Translator::Parser::DBIx::Class;";
784 $self->throw_exception($@) if $@;
785 eval "use SQL::Translator::Producer::${type};";
786 $self->throw_exception($@) if $@;
787 my $tr = SQL::Translator->new(%$sqltargs);
788 SQL::Translator::Parser::DBIx::Class::parse( $tr, $schema );
789 return "SQL::Translator::Producer::${type}"->can('produce')->($tr);
790 }
e673f011 791
792 my $filename = $schema->ddl_filename($type, $dir, $version);
793 if(!-f $filename)
794 {
0382d607 795# $schema->create_ddl_dir([ $type ], $version, $dir, $sqltargs);
796 $self->throw_exception("No SQL::Translator, and no Schema file found, aborting deploy");
797 return;
e673f011 798 }
799 my $file;
800 open($file, "<$filename")
801 or $self->throw_exception("Can't open $filename ($!)");
802 my @rows = <$file>;
803 close($file);
804
805 return join('', @rows);
806
1c339d71 807}
843f8ecd 808
1c339d71 809sub deploy {
cb561d1a 810 my ($self, $schema, $type, $sqltargs) = @_;
e673f011 811 foreach my $statement ( $self->deployment_statements($schema, $type, undef, undef, $sqltargs) ) {
e4fe9ba3 812 for ( split(";\n", $statement)) {
e673f011 813 next if($_ =~ /^--/);
814 next if(!$_);
815# next if($_ =~ /^DROP/m);
816 next if($_ =~ /^BEGIN TRANSACTION/m);
817 next if($_ =~ /^COMMIT/m);
e4fe9ba3 818 $self->debugfh->print("$_\n") if $self->debug;
819 $self->dbh->do($_) or warn "SQL was:\n $_";
820 }
75d07914 821 }
1c339d71 822}
843f8ecd 823
92925617 824sub DESTROY { shift->disconnect }
825
8b445e33 8261;
827
92b858c9 828=head1 ENVIRONMENT VARIABLES
829
830=head2 DBIX_CLASS_STORAGE_DBI_DEBUG
831
832If C<DBIX_CLASS_STORAGE_DBI_DEBUG> is set then SQL trace information
833is produced (as when the L<debug> method is set).
834
835If the value is of the form C<1=/path/name> then the trace output is
836written to the file C</path/name>.
837
8b445e33 838=head1 AUTHORS
839
daec44b8 840Matt S. Trout <mst@shadowcatsystems.co.uk>
8b445e33 841
9f19b1d6 842Andy Grundman <andy@hybridized.org>
843
8b445e33 844=head1 LICENSE
845
846You may distribute this code under the same terms as Perl itself.
847
848=cut
849