more informative error in related_source when relationship doesn't exist
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI.pm
CommitLineData
8b445e33 1package DBIx::Class::Storage::DBI;
2
20a2c954 3use strict;
4use warnings;
8b445e33 5use DBI;
aeaf3ce2 6use SQL::Abstract::Limit;
28927b50 7use DBIx::Class::Storage::DBI::Cursor;
92b858c9 8use IO::File;
8b445e33 9
bd7efd39 10BEGIN {
11
cb5f2eea 12package DBIC::SQL::Abstract; # Would merge upstream, but nate doesn't reply :(
bd7efd39 13
14use base qw/SQL::Abstract::Limit/;
15
54540863 16sub select {
17 my ($self, $table, $fields, $where, $order, @rest) = @_;
18 @rest = (-1) unless defined $rest[0];
19 $self->SUPER::select($table, $self->_recurse_fields($fields),
20 $where, $order, @rest);
21}
22
23sub _emulate_limit {
24 my $self = shift;
25 if ($_[3] == -1) {
26 return $_[1].$self->_order_by($_[2]);
27 } else {
28 return $self->SUPER::_emulate_limit(@_);
29 }
30}
31
32sub _recurse_fields {
33 my ($self, $fields) = @_;
34 my $ref = ref $fields;
35 return $self->_quote($fields) unless $ref;
36 return $$fields if $ref eq 'SCALAR';
37
38 if ($ref eq 'ARRAY') {
39 return join(', ', map { $self->_recurse_fields($_) } @$fields);
40 } elsif ($ref eq 'HASH') {
41 foreach my $func (keys %$fields) {
42 return $self->_sqlcase($func)
43 .'( '.$self->_recurse_fields($fields->{$func}).' )';
44 }
45 }
46}
47
48sub _order_by {
49 my $self = shift;
50 my $ret = '';
51 if (ref $_[0] eq 'HASH') {
52 if (defined $_[0]->{group_by}) {
53 $ret = $self->_sqlcase(' group by ')
54 .$self->_recurse_fields($_[0]->{group_by});
55 }
56 if (defined $_[0]->{order_by}) {
57 $ret .= $self->SUPER::_order_by($_[0]->{order_by});
58 }
59 } else {
60 $ret = $self->SUPER::_order_by(@_);
61 }
62 return $ret;
63}
64
2a816814 65sub _table {
bd7efd39 66 my ($self, $from) = @_;
67 if (ref $from eq 'ARRAY') {
68 return $self->_recurse_from(@$from);
69 } elsif (ref $from eq 'HASH') {
70 return $self->_make_as($from);
71 } else {
72 return $from;
73 }
74}
75
76sub _recurse_from {
77 my ($self, $from, @join) = @_;
78 my @sqlf;
79 push(@sqlf, $self->_make_as($from));
80 foreach my $j (@join) {
81 my ($to, $on) = @$j;
73856587 82
54540863 83 # check whether a join type exists
84 my $join_clause = '';
85 if (ref($to) eq 'HASH' and exists($to->{-join_type})) {
86 $join_clause = ' '.uc($to->{-join_type}).' JOIN ';
87 } else {
88 $join_clause = ' JOIN ';
89 }
73856587 90 push(@sqlf, $join_clause);
91
bd7efd39 92 if (ref $to eq 'ARRAY') {
93 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
94 } else {
96cdbbab 95 push(@sqlf, $self->_make_as($to));
bd7efd39 96 }
97 push(@sqlf, ' ON ', $self->_join_condition($on));
98 }
99 return join('', @sqlf);
100}
101
102sub _make_as {
103 my ($self, $from) = @_;
54540863 104 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_ : $self->_quote($_)) }
2a816814 105 reverse each %{$self->_skip_options($from)});
73856587 106}
107
108sub _skip_options {
54540863 109 my ($self, $hash) = @_;
110 my $clean_hash = {};
111 $clean_hash->{$_} = $hash->{$_}
112 for grep {!/^-/} keys %$hash;
113 return $clean_hash;
bd7efd39 114}
115
116sub _join_condition {
117 my ($self, $cond) = @_;
5efe4c79 118 if (ref $cond eq 'HASH') {
119 my %j;
120 for (keys %$cond) { my $x = '= '.$self->_quote($cond->{$_}); $j{$_} = \$x; };
121 return $self->_recurse_where(\%j);
122 } elsif (ref $cond eq 'ARRAY') {
123 return join(' OR ', map { $self->_join_condition($_) } @$cond);
124 } else {
125 die "Can't handle this yet!";
126 }
bd7efd39 127}
128
2a816814 129sub _quote {
130 my ($self, $label) = @_;
131 return '' unless defined $label;
132 return $self->SUPER::_quote($label);
133}
134
bd7efd39 135} # End of BEGIN block
136
8b445e33 137use base qw/DBIx::Class/;
138
438adc0e 139__PACKAGE__->load_components(qw/Exception AccessorGroup/);
8b445e33 140
223b8fe3 141__PACKAGE__->mk_group_accessors('simple' =>
92b858c9 142 qw/connect_info _dbh _sql_maker debug debugfh cursor on_connect_do transaction_depth/);
8091aa91 143
8b445e33 144sub new {
223b8fe3 145 my $new = bless({}, ref $_[0] || $_[0]);
28927b50 146 $new->cursor("DBIx::Class::Storage::DBI::Cursor");
d79f59b9 147 $new->transaction_depth(0);
92b858c9 148 if ($ENV{DBIX_CLASS_STORAGE_DBI_DEBUG} =~ /=(.+)$/) {
149 $new->debugfh(IO::File->new($1, 'w')||die "Cannot open trace file $1");
150 } else {
151 $new->debugfh(IO::File->new('>&STDERR'));
152 }
28927b50 153 $new->debug(1) if $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG};
223b8fe3 154 return $new;
8b445e33 155}
156
8b445e33 157=head1 NAME
158
159DBIx::Class::Storage::DBI - DBI storage handler
160
161=head1 SYNOPSIS
162
163=head1 DESCRIPTION
164
165This class represents the connection to the database
166
167=head1 METHODS
168
8b445e33 169=cut
170
d7c4c15c 171=head2 on_connect_do
172
173Executes the sql statements given as a listref on every db connect.
174
92b858c9 175=head2 debug
176
177Causes SQL trace information to be emitted on C<debugfh> filehandle
178(or C<STDERR> if C<debugfh> has not specifically been set).
179
180=head2 debugfh
181
182Sets or retrieves the filehandle used for trace/debug output. This
183should be an IO::Handle compatible object (only the C<print> method is
184used). Initially set to be STDERR - although see information on the
185L<DBIX_CLASS_STORAGE_DBI_DEBUG> environment variable.
186
d7c4c15c 187=cut
188
8b445e33 189sub dbh {
190 my ($self) = @_;
191 my $dbh;
192 unless (($dbh = $self->_dbh) && $dbh->FETCH('Active') && $dbh->ping) {
193 $self->_populate_dbh;
194 }
195 return $self->_dbh;
196}
197
48c69e7c 198sub sql_maker {
199 my ($self) = @_;
fdc1c3d0 200 unless ($self->_sql_maker) {
bd7efd39 201 $self->_sql_maker(new DBIC::SQL::Abstract( limit_dialect => $self->dbh ));
48c69e7c 202 }
203 return $self->_sql_maker;
204}
205
8b445e33 206sub _populate_dbh {
207 my ($self) = @_;
208 my @info = @{$self->connect_info || []};
209 $self->_dbh($self->_connect(@info));
d7c4c15c 210
211 # if on-connect sql statements are given execute them
212 foreach my $sql_statement (@{$self->on_connect_do || []}) {
213 $self->_dbh->do($sql_statement);
214 }
8b445e33 215}
216
217sub _connect {
218 my ($self, @info) = @_;
219 return DBI->connect(@info);
220}
221
8091aa91 222=head2 txn_begin
8b445e33 223
8091aa91 224Calls begin_work on the current dbh.
8b445e33 225
226=cut
227
8091aa91 228sub txn_begin {
d79f59b9 229 my $self = shift;
230 $self->dbh->begin_work if $self->{transaction_depth}++ == 0 and $self->dbh->{AutoCommit};
8091aa91 231}
8b445e33 232
8091aa91 233=head2 txn_commit
8b445e33 234
8091aa91 235Issues a commit against the current dbh.
8b445e33 236
8091aa91 237=cut
238
239sub txn_commit {
d79f59b9 240 my $self = shift;
241 if ($self->{transaction_depth} == 0) {
242 $self->dbh->commit unless $self->dbh->{AutoCommit};
8091aa91 243 }
244 else {
d79f59b9 245 $self->dbh->commit if --$self->{transaction_depth} == 0;
8091aa91 246 }
247}
248
249=head2 txn_rollback
250
251Issues a rollback against the current dbh.
8b445e33 252
253=cut
254
8091aa91 255sub txn_rollback {
d79f59b9 256 my $self = shift;
257 if ($self->{transaction_depth} == 0) {
258 $self->dbh->rollback unless $self->dbh->{AutoCommit};
8091aa91 259 }
260 else {
d79f59b9 261 --$self->{transaction_depth} == 0 ? $self->dbh->rollback : die $@;
8091aa91 262 }
263}
8b445e33 264
223b8fe3 265sub _execute {
266 my ($self, $op, $extra_bind, $ident, @args) = @_;
267 my ($sql, @bind) = $self->sql_maker->$op($ident, @args);
944f30bf 268 unshift(@bind, @$extra_bind) if $extra_bind;
92b858c9 269 $self->debugfh->print("$sql: @bind\n") if $self->debug;
2f5911b2 270 my $sth = $self->sth($sql,$op);
438adc0e 271 @bind = map { ref $_ ? ''.$_ : $_ } @bind; # stringify args
272 my $rv = $sth->execute(@bind);
223b8fe3 273 return (wantarray ? ($rv, $sth, @bind) : $rv);
274}
275
8b445e33 276sub insert {
277 my ($self, $ident, $to_insert) = @_;
20a2c954 278 $self->throw( "Couldn't insert ".join(', ', map "$_ => $to_insert->{$_}", keys %$to_insert)." into ${ident}" )
a4b2f17b 279 unless ($self->_execute('insert' => [], $ident, $to_insert));
8b445e33 280 return $to_insert;
281}
282
283sub update {
223b8fe3 284 return shift->_execute('update' => [], @_);
8b445e33 285}
286
287sub delete {
223b8fe3 288 return shift->_execute('delete' => [], @_);
8b445e33 289}
290
de705b51 291sub _select {
8b445e33 292 my ($self, $ident, $select, $condition, $attrs) = @_;
223b8fe3 293 my $order = $attrs->{order_by};
294 if (ref $condition eq 'SCALAR') {
295 $order = $1 if $$condition =~ s/ORDER BY (.*)$//i;
296 }
54540863 297 if (exists $attrs->{group_by}) {
298 $order = { group_by => $attrs->{group_by},
299 ($order ? (order_by => $order) : ()) };
300 }
5c91499f 301 my @args = ('select', $attrs->{bind}, $ident, $select, $condition, $order);
9229f20a 302 if ($attrs->{software_limit} ||
303 $self->sql_maker->_default_limit_syntax eq "GenericSubQ") {
304 $attrs->{software_limit} = 1;
5c91499f 305 } else {
306 push @args, $attrs->{rows}, $attrs->{offset};
307 }
de705b51 308 return $self->_execute(@args);
309}
310
311sub select {
312 my $self = shift;
313 my ($ident, $select, $condition, $attrs) = @_;
cb5f2eea 314 return $self->cursor->new($self, \@_, $attrs);
8b445e33 315}
316
1a14aa3f 317sub select_single {
de705b51 318 my $self = shift;
319 my ($rv, $sth, @bind) = $self->_select(@_);
1a14aa3f 320 return $sth->fetchrow_array;
321}
322
8b445e33 323sub sth {
cb5f2eea 324 my ($self, $sql) = @_;
91fa659e 325 # 3 is the if_active parameter which avoids active sth re-use
326 return $self->dbh->prepare_cached($sql, {}, 3);
8b445e33 327}
328
a953d8d9 329=head2 columns_info_for
330
331Returns database type info for a given table columns.
332
333=cut
334
335sub columns_info_for {
336 my ($self, $table) = @_;
a953d8d9 337 my %result;
103e3e03 338 if ( $self->dbh->can( 'column_info' ) ){
339 my $sth = $self->dbh->column_info( undef, undef, $table, '%' );
340 $sth->execute();
341 while ( my $info = $sth->fetchrow_hashref() ){
342 my %column_info;
a953d8d9 343 $column_info{data_type} = $info->{TYPE_NAME};
344 $column_info{size} = $info->{COLUMN_SIZE};
345 $column_info{is_nullable} = $info->{NULLABLE};
103e3e03 346 $result{$info->{COLUMN_NAME}} = \%column_info;
347 }
348 }else{
349 my $sth = $self->dbh->prepare("SELECT * FROM $table WHERE 1=0");
350 $sth->execute;
351 my @columns = @{$sth->{NAME}};
352 for my $i ( 0 .. $#columns ){
353 $result{$columns[$i]}{data_type} = $sth->{TYPE}->[$i];
a953d8d9 354 }
a953d8d9 355 }
356 return \%result;
357}
358
8b445e33 3591;
360
92b858c9 361=head1 ENVIRONMENT VARIABLES
362
363=head2 DBIX_CLASS_STORAGE_DBI_DEBUG
364
365If C<DBIX_CLASS_STORAGE_DBI_DEBUG> is set then SQL trace information
366is produced (as when the L<debug> method is set).
367
368If the value is of the form C<1=/path/name> then the trace output is
369written to the file C</path/name>.
370
8b445e33 371=head1 AUTHORS
372
daec44b8 373Matt S. Trout <mst@shadowcatsystems.co.uk>
8b445e33 374
9f19b1d6 375Andy Grundman <andy@hybridized.org>
376
8b445e33 377=head1 LICENSE
378
379You may distribute this code under the same terms as Perl itself.
380
381=cut
382