correctly carry DESC on simple orderings for complex prefetch
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBIHacks.pm
1 package   #hide from PAUSE
2   DBIx::Class::Storage::DBIHacks;
3
4 #
5 # This module contains code that should never have seen the light of day,
6 # does not belong in the Storage, or is otherwise unfit for public
7 # display. The arrival of SQLA2 should immediately obsolete 90% of this
8 #
9
10 use strict;
11 use warnings;
12
13 use base 'DBIx::Class::Storage';
14 use mro 'c3';
15
16 use List::Util 'first';
17 use Scalar::Util 'blessed';
18 use Sub::Name 'subname';
19 use Data::Query::ExprHelpers;
20 use namespace::clean;
21
22 #
23 # This code will remove non-selecting/non-restricting joins from
24 # {from} specs, aiding the RDBMS query optimizer
25 #
26 sub _prune_unused_joins {
27   my $self = shift;
28   my ($from, $select, $where, $attrs) = @_;
29
30   return $from unless $self->_use_join_optimizer;
31
32   if (ref $from ne 'ARRAY' || ref $from->[0] ne 'HASH' || ref $from->[1] ne 'ARRAY') {
33     return $from;   # only standard {from} specs are supported
34   }
35
36   my $aliastypes = $self->_resolve_aliastypes_from_select_args(@_);
37
38   my $orig_joins = delete $aliastypes->{joining};
39   my $orig_multiplying = $aliastypes->{multiplying};
40
41   # a grouped set will not be affected by amount of rows. Thus any
42   # {multiplying} joins can go
43   delete $aliastypes->{multiplying}
44     if $attrs->{_force_prune_multiplying_joins} or $attrs->{group_by};
45
46   my @newfrom = $from->[0]; # FROM head is always present
47
48   my %need_joins;
49
50   for (values %$aliastypes) {
51     # add all requested aliases
52     $need_joins{$_} = 1 for keys %$_;
53
54     # add all their parents (as per joinpath which is an AoH { table => alias })
55     $need_joins{$_} = 1 for map { values %$_ } map { @{$_->{-parents}} } values %$_;
56   }
57
58   for my $j (@{$from}[1..$#$from]) {
59     push @newfrom, $j if (
60       (! defined $j->[0]{-alias}) # legacy crap
61         ||
62       $need_joins{$j->[0]{-alias}}
63     );
64   }
65
66   return ( \@newfrom, {
67     multiplying => { map { $need_joins{$_} ? ($_  => $orig_multiplying->{$_}) : () } keys %$orig_multiplying },
68     %$aliastypes,
69     joining => { map { $_ => $orig_joins->{$_} } keys %need_joins },
70   } );
71 }
72
73 #
74 # This is the code producing joined subqueries like:
75 # SELECT me.*, other.* FROM ( SELECT me.* FROM ... ) JOIN other ON ...
76 #
77 sub _adjust_select_args_for_complex_prefetch {
78   my ($self, $from, $select, $where, $attrs) = @_;
79
80   $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
81     if (ref $from ne 'ARRAY' || ref $from->[0] ne 'HASH' || ref $from->[1] ne 'ARRAY');
82
83   my $root_alias = $attrs->{alias};
84
85   # generate inner/outer attribute lists, remove stuff that doesn't apply
86   my $outer_attrs = { %$attrs };
87   delete @{$outer_attrs}{qw(where bind rows offset group_by _grouped_by_distinct having)};
88
89   my $inner_attrs = { %$attrs };
90   delete @{$inner_attrs}{qw(from for collapse select as _related_results_construction)};
91
92   # there is no point of ordering the insides if there is no limit
93   delete $inner_attrs->{order_by} if (
94     delete $inner_attrs->{_order_is_artificial}
95       or
96     ! $inner_attrs->{rows}
97   );
98
99   # generate the inner/outer select lists
100   # for inside we consider only stuff *not* brought in by the prefetch
101   # on the outside we substitute any function for its alias
102   my $outer_select = [ @$select ];
103   my $inner_select;
104
105   my ($root_node, $root_node_offset);
106
107   for my $i (0 .. $#$from) {
108     my $node = $from->[$i];
109     my $h = (ref $node eq 'HASH')                                ? $node
110           : (ref $node  eq 'ARRAY' and ref $node->[0] eq 'HASH') ? $node->[0]
111           : next
112     ;
113
114     if ( ($h->{-alias}||'') eq $root_alias and $h->{-rsrc} ) {
115       $root_node = $h;
116       $root_node_offset = $i;
117       last;
118     }
119   }
120
121   $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
122     unless $root_node;
123
124   # use the heavy duty resolver to take care of aliased/nonaliased naming
125   my $colinfo = $self->_resolve_column_info($from);
126   my $selected_root_columns;
127
128   for my $i (0 .. $#$outer_select) {
129     my $sel = $outer_select->[$i];
130
131     next if (
132       $colinfo->{$sel} and $colinfo->{$sel}{-source_alias} ne $root_alias
133     );
134
135     if (ref $sel eq 'HASH' ) {
136       $sel->{-as} ||= $attrs->{as}[$i];
137       $outer_select->[$i] = join ('.', $root_alias, ($sel->{-as} || "inner_column_$i") );
138     }
139     elsif (! ref $sel and my $ci = $colinfo->{$sel}) {
140       $selected_root_columns->{$ci->{-colname}} = 1;
141     }
142
143     push @$inner_select, $sel;
144
145     push @{$inner_attrs->{as}}, $attrs->{as}[$i];
146   }
147
148   # We will need to fetch all native columns in the inner subquery, which may
149   # be a part of an *outer* join condition, or an order_by (which needs to be
150   # preserved outside)
151   # We can not just fetch everything because a potential has_many restricting
152   # join collapse *will not work* on heavy data types.
153   my $connecting_aliastypes = $self->_resolve_aliastypes_from_select_args(
154     $from,
155     undef,
156     $where,
157     $inner_attrs
158   );
159
160   for (sort map { keys %{$_->{-seen_columns}||{}} } map { values %$_ } values %$connecting_aliastypes) {
161     my $ci = $colinfo->{$_} or next;
162     if (
163       $ci->{-source_alias} eq $root_alias
164         and
165       ! $selected_root_columns->{$ci->{-colname}}++
166     ) {
167       # adding it to both to keep limits not supporting dark selectors happy
168       push @$inner_select, $ci->{-fq_colname};
169       push @{$inner_attrs->{as}}, $ci->{-fq_colname};
170     }
171   }
172
173   # construct the inner $from and lock it in a subquery
174   # we need to prune first, because this will determine if we need a group_by below
175   # throw away all non-selecting, non-restricting multijoins
176   # (since we def. do not care about multiplication those inside the subquery)
177   my $inner_subq = do {
178
179     # must use it here regardless of user requests
180     local $self->{_use_join_optimizer} = 1;
181
182     # throw away multijoins since we def. do not care about those inside the subquery
183     my ($inner_from, $inner_aliastypes) = $self->_prune_unused_joins ($from, $inner_select, $where, {
184       %$inner_attrs, _force_prune_multiplying_joins => 1
185     });
186
187     # uh-oh a multiplier (which is not us) left in, this is a problem
188     if (
189       $inner_aliastypes->{multiplying}
190         and
191       # if there are user-supplied groups - assume user knows wtf they are up to
192       ( ! $inner_aliastypes->{grouping} or $inner_attrs->{_grouped_by_distinct} )
193         and
194       my @multipliers = grep { $_ ne $root_alias } keys %{$inner_aliastypes->{multiplying}}
195     ) {
196
197       # if none of the multipliers came from an order_by (guaranteed to have been combined
198       # with a limit) - easy - just slap a group_by to simulate a collapse and be on our way
199       if (
200         ! $inner_aliastypes->{ordering}
201           or
202         ! first { $inner_aliastypes->{ordering}{$_} } @multipliers
203       ) {
204
205         my $unprocessed_order_chunks;
206         ($inner_attrs->{group_by}, $unprocessed_order_chunks) = $self->_group_over_selection ({
207           %$inner_attrs,
208           from => $inner_from,
209           select => $inner_select,
210         });
211
212         $self->throw_exception (
213           'A required group_by clause could not be constructed automatically due to a complex '
214         . 'order_by criteria. Either order_by columns only (no functions) or construct a suitable '
215         . 'group_by by hand'
216         )  if $unprocessed_order_chunks;
217       }
218       else {
219         # We need to order by external columns and group at the same time
220         # so we can calculate the proper limit
221         # This doesn't really make sense in SQL, however from DBICs point
222         # of view is rather valid (order the leftmost objects by whatever
223         # criteria and get the offset/rows many). There is a way around
224         # this however in SQL - we simply tae the direction of each piece
225         # of the foreign order and convert them to MIN(X) for ASC or MAX(X)
226         # for DESC, and group_by the root columns. The end result should be
227         # exactly what we expect
228
229         # supplement the main selection with pks if not already there,
230         # as they will have to be a part of the group_by to collapse
231         # things properly
232         my $cur_sel = { map { $_ => 1 } @$inner_select };
233
234         my @pks = map { "$root_alias.$_" } $root_node->{-rsrc}->primary_columns
235           or $self->throw_exception( sprintf
236             'Unable to perform complex limited prefetch off %s without declared primary key',
237             $root_node->{-rsrc}->source_name,
238           );
239         for my $col (@pks) {
240           push @$inner_select, $col
241             unless $cur_sel->{$col}++;
242         }
243
244         # wrap any part of the order_by that "responds" to an ordering alias
245         # into a MIN/MAX
246         # FIXME - this code is a joke, will need to be completely rewritten in
247         # the DQ branch. But I need to push a POC here, otherwise the
248         # pesky tests won't pass
249         my $sql_maker = $self->sql_maker;
250         my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
251         my $own_re = qr/ $lquote \Q$root_alias\E $rquote $sep | \b \Q$root_alias\E $sep /x;
252         my $inner_columns_info = $self->_resolve_column_info($inner_from);
253
254         my $order_dq = $sql_maker->converter
255                                  ->_order_by_to_dq($attrs->{order_by});
256
257         my @new_order;
258
259         # loop through and replace stuff that is not "ours" with a min/max func
260         # everything is a literal at this point, since we are likely properly
261         # quoted and stuff
262         while (is_Order($order_dq)) {
263           my ($chunk, @args) = $sql_maker->_render_dq($order_dq->{by});
264
265           my $is_desc = $order_dq->{reverse};
266
267           push @new_order, \[ $chunk.($is_desc ? ' DESC' : ''), @args ];
268
269           $order_dq = $order_dq->{from};
270
271           # skip ourselves
272           next if $chunk =~ $own_re;
273
274           # maybe our own unqualified column
275           my $ord_bit = (
276             $lquote and $sep and $chunk =~ /^ $lquote ([^$sep]+) $rquote $/x
277           ) ? $1 : $chunk;
278
279           next if (
280             $ord_bit
281               and
282             $inner_columns_info->{$ord_bit}
283               and
284             $inner_columns_info->{$ord_bit}{-source_alias} eq $root_alias
285           );
286
287           $new_order[-1] = \[
288             sprintf(
289               '%s(%s)%s',
290               ($is_desc ? 'MAX' : 'MIN'),
291               $chunk,
292               ($is_desc ? ' DESC' : ''),
293             ),
294             @args
295           ];
296         }
297
298         $inner_attrs->{order_by} = \@new_order;
299
300         # do not care about leftovers here - it will be all the functions
301         # we just created
302         ($inner_attrs->{group_by}) = $self->_group_over_selection ({
303           %$inner_attrs,
304           from => $inner_from,
305           select => $inner_select,
306         });
307       }
308     }
309
310     # we already optimized $inner_from above
311     # and already local()ized
312     $self->{_use_join_optimizer} = 0;
313
314     # generate the subquery
315     $self->_select_args_to_query (
316       $inner_from,
317       $inner_select,
318       $where,
319       $inner_attrs,
320     );
321   };
322
323   # Generate the outer from - this is relatively easy (really just replace
324   # the join slot with the subquery), with a major caveat - we can not
325   # join anything that is non-selecting (not part of the prefetch), but at
326   # the same time is a multi-type relationship, as it will explode the result.
327   #
328   # There are two possibilities here
329   # - either the join is non-restricting, in which case we simply throw it away
330   # - it is part of the restrictions, in which case we need to collapse the outer
331   #   result by tackling yet another group_by to the outside of the query
332
333   # work on a shallow copy
334   $from = [ @$from ];
335
336   my @outer_from;
337
338   # we may not be the head
339   if ($root_node_offset) {
340     # first generate the outer_from, up and including the substitution point
341     @outer_from = splice @$from, 0, $root_node_offset;
342
343     push @outer_from, [
344       {
345         -alias => $root_alias,
346         -rsrc => $root_node->{-rsrc},
347         $root_alias => $inner_subq,
348       },
349       @{$from->[0]}[1 .. $#{$from->[0]}],
350     ];
351   }
352   else {
353     @outer_from = {
354       -alias => $root_alias,
355       -rsrc => $root_node->{-rsrc},
356       $root_alias => $inner_subq,
357     };
358   }
359
360   shift @$from; # what we just replaced above
361
362   # scan the *remaining* from spec against different attributes, and see which joins are needed
363   # in what role
364   my $outer_aliastypes = $outer_attrs->{_aliastypes} =
365     $self->_resolve_aliastypes_from_select_args( $from, $outer_select, $where, $outer_attrs );
366
367   # unroll parents
368   my ($outer_select_chain, @outer_nonselecting_chains) = map { +{
369     map { $_ => 1 } map { values %$_} map { @{$_->{-parents}} } values %{ $outer_aliastypes->{$_} || {} }
370   } } qw/selecting restricting grouping ordering/;
371
372   # see what's left - throw away if not selecting/restricting
373   # also throw in a group_by if a non-selecting multiplier,
374   # to guard against cross-join explosions
375   my $need_outer_group_by;
376   while (my $j = shift @$from) {
377     my $alias = $j->[0]{-alias};
378
379     if (
380       $outer_select_chain->{$alias}
381     ) {
382       push @outer_from, $j
383     }
384     elsif (first { $_->{$alias} } @outer_nonselecting_chains ) {
385       push @outer_from, $j;
386       $need_outer_group_by ||= $outer_aliastypes->{multiplying}{$alias} ? 1 : 0;
387     }
388   }
389
390   if ( $need_outer_group_by and $attrs->{_grouped_by_distinct} ) {
391     my $unprocessed_order_chunks;
392     ($outer_attrs->{group_by}, $unprocessed_order_chunks) = $self->_group_over_selection ({
393       %$outer_attrs,
394       from => \@outer_from,
395       select => $outer_select,
396     });
397
398     $self->throw_exception (
399       'A required group_by clause could not be constructed automatically due to a complex '
400     . 'order_by criteria. Either order_by columns only (no functions) or construct a suitable '
401     . 'group_by by hand'
402     ) if $unprocessed_order_chunks;
403
404   }
405
406   # This is totally horrific - the $where ends up in both the inner and outer query
407   # Unfortunately not much can be done until SQLA2 introspection arrives, and even
408   # then if where conditions apply to the *right* side of the prefetch, you may have
409   # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
410   # the outer select to exclude joins you didn't want in the first place
411   #
412   # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
413   return (\@outer_from, $outer_select, $where, $outer_attrs);
414 }
415
416 #
417 # I KNOW THIS SUCKS! GET SQLA2 OUT THE DOOR SO THIS CAN DIE!
418 #
419 # Due to a lack of SQLA2 we fall back to crude scans of all the
420 # select/where/order/group attributes, in order to determine what
421 # aliases are needed to fulfill the query. This information is used
422 # throughout the code to prune unnecessary JOINs from the queries
423 # in an attempt to reduce the execution time.
424 # Although the method is pretty horrific, the worst thing that can
425 # happen is for it to fail due to some scalar SQL, which in turn will
426 # result in a vocal exception.
427 sub _resolve_aliastypes_from_select_args {
428   my ( $self, $from, $select, $where, $attrs ) = @_;
429
430   $self->throw_exception ('Unable to analyze custom {from}')
431     if ref $from ne 'ARRAY';
432
433   # what we will return
434   my $aliases_by_type;
435
436   # see what aliases are there to work with
437   my $alias_list;
438   for (@$from) {
439     my $j = $_;
440     $j = $j->[0] if ref $j eq 'ARRAY';
441     my $al = $j->{-alias}
442       or next;
443
444     $alias_list->{$al} = $j;
445     $aliases_by_type->{multiplying}{$al} ||= { -parents => $j->{-join_path}||[] } if (
446       # not array == {from} head == can't be multiplying
447       ( ref($_) eq 'ARRAY' and ! $j->{-is_single} )
448         or
449       # a parent of ours is already a multiplier
450       ( grep { $aliases_by_type->{multiplying}{$_} } @{ $j->{-join_path}||[] } )
451     );
452   }
453
454   # get a column to source/alias map (including unambiguous unqualified ones)
455   my $colinfo = $self->_resolve_column_info ($from);
456
457   # set up a botched SQLA
458   my $sql_maker = $self->sql_maker;
459
460   # these are throw away results, do not pollute the bind stack
461   local $sql_maker->{select_bind};
462   local $sql_maker->{where_bind};
463   local $sql_maker->{group_bind};
464   local $sql_maker->{having_bind};
465   local $sql_maker->{from_bind};
466
467   # we can't scan properly without any quoting (\b doesn't cut it
468   # everywhere), so unless there is proper quoting set - use our
469   # own weird impossible character.
470   # Also in the case of no quoting, we need to explicitly disable
471   # name_sep, otherwise sorry nasty legacy syntax like
472   # { 'count(foo.id)' => { '>' => 3 } } will stop working >:(
473   local $sql_maker->{quote_char} = $sql_maker->{quote_char};
474   local $sql_maker->{name_sep} = $sql_maker->{name_sep};
475
476   unless (defined $sql_maker->{quote_char} and length $sql_maker->{quote_char}) {
477     $sql_maker->{quote_char} = ["\x00", "\xFF"];
478     # if we don't unset it we screw up retarded but unfortunately working
479     # 'MAX(foo.bar)' => { '>', 3 }
480     $sql_maker->{name_sep} = '';
481   }
482
483   # local is not enough - need to ensure the inner objects get rebuilt
484   $sql_maker->clear_renderer;
485   $sql_maker->clear_converter;
486
487   my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
488
489   # generate sql chunks
490   my $to_scan = {
491     restricting => [
492       ($where
493         ? ($sql_maker->_recurse_where($where))[0]
494         : ()
495       ),
496       ($attrs->{having}
497         ? ($sql_maker->_recurse_where($attrs->{having}))[0]
498         : ()
499       ),
500     ],
501     grouping => [
502       ($attrs->{group_by}
503         ? ($sql_maker->_render_sqla(group_by => $attrs->{group_by}))[0]
504         : (),
505       )
506     ],
507     joining => [
508       $sql_maker->_recurse_from (
509         ref $from->[0] eq 'ARRAY' ? $from->[0][0] : $from->[0],
510         @{$from}[1 .. $#$from],
511       ),
512     ],
513     selecting => [
514       ($select
515         ? ($sql_maker->_render_sqla(select_select => $select))[0]
516         : ()),
517     ],
518     ordering => [
519       map { $_->[0] } $self->_extract_order_criteria ($attrs->{order_by}, $sql_maker),
520     ],
521   };
522
523   # local is not enough - need to ensure the inner objects get rebuilt
524   $sql_maker->clear_renderer;
525   $sql_maker->clear_converter;
526
527   # throw away empty chunks
528   $_ = [ map { $_ || () } @$_ ] for values %$to_scan;
529
530   # first see if we have any exact matches (qualified or unqualified)
531   for my $type (keys %$to_scan) {
532     for my $piece (@{$to_scan->{$type}}) {
533       if ($colinfo->{$piece} and my $alias = $colinfo->{$piece}{-source_alias}) {
534         $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
535         $aliases_by_type->{$type}{$alias}{-seen_columns}{$colinfo->{$piece}{-fq_colname}} = $piece;
536       }
537     }
538   }
539
540   # now loop through all fully qualified columns and get the corresponding
541   # alias (should work even if they are in scalarrefs)
542   for my $alias (keys %$alias_list) {
543     my $al_re = qr/
544       $lquote $alias $rquote $sep (?: $lquote ([^$rquote]+) $rquote )?
545         |
546       \b $alias \. ([^\s\)\($rquote]+)?
547     /x;
548
549     for my $type (keys %$to_scan) {
550       for my $piece (@{$to_scan->{$type}}) {
551         if (my @matches = $piece =~ /$al_re/g) {
552           $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
553           $aliases_by_type->{$type}{$alias}{-seen_columns}{"$alias.$_"} = "$alias.$_"
554             for grep { defined $_ } @matches;
555         }
556       }
557     }
558   }
559
560   # now loop through unqualified column names, and try to locate them within
561   # the chunks
562   for my $col (keys %$colinfo) {
563     next if $col =~ / \. /x;   # if column is qualified it was caught by the above
564
565     my $col_re = qr/ $lquote ($col) $rquote /x;
566
567     for my $type (keys %$to_scan) {
568       for my $piece (@{$to_scan->{$type}}) {
569         if ( my @matches = $piece =~ /$col_re/g) {
570           my $alias = $colinfo->{$col}{-source_alias};
571           $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
572           $aliases_by_type->{$type}{$alias}{-seen_columns}{"$alias.$_"} = $_
573             for grep { defined $_ } @matches;
574         }
575       }
576     }
577   }
578
579   # Add any non-left joins to the restriction list (such joins are indeed restrictions)
580   for my $j (values %$alias_list) {
581     my $alias = $j->{-alias} or next;
582     $aliases_by_type->{restricting}{$alias} ||= { -parents => $j->{-join_path}||[] } if (
583       (not $j->{-join_type})
584         or
585       ($j->{-join_type} !~ /^left (?: \s+ outer)? $/xi)
586     );
587   }
588
589   for (keys %$aliases_by_type) {
590     delete $aliases_by_type->{$_} unless keys %{$aliases_by_type->{$_}};
591   }
592
593   return $aliases_by_type;
594 }
595
596 # This is the engine behind { distinct => 1 }
597 sub _group_over_selection {
598   my ($self, $attrs) = @_;
599
600   my $colinfos = $self->_resolve_column_info ($attrs->{from});
601
602   my (@group_by, %group_index);
603
604   # the logic is: if it is a { func => val } we assume an aggregate,
605   # otherwise if \'...' or \[...] we assume the user knows what is
606   # going on thus group over it
607   for (@{$attrs->{select}}) {
608     if (! ref($_) or ref ($_) ne 'HASH' ) {
609       push @group_by, $_;
610       $group_index{$_}++;
611       if ($colinfos->{$_} and $_ !~ /\./ ) {
612         # add a fully qualified version as well
613         $group_index{"$colinfos->{$_}{-source_alias}.$_"}++;
614       }
615     }
616   }
617
618   # add any order_by parts *from the main source* that are not already
619   # present in the group_by
620   # we need to be careful not to add any named functions/aggregates
621   # i.e. order_by => [ ... { count => 'foo' } ... ]
622   my @leftovers;
623   for ($self->_extract_order_criteria($attrs->{order_by})) {
624     # only consider real columns (for functions the user got to do an explicit group_by)
625     if (@$_ != 1) {
626       push @leftovers, $_;
627       next;
628     }
629     my $chunk = $_->[0];
630
631     if (
632       !$colinfos->{$chunk}
633         or
634       $colinfos->{$chunk}{-source_alias} ne $attrs->{alias}
635     ) {
636       push @leftovers, $_;
637       next;
638     }
639
640     $chunk = $colinfos->{$chunk}{-fq_colname};
641     push @group_by, $chunk unless $group_index{$chunk}++;
642   }
643
644   return wantarray
645     ? (\@group_by, (@leftovers ? \@leftovers : undef) )
646     : \@group_by
647   ;
648 }
649
650 sub _resolve_ident_sources {
651   my ($self, $ident) = @_;
652
653   my $alias2source = {};
654
655   # the reason this is so contrived is that $ident may be a {from}
656   # structure, specifying multiple tables to join
657   if ( blessed $ident && $ident->isa("DBIx::Class::ResultSource") ) {
658     # this is compat mode for insert/update/delete which do not deal with aliases
659     $alias2source->{me} = $ident;
660   }
661   elsif (ref $ident eq 'ARRAY') {
662
663     for (@$ident) {
664       my $tabinfo;
665       if (ref $_ eq 'HASH') {
666         $tabinfo = $_;
667       }
668       if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
669         $tabinfo = $_->[0];
670       }
671
672       $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-rsrc}
673         if ($tabinfo->{-rsrc});
674     }
675   }
676
677   return $alias2source;
678 }
679
680 # Takes $ident, \@column_names
681 #
682 # returns { $column_name => \%column_info, ... }
683 # also note: this adds -result_source => $rsrc to the column info
684 #
685 # If no columns_names are supplied returns info about *all* columns
686 # for all sources
687 sub _resolve_column_info {
688   my ($self, $ident, $colnames) = @_;
689   my $alias2src = $self->_resolve_ident_sources($ident);
690
691   my (%seen_cols, @auto_colnames);
692
693   # compile a global list of column names, to be able to properly
694   # disambiguate unqualified column names (if at all possible)
695   for my $alias (keys %$alias2src) {
696     my $rsrc = $alias2src->{$alias};
697     for my $colname ($rsrc->columns) {
698       push @{$seen_cols{$colname}}, $alias;
699       push @auto_colnames, "$alias.$colname" unless $colnames;
700     }
701   }
702
703   $colnames ||= [
704     @auto_colnames,
705     grep { @{$seen_cols{$_}} == 1 } (keys %seen_cols),
706   ];
707
708   my (%return, $colinfos);
709   foreach my $col (@$colnames) {
710     my ($source_alias, $colname) = $col =~ m/^ (?: ([^\.]+) \. )? (.+) $/x;
711
712     # if the column was seen exactly once - we know which rsrc it came from
713     $source_alias ||= $seen_cols{$colname}[0]
714       if ($seen_cols{$colname} and @{$seen_cols{$colname}} == 1);
715
716     next unless $source_alias;
717
718     my $rsrc = $alias2src->{$source_alias}
719       or next;
720
721     $return{$col} = {
722       %{
723           ( $colinfos->{$source_alias} ||= $rsrc->columns_info )->{$colname}
724             ||
725           $self->throw_exception(
726             "No such column '$colname' on source " . $rsrc->source_name
727           );
728       },
729       -result_source => $rsrc,
730       -source_alias => $source_alias,
731       -fq_colname => $col eq $colname ? "$source_alias.$col" : $col,
732       -colname => $colname,
733     };
734
735     $return{"$source_alias.$colname"} = $return{$col} if $col eq $colname;
736   }
737
738   return \%return;
739 }
740
741 # The DBIC relationship chaining implementation is pretty simple - every
742 # new related_relationship is pushed onto the {from} stack, and the {select}
743 # window simply slides further in. This means that when we count somewhere
744 # in the middle, we got to make sure that everything in the join chain is an
745 # actual inner join, otherwise the count will come back with unpredictable
746 # results (a resultset may be generated with _some_ rows regardless of if
747 # the relation which the $rs currently selects has rows or not). E.g.
748 # $artist_rs->cds->count - normally generates:
749 # SELECT COUNT( * ) FROM artist me LEFT JOIN cd cds ON cds.artist = me.artistid
750 # which actually returns the number of artists * (number of cds || 1)
751 #
752 # So what we do here is crawl {from}, determine if the current alias is at
753 # the top of the stack, and if not - make sure the chain is inner-joined down
754 # to the root.
755 #
756 sub _inner_join_to_node {
757   my ($self, $from, $alias) = @_;
758
759   # subqueries and other oddness are naturally not supported
760   return $from if (
761     ref $from ne 'ARRAY'
762       ||
763     @$from <= 1
764       ||
765     ref $from->[0] ne 'HASH'
766       ||
767     ! $from->[0]{-alias}
768       ||
769     $from->[0]{-alias} eq $alias  # this last bit means $alias is the head of $from - nothing to do
770   );
771
772   # find the current $alias in the $from structure
773   my $switch_branch;
774   JOINSCAN:
775   for my $j (@{$from}[1 .. $#$from]) {
776     if ($j->[0]{-alias} eq $alias) {
777       $switch_branch = $j->[0]{-join_path};
778       last JOINSCAN;
779     }
780   }
781
782   # something else went quite wrong
783   return $from unless $switch_branch;
784
785   # So it looks like we will have to switch some stuff around.
786   # local() is useless here as we will be leaving the scope
787   # anyway, and deep cloning is just too fucking expensive
788   # So replace the first hashref in the node arrayref manually
789   my @new_from = ($from->[0]);
790   my $sw_idx = { map { (values %$_), 1 } @$switch_branch }; #there's one k/v per join-path
791
792   for my $j (@{$from}[1 .. $#$from]) {
793     my $jalias = $j->[0]{-alias};
794
795     if ($sw_idx->{$jalias}) {
796       my %attrs = %{$j->[0]};
797       delete $attrs{-join_type};
798       push @new_from, [
799         \%attrs,
800         @{$j}[ 1 .. $#$j ],
801       ];
802     }
803     else {
804       push @new_from, $j;
805     }
806   }
807
808   return \@new_from;
809 }
810
811 sub _extract_order_criteria {
812   my ($self, $order_by, $sql_maker) = @_;
813
814   $sql_maker ||= $self->sql_maker;
815
816   my $order_dq = $sql_maker->converter->_order_by_to_dq($order_by);
817
818   my @by;
819   while (is_Order($order_dq)) {
820     push @by, $order_dq->{by};
821     $order_dq = $order_dq->{from};
822   }
823
824   return map { [ $sql_maker->_render_dq($_) ] } @by;
825
826   my $parser = sub {
827     my ($sql_maker, $order_by, $orig_quote_chars) = @_;
828
829     return scalar $sql_maker->_order_by_chunks ($order_by)
830       unless wantarray;
831
832     my ($lq, $rq, $sep) = map { quotemeta($_) } (
833       ($orig_quote_chars ? @$orig_quote_chars : $sql_maker->_quote_chars),
834       $sql_maker->name_sep
835     );
836
837     my @chunks;
838     for ($sql_maker->_order_by_chunks ($order_by) ) {
839       my $chunk = ref $_ ? [ @$_ ] : [ $_ ];
840       ($chunk->[0]) = $sql_maker->_split_order_chunk($chunk->[0]);
841
842       # order criteria may have come back pre-quoted (literals and whatnot)
843       # this is fragile, but the best we can currently do
844       $chunk->[0] =~ s/^ $lq (.+?) $rq $sep $lq (.+?) $rq $/"$1.$2"/xe
845         or $chunk->[0] =~ s/^ $lq (.+) $rq $/$1/x;
846
847       push @chunks, $chunk;
848     }
849
850     return @chunks;
851   };
852
853   if ($sql_maker) {
854     return $parser->($sql_maker, $order_by);
855   }
856   else {
857     $sql_maker = $self->sql_maker;
858
859     # pass these in to deal with literals coming from
860     # the user or the deep guts of prefetch
861     my $orig_quote_chars = [$sql_maker->_quote_chars];
862
863     local $sql_maker->{quote_char};
864     return $parser->($sql_maker, $order_by, $orig_quote_chars);
865   }
866 }
867
868 sub _order_by_is_stable {
869   my ($self, $ident, $order_by, $where) = @_;
870
871   my $colinfo = $self->_resolve_column_info($ident, [
872     (map { $_->[0] } $self->_extract_order_criteria($order_by)),
873     $where ? @{$self->_extract_fixed_condition_columns($where)} :(),
874   ]);
875
876   return undef unless keys %$colinfo;
877
878   my $cols_per_src;
879   $cols_per_src->{$_->{-source_alias}}{$_->{-colname}} = $_ for values %$colinfo;
880
881   for (values %$cols_per_src) {
882     my $src = (values %$_)[0]->{-result_source};
883     return 1 if $src->_identifying_column_set($_);
884   }
885
886   return undef;
887 }
888
889 # this is almost identical to the above, except it accepts only
890 # a single rsrc, and will succeed only if the first portion of the order
891 # by is stable.
892 # returns that portion as a colinfo hashref on success
893 sub _main_source_order_by_portion_is_stable {
894   my ($self, $main_rsrc, $order_by, $where) = @_;
895
896   die "Huh... I expect a blessed result_source..."
897     if ref($main_rsrc) eq 'ARRAY';
898
899   my @ord_cols = map
900     { $_->[0] }
901     ( $self->_extract_order_criteria($order_by) )
902   ;
903   return unless @ord_cols;
904
905   my $colinfos = $self->_resolve_column_info($main_rsrc);
906
907   for (0 .. $#ord_cols) {
908     if (
909       ! $colinfos->{$ord_cols[$_]}
910         or
911       $colinfos->{$ord_cols[$_]}{-result_source} != $main_rsrc
912     ) {
913       $#ord_cols =  $_ - 1;
914       last;
915     }
916   }
917
918   # we just truncated it above
919   return unless @ord_cols;
920
921   my $order_portion_ci = { map {
922     $colinfos->{$_}{-colname} => $colinfos->{$_},
923     $colinfos->{$_}{-fq_colname} => $colinfos->{$_},
924   } @ord_cols };
925
926   # since all we check here are the start of the order_by belonging to the
927   # top level $rsrc, a present identifying set will mean that the resultset
928   # is ordered by its leftmost table in a stable manner
929   #
930   # RV of _identifying_column_set contains unqualified names only
931   my $unqualified_idset = $main_rsrc->_identifying_column_set({
932     ( $where ? %{
933       $self->_resolve_column_info(
934         $main_rsrc, $self->_extract_fixed_condition_columns($where)
935       )
936     } : () ),
937     %$order_portion_ci
938   }) or return;
939
940   my $ret_info;
941   my %unqualified_idcols_from_order = map {
942     $order_portion_ci->{$_} ? ( $_ => $order_portion_ci->{$_} ) : ()
943   } @$unqualified_idset;
944
945   # extra optimization - cut the order_by at the end of the identifying set
946   # (just in case the user was stupid and overlooked the obvious)
947   for my $i (0 .. $#ord_cols) {
948     my $col = $ord_cols[$i];
949     my $unqualified_colname = $order_portion_ci->{$col}{-colname};
950     $ret_info->{$col} = { %{$order_portion_ci->{$col}}, -idx_in_order_subset => $i };
951     delete $unqualified_idcols_from_order{$ret_info->{$col}{-colname}};
952
953     # we didn't reach the end of the identifying portion yet
954     return $ret_info unless keys %unqualified_idcols_from_order;
955   }
956
957   die 'How did we get here...';
958 }
959
960 # returns an arrayref of column names which *definitely* have some
961 # sort of non-nullable equality requested in the given condition
962 # specification. This is used to figure out if a resultset is
963 # constrained to a column which is part of a unique constraint,
964 # which in turn allows us to better predict how ordering will behave
965 # etc.
966 #
967 # this is a rudimentary, incomplete, and error-prone extractor
968 # however this is OK - it is conservative, and if we can not find
969 # something that is in fact there - the stack will recover gracefully
970 # Also - DQ and the mst it rode in on will save us all RSN!!!
971 sub _extract_fixed_condition_columns {
972   my ($self, $where, $nested) = @_;
973
974   return unless ref $where eq 'HASH';
975
976   my @cols;
977   for my $lhs (keys %$where) {
978     if ($lhs =~ /^\-and$/i) {
979       push @cols, ref $where->{$lhs} eq 'ARRAY'
980         ? ( map { $self->_extract_fixed_condition_columns($_, 1) } @{$where->{$lhs}} )
981         : $self->_extract_fixed_condition_columns($where->{$lhs}, 1)
982       ;
983     }
984     elsif ($lhs !~ /^\-/) {
985       my $val = $where->{$lhs};
986
987       push @cols, $lhs if (defined $val and (
988         ! ref $val
989           or
990         (ref $val eq 'HASH' and keys %$val == 1 and defined $val->{'='})
991       ));
992     }
993   }
994   return $nested ? @cols : \@cols;
995 }
996
997 1;