Merge 'trunk' into 'mssql_top_fixes'
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLAHacks.pm
CommitLineData
6f4ddea1 1package # Hide from PAUSE
855c6fd0 2 DBIx::Class::SQLAHacks;
6f4ddea1 3
4use base qw/SQL::Abstract::Limit/;
e3764383 5use strict;
6use warnings;
b2b22cd6 7use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
8
9BEGIN {
10 # reinstall the carp()/croak() functions imported into SQL::Abstract
11 # as Carp and Carp::Clan do not like each other much
12 no warnings qw/redefine/;
13 no strict qw/refs/;
14 for my $f (qw/carp croak/) {
15 my $orig = \&{"SQL::Abstract::$f"};
16 *{"SQL::Abstract::$f"} = sub {
17
18 local $Carp::CarpLevel = 1; # even though Carp::Clan ignores this, $orig will not
19
20 if (Carp::longmess() =~ /DBIx::Class::SQLAHacks::[\w]+\(\) called/) {
21 __PACKAGE__->can($f)->(@_);
22 }
23 else {
24 $orig->(@_);
25 }
26 }
27 }
28}
6f4ddea1 29
30sub new {
31 my $self = shift->SUPER::new(@_);
32
33 # This prevents the caching of $dbh in S::A::L, I believe
34 # If limit_dialect is a ref (like a $dbh), go ahead and replace
35 # it with what it resolves to:
36 $self->{limit_dialect} = $self->_find_syntax($self->{limit_dialect})
37 if ref $self->{limit_dialect};
38
39 $self;
40}
41
42
6f4ddea1 43# Some databases (sqlite) do not handle multiple parenthesis
44# around in/between arguments. A tentative x IN ( ( 1, 2 ,3) )
45# is interpreted as x IN 1 or something similar.
46#
47# Since we currently do not have access to the SQLA AST, resort
48# to barbaric mutilation of any SQL supplied in literal form
49
50sub _strip_outer_paren {
51 my ($self, $arg) = @_;
52
53 return $self->_SWITCH_refkind ($arg, {
54 ARRAYREFREF => sub {
55 $$arg->[0] = __strip_outer_paren ($$arg->[0]);
56 return $arg;
57 },
58 SCALARREF => sub {
59 return \__strip_outer_paren( $$arg );
60 },
61 FALLBACK => sub {
62 return $arg
63 },
64 });
65}
66
67sub __strip_outer_paren {
68 my $sql = shift;
69
70 if ($sql and not ref $sql) {
71 while ($sql =~ /^ \s* \( (.*) \) \s* $/x ) {
72 $sql = $1;
73 }
74 }
75
76 return $sql;
77}
78
79sub _where_field_IN {
80 my ($self, $lhs, $op, $rhs) = @_;
81 $rhs = $self->_strip_outer_paren ($rhs);
82 return $self->SUPER::_where_field_IN ($lhs, $op, $rhs);
83}
84
85sub _where_field_BETWEEN {
86 my ($self, $lhs, $op, $rhs) = @_;
87 $rhs = $self->_strip_outer_paren ($rhs);
88 return $self->SUPER::_where_field_BETWEEN ($lhs, $op, $rhs);
89}
90
15827712 91# Slow but ANSI standard Limit/Offset support. DB2 uses this
6f4ddea1 92sub _RowNumberOver {
93 my ($self, $sql, $order, $rows, $offset ) = @_;
94
95 $offset += 1;
03e1d9af 96 my $last = $rows + $offset - 1;
6f4ddea1 97 my ( $order_by ) = $self->_order_by( $order );
98
99 $sql = <<"SQL";
100SELECT * FROM
101(
102 SELECT Q1.*, ROW_NUMBER() OVER( ) AS ROW_NUM FROM (
103 $sql
104 $order_by
105 ) Q1
106) Q2
107WHERE ROW_NUM BETWEEN $offset AND $last
108
109SQL
110
111 return $sql;
112}
113
15827712 114# Crappy Top based Limit/Offset support. MSSQL uses this currently,
115# but may have to switch to RowNumberOver one day
116sub _Top {
117 my ( $self, $sql, $order, $rows, $offset ) = @_;
118
b1e1d073 119 # mangle the input sql so it can be properly aliased in the outer queries
120 $sql =~ s/^ \s* SELECT \s+ (.+?) \s+ (?=FROM)//ix
121 or croak "Unrecognizable SELECT: $sql";
42e5b103 122 my $sql_select = $1;
123 my @sql_select = split (/\s*,\s*/, $sql_select);
124
125 # we can't support subqueries (in fact MSSQL can't) - croak
126 if (@sql_select != @{$self->{_dbic_rs_attrs}{select}}) {
127 croak (sprintf (
128 'SQL SELECT did not parse cleanly - retrieved %d comma separated elements, while '
129 . 'the resultset select attribure contains %d elements: %s',
130 scalar @sql_select,
131 scalar @{$self->{_dbic_rs_attrs}{select}},
132 $sql_select,
133 ));
134 }
b1e1d073 135
42e5b103 136 my $name_sep = $self->name_sep || '.';
137 $name_sep = "\Q$name_sep\E";
138 my $col_re = qr/ ^ (?: (.+) $name_sep )? ([^$name_sep]+) $ /x;
b1e1d073 139
42e5b103 140 # construct the new select lists, rename(alias) some columns if necessary
141 my (@outer_select, @inner_select, %seen_names, %col_aliases, %outer_col_aliases);
b1e1d073 142
42e5b103 143 for (@{$self->{_dbic_rs_attrs}{select}}) {
144 next if ref $_;
145 my ($table, $orig_colname) = ( $_ =~ $col_re );
146 next unless $table;
147 $seen_names{$orig_colname}++;
148 }
b1e1d073 149
42e5b103 150 for my $i (0 .. $#sql_select) {
b1e1d073 151
42e5b103 152 my $colsel_arg = $self->{_dbic_rs_attrs}{select}[$i];
153 my $colsel_sql = $sql_select[$i];
b1e1d073 154
42e5b103 155 # this may or may not work (in case of a scalarref or something)
156 my ($table, $orig_colname) = ( $colsel_arg =~ $col_re );
b1e1d073 157
42e5b103 158 my $quoted_alias;
159 # do not attempt to understand non-scalar selects - alias numerically
160 if (ref $colsel_arg) {
161 $quoted_alias = $self->_quote ('column_' . (@inner_select + 1) );
162 }
163 # column name seen more than once - alias it
164 elsif ($orig_colname && ($seen_names{$orig_colname} > 1) ) {
165 $quoted_alias = $self->_quote ("${table}__${orig_colname}");
166 }
b1e1d073 167
42e5b103 168 # we did rename - make a record and adjust
169 if ($quoted_alias) {
170 # alias inner
171 push @inner_select, "$colsel_sql AS $quoted_alias";
172
173 # push alias to outer
174 push @outer_select, $quoted_alias;
175
176 # Any aliasing accumulated here will be considered
177 # both for inner and outer adjustments of ORDER BY
178 $self->__record_alias (
179 \%col_aliases,
180 $quoted_alias,
181 $colsel_arg,
182 $table ? $orig_colname : undef,
183 );
b1e1d073 184 }
185
42e5b103 186 # otherwise just leave things intact inside, and use the abbreviated one outside
187 # (as we do not have table names anymore)
188 else {
189 push @inner_select, $colsel_sql;
190
191 my $outer_quoted = $self->_quote ($orig_colname); # it was not a duplicate so should just work
192 push @outer_select, $outer_quoted;
193 $self->__record_alias (
194 \%outer_col_aliases,
195 $outer_quoted,
196 $colsel_arg,
197 $table ? $orig_colname : undef,
198 );
199 }
b1e1d073 200 }
201
202 my $outer_select = join (', ', @outer_select );
42e5b103 203 my $inner_select = join (', ', @inner_select );
b1e1d073 204
42e5b103 205 %outer_col_aliases = (%outer_col_aliases, %col_aliases);
b1e1d073 206
207 # deal with order
15827712 208 croak '$order supplied to SQLAHacks limit emulators must be a hash'
209 if (ref $order ne 'HASH');
210
8f6dbee9 211 $order = { %$order }; #copy
212
b1e1d073 213 my $req_order = [ $self->_order_by_chunks ($order->{order_by}) ];
214 my $limit_order = [ @$req_order ? @$req_order : $self->_order_by_chunks ($order->{_virtual_order_by}) ];
215
42e5b103 216 my ( $order_by_inner, $order_by_outer ) = $self->_order_directions($limit_order);
217 my $order_by_requested = $self->_order_by ($req_order);
15827712 218
42e5b103 219 # we can't really adjust the order_by columns, as introspection is lacking
220 # resort to simple substitution
221 for my $col (keys %outer_col_aliases) {
222 for ($order_by_requested, $order_by_outer) {
223 $_ =~ s/\s+$col\s+/ $outer_col_aliases{$col} /g;
b1e1d073 224 }
225 }
42e5b103 226 for my $col (keys %col_aliases) {
227 $order_by_inner =~ s/\s+$col\s+/$col_aliases{$col}/g;
228 }
1cbd3034 229
15827712 230
b1e1d073 231 # generate the rest
8f6dbee9 232 delete $order->{$_} for qw/order_by _virtual_order_by/;
233 my $grpby_having = $self->_order_by ($order);
234
15827712 235
42e5b103 236 my $inner_lim = $rows + $offset;
15827712 237
42e5b103 238 my $sql = "SELECT TOP $inner_lim $inner_select $sql $grpby_having $order_by_inner";
239
240 if ($offset) {
241 $sql = <<"SQL";
b1e1d073 242
243 SELECT TOP $rows $outer_select FROM
15827712 244 (
42e5b103 245 $sql
b1e1d073 246 ) AS inner_sel
15827712 247 $order_by_outer
b1e1d073 248SQL
249
42e5b103 250 }
15827712 251
42e5b103 252 if ($order_by_requested) {
b1e1d073 253 $sql = <<"SQL";
254
42e5b103 255 SELECT $outer_select FROM
256 ( $sql ) AS outer_sel
257 $order_by_requested;
15827712 258SQL
b1e1d073 259
260 }
261
262 return $sql;
15827712 263}
264
42e5b103 265# action at a distance to shorten Top code above
266sub __record_alias {
267 my ($self, $register, $alias, $fqcol, $col) = @_;
268
269 # record qualified name
270 $register->{$fqcol} = $alias;
271 $register->{$self->_quote($fqcol)} = $alias;
272
273 return unless $col;
274
275 # record unqialified name, undef (no adjustment) if a duplicate is found
276 if (exists $register->{$col}) {
277 $register->{$col} = undef;
278 }
279 else {
280 $register->{$col} = $alias;
281 }
282
283 $register->{$self->_quote($col)} = $register->{$col};
284}
285
15827712 286
6f4ddea1 287
288# While we're at it, this should make LIMIT queries more efficient,
289# without digging into things too deeply
6f4ddea1 290sub _find_syntax {
291 my ($self, $syntax) = @_;
ac788c46 292 return $self->{_cached_syntax} ||= $self->SUPER::_find_syntax($syntax);
6f4ddea1 293}
294
ec7cfd36 295my $for_syntax = {
296 update => 'FOR UPDATE',
297 shared => 'FOR SHARE',
298};
6f4ddea1 299sub select {
300 my ($self, $table, $fields, $where, $order, @rest) = @_;
1cbd3034 301
302 $self->{"${_}_bind"} = [] for (qw/having from order/);
db56cf3d 303
6f4ddea1 304 if (ref $table eq 'SCALAR') {
305 $table = $$table;
306 }
307 elsif (not ref $table) {
308 $table = $self->_quote($table);
309 }
310 local $self->{rownum_hack_count} = 1
311 if (defined $rest[0] && $self->{limit_dialect} eq 'RowNum');
312 @rest = (-1) unless defined $rest[0];
e8fcf76f 313 croak "LIMIT 0 Does Not Compute" if $rest[0] == 0;
6f4ddea1 314 # and anyway, SQL::Abstract::Limit will cause a barf if we don't first
db56cf3d 315 my ($sql, @where_bind) = $self->SUPER::select(
6f4ddea1 316 $table, $self->_recurse_fields($fields), $where, $order, @rest
317 );
ec7cfd36 318 if (my $for = delete $self->{_dbic_rs_attrs}{for}) {
319 $sql .= " $for_syntax->{$for}" if $for_syntax->{$for};
320 }
321
1cbd3034 322 return wantarray ? ($sql, @{$self->{from_bind}}, @where_bind, @{$self->{having_bind}}, @{$self->{order_bind}} ) : $sql;
6f4ddea1 323}
324
325sub insert {
326 my $self = shift;
327 my $table = shift;
328 $table = $self->_quote($table) unless ref($table);
7a72e5a5 329
330 # SQLA will emit INSERT INTO $table ( ) VALUES ( )
331 # which is sadly understood only by MySQL. Change default behavior here,
332 # until SQLA2 comes with proper dialect support
333 if (! $_[0] or (ref $_[0] eq 'HASH' and !keys %{$_[0]} ) ) {
334 return "INSERT INTO ${table} DEFAULT VALUES"
335 }
336
6f4ddea1 337 $self->SUPER::insert($table, @_);
338}
339
340sub update {
341 my $self = shift;
342 my $table = shift;
343 $table = $self->_quote($table) unless ref($table);
344 $self->SUPER::update($table, @_);
345}
346
347sub delete {
348 my $self = shift;
349 my $table = shift;
350 $table = $self->_quote($table) unless ref($table);
351 $self->SUPER::delete($table, @_);
352}
353
354sub _emulate_limit {
355 my $self = shift;
356 if ($_[3] == -1) {
357 return $_[1].$self->_order_by($_[2]);
358 } else {
359 return $self->SUPER::_emulate_limit(@_);
360 }
361}
362
363sub _recurse_fields {
364 my ($self, $fields, $params) = @_;
365 my $ref = ref $fields;
366 return $self->_quote($fields) unless $ref;
367 return $$fields if $ref eq 'SCALAR';
368
369 if ($ref eq 'ARRAY') {
370 return join(', ', map {
371 $self->_recurse_fields($_)
372 .(exists $self->{rownum_hack_count} && !($params && $params->{no_rownum_hack})
373 ? ' AS col'.$self->{rownum_hack_count}++
374 : '')
375 } @$fields);
376 } elsif ($ref eq 'HASH') {
377 foreach my $func (keys %$fields) {
db56cf3d 378 if ($func eq 'distinct') {
379 my $_fields = $fields->{$func};
380 if (ref $_fields eq 'ARRAY' && @{$_fields} > 1) {
04ebc6f4 381 croak (
382 'The select => { distinct => ... } syntax is not supported for multiple columns.'
383 .' Instead please use { group_by => [ qw/' . (join ' ', @$_fields) . '/ ] }'
384 .' or { select => [ qw/' . (join ' ', @$_fields) . '/ ], distinct => 1 }'
385 );
db56cf3d 386 }
387 else {
388 $_fields = @{$_fields}[0] if ref $_fields eq 'ARRAY';
04ebc6f4 389 carp (
390 'The select => { distinct => ... } syntax will be deprecated in DBIC version 0.09,'
391 ." please use { group_by => '${_fields}' } or { select => '${_fields}', distinct => 1 }"
392 );
db56cf3d 393 }
394 }
6f4ddea1 395 return $self->_sqlcase($func)
396 .'( '.$self->_recurse_fields($fields->{$func}).' )';
397 }
398 }
399 # Is the second check absolutely necessary?
400 elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
db56cf3d 401 return $self->_fold_sqlbind( $fields );
6f4ddea1 402 }
403 else {
e8fcf76f 404 croak($ref . qq{ unexpected in _recurse_fields()})
6f4ddea1 405 }
406}
407
408sub _order_by {
1cbd3034 409 my ($self, $arg) = @_;
15827712 410
1cbd3034 411 if (ref $arg eq 'HASH' and keys %$arg and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
412
413 my $ret = '';
414
415 if (defined $arg->{group_by}) {
6f4ddea1 416 $ret = $self->_sqlcase(' group by ')
1cbd3034 417 .$self->_recurse_fields($arg->{group_by}, { no_rownum_hack => 1 });
6f4ddea1 418 }
15827712 419
1cbd3034 420 if (defined $arg->{having}) {
421 my ($frag, @bind) = $self->_recurse_where($arg->{having});
422 push(@{$self->{having_bind}}, @bind);
6f4ddea1 423 $ret .= $self->_sqlcase(' having ').$frag;
424 }
15827712 425
1cbd3034 426 if (defined $arg->{order_by}) {
427 my ($frag, @bind) = $self->SUPER::_order_by($arg->{order_by});
428 push(@{$self->{order_bind}}, @bind);
429 $ret .= $frag;
6f4ddea1 430 }
15827712 431
1cbd3034 432 return $ret;
fde3719a 433 }
1cbd3034 434 else {
435 my ($sql, @bind) = $self->SUPER::_order_by ($arg);
436 push(@{$self->{order_bind}}, @bind);
437 return $sql;
fd4cb60a 438 }
6f4ddea1 439}
440
1cbd3034 441sub _order_directions {
fd4cb60a 442 my ($self, $order) = @_;
15827712 443
1cbd3034 444 # strip bind values - none of the current _order_directions users support them
445 return $self->SUPER::_order_directions( [ map
446 { ref $_ ? $_->[0] : $_ }
447 $self->_order_by_chunks ($order)
448 ]);
fd4cb60a 449}
450
6f4ddea1 451sub _table {
452 my ($self, $from) = @_;
453 if (ref $from eq 'ARRAY') {
454 return $self->_recurse_from(@$from);
455 } elsif (ref $from eq 'HASH') {
456 return $self->_make_as($from);
457 } else {
458 return $from; # would love to quote here but _table ends up getting called
459 # twice during an ->select without a limit clause due to
460 # the way S::A::Limit->select works. should maybe consider
461 # bypassing this and doing S::A::select($self, ...) in
462 # our select method above. meantime, quoting shims have
463 # been added to select/insert/update/delete here
464 }
465}
466
467sub _recurse_from {
468 my ($self, $from, @join) = @_;
469 my @sqlf;
470 push(@sqlf, $self->_make_as($from));
471 foreach my $j (@join) {
472 my ($to, $on) = @$j;
473
474 # check whether a join type exists
475 my $join_clause = '';
476 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
477 if (ref($to_jt) eq 'HASH' and exists($to_jt->{-join_type})) {
478 $join_clause = ' '.uc($to_jt->{-join_type}).' JOIN ';
479 } else {
480 $join_clause = ' JOIN ';
481 }
482 push(@sqlf, $join_clause);
483
484 if (ref $to eq 'ARRAY') {
485 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
486 } else {
487 push(@sqlf, $self->_make_as($to));
488 }
489 push(@sqlf, ' ON ', $self->_join_condition($on));
490 }
491 return join('', @sqlf);
492}
493
db56cf3d 494sub _fold_sqlbind {
495 my ($self, $sqlbind) = @_;
69989ea9 496
497 my @sqlbind = @$$sqlbind; # copy
498 my $sql = shift @sqlbind;
499 push @{$self->{from_bind}}, @sqlbind;
500
db56cf3d 501 return $sql;
6f4ddea1 502}
503
504sub _make_as {
505 my ($self, $from) = @_;
db56cf3d 506 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_
507 : ref $_ eq 'REF' ? $self->_fold_sqlbind($_)
508 : $self->_quote($_))
6f4ddea1 509 } reverse each %{$self->_skip_options($from)});
510}
511
512sub _skip_options {
513 my ($self, $hash) = @_;
514 my $clean_hash = {};
515 $clean_hash->{$_} = $hash->{$_}
516 for grep {!/^-/} keys %$hash;
517 return $clean_hash;
518}
519
520sub _join_condition {
521 my ($self, $cond) = @_;
522 if (ref $cond eq 'HASH') {
523 my %j;
524 for (keys %$cond) {
525 my $v = $cond->{$_};
526 if (ref $v) {
e8fcf76f 527 croak (ref($v) . qq{ reference arguments are not supported in JOINS - try using \"..." instead'})
6f4ddea1 528 if ref($v) ne 'SCALAR';
529 $j{$_} = $v;
530 }
531 else {
532 my $x = '= '.$self->_quote($v); $j{$_} = \$x;
533 }
534 };
535 return scalar($self->_recurse_where(\%j));
536 } elsif (ref $cond eq 'ARRAY') {
537 return join(' OR ', map { $self->_join_condition($_) } @$cond);
538 } else {
539 die "Can't handle this yet!";
540 }
541}
542
543sub _quote {
544 my ($self, $label) = @_;
545 return '' unless defined $label;
546 return "*" if $label eq '*';
547 return $label unless $self->{quote_char};
548 if(ref $self->{quote_char} eq "ARRAY"){
549 return $self->{quote_char}->[0] . $label . $self->{quote_char}->[1]
550 if !defined $self->{name_sep};
551 my $sep = $self->{name_sep};
552 return join($self->{name_sep},
553 map { $self->{quote_char}->[0] . $_ . $self->{quote_char}->[1] }
554 split(/\Q$sep\E/,$label));
555 }
556 return $self->SUPER::_quote($label);
557}
558
559sub limit_dialect {
560 my $self = shift;
561 $self->{limit_dialect} = shift if @_;
562 return $self->{limit_dialect};
563}
564
565sub quote_char {
566 my $self = shift;
567 $self->{quote_char} = shift if @_;
568 return $self->{quote_char};
569}
570
571sub name_sep {
572 my $self = shift;
573 $self->{name_sep} = shift if @_;
574 return $self->{name_sep};
575}
576
5771;
578
579__END__
580
581=pod
582
583=head1 NAME
584
855c6fd0 585DBIx::Class::SQLAHacks - This module is a subclass of SQL::Abstract::Limit
586and includes a number of DBIC-specific workarounds, not yet suitable for
587inclusion into SQLA proper.
6f4ddea1 588
589=head1 METHODS
590
591=head2 new
592
593Tries to determine limit dialect.
594
595=head2 select
596
597Quotes table names, handles "limit" dialects (e.g. where rownum between x and
598y), supports SELECT ... FOR UPDATE and SELECT ... FOR SHARE.
599
600=head2 insert update delete
601
602Just quotes table names.
603
604=head2 limit_dialect
605
606Specifies the dialect of used for implementing an SQL "limit" clause for
607restricting the number of query results returned. Valid values are: RowNum.
608
609See L<DBIx::Class::Storage::DBI/connect_info> for details.
610
611=head2 name_sep
612
613Character separating quoted table names.
614
615See L<DBIx::Class::Storage::DBI/connect_info> for details.
616
617=head2 quote_char
618
619Set to an array-ref to specify separate left and right quotes for table names.
620
621See L<DBIx::Class::Storage::DBI/connect_info> for details.
622
623=cut
624