Do not use 2**32 directly - causes %u differences between 32 and 64bit
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLAHacks.pm
1 package # Hide from PAUSE
2   DBIx::Class::SQLAHacks;
3
4 # This module is a subclass of SQL::Abstract::Limit and includes a number
5 # of DBIC-specific workarounds, not yet suitable for inclusion into the
6 # SQLA core
7
8 use base qw/SQL::Abstract::Limit/;
9 use strict;
10 use warnings;
11 use List::Util 'first';
12 use Sub::Name 'subname';
13 use namespace::clean;
14 use Carp::Clan qw/^DBIx::Class|^SQL::Abstract|^Try::Tiny/;
15
16 BEGIN {
17   # reinstall the carp()/croak() functions imported into SQL::Abstract
18   # as Carp and Carp::Clan do not like each other much
19   no warnings qw/redefine/;
20   no strict qw/refs/;
21   for my $f (qw/carp croak/) {
22
23     my $orig = \&{"SQL::Abstract::$f"};
24     *{"SQL::Abstract::$f"} = subname "SQL::Abstract::$f" =>
25       sub {
26         if (Carp::longmess() =~ /DBIx::Class::SQLAHacks::[\w]+ .+? called \s at/x) {
27           __PACKAGE__->can($f)->(@_);
28         }
29         else {
30           goto $orig;
31         }
32       };
33   }
34 }
35
36 # the "oh noes offset/top without limit" constant
37 sub __max_int { 0xFFFFFFFF };
38
39
40 # Tries to determine limit dialect.
41 #
42 sub new {
43   my $self = shift->SUPER::new(@_);
44
45   # This prevents the caching of $dbh in S::A::L, I believe
46   # If limit_dialect is a ref (like a $dbh), go ahead and replace
47   #   it with what it resolves to:
48   $self->{limit_dialect} = $self->_find_syntax($self->{limit_dialect})
49     if ref $self->{limit_dialect};
50
51   $self;
52 }
53
54 # !!! THIS IS ALSO HORRIFIC !!! /me ashamed
55 #
56 # Generates inner/outer select lists for various limit dialects
57 # which result in one or more subqueries (e.g. RNO, Top, RowNum)
58 # Any non-root-table columns need to have their table qualifier
59 # turned into a column alias (otherwise names in subqueries clash
60 # and/or lose their source table)
61 #
62 # Returns inner/outer strings of SQL QUOTED selectors with aliases
63 # (to be used in whatever select statement), and an alias index hashref
64 # of QUOTED SEL => QUOTED ALIAS pairs (to maybe be used for string-subst
65 # higher up).
66 # If an order_by is supplied, the inner select needs to bring out columns
67 # used in implicit (non-selected) orders, and the order condition itself
68 # needs to be realiased to the proper names in the outer query. Thus we
69 # also return a hashref (order doesn't matter) of QUOTED EXTRA-SEL =>
70 # QUOTED ALIAS pairs, which is a list of extra selectors that do *not*
71 # exist in the original select list
72
73 sub _subqueried_limit_attrs {
74   my ($self, $rs_attrs) = @_;
75
76   croak 'Limit dialect implementation usable only in the context of DBIC (missing $rs_attrs)'
77     unless ref ($rs_attrs) eq 'HASH';
78
79   my ($re_sep, $re_alias) = map { quotemeta $_ } (
80     $self->name_sep || '.',
81     $rs_attrs->{alias},
82   );
83
84   # correlate select and as, build selection index
85   my (@sel, $in_sel_index);
86   for my $i (0 .. $#{$rs_attrs->{select}}) {
87
88     my $s = $rs_attrs->{select}[$i];
89     my $sql_sel = $self->_recurse_fields ($s);
90     my $sql_alias = (ref $s) eq 'HASH' ? $s->{-as} : undef;
91
92
93     push @sel, {
94       sql => $sql_sel,
95       unquoted_sql => do { local $self->{quote_char}; $self->_recurse_fields ($s) },
96       as =>
97         $sql_alias
98           ||
99         $rs_attrs->{as}[$i]
100           ||
101         croak "Select argument $i ($s) without corresponding 'as'"
102       ,
103     };
104
105     $in_sel_index->{$sql_sel}++;
106     $in_sel_index->{$self->_quote ($sql_alias)}++ if $sql_alias;
107
108     # record unqualified versions too, so we do not have
109     # to reselect the same column twice (in qualified and
110     # unqualified form)
111     if (! ref $s && $sql_sel =~ / $re_sep (.+) $/x) {
112       $in_sel_index->{$1}++;
113     }
114   }
115
116
117   # re-alias and remove any name separators from aliases,
118   # unless we are dealing with the current source alias
119   # (which will transcend the subqueries as it is necessary
120   # for possible further chaining)
121   my (@in_sel, @out_sel, %renamed);
122   for my $node (@sel) {
123     if (first { $_ =~ / (?<! $re_alias ) $re_sep /x } ($node->{as}, $node->{unquoted_sql}) )  {
124       $node->{as} =~ s/ $re_sep /__/xg;
125       my $quoted_as = $self->_quote($node->{as});
126       push @in_sel, sprintf '%s AS %s', $node->{sql}, $quoted_as;
127       push @out_sel, $quoted_as;
128       $renamed{$node->{sql}} = $quoted_as;
129     }
130     else {
131       push @in_sel, $node->{sql};
132       push @out_sel, $self->_quote ($node->{as});
133     }
134   }
135
136   # see if the order gives us anything
137   my %extra_order_sel;
138   for my $chunk ($self->_order_by_chunks ($rs_attrs->{order_by})) {
139     # order with bind
140     $chunk = $chunk->[0] if (ref $chunk) eq 'ARRAY';
141     $chunk =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
142
143     next if $in_sel_index->{$chunk};
144
145     $extra_order_sel{$chunk} ||= $self->_quote (
146       'ORDER__BY__' . scalar keys %extra_order_sel
147     );
148   }
149
150   return (
151     (map { join (', ', @$_ ) } (
152       \@in_sel,
153       \@out_sel)
154     ),
155     \%renamed,
156     keys %extra_order_sel ? \%extra_order_sel : (),
157   );
158 }
159
160 # ANSI standard Limit/Offset implementation. DB2 and MSSQL >= 2005 use this
161 sub _RowNumberOver {
162   my ($self, $sql, $rs_attrs, $rows, $offset ) = @_;
163
164   # mangle the input sql as we will be replacing the selector
165   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
166     or croak "Unrecognizable SELECT: $sql";
167
168   # get selectors, and scan the order_by (if any)
169   my ($in_sel, $out_sel, $alias_map, $extra_order_sel)
170     = $self->_subqueried_limit_attrs ( $rs_attrs );
171
172   # make up an order if none exists
173   my $requested_order = (delete $rs_attrs->{order_by}) || $self->_rno_default_order;
174   my $rno_ord = $self->_order_by ($requested_order);
175
176   # this is the order supplement magic
177   my $mid_sel = $out_sel;
178   if ($extra_order_sel) {
179     for my $extra_col (sort
180       { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
181       keys %$extra_order_sel
182     ) {
183       $in_sel .= sprintf (', %s AS %s',
184         $extra_col,
185         $extra_order_sel->{$extra_col},
186       );
187
188       $mid_sel .= ', ' . $extra_order_sel->{$extra_col};
189     }
190   }
191
192   # and this is order re-alias magic
193   for ($extra_order_sel, $alias_map) {
194     for my $col (keys %$_) {
195       my $re_col = quotemeta ($col);
196       $rno_ord =~ s/$re_col/$_->{$col}/;
197     }
198   }
199
200   # whatever is left of the order_by (only where is processed at this point)
201   my $group_having = $self->_parse_rs_attrs($rs_attrs);
202
203   my $qalias = $self->_quote ($rs_attrs->{alias});
204   my $idx_name = $self->_quote ('rno__row__index');
205
206   $sql = sprintf (<<EOS, $offset + 1, $offset + $rows, );
207
208 SELECT $out_sel FROM (
209   SELECT $mid_sel, ROW_NUMBER() OVER( $rno_ord ) AS $idx_name FROM (
210     SELECT $in_sel ${sql}${group_having}
211   ) $qalias
212 ) $qalias WHERE $idx_name BETWEEN %u AND %u
213
214 EOS
215
216   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
217   return $sql;
218 }
219
220 # some databases are happy with OVER (), some need OVER (ORDER BY (SELECT (1)) )
221 sub _rno_default_order {
222   return undef;
223 }
224
225 # Informix specific limit, almost like LIMIT/OFFSET
226 sub _SkipFirst {
227   my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
228
229   $sql =~ s/^ \s* SELECT \s+ //ix
230     or croak "Unrecognizable SELECT: $sql";
231
232   return sprintf ('SELECT %s%s%s%s',
233     $offset
234       ? sprintf ('SKIP %u ', $offset)
235       : ''
236     ,
237     sprintf ('FIRST %u ', $rows),
238     $sql,
239     $self->_parse_rs_attrs ($rs_attrs),
240   );
241 }
242
243 # Firebird specific limit, reverse of _SkipFirst for Informix
244 sub _FirstSkip {
245   my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
246
247   $sql =~ s/^ \s* SELECT \s+ //ix
248     or croak "Unrecognizable SELECT: $sql";
249
250   return sprintf ('SELECT %s%s%s%s',
251     sprintf ('FIRST %u ', $rows),
252     $offset
253       ? sprintf ('SKIP %u ', $offset)
254       : ''
255     ,
256     $sql,
257     $self->_parse_rs_attrs ($rs_attrs),
258   );
259 }
260
261 # WhOracle limits
262 sub _RowNum {
263   my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
264
265   # mangle the input sql as we will be replacing the selector
266   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
267     or croak "Unrecognizable SELECT: $sql";
268
269   my ($insel, $outsel) = $self->_subqueried_limit_attrs ($rs_attrs);
270
271   my $qalias = $self->_quote ($rs_attrs->{alias});
272   my $idx_name = $self->_quote ('rownum__index');
273   my $order_group_having = $self->_parse_rs_attrs($rs_attrs);
274
275   $sql = sprintf (<<EOS, $offset + 1, $offset + $rows, );
276
277 SELECT $outsel FROM (
278   SELECT $outsel, ROWNUM $idx_name FROM (
279     SELECT $insel ${sql}${order_group_having}
280   ) $qalias
281 ) $qalias WHERE $idx_name BETWEEN %u AND %u
282
283 EOS
284
285   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
286   return $sql;
287 }
288
289 # Crappy Top based Limit/Offset support. Legacy for MSSQL < 2005
290 sub _Top {
291   my ( $self, $sql, $rs_attrs, $rows, $offset ) = @_;
292
293   # mangle the input sql as we will be replacing the selector
294   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
295     or croak "Unrecognizable SELECT: $sql";
296
297   # get selectors
298   my ($in_sel, $out_sel, $alias_map, $extra_order_sel)
299     = $self->_subqueried_limit_attrs ($rs_attrs);
300
301   my $requested_order = delete $rs_attrs->{order_by};
302
303   my $order_by_requested = $self->_order_by ($requested_order);
304
305   # make up an order unless supplied
306   my $inner_order = ($order_by_requested
307     ? $requested_order
308     : [ map
309       { join ('', $rs_attrs->{alias}, $self->{name_sep}||'.', $_ ) }
310       ( $rs_attrs->{_rsroot_source_handle}->resolve->_pri_cols )
311     ]
312   );
313
314   my ($order_by_inner, $order_by_reversed);
315
316   # localise as we already have all the bind values we need
317   {
318     local $self->{order_bind};
319     $order_by_inner = $self->_order_by ($inner_order);
320
321     my @out_chunks;
322     for my $ch ($self->_order_by_chunks ($inner_order)) {
323       $ch = $ch->[0] if ref $ch eq 'ARRAY';
324
325       $ch =~ s/\s+ ( ASC|DESC ) \s* $//ix;
326       my $dir = uc ($1||'ASC');
327
328       push @out_chunks, \join (' ', $ch, $dir eq 'ASC' ? 'DESC' : 'ASC' );
329     }
330
331     $order_by_reversed = $self->_order_by (\@out_chunks);
332   }
333
334   # this is the order supplement magic
335   my $mid_sel = $out_sel;
336   if ($extra_order_sel) {
337     for my $extra_col (sort
338       { $extra_order_sel->{$a} cmp $extra_order_sel->{$b} }
339       keys %$extra_order_sel
340     ) {
341       $in_sel .= sprintf (', %s AS %s',
342         $extra_col,
343         $extra_order_sel->{$extra_col},
344       );
345
346       $mid_sel .= ', ' . $extra_order_sel->{$extra_col};
347     }
348
349     # since whatever order bindvals there are, they will be realiased
350     # and need to show up in front of the entire initial inner subquery
351     # Unshift *from_bind* to make this happen (horrible, horrible, but
352     # we don't have another mechanism yet)
353     unshift @{$self->{from_bind}}, @{$self->{order_bind}};
354   }
355
356   # and this is order re-alias magic
357   for my $map ($extra_order_sel, $alias_map) {
358     for my $col (keys %$map) {
359       my $re_col = quotemeta ($col);
360       $_ =~ s/$re_col/$map->{$col}/
361         for ($order_by_reversed, $order_by_requested);
362     }
363   }
364
365   # generate the rest of the sql
366   my $grpby_having = $self->_parse_rs_attrs ($rs_attrs);
367
368   my $quoted_rs_alias = $self->_quote ($rs_attrs->{alias});
369
370   $sql = sprintf ('SELECT TOP %u %s %s %s %s',
371     $rows + ($offset||0),
372     $in_sel,
373     $sql,
374     $grpby_having,
375     $order_by_inner,
376   );
377
378   $sql = sprintf ('SELECT TOP %u %s FROM ( %s ) %s %s',
379     $rows,
380     $mid_sel,
381     $sql,
382     $quoted_rs_alias,
383     $order_by_reversed,
384   ) if $offset;
385
386   $sql = sprintf ('SELECT TOP %u %s FROM ( %s ) %s %s',
387     $rows,
388     $out_sel,
389     $sql,
390     $quoted_rs_alias,
391     $order_by_requested,
392   ) if ( ($offset && $order_by_requested) || ($mid_sel ne $out_sel) );
393
394   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
395   return $sql;
396 }
397
398 # This for Sybase ASE, to use SET ROWCOUNT when there is no offset, and
399 # GenericSubQ otherwise.
400 sub _RowCountOrGenericSubQ {
401   my $self = shift;
402   my ($sql, $rs_attrs, $rows, $offset) = @_;
403
404   return $self->_GenericSubQ(@_) if $offset;
405
406   return sprintf <<"EOF", $rows, $sql;
407 SET ROWCOUNT %d
408 %s
409 SET ROWCOUNT 0
410 EOF
411 }
412
413 # This is the most evil limit "dialect" (more of a hack) for *really*
414 # stupid databases. It works by ordering the set by some unique column,
415 # and calculating amount of rows that have a less-er value (thus
416 # emulating a RowNum-like index). Of course this implies the set can
417 # only be ordered by a single unique columns.
418 sub _GenericSubQ {
419   my ($self, $sql, $rs_attrs, $rows, $offset) = @_;
420
421   my $root_rsrc = $rs_attrs->{_rsroot_source_handle}->resolve;
422   my $root_tbl_name = $root_rsrc->name;
423
424   # mangle the input sql as we will be replacing the selector
425   $sql =~ s/^ \s* SELECT \s+ .+? \s+ (?= \b FROM \b )//ix
426     or croak "Unrecognizable SELECT: $sql";
427
428   my ($order_by, @rest) = do {
429     local $self->{quote_char};
430     $self->_order_by_chunks ($rs_attrs->{order_by})
431   };
432
433   unless (
434     $order_by
435       &&
436     ! @rest
437       &&
438     ( ! ref $order_by
439         ||
440       ( ref $order_by eq 'ARRAY' and @$order_by == 1 )
441     )
442   ) {
443     croak (
444       'Generic Subquery Limit does not work on resultsets without an order, or resultsets '
445     . 'with complex order criteria (multicolumn and/or functions). Provide a single, '
446     . 'unique-column order criteria.'
447     );
448   }
449
450   ($order_by) = @$order_by if ref $order_by;
451
452   $order_by =~ s/\s+ ( ASC|DESC ) \s* $//ix;
453   my $direction = lc ($1 || 'asc');
454
455   my ($unq_sort_col) = $order_by =~ /(?:^|\.)([^\.]+)$/;
456
457   my $inf = $root_rsrc->storage->_resolve_column_info (
458     $rs_attrs->{from}, [$order_by, $unq_sort_col]
459   );
460
461   my $ord_colinfo = $inf->{$order_by} || croak "Unable to determine source of order-criteria '$order_by'";
462
463   if ($ord_colinfo->{-result_source}->name ne $root_tbl_name) {
464     croak "Generic Subquery Limit order criteria can be only based on the root-source '"
465         . $root_rsrc->source_name . "' (aliased as '$rs_attrs->{alias}')";
466   }
467
468   # make sure order column is qualified
469   $order_by = "$rs_attrs->{alias}.$order_by"
470     unless $order_by =~ /^$rs_attrs->{alias}\./;
471
472   my $is_u;
473   my $ucs = { $root_rsrc->unique_constraints };
474   for (values %$ucs ) {
475     if (@$_ == 1 && "$rs_attrs->{alias}.$_->[0]" eq $order_by) {
476       $is_u++;
477       last;
478     }
479   }
480   croak "Generic Subquery Limit order criteria column '$order_by' must be unique (no unique constraint found)"
481     unless $is_u;
482
483   my ($in_sel, $out_sel, $alias_map, $extra_order_sel)
484     = $self->_subqueried_limit_attrs ($rs_attrs);
485
486   my $cmp_op = $direction eq 'desc' ? '>' : '<';
487   my $count_tbl_alias = 'rownum__emulation';
488
489   my $order_sql = $self->_order_by (delete $rs_attrs->{order_by});
490   my $group_having_sql = $self->_parse_rs_attrs($rs_attrs);
491
492   # add the order supplement (if any) as this is what will be used for the outer WHERE
493   $in_sel .= ", $_" for keys %{$extra_order_sel||{}};
494
495   $sql = sprintf (<<EOS,
496 SELECT $out_sel
497   FROM (
498     SELECT $in_sel ${sql}${group_having_sql}
499   ) %s
500 WHERE ( SELECT COUNT(*) FROM %s %s WHERE %s $cmp_op %s ) %s
501 $order_sql
502 EOS
503     ( map { $self->_quote ($_) } (
504       $rs_attrs->{alias},
505       $root_tbl_name,
506       $count_tbl_alias,
507       "$count_tbl_alias.$unq_sort_col",
508       $order_by,
509     )),
510     $offset
511       ? sprintf ('BETWEEN %u AND %u', $offset, $offset + $rows - 1)
512       : sprintf ('< %u', $rows )
513     ,
514   );
515
516   $sql =~ s/\s*\n\s*/ /g;   # easier to read in the debugger
517   return $sql;
518 }
519
520
521 # While we're at it, this should make LIMIT queries more efficient,
522 #  without digging into things too deeply
523 sub _find_syntax {
524   my ($self, $syntax) = @_;
525   return $self->{_cached_syntax} ||= $self->SUPER::_find_syntax($syntax);
526 }
527
528 # Quotes table names, handles "limit" dialects (e.g. where rownum between x and
529 # y)
530 sub select {
531   my ($self, $table, $fields, $where, $rs_attrs, @rest) = @_;
532
533   if (not ref($table) or ref($table) eq 'SCALAR') {
534     $table = $self->_quote($table);
535   }
536
537   @rest = (-1) unless defined $rest[0];
538   croak "LIMIT 0 Does Not Compute" if $rest[0] == 0;
539     # and anyway, SQL::Abstract::Limit will cause a barf if we don't first
540
541   my ($sql, @bind) = $self->SUPER::select(
542     $table, $self->_recurse_fields($fields), $where, $rs_attrs, @rest
543   );
544   push @{$self->{where_bind}}, @bind;
545
546 # this *must* be called, otherwise extra binds will remain in the sql-maker
547   my @all_bind = $self->_assemble_binds;
548
549   return wantarray ? ($sql, @all_bind) : $sql;
550 }
551
552 sub _assemble_binds {
553   my $self = shift;
554   return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/from where having order/);
555 }
556
557 # Quotes table names, and handles default inserts
558 sub insert {
559   my $self = shift;
560   my $table = shift;
561   $table = $self->_quote($table);
562
563   # SQLA will emit INSERT INTO $table ( ) VALUES ( )
564   # which is sadly understood only by MySQL. Change default behavior here,
565   # until SQLA2 comes with proper dialect support
566   if (! $_[0] or (ref $_[0] eq 'HASH' and !keys %{$_[0]} ) ) {
567     my $sql = "INSERT INTO ${table} DEFAULT VALUES";
568
569     if (my $ret = ($_[1]||{})->{returning} ) {
570       $sql .= $self->_insert_returning ($ret);
571     }
572
573     return $sql;
574   }
575
576   $self->SUPER::insert($table, @_);
577 }
578
579 # Just quotes table names.
580 sub update {
581   my $self = shift;
582   my $table = shift;
583   $table = $self->_quote($table);
584   $self->SUPER::update($table, @_);
585 }
586
587 # Just quotes table names.
588 sub delete {
589   my $self = shift;
590   my $table = shift;
591   $table = $self->_quote($table);
592   $self->SUPER::delete($table, @_);
593 }
594
595 sub _emulate_limit {
596   my $self = shift;
597   # my ( $syntax, $sql, $order, $rows, $offset ) = @_;
598
599   if ($_[3] == -1) {
600     return $_[1] . $self->_parse_rs_attrs($_[2]);
601   } else {
602     return $self->SUPER::_emulate_limit(@_);
603   }
604 }
605
606 sub _recurse_fields {
607   my ($self, $fields) = @_;
608   my $ref = ref $fields;
609   return $self->_quote($fields) unless $ref;
610   return $$fields if $ref eq 'SCALAR';
611
612   if ($ref eq 'ARRAY') {
613     return join(', ', map { $self->_recurse_fields($_) } @$fields);
614   }
615   elsif ($ref eq 'HASH') {
616     my %hash = %$fields;  # shallow copy
617
618     my $as = delete $hash{-as};   # if supplied
619
620     my ($func, $args, @toomany) = %hash;
621
622     # there should be only one pair
623     if (@toomany) {
624       croak "Malformed select argument - too many keys in hash: " . join (',', keys %$fields );
625     }
626
627     if (lc ($func) eq 'distinct' && ref $args eq 'ARRAY' && @$args > 1) {
628       croak (
629         'The select => { distinct => ... } syntax is not supported for multiple columns.'
630        .' Instead please use { group_by => [ qw/' . (join ' ', @$args) . '/ ] }'
631        .' or { select => [ qw/' . (join ' ', @$args) . '/ ], distinct => 1 }'
632       );
633     }
634
635     my $select = sprintf ('%s( %s )%s',
636       $self->_sqlcase($func),
637       $self->_recurse_fields($args),
638       $as
639         ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
640         : ''
641     );
642
643     return $select;
644   }
645   # Is the second check absolutely necessary?
646   elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
647     return $self->_fold_sqlbind( $fields );
648   }
649   else {
650     croak($ref . qq{ unexpected in _recurse_fields()})
651   }
652 }
653
654 my $for_syntax = {
655   update => 'FOR UPDATE',
656   shared => 'FOR SHARE',
657 };
658
659 # this used to be a part of _order_by but is broken out for clarity.
660 # What we have been doing forever is hijacking the $order arg of
661 # SQLA::select to pass in arbitrary pieces of data (first the group_by,
662 # then pretty much the entire resultset attr-hash, as more and more
663 # things in the SQLA space need to have mopre info about the $rs they
664 # create SQL for. The alternative would be to keep expanding the
665 # signature of _select with more and more positional parameters, which
666 # is just gross. All hail SQLA2!
667 sub _parse_rs_attrs {
668   my ($self, $arg) = @_;
669
670   my $sql = '';
671
672   if (my $g = $self->_recurse_fields($arg->{group_by}) ) {
673     $sql .= $self->_sqlcase(' group by ') . $g;
674   }
675
676   if (defined $arg->{having}) {
677     my ($frag, @bind) = $self->_recurse_where($arg->{having});
678     push(@{$self->{having_bind}}, @bind);
679     $sql .= $self->_sqlcase(' having ') . $frag;
680   }
681
682   if (defined $arg->{order_by}) {
683     $sql .= $self->_order_by ($arg->{order_by});
684   }
685
686   if (my $for = $arg->{for}) {
687     $sql .= " $for_syntax->{$for}" if $for_syntax->{$for};
688   }
689
690   return $sql;
691 }
692
693 sub _order_by {
694   my ($self, $arg) = @_;
695
696   # check that we are not called in legacy mode (order_by as 4th argument)
697   if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
698     return $self->_parse_rs_attrs ($arg);
699   }
700   else {
701     my ($sql, @bind) = $self->SUPER::_order_by ($arg);
702     push @{$self->{order_bind}}, @bind;
703     return $sql;
704   }
705 }
706
707 sub _order_directions {
708   my ($self, $order) = @_;
709
710   # strip bind values - none of the current _order_directions users support them
711   return $self->SUPER::_order_directions( [ map
712     { ref $_ ? $_->[0] : $_ }
713     $self->_order_by_chunks ($order)
714   ]);
715 }
716
717 sub _table {
718   my ($self, $from) = @_;
719   if (ref $from eq 'ARRAY') {
720     return $self->_recurse_from(@$from);
721   } elsif (ref $from eq 'HASH') {
722     return $self->_make_as($from);
723   } else {
724     return $from; # would love to quote here but _table ends up getting called
725                   # twice during an ->select without a limit clause due to
726                   # the way S::A::Limit->select works. should maybe consider
727                   # bypassing this and doing S::A::select($self, ...) in
728                   # our select method above. meantime, quoting shims have
729                   # been added to select/insert/update/delete here
730   }
731 }
732
733 sub _generate_join_clause {
734     my ($self, $join_type) = @_;
735
736     return sprintf ('%s JOIN ',
737       $join_type ?  ' ' . uc($join_type) : ''
738     );
739 }
740
741 sub _recurse_from {
742   my ($self, $from, @join) = @_;
743   my @sqlf;
744   push(@sqlf, $self->_make_as($from));
745   foreach my $j (@join) {
746     my ($to, $on) = @$j;
747
748
749     # check whether a join type exists
750     my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
751     my $join_type;
752     if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
753       $join_type = $to_jt->{-join_type};
754       $join_type =~ s/^\s+ | \s+$//xg;
755     }
756
757     $join_type = $self->{_default_jointype} if not defined $join_type;
758
759     push @sqlf, $self->_generate_join_clause( $join_type );
760
761     if (ref $to eq 'ARRAY') {
762       push(@sqlf, '(', $self->_recurse_from(@$to), ')');
763     } else {
764       push(@sqlf, $self->_make_as($to));
765     }
766     push(@sqlf, ' ON ', $self->_join_condition($on));
767   }
768   return join('', @sqlf);
769 }
770
771 sub _fold_sqlbind {
772   my ($self, $sqlbind) = @_;
773
774   my @sqlbind = @$$sqlbind; # copy
775   my $sql = shift @sqlbind;
776   push @{$self->{from_bind}}, @sqlbind;
777
778   return $sql;
779 }
780
781 sub _make_as {
782   my ($self, $from) = @_;
783   return join(' ', map { (ref $_ eq 'SCALAR' ? $$_
784                         : ref $_ eq 'REF'    ? $self->_fold_sqlbind($_)
785                         : $self->_quote($_))
786                        } reverse each %{$self->_skip_options($from)});
787 }
788
789 sub _skip_options {
790   my ($self, $hash) = @_;
791   my $clean_hash = {};
792   $clean_hash->{$_} = $hash->{$_}
793     for grep {!/^-/} keys %$hash;
794   return $clean_hash;
795 }
796
797 sub _join_condition {
798   my ($self, $cond) = @_;
799   if (ref $cond eq 'HASH') {
800     my %j;
801     for (keys %$cond) {
802       my $v = $cond->{$_};
803       if (ref $v) {
804         croak (ref($v) . qq{ reference arguments are not supported in JOINS - try using \"..." instead'})
805             if ref($v) ne 'SCALAR';
806         $j{$_} = $v;
807       }
808       else {
809         my $x = '= '.$self->_quote($v); $j{$_} = \$x;
810       }
811     };
812     return scalar($self->_recurse_where(\%j));
813   } elsif (ref $cond eq 'ARRAY') {
814     return join(' OR ', map { $self->_join_condition($_) } @$cond);
815   } else {
816     die "Can't handle this yet!";
817   }
818 }
819
820 sub limit_dialect {
821     my $self = shift;
822     if (@_) {
823       $self->{limit_dialect} = shift;
824       undef $self->{_cached_syntax};
825     }
826     return $self->{limit_dialect};
827 }
828
829 # Set to an array-ref to specify separate left and right quotes for table names.
830 # A single scalar is equivalen to [ $char, $char ]
831 sub quote_char {
832     my $self = shift;
833     $self->{quote_char} = shift if @_;
834     return $self->{quote_char};
835 }
836
837 # Character separating quoted table names.
838 sub name_sep {
839     my $self = shift;
840     $self->{name_sep} = shift if @_;
841     return $self->{name_sep};
842 }
843
844 1;