converted tabs to spaces, removed trailing whitespace
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
CommitLineData
8b445e33 1package DBIx::Class::Storage::DBI;
2
a62cf8d4 3use base 'DBIx::Class::Storage';
4
20a2c954 5use strict;
6use warnings;
8b445e33 7use DBI;
aeaf3ce2 8use SQL::Abstract::Limit;
28927b50 9use DBIx::Class::Storage::DBI::Cursor;
92b858c9 10use IO::File;
701da8c4 11use Carp::Clan qw/DBIx::Class/;
8b445e33 12
bd7efd39 13BEGIN {
14
cb5f2eea 15package DBIC::SQL::Abstract; # Would merge upstream, but nate doesn't reply :(
bd7efd39 16
17use base qw/SQL::Abstract::Limit/;
18
54540863 19sub select {
20 my ($self, $table, $fields, $where, $order, @rest) = @_;
21 @rest = (-1) unless defined $rest[0];
8839560b 22 local $self->{having_bind} = [];
bc0c9800 23 my ($sql, @ret) = $self->SUPER::select(
24 $table, $self->_recurse_fields($fields), $where, $order, @rest
25 );
8839560b 26 return wantarray ? ($sql, @ret, @{$self->{having_bind}}) : $sql;
54540863 27}
28
29sub _emulate_limit {
30 my $self = shift;
31 if ($_[3] == -1) {
32 return $_[1].$self->_order_by($_[2]);
33 } else {
34 return $self->SUPER::_emulate_limit(@_);
35 }
36}
37
38sub _recurse_fields {
39 my ($self, $fields) = @_;
40 my $ref = ref $fields;
41 return $self->_quote($fields) unless $ref;
42 return $$fields if $ref eq 'SCALAR';
43
44 if ($ref eq 'ARRAY') {
45 return join(', ', map { $self->_recurse_fields($_) } @$fields);
46 } elsif ($ref eq 'HASH') {
47 foreach my $func (keys %$fields) {
48 return $self->_sqlcase($func)
49 .'( '.$self->_recurse_fields($fields->{$func}).' )';
50 }
51 }
52}
53
54sub _order_by {
55 my $self = shift;
56 my $ret = '';
8839560b 57 my @extra;
54540863 58 if (ref $_[0] eq 'HASH') {
59 if (defined $_[0]->{group_by}) {
60 $ret = $self->_sqlcase(' group by ')
61 .$self->_recurse_fields($_[0]->{group_by});
62 }
8839560b 63 if (defined $_[0]->{having}) {
64 my $frag;
65 ($frag, @extra) = $self->_recurse_where($_[0]->{having});
66 push(@{$self->{having_bind}}, @extra);
67 $ret .= $self->_sqlcase(' having ').$frag;
68 }
54540863 69 if (defined $_[0]->{order_by}) {
70 $ret .= $self->SUPER::_order_by($_[0]->{order_by});
71 }
e535069e 72 } elsif(ref $_[0] eq 'SCALAR') {
73 $ret = $self->_sqlcase(' order by ').${ $_[0] };
54540863 74 } else {
75 $ret = $self->SUPER::_order_by(@_);
76 }
77 return $ret;
78}
79
f48dd03f 80sub _order_directions {
81 my ($self, $order) = @_;
82 $order = $order->{order_by} if ref $order eq 'HASH';
83 return $self->SUPER::_order_directions($order);
84}
85
2a816814 86sub _table {
bd7efd39 87 my ($self, $from) = @_;
88 if (ref $from eq 'ARRAY') {
89 return $self->_recurse_from(@$from);
90 } elsif (ref $from eq 'HASH') {
91 return $self->_make_as($from);
92 } else {
93 return $from;
94 }
95}
96
97sub _recurse_from {
98 my ($self, $from, @join) = @_;
99 my @sqlf;
100 push(@sqlf, $self->_make_as($from));
101 foreach my $j (@join) {
102 my ($to, $on) = @$j;
73856587 103
54540863 104 # check whether a join type exists
105 my $join_clause = '';
106 if (ref($to) eq 'HASH' and exists($to->{-join_type})) {
107 $join_clause = ' '.uc($to->{-join_type}).' JOIN ';
108 } else {
109 $join_clause = ' JOIN ';
110 }
73856587 111 push(@sqlf, $join_clause);
112
bd7efd39 113 if (ref $to eq 'ARRAY') {
114 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
115 } else {
96cdbbab 116 push(@sqlf, $self->_make_as($to));
bd7efd39 117 }
118 push(@sqlf, ' ON ', $self->_join_condition($on));
119 }
120 return join('', @sqlf);
121}
122
123sub _make_as {
124 my ($self, $from) = @_;
54540863 125 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_ : $self->_quote($_)) }
bc0c9800 126 reverse each %{$self->_skip_options($from)});
73856587 127}
128
129sub _skip_options {
54540863 130 my ($self, $hash) = @_;
131 my $clean_hash = {};
132 $clean_hash->{$_} = $hash->{$_}
133 for grep {!/^-/} keys %$hash;
134 return $clean_hash;
bd7efd39 135}
136
137sub _join_condition {
138 my ($self, $cond) = @_;
5efe4c79 139 if (ref $cond eq 'HASH') {
140 my %j;
bc0c9800 141 for (keys %$cond) {
142 my $x = '= '.$self->_quote($cond->{$_}); $j{$_} = \$x;
143 };
5efe4c79 144 return $self->_recurse_where(\%j);
145 } elsif (ref $cond eq 'ARRAY') {
146 return join(' OR ', map { $self->_join_condition($_) } @$cond);
147 } else {
148 die "Can't handle this yet!";
149 }
bd7efd39 150}
151
2a816814 152sub _quote {
153 my ($self, $label) = @_;
154 return '' unless defined $label;
3b24f6ea 155 return "*" if $label eq '*';
41728a6e 156 return $label unless $self->{quote_char};
3b24f6ea 157 if(ref $self->{quote_char} eq "ARRAY"){
158 return $self->{quote_char}->[0] . $label . $self->{quote_char}->[1]
159 if !defined $self->{name_sep};
160 my $sep = $self->{name_sep};
161 return join($self->{name_sep},
162 map { $self->{quote_char}->[0] . $_ . $self->{quote_char}->[1] }
163 split(/\Q$sep\E/,$label));
164 }
2a816814 165 return $self->SUPER::_quote($label);
166}
167
f66596f9 168sub _RowNum {
169 my $self = shift;
170 my $c;
171 $_[0] =~ s/SELECT (.*?) FROM/
172 'SELECT '.join(', ', map { $_.' AS col'.++$c } split(', ', $1)).' FROM'/e;
173 $self->SUPER::_RowNum(@_);
174}
175
7be93b07 176# Accessor for setting limit dialect. This is useful
177# for JDBC-bridge among others where the remote SQL-dialect cannot
178# be determined by the name of the driver alone.
179#
180sub limit_dialect {
181 my $self = shift;
182 $self->{limit_dialect} = shift if @_;
183 return $self->{limit_dialect};
184}
185
2437a1e3 186sub quote_char {
187 my $self = shift;
188 $self->{quote_char} = shift if @_;
189 return $self->{quote_char};
190}
191
192sub name_sep {
193 my $self = shift;
194 $self->{name_sep} = shift if @_;
195 return $self->{name_sep};
196}
197
198
199
200
486ad69b 201package DBIx::Class::Storage::DBI::DebugCallback;
202
203sub print {
204 my ($self, $string) = @_;
205 $string =~ m/^(\w+)/;
206 ${$self}->($1, $string);
207}
208
bd7efd39 209} # End of BEGIN block
210
8b445e33 211use base qw/DBIx::Class/;
212
1f692767 213__PACKAGE__->load_components(qw/AccessorGroup/);
8b445e33 214
223b8fe3 215__PACKAGE__->mk_group_accessors('simple' =>
1346e22d 216 qw/connect_info _dbh _sql_maker _conn_pid _conn_tid debug debugfh
217 cursor on_connect_do transaction_depth/);
8091aa91 218
8b445e33 219sub new {
223b8fe3 220 my $new = bless({}, ref $_[0] || $_[0]);
28927b50 221 $new->cursor("DBIx::Class::Storage::DBI::Cursor");
d79f59b9 222 $new->transaction_depth(0);
5e65c358 223 if (defined($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG}) &&
224 ($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG} =~ /=(.+)$/)) {
bc0c9800 225 $new->debugfh(IO::File->new($1, 'w'))
226 or $new->throw_exception("Cannot open trace file $1");
92b858c9 227 } else {
228 $new->debugfh(IO::File->new('>&STDERR'));
229 }
28927b50 230 $new->debug(1) if $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG};
223b8fe3 231 return $new;
8b445e33 232}
233
1c339d71 234sub throw_exception {
235 my ($self, $msg) = @_;
3b042bcb 236 croak($msg);
1c339d71 237}
238
75d07914 239=head1 NAME
8b445e33 240
241DBIx::Class::Storage::DBI - DBI storage handler
242
243=head1 SYNOPSIS
244
245=head1 DESCRIPTION
246
247This class represents the connection to the database
248
249=head1 METHODS
250
8b445e33 251=cut
252
d7c4c15c 253=head2 on_connect_do
254
255Executes the sql statements given as a listref on every db connect.
256
92b858c9 257=head2 debug
258
259Causes SQL trace information to be emitted on C<debugfh> filehandle
260(or C<STDERR> if C<debugfh> has not specifically been set).
261
262=head2 debugfh
263
264Sets or retrieves the filehandle used for trace/debug output. This
265should be an IO::Handle compatible object (only the C<print> method is
266used). Initially set to be STDERR - although see information on the
267L<DBIX_CLASS_STORAGE_DBI_DEBUG> environment variable.
268
486ad69b 269=head2 debugcb
270
271Sets a callback to be executed each time a statement is run; takes a sub
272reference. Overrides debugfh. Callback is executed as $sub->($op, $info)
273where $op is SELECT/INSERT/UPDATE/DELETE and $info is what would normally
274be printed.
275
d7c4c15c 276=cut
277
486ad69b 278sub debugcb {
279 my ($self, $cb) = @_;
280 my $cb_obj = bless(\$cb, 'DBIx::Class::Storage::DBI::DebugCallback');
281 $self->debugfh($cb_obj);
282}
283
412db1f4 284sub disconnect {
285 my ($self) = @_;
286
92925617 287 if( $self->connected ) {
288 $self->_dbh->rollback unless $self->_dbh->{AutoCommit};
289 $self->_dbh->disconnect;
290 $self->_dbh(undef);
291 }
412db1f4 292}
293
294sub connected {
8b445e33 295 my ($self) = @_;
412db1f4 296
1346e22d 297 if(my $dbh = $self->_dbh) {
298 if(defined $self->_conn_tid && $self->_conn_tid != threads->tid) {
299 $self->_sql_maker(undef);
300 return $self->_dbh(undef);
301 }
302 elsif($self->_conn_pid != $$) {
303 $self->_dbh->{InactiveDestroy} = 1;
304 $self->_sql_maker(undef);
305 return $self->_dbh(undef)
306 }
307 return ($dbh->FETCH('Active') && $dbh->ping);
308 }
309
310 return 0;
412db1f4 311}
312
313sub ensure_connected {
314 my ($self) = @_;
315
316 unless ($self->connected) {
8b445e33 317 $self->_populate_dbh;
318 }
412db1f4 319}
320
321sub dbh {
322 my ($self) = @_;
323
324 $self->ensure_connected;
8b445e33 325 return $self->_dbh;
326}
327
48c69e7c 328sub sql_maker {
329 my ($self) = @_;
fdc1c3d0 330 unless ($self->_sql_maker) {
bd7efd39 331 $self->_sql_maker(new DBIC::SQL::Abstract( limit_dialect => $self->dbh ));
48c69e7c 332 }
333 return $self->_sql_maker;
334}
335
8b445e33 336sub _populate_dbh {
337 my ($self) = @_;
338 my @info = @{$self->connect_info || []};
339 $self->_dbh($self->_connect(@info));
843f8ecd 340 my $driver = $self->_dbh->{Driver}->{Name};
34470972 341 eval "require DBIx::Class::Storage::DBI::${driver}";
342 unless ($@) {
843f8ecd 343 bless $self, "DBIx::Class::Storage::DBI::${driver}";
344 }
d7c4c15c 345 # if on-connect sql statements are given execute them
346 foreach my $sql_statement (@{$self->on_connect_do || []}) {
347 $self->_dbh->do($sql_statement);
348 }
5ef3e508 349
1346e22d 350 $self->_conn_pid($$);
351 $self->_conn_tid(threads->tid) if $INC{'threads.pm'};
8b445e33 352}
353
354sub _connect {
355 my ($self, @info) = @_;
5ef3e508 356
9d31f7dc 357 $self->throw_exception("You failed to provide any connection info")
358 if !@info;
359
90ec6cad 360 my ($old_connect_via, $dbh);
361
5ef3e508 362 if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) {
90ec6cad 363 $old_connect_via = $DBI::connect_via;
5ef3e508 364 $DBI::connect_via = 'connect';
5ef3e508 365 }
366
90ec6cad 367 if(ref $info[0] eq 'CODE') {
368 $dbh = &{$info[0]};
369 }
370 else {
371 $dbh = DBI->connect(@info);
372 }
373
374 $DBI::connect_via = $old_connect_via if $old_connect_via;
375
1c339d71 376 $self->throw_exception("DBI Connection failed: $DBI::errstr")
e571e823 377 unless $dbh;
90ec6cad 378
e571e823 379 $dbh;
8b445e33 380}
381
8091aa91 382=head2 txn_begin
8b445e33 383
8091aa91 384Calls begin_work on the current dbh.
8b445e33 385
181a28f4 386See L<DBIx::Class::Schema> for the txn_do() method, which allows for
387an entire code block to be executed transactionally.
388
8b445e33 389=cut
390
8091aa91 391sub txn_begin {
d79f59b9 392 my $self = shift;
181a28f4 393 $self->dbh->begin_work
394 if $self->{transaction_depth}++ == 0 and $self->dbh->{AutoCommit};
8091aa91 395}
8b445e33 396
8091aa91 397=head2 txn_commit
8b445e33 398
8091aa91 399Issues a commit against the current dbh.
8b445e33 400
8091aa91 401=cut
402
403sub txn_commit {
d79f59b9 404 my $self = shift;
405 if ($self->{transaction_depth} == 0) {
406 $self->dbh->commit unless $self->dbh->{AutoCommit};
8091aa91 407 }
408 else {
75d07914 409 $self->dbh->commit if --$self->{transaction_depth} == 0;
8091aa91 410 }
411}
412
413=head2 txn_rollback
414
181a28f4 415Issues a rollback against the current dbh. A nested rollback will
416throw a L<DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION> exception,
417which allows the rollback to propagate to the outermost transaction.
8b445e33 418
419=cut
420
8091aa91 421sub txn_rollback {
d79f59b9 422 my $self = shift;
a62cf8d4 423
424 eval {
425 if ($self->{transaction_depth} == 0) {
426 $self->dbh->rollback unless $self->dbh->{AutoCommit};
427 }
428 else {
429 --$self->{transaction_depth} == 0 ?
430 $self->dbh->rollback :
1346e22d 431 die DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION->new;
a62cf8d4 432 }
433 };
434
435 if ($@) {
436 my $error = $@;
437 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
438 $error =~ /$exception_class/ and $self->throw_exception($error);
439 $self->{transaction_depth} = 0; # ensure that a failed rollback
440 $self->throw_exception($error); # resets the transaction depth
8091aa91 441 }
442}
8b445e33 443
223b8fe3 444sub _execute {
445 my ($self, $op, $extra_bind, $ident, @args) = @_;
446 my ($sql, @bind) = $self->sql_maker->$op($ident, @args);
944f30bf 447 unshift(@bind, @$extra_bind) if $extra_bind;
f59ffc79 448 if ($self->debug) {
181a28f4 449 my @debug_bind = map { defined $_ ? qq{`$_'} : q{`NULL'} } @bind;
450 $self->debugfh->print("$sql: " . join(', ', @debug_bind) . "\n");
f59ffc79 451 }
2f5911b2 452 my $sth = $self->sth($sql,$op);
1c339d71 453 $self->throw_exception("no sth generated via sql: $sql") unless $sth;
438adc0e 454 @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
701da8c4 455 my $rv;
75d07914 456 if ($sth) {
bc0c9800 457 $rv = $sth->execute(@bind)
458 or $self->throw_exception("Error executing '$sql': " . $sth->errstr);
75d07914 459 } else {
1c339d71 460 $self->throw_exception("'$sql' did not generate a statement.");
701da8c4 461 }
223b8fe3 462 return (wantarray ? ($rv, $sth, @bind) : $rv);
463}
464
8b445e33 465sub insert {
466 my ($self, $ident, $to_insert) = @_;
bc0c9800 467 $self->throw_exception(
468 "Couldn't insert ".join(', ',
469 map "$_ => $to_insert->{$_}", keys %$to_insert
470 )." into ${ident}"
471 ) unless ($self->_execute('insert' => [], $ident, $to_insert));
8b445e33 472 return $to_insert;
473}
474
475sub update {
223b8fe3 476 return shift->_execute('update' => [], @_);
8b445e33 477}
478
479sub delete {
223b8fe3 480 return shift->_execute('delete' => [], @_);
8b445e33 481}
482
de705b51 483sub _select {
8b445e33 484 my ($self, $ident, $select, $condition, $attrs) = @_;
223b8fe3 485 my $order = $attrs->{order_by};
486 if (ref $condition eq 'SCALAR') {
487 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
488 }
8839560b 489 if (exists $attrs->{group_by} || $attrs->{having}) {
bc0c9800 490 $order = {
491 group_by => $attrs->{group_by},
492 having => $attrs->{having},
493 ($order ? (order_by => $order) : ())
494 };
54540863 495 }
5c91499f 496 my @args = ('select', $attrs->{bind}, $ident, $select, $condition, $order);
9229f20a 497 if ($attrs->{software_limit} ||
498 $self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
499 $attrs->{software_limit} = 1;
5c91499f 500 } else {
501 push @args, $attrs->{rows}, $attrs->{offset};
502 }
de705b51 503 return $self->_execute(@args);
504}
505
506sub select {
507 my $self = shift;
508 my ($ident, $select, $condition, $attrs) = @_;
cb5f2eea 509 return $self->cursor->new($self, \@_, $attrs);
8b445e33 510}
511
6157db4f 512# Need to call finish() to work round broken DBDs
513
1a14aa3f 514sub select_single {
de705b51 515 my $self = shift;
516 my ($rv, $sth, @bind) = $self->_select(@_);
6157db4f 517 my @row = $sth->fetchrow_array;
518 $sth->finish();
519 return @row;
1a14aa3f 520}
521
8b445e33 522sub sth {
cb5f2eea 523 my ($self, $sql) = @_;
91fa659e 524 # 3 is the if_active parameter which avoids active sth re-use
525 return $self->dbh->prepare_cached($sql, {}, 3);
8b445e33 526}
527
a953d8d9 528=head2 columns_info_for
529
530Returns database type info for a given table columns.
531
532=cut
533
534sub columns_info_for {
0d67fe74 535 my ($self, $table) = @_;
bfe10d87 536
0d67fe74 537 if ($self->dbh->can('column_info')) {
a953d8d9 538 my %result;
0d67fe74 539 my $old_raise_err = $self->dbh->{RaiseError};
540 my $old_print_err = $self->dbh->{PrintError};
541 $self->dbh->{RaiseError} = 1;
542 $self->dbh->{PrintError} = 0;
543 eval {
544 my $sth = $self->dbh->column_info( undef, undef, $table, '%' );
545 $sth->execute();
546 while ( my $info = $sth->fetchrow_hashref() ){
bfe10d87 547 my %column_info;
0d67fe74 548 $column_info{data_type} = $info->{TYPE_NAME};
549 $column_info{size} = $info->{COLUMN_SIZE};
550 $column_info{is_nullable} = $info->{NULLABLE} ? 1 : 0;
551 $column_info{default_value} = $info->{COLUMN_DEF};
552
553 $result{$info->{COLUMN_NAME}} = \%column_info;
554 }
555 };
556 $self->dbh->{RaiseError} = $old_raise_err;
557 $self->dbh->{PrintError} = $old_print_err;
558 return \%result if !$@;
559 }
560
561 my %result;
562 my $sth = $self->dbh->prepare("SELECT * FROM $table WHERE 1=0");
563 $sth->execute;
564 my @columns = @{$sth->{NAME_lc}};
565 for my $i ( 0 .. $#columns ){
566 my %column_info;
567 my $type_num = $sth->{TYPE}->[$i];
568 my $type_name;
569 if(defined $type_num && $self->dbh->can('type_info')) {
570 my $type_info = $self->dbh->type_info($type_num);
571 $type_name = $type_info->{TYPE_NAME} if $type_info;
a953d8d9 572 }
0d67fe74 573 $column_info{data_type} = $type_name ? $type_name : $type_num;
574 $column_info{size} = $sth->{PRECISION}->[$i];
575 $column_info{is_nullable} = $sth->{NULLABLE}->[$i] ? 1 : 0;
576
577 if ($column_info{data_type} =~ m/^(.*?)\((.*?)\)$/) {
578 $column_info{data_type} = $1;
579 $column_info{size} = $2;
580 }
581
582 $result{$columns[$i]} = \%column_info;
583 }
bfe10d87 584
0d67fe74 585 return \%result;
a953d8d9 586}
587
843f8ecd 588sub last_insert_id {
589 my ($self, $row) = @_;
590
591 return $self->dbh->func('last_insert_rowid');
592
593}
594
90ec6cad 595sub sqlt_type { shift->dbh->{Driver}->{Name} }
1c339d71 596
597sub deployment_statements {
cb561d1a 598 my ($self, $schema, $type, $sqltargs) = @_;
1c339d71 599 $type ||= $self->sqlt_type;
600 eval "use SQL::Translator";
601 $self->throw_exception("Can't deploy without SQL::Translator: $@") if $@;
602 eval "use SQL::Translator::Parser::DBIx::Class;";
75d07914 603 $self->throw_exception($@) if $@;
1c339d71 604 eval "use SQL::Translator::Producer::${type};";
605 $self->throw_exception($@) if $@;
cb561d1a 606 my $tr = SQL::Translator->new(%$sqltargs);
1c339d71 607 SQL::Translator::Parser::DBIx::Class::parse( $tr, $schema );
608 return "SQL::Translator::Producer::${type}"->can('produce')->($tr);
609}
843f8ecd 610
1c339d71 611sub deploy {
cb561d1a 612 my ($self, $schema, $type, $sqltargs) = @_;
bc0c9800 613 my @statements = $self->deployment_statements($schema, $type, $sqltargs);
614 foreach(split(";\n", @statements)) {
615 $self->debugfh->print("$_\n") if $self->debug;
616 $self->dbh->do($_) or warn "SQL was:\n $_";
75d07914 617 }
1c339d71 618}
843f8ecd 619
92925617 620sub DESTROY { shift->disconnect }
621
8b445e33 6221;
623
92b858c9 624=head1 ENVIRONMENT VARIABLES
625
626=head2 DBIX_CLASS_STORAGE_DBI_DEBUG
627
628If C<DBIX_CLASS_STORAGE_DBI_DEBUG> is set then SQL trace information
629is produced (as when the L<debug> method is set).
630
631If the value is of the form C<1=/path/name> then the trace output is
632written to the file C</path/name>.
633
8b445e33 634=head1 AUTHORS
635
daec44b8 636Matt S. Trout <mst@shadowcatsystems.co.uk>
8b445e33 637
9f19b1d6 638Andy Grundman <andy@hybridized.org>
639
8b445e33 640=head1 LICENSE
641
642You may distribute this code under the same terms as Perl itself.
643
644=cut
645