Instead of assembling many small regexes scan all the SQL in one pass
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBIHacks.pm
CommitLineData
c443438f 1package #hide from PAUSE
2 DBIx::Class::Storage::DBIHacks;
d28bb90d 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
6a6394f1 7# display. The arrival of SQLA2 should immediately obsolete 90% of this
d28bb90d 8#
9
10use strict;
11use warnings;
12
13use base 'DBIx::Class::Storage';
14use mro 'c3';
15
6298a324 16use List::Util 'first';
17use Scalar::Util 'blessed';
b34d9331 18use DBIx::Class::_Util qw(UNRESOLVABLE_CONDITION serialize);
b5ce6748 19use SQL::Abstract qw(is_plain_value is_literal_value);
e466c62b 20use DBIx::Class::Carp;
6298a324 21use namespace::clean;
d28bb90d 22
23#
052e8431 24# This code will remove non-selecting/non-restricting joins from
4b1b5ea3 25# {from} specs, aiding the RDBMS query optimizer
052e8431 26#
27sub _prune_unused_joins {
e1861c2c 28 my ($self, $attrs) = @_;
ea95892e 29
e1861c2c 30 # only standard {from} specs are supported, and we could be disabled in general
31 return ($attrs->{from}, {}) unless (
32 ref $attrs->{from} eq 'ARRAY'
33 and
34 @{$attrs->{from}} > 1
35 and
36 ref $attrs->{from}[0] eq 'HASH'
37 and
38 ref $attrs->{from}[1] eq 'ARRAY'
39 and
40 $self->_use_join_optimizer
41 );
052e8431 42
eb58c082 43 my $orig_aliastypes = $self->_resolve_aliastypes_from_select_args($attrs);
4b1b5ea3 44
eb58c082 45 my $new_aliastypes = { %$orig_aliastypes };
46
47 # we will be recreating this entirely
48 my @reclassify = 'joining';
97e130fa 49
4b1b5ea3 50 # a grouped set will not be affected by amount of rows. Thus any
eb58c082 51 # purely multiplicator classifications can go
52 # (will be reintroduced below if needed by something else)
53 push @reclassify, qw(multiplying premultiplied)
437a9cfa 54 if $attrs->{_force_prune_multiplying_joins} or $attrs->{group_by};
4b1b5ea3 55
eb58c082 56 # nuke what will be recalculated
57 delete @{$new_aliastypes}{@reclassify};
58
e1861c2c 59 my @newfrom = $attrs->{from}[0]; # FROM head is always present
052e8431 60
eb58c082 61 # recalculate what we need once the multipliers are potentially gone
62 # ignore premultiplies, since they do not add any value to anything
a4812caa 63 my %need_joins;
eb58c082 64 for ( @{$new_aliastypes}{grep { $_ ne 'premultiplied' } keys %$new_aliastypes }) {
a4812caa 65 # add all requested aliases
66 $need_joins{$_} = 1 for keys %$_;
67
68 # add all their parents (as per joinpath which is an AoH { table => alias })
97e130fa 69 $need_joins{$_} = 1 for map { values %$_ } map { @{$_->{-parents}} } values %$_;
a4812caa 70 }
97e130fa 71
e1861c2c 72 for my $j (@{$attrs->{from}}[1..$#{$attrs->{from}}]) {
539ffe87 73 push @newfrom, $j if (
a6ef93cb 74 (! defined $j->[0]{-alias}) # legacy crap
539ffe87 75 ||
76 $need_joins{$j->[0]{-alias}}
77 );
052e8431 78 }
79
eb58c082 80 # we have a new set of joiners - for everything we nuked pull the classification
81 # off the original stack
82 for my $ctype (@reclassify) {
83 $new_aliastypes->{$ctype} = { map
84 { $need_joins{$_} ? ( $_ => $orig_aliastypes->{$ctype}{$_} ) : () }
85 keys %{$orig_aliastypes->{$ctype}}
86 }
87 }
88
89 return ( \@newfrom, $new_aliastypes );
052e8431 90}
91
052e8431 92#
d28bb90d 93# This is the code producing joined subqueries like:
8273e845 94# SELECT me.*, other.* FROM ( SELECT me.* FROM ... ) JOIN other ON ...
d28bb90d 95#
96sub _adjust_select_args_for_complex_prefetch {
e1861c2c 97 my ($self, $attrs) = @_;
d28bb90d 98
e1861c2c 99 $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute') unless (
100 ref $attrs->{from} eq 'ARRAY'
101 and
102 @{$attrs->{from}} > 1
103 and
104 ref $attrs->{from}[0] eq 'HASH'
105 and
106 ref $attrs->{from}[1] eq 'ARRAY'
107 );
d28bb90d 108
1e4f9fb3 109 my $root_alias = $attrs->{alias};
110
d28bb90d 111 # generate inner/outer attribute lists, remove stuff that doesn't apply
112 my $outer_attrs = { %$attrs };
e1861c2c 113 delete @{$outer_attrs}{qw(from bind rows offset group_by _grouped_by_distinct having)};
d28bb90d 114
6aa93928 115 my $inner_attrs = { %$attrs, _simple_passthrough_construction => 1 };
116 delete @{$inner_attrs}{qw(for collapse select as)};
d28bb90d 117
4df1400e 118 # there is no point of ordering the insides if there is no limit
119 delete $inner_attrs->{order_by} if (
120 delete $inner_attrs->{_order_is_artificial}
121 or
122 ! $inner_attrs->{rows}
123 );
946f6260 124
d28bb90d 125 # generate the inner/outer select lists
126 # for inside we consider only stuff *not* brought in by the prefetch
127 # on the outside we substitute any function for its alias
e1861c2c 128 $outer_attrs->{select} = [ @{$attrs->{select}} ];
36fd7f07 129
97e130fa 130 my ($root_node, $root_node_offset);
27e0370d 131
e1861c2c 132 for my $i (0 .. $#{$inner_attrs->{from}}) {
133 my $node = $inner_attrs->{from}[$i];
27e0370d 134 my $h = (ref $node eq 'HASH') ? $node
135 : (ref $node eq 'ARRAY' and ref $node->[0] eq 'HASH') ? $node->[0]
136 : next
137 ;
138
1e4f9fb3 139 if ( ($h->{-alias}||'') eq $root_alias and $h->{-rsrc} ) {
97e130fa 140 $root_node = $h;
141 $root_node_offset = $i;
27e0370d 142 last;
143 }
144 }
145
146 $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
97e130fa 147 unless $root_node;
27e0370d 148
149 # use the heavy duty resolver to take care of aliased/nonaliased naming
e1861c2c 150 my $colinfo = $self->_resolve_column_info($inner_attrs->{from});
27e0370d 151 my $selected_root_columns;
152
e1861c2c 153 for my $i (0 .. $#{$outer_attrs->{select}}) {
154 my $sel = $outer_attrs->{select}->[$i];
d28bb90d 155
1e4f9fb3 156 next if (
157 $colinfo->{$sel} and $colinfo->{$sel}{-source_alias} ne $root_alias
158 );
159
d28bb90d 160 if (ref $sel eq 'HASH' ) {
161 $sel->{-as} ||= $attrs->{as}[$i];
e1861c2c 162 $outer_attrs->{select}->[$i] = join ('.', $root_alias, ($sel->{-as} || "inner_column_$i") );
d28bb90d 163 }
27e0370d 164 elsif (! ref $sel and my $ci = $colinfo->{$sel}) {
165 $selected_root_columns->{$ci->{-colname}} = 1;
166 }
d28bb90d 167
e1861c2c 168 push @{$inner_attrs->{select}}, $sel;
bb9bffea 169
170 push @{$inner_attrs->{as}}, $attrs->{as}[$i];
d28bb90d 171 }
172
97e130fa 173 # We will need to fetch all native columns in the inner subquery, which may
174 # be a part of an *outer* join condition, or an order_by (which needs to be
e1861c2c 175 # preserved outside), or wheres. In other words everything but the inner
176 # selector
97e130fa 177 # We can not just fetch everything because a potential has_many restricting
178 # join collapse *will not work* on heavy data types.
e1861c2c 179 my $connecting_aliastypes = $self->_resolve_aliastypes_from_select_args({
180 %$inner_attrs,
181 select => [],
182 });
97e130fa 183
184 for (sort map { keys %{$_->{-seen_columns}||{}} } map { values %$_ } values %$connecting_aliastypes) {
185 my $ci = $colinfo->{$_} or next;
186 if (
1e4f9fb3 187 $ci->{-source_alias} eq $root_alias
97e130fa 188 and
189 ! $selected_root_columns->{$ci->{-colname}}++
190 ) {
191 # adding it to both to keep limits not supporting dark selectors happy
e1861c2c 192 push @{$inner_attrs->{select}}, $ci->{-fq_colname};
97e130fa 193 push @{$inner_attrs->{as}}, $ci->{-fq_colname};
27e0370d 194 }
195 }
196
e1861c2c 197 # construct the inner {from} and lock it in a subquery
48580715 198 # we need to prune first, because this will determine if we need a group_by below
97e130fa 199 # throw away all non-selecting, non-restricting multijoins
eb58c082 200 # (since we def. do not care about multiplication of the contents of the subquery)
6395604e 201 my $inner_subq = do {
ea95892e 202
eb58c082 203 # must use it here regardless of user requests (vastly gentler on optimizer)
ea95892e 204 local $self->{_use_join_optimizer} = 1;
205
97e130fa 206 # throw away multijoins since we def. do not care about those inside the subquery
e1861c2c 207 ($inner_attrs->{from}, my $inner_aliastypes) = $self->_prune_unused_joins ({
437a9cfa 208 %$inner_attrs, _force_prune_multiplying_joins => 1
209 });
ea95892e 210
eb58c082 211 # uh-oh a multiplier (which is not us) left in, this is a problem for limits
212 # we will need to add a group_by to collapse the resultset for proper counts
0a3441ee 213 if (
eb58c082 214 grep { $_ ne $root_alias } keys %{ $inner_aliastypes->{multiplying} || {} }
1e4f9fb3 215 and
560978e2 216 # if there are user-supplied groups - assume user knows wtf they are up to
217 ( ! $inner_aliastypes->{grouping} or $inner_attrs->{_grouped_by_distinct} )
0a3441ee 218 ) {
1e4f9fb3 219
eb58c082 220 my $cur_sel = { map { $_ => 1 } @{$inner_attrs->{select}} };
1e4f9fb3 221
eb58c082 222 # *possibly* supplement the main selection with pks if not already
223 # there, as they will have to be a part of the group_by to collapse
224 # things properly
225 my $inner_select_with_extras;
226 my @pks = map { "$root_alias.$_" } $root_node->{-rsrc}->primary_columns
227 or $self->throw_exception( sprintf
228 'Unable to perform complex limited prefetch off %s without declared primary key',
229 $root_node->{-rsrc}->source_name,
e1861c2c 230 );
eb58c082 231 for my $col (@pks) {
232 push @{ $inner_select_with_extras ||= [ @{$inner_attrs->{select}} ] }, $col
233 unless $cur_sel->{$col}++;
1e4f9fb3 234 }
eb58c082 235
236 ($inner_attrs->{group_by}, $inner_attrs->{order_by}) = $self->_group_over_selection({
237 %$inner_attrs,
238 $inner_select_with_extras ? ( select => $inner_select_with_extras ) : (),
239 _aliastypes => $inner_aliastypes,
240 });
0a3441ee 241 }
d28bb90d 242
e1861c2c 243 # we already optimized $inner_attrs->{from} above
97e130fa 244 # and already local()ized
245 $self->{_use_join_optimizer} = 0;
d28bb90d 246
ea95892e 247 # generate the subquery
6395604e 248 $self->_select_args_to_query (
e1861c2c 249 @{$inner_attrs}{qw(from select where)},
ea95892e 250 $inner_attrs,
251 );
d28bb90d 252 };
253
254 # Generate the outer from - this is relatively easy (really just replace
255 # the join slot with the subquery), with a major caveat - we can not
256 # join anything that is non-selecting (not part of the prefetch), but at
257 # the same time is a multi-type relationship, as it will explode the result.
258 #
259 # There are two possibilities here
260 # - either the join is non-restricting, in which case we simply throw it away
261 # - it is part of the restrictions, in which case we need to collapse the outer
262 # result by tackling yet another group_by to the outside of the query
263
27e0370d 264 # work on a shallow copy
e1861c2c 265 my @orig_from = @{$attrs->{from}};
266
052e8431 267
e1861c2c 268 $outer_attrs->{from} = \ my @outer_from;
53c29913 269
27e0370d 270 # we may not be the head
97e130fa 271 if ($root_node_offset) {
e1861c2c 272 # first generate the outer_from, up to the substitution point
273 @outer_from = splice @orig_from, 0, $root_node_offset;
27e0370d 274
e1861c2c 275 # substitute the subq at the right spot
27e0370d 276 push @outer_from, [
277 {
1e4f9fb3 278 -alias => $root_alias,
97e130fa 279 -rsrc => $root_node->{-rsrc},
1e4f9fb3 280 $root_alias => $inner_subq,
27e0370d 281 },
e1861c2c 282 # preserve attrs from what is now the head of the from after the splice
283 @{$orig_from[0]}[1 .. $#{$orig_from[0]}],
27e0370d 284 ];
285 }
286 else {
27e0370d 287 @outer_from = {
1e4f9fb3 288 -alias => $root_alias,
27e0370d 289 -rsrc => $root_node->{-rsrc},
1e4f9fb3 290 $root_alias => $inner_subq,
27e0370d 291 };
d28bb90d 292 }
293
e1861c2c 294 shift @orig_from; # what we just replaced above
97e130fa 295
ea95892e 296 # scan the *remaining* from spec against different attributes, and see which joins are needed
052e8431 297 # in what role
975b573a 298 my $outer_aliastypes = $outer_attrs->{_aliastypes} =
e1861c2c 299 $self->_resolve_aliastypes_from_select_args({ %$outer_attrs, from => \@orig_from });
052e8431 300
a4812caa 301 # unroll parents
1e4f9fb3 302 my ($outer_select_chain, @outer_nonselecting_chains) = map { +{
303 map { $_ => 1 } map { values %$_} map { @{$_->{-parents}} } values %{ $outer_aliastypes->{$_} || {} }
304 } } qw/selecting restricting grouping ordering/;
a4812caa 305
d28bb90d 306 # see what's left - throw away if not selecting/restricting
eb58c082 307 my $may_need_outer_group_by;
e1861c2c 308 while (my $j = shift @orig_from) {
d28bb90d 309 my $alias = $j->[0]{-alias};
310
a4812caa 311 if (
312 $outer_select_chain->{$alias}
313 ) {
314 push @outer_from, $j
d28bb90d 315 }
1e4f9fb3 316 elsif (first { $_->{$alias} } @outer_nonselecting_chains ) {
d28bb90d 317 push @outer_from, $j;
eb58c082 318 $may_need_outer_group_by ||= $outer_aliastypes->{multiplying}{$alias} ? 1 : 0;
d28bb90d 319 }
320 }
321
eb58c082 322 # also throw in a synthetic group_by if a non-selecting multiplier,
323 # to guard against cross-join explosions
324 # the logic is somewhat fragile, but relies on the idea that if a user supplied
325 # a group by on their own - they know what they were doing
326 if ( $may_need_outer_group_by and $attrs->{_grouped_by_distinct} ) {
327 ($outer_attrs->{group_by}, $outer_attrs->{order_by}) = $self->_group_over_selection ({
560978e2 328 %$outer_attrs,
329 from => \@outer_from,
560978e2 330 });
36fd7f07 331 }
332
e1861c2c 333 # This is totally horrific - the {where} ends up in both the inner and outer query
d28bb90d 334 # Unfortunately not much can be done until SQLA2 introspection arrives, and even
335 # then if where conditions apply to the *right* side of the prefetch, you may have
336 # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
4a0eed52 337 # the outer select to exclude joins you didn't want in the first place
d28bb90d 338 #
339 # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
e1861c2c 340 return $outer_attrs;
d28bb90d 341}
342
1a736efb 343#
344# I KNOW THIS SUCKS! GET SQLA2 OUT THE DOOR SO THIS CAN DIE!
345#
ad630f4b 346# Due to a lack of SQLA2 we fall back to crude scans of all the
347# select/where/order/group attributes, in order to determine what
4a0eed52 348# aliases are needed to fulfill the query. This information is used
ad630f4b 349# throughout the code to prune unnecessary JOINs from the queries
350# in an attempt to reduce the execution time.
351# Although the method is pretty horrific, the worst thing that can
1a736efb 352# happen is for it to fail due to some scalar SQL, which in turn will
353# result in a vocal exception.
539ffe87 354sub _resolve_aliastypes_from_select_args {
e1861c2c 355 my ( $self, $attrs ) = @_;
546f1cd9 356
ad630f4b 357 $self->throw_exception ('Unable to analyze custom {from}')
e1861c2c 358 if ref $attrs->{from} ne 'ARRAY';
546f1cd9 359
ad630f4b 360 # what we will return
964a3c71 361 my $aliases_by_type;
546f1cd9 362
ad630f4b 363 # see what aliases are there to work with
eb58c082 364 # and record who is a multiplier and who is premultiplied
ad630f4b 365 my $alias_list;
e1861c2c 366 for my $node (@{$attrs->{from}}) {
367
368 my $j = $node;
ad630f4b 369 $j = $j->[0] if ref $j eq 'ARRAY';
539ffe87 370 my $al = $j->{-alias}
371 or next;
372
373 $alias_list->{$al} = $j;
eb58c082 374
375 $aliases_by_type->{multiplying}{$al} ||= { -parents => $j->{-join_path}||[] }
a4812caa 376 # not array == {from} head == can't be multiplying
eb58c082 377 if ref($node) eq 'ARRAY' and ! $j->{-is_single};
378
379 $aliases_by_type->{premultiplied}{$al} ||= { -parents => $j->{-join_path}||[] }
380 # parts of the path that are not us but are multiplying
381 if grep { $aliases_by_type->{multiplying}{$_} }
382 grep { $_ ne $al }
383 map { values %$_ }
384 @{ $j->{-join_path}||[] }
546f1cd9 385 }
546f1cd9 386
318e3d94 387 # get a column to source/alias map (including unambiguous unqualified ones)
e1861c2c 388 my $colinfo = $self->_resolve_column_info ($attrs->{from});
1a736efb 389
ad630f4b 390 # set up a botched SQLA
391 my $sql_maker = $self->sql_maker;
07f31d19 392
4c2b30d6 393 # these are throw away results, do not pollute the bind stack
0542ec57 394 local $sql_maker->{where_bind};
395 local $sql_maker->{group_bind};
396 local $sql_maker->{having_bind};
97e130fa 397 local $sql_maker->{from_bind};
3f5b99fe 398
399 # we can't scan properly without any quoting (\b doesn't cut it
400 # everywhere), so unless there is proper quoting set - use our
401 # own weird impossible character.
402 # Also in the case of no quoting, we need to explicitly disable
403 # name_sep, otherwise sorry nasty legacy syntax like
404 # { 'count(foo.id)' => { '>' => 3 } } will stop working >:(
405 local $sql_maker->{quote_char} = $sql_maker->{quote_char};
406 local $sql_maker->{name_sep} = $sql_maker->{name_sep};
407
408 unless (defined $sql_maker->{quote_char} and length $sql_maker->{quote_char}) {
e493ecb2 409 $sql_maker->{quote_char} = ["\x00", "\xFF"];
410 # if we don't unset it we screw up retarded but unfortunately working
411 # 'MAX(foo.bar)' => { '>', 3 }
3f5b99fe 412 $sql_maker->{name_sep} = '';
413 }
414
415 my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
07f31d19 416
1a736efb 417 # generate sql chunks
418 my $to_scan = {
419 restricting => [
a9e985b7 420 ($sql_maker->_recurse_where ($attrs->{where}))[0],
1e4f9fb3 421 $sql_maker->_parse_rs_attrs ({ having => $attrs->{having} }),
422 ],
423 grouping => [
424 $sql_maker->_parse_rs_attrs ({ group_by => $attrs->{group_by} }),
1a736efb 425 ],
97e130fa 426 joining => [
427 $sql_maker->_recurse_from (
e1861c2c 428 ref $attrs->{from}[0] eq 'ARRAY' ? $attrs->{from}[0][0] : $attrs->{from}[0],
429 @{$attrs->{from}}[1 .. $#{$attrs->{from}}],
97e130fa 430 ),
431 ],
1a736efb 432 selecting => [
fdd47fe8 433 # kill all selectors which look like a proper subquery
434 # this is a sucky heuristic *BUT* - if we get it wrong the query will simply
435 # fail to run, so we are relatively safe
436 grep
437 { $_ !~ / \A \s* \( \s* SELECT \s+ .+? \s+ FROM \s+ .+? \) \s* \z /xsi }
438 map
439 { ($sql_maker->_recurse_fields($_))[0] }
440 @{$attrs->{select}}
1e4f9fb3 441 ],
66bbb12c 442 ordering => [ map
443 {
444 ( my $sql = (ref $_ ? $_->[0] : $_) ) =~ s/ \s+ (?: ASC | DESC ) \s* \z //xi;
445 $sql;
446 }
447 $sql_maker->_order_by_chunks( $attrs->{order_by} ),
1a736efb 448 ],
449 };
07f31d19 450
fdd47fe8 451 # throw away empty-string chunks, and make sure no binds snuck in
452 # note that we operate over @{$to_scan->{$type}}, hence the
453 # semi-mindbending ... map ... for values ...
454 ( $_ = [ map {
0dadd60d 455
fdd47fe8 456 (not $_) ? ()
457 : (length ref $_) ? (require Data::Dumper::Concise && $self->throw_exception(
458 "Unexpected ref in scan-plan: " . Data::Dumper::Concise::Dumper($_)
459 ))
460 : $_
0dadd60d 461
fdd47fe8 462 } @$_ ] ) for values %$to_scan;
463
464 # throw away empty to-scan's
465 (
466 @{$to_scan->{$_}}
467 or
468 delete $to_scan->{$_}
469 ) for keys %$to_scan;
0dadd60d 470
07f31d19 471
90c9dd1d 472 # these will be used for matching in the loop below
473 my $all_aliases = join ' | ', map { quotemeta $_ } keys %$alias_list;
474 my $fq_col_re = qr/
475 $lquote ( $all_aliases ) $rquote $sep (?: $lquote ([^$rquote]+) $rquote )?
476 |
477 \b ( $all_aliases ) \. ( [^\s\)\($rquote]+ )?
478 /x;
479
480 my $all_unq_columns = join ' | ',
481 map
482 { quotemeta $_ }
483 grep
484 # using a regex here shows up on profiles, boggle
485 { index( $_, '.') < 0 }
486 keys %$colinfo
487 ;
488 my $unq_col_re = $all_unq_columns
489 ? qr/ $lquote ( $all_unq_columns ) $rquote /x
490 : undef
491 ;
492
493
19955cdf 494 # the actual scan, per type
318e3d94 495 for my $type (keys %$to_scan) {
19955cdf 496
497 # first see if we have any exact matches (qualified or unqualified)
318e3d94 498 for my $piece (@{$to_scan->{$type}}) {
499 if ($colinfo->{$piece} and my $alias = $colinfo->{$piece}{-source_alias}) {
500 $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
501 $aliases_by_type->{$type}{$alias}{-seen_columns}{$colinfo->{$piece}{-fq_colname}} = $piece;
502 }
503 }
318e3d94 504
90c9dd1d 505
753fd57a 506 # we will be bulk-scanning anyway - pieces will not matter in that case
507 # (unlike in the direct-equivalence above)
508 my $scan_string = join ' ', @{$to_scan->{$type}};
509
90c9dd1d 510
19955cdf 511 # now loop through all fully qualified columns and get the corresponding
512 # alias (should work even if they are in scalarrefs)
90c9dd1d 513 #
514 # The regex matches in multiples of 4, with one of the two pairs being
515 # undef. There may be a *lot* of matches, hence the convoluted loop
516 my @matches = $scan_string =~ /$fq_col_re/g;
517 my $i = 0;
518 while( $i < $#matches ) {
519
520 if (
521 defined $matches[$i]
522 ) {
523 $aliases_by_type->{$type}{$matches[$i]} ||= { -parents => $alias_list->{$matches[$i]}{-join_path}||[] };
524
525 $aliases_by_type->{$type}{$matches[$i]}{-seen_columns}{"$matches[$i].$matches[$i+1]"} = "$matches[$i].$matches[$i+1]"
526 if defined $matches[$i+1];
527
528 $i += 2;
1a736efb 529 }
1a736efb 530
90c9dd1d 531 $i += 2;
532 }
1a736efb 533
07f31d19 534
90c9dd1d 535 # now loop through unqualified column names, and try to locate them within
536 # the chunks, if there are any unqualified columns in the 1st place
537 next unless $unq_col_re;
538 for ( $scan_string =~ /$unq_col_re/g ) {
539 my $alias = $colinfo->{$_}{-source_alias} or next;
540 $aliases_by_type->{$type}{$alias} ||= { -parents => $alias_list->{$alias}{-join_path}||[] };
541 $aliases_by_type->{$type}{$alias}{-seen_columns}{"$alias.$_"} = $_
07f31d19 542 }
543 }
544
90c9dd1d 545
07f31d19 546 # Add any non-left joins to the restriction list (such joins are indeed restrictions)
19955cdf 547 (
548 $_->{-alias}
549 and
550 ! $aliases_by_type->{restricting}{ $_->{-alias} }
551 and
552 (
553 not $_->{-join_type}
07f31d19 554 or
19955cdf 555 $_->{-join_type} !~ /^left (?: \s+ outer)? $/xi
556 )
557 and
558 $aliases_by_type->{restricting}{ $_->{-alias} } = { -parents => $_->{-join_path}||[] }
559 ) for values %$alias_list;
07f31d19 560
90c9dd1d 561
19955cdf 562 # final cleanup
563 (
564 keys %{$aliases_by_type->{$_}}
565 or
566 delete $aliases_by_type->{$_}
567 ) for keys %$aliases_by_type;
1e4f9fb3 568
90c9dd1d 569
19955cdf 570 $aliases_by_type;
07f31d19 571}
572
eb58c082 573# This is the engine behind { distinct => 1 } and the general
574# complex prefetch grouper
0a3441ee 575sub _group_over_selection {
560978e2 576 my ($self, $attrs) = @_;
0a3441ee 577
560978e2 578 my $colinfos = $self->_resolve_column_info ($attrs->{from});
0a3441ee 579
580 my (@group_by, %group_index);
581
36fd7f07 582 # the logic is: if it is a { func => val } we assume an aggregate,
583 # otherwise if \'...' or \[...] we assume the user knows what is
584 # going on thus group over it
560978e2 585 for (@{$attrs->{select}}) {
0a3441ee 586 if (! ref($_) or ref ($_) ne 'HASH' ) {
587 push @group_by, $_;
588 $group_index{$_}++;
560978e2 589 if ($colinfos->{$_} and $_ !~ /\./ ) {
0a3441ee 590 # add a fully qualified version as well
560978e2 591 $group_index{"$colinfos->{$_}{-source_alias}.$_"}++;
0a3441ee 592 }
07f31d19 593 }
594 }
ad630f4b 595
eb58c082 596 my @order_by = $self->_extract_order_criteria($attrs->{order_by})
597 or return (\@group_by, $attrs->{order_by});
598
599 # add any order_by parts that are not already present in the group_by
600 # to maintain SQL cross-compatibility and general sanity
601 #
602 # also in case the original selection is *not* unique, or in case part
603 # of the ORDER BY refers to a multiplier - we will need to replace the
604 # skipped order_by elements with their MIN/MAX equivalents as to maintain
605 # the proper overall order without polluting the group criteria (and
606 # possibly changing the outcome entirely)
607
608 my ($leftovers, $sql_maker, @new_order_by, $order_chunks, $aliastypes);
609
610 my $group_already_unique = $self->_columns_comprise_identifying_set($colinfos, \@group_by);
611
612 for my $o_idx (0 .. $#order_by) {
613
614 # if the chunk is already a min/max function - there is nothing left to touch
615 next if $order_by[$o_idx][0] =~ /^ (?: min | max ) \s* \( .+ \) $/ix;
616
0a3441ee 617 # only consider real columns (for functions the user got to do an explicit group_by)
eb58c082 618 my $chunk_ci;
619 if (
620 @{$order_by[$o_idx]} != 1
621 or
622 # only declare an unknown *plain* identifier as "leftover" if we are called with
623 # aliastypes to examine. If there are none - we are still in _resolve_attrs, and
624 # can just assume the user knows what they want
625 ( ! ( $chunk_ci = $colinfos->{$order_by[$o_idx][0]} ) and $attrs->{_aliastypes} )
626 ) {
627 push @$leftovers, $order_by[$o_idx][0];
14e26c5f 628 }
560978e2 629
eb58c082 630 next unless $chunk_ci;
631
632 # no duplication of group criteria
633 next if $group_index{$chunk_ci->{-fq_colname}};
634
635 $aliastypes ||= (
636 $attrs->{_aliastypes}
560978e2 637 or
eb58c082 638 $self->_resolve_aliastypes_from_select_args({
639 from => $attrs->{from},
640 order_by => $attrs->{order_by},
641 })
642 ) if $group_already_unique;
643
644 # check that we are not ordering by a multiplier (if a check is requested at all)
645 if (
646 $group_already_unique
647 and
648 ! $aliastypes->{multiplying}{$chunk_ci->{-source_alias}}
649 and
650 ! $aliastypes->{premultiplied}{$chunk_ci->{-source_alias}}
560978e2 651 ) {
eb58c082 652 push @group_by, $chunk_ci->{-fq_colname};
653 $group_index{$chunk_ci->{-fq_colname}}++
560978e2 654 }
eb58c082 655 else {
656 # We need to order by external columns without adding them to the group
657 # (eiehter a non-unique selection, or a multi-external)
658 #
659 # This doesn't really make sense in SQL, however from DBICs point
660 # of view is rather valid (e.g. order the leftmost objects by whatever
661 # criteria and get the offset/rows many). There is a way around
662 # this however in SQL - we simply tae the direction of each piece
663 # of the external order and convert them to MIN(X) for ASC or MAX(X)
664 # for DESC, and group_by the root columns. The end result should be
665 # exactly what we expect
666
667 # FIXME - this code is a joke, will need to be completely rewritten in
668 # the DQ branch. But I need to push a POC here, otherwise the
669 # pesky tests won't pass
670 # wrap any part of the order_by that "responds" to an ordering alias
671 # into a MIN/MAX
672 $sql_maker ||= $self->sql_maker;
673 $order_chunks ||= [
674 map { ref $_ eq 'ARRAY' ? $_ : [ $_ ] } $sql_maker->_order_by_chunks($attrs->{order_by})
675 ];
0a3441ee 676
eb58c082 677 my ($chunk, $is_desc) = $sql_maker->_split_order_chunk($order_chunks->[$o_idx][0]);
678
679 $new_order_by[$o_idx] = \[
680 sprintf( '%s( %s )%s',
681 ($is_desc ? 'MAX' : 'MIN'),
682 $chunk,
683 ($is_desc ? ' DESC' : ''),
684 ),
685 @ {$order_chunks->[$o_idx]} [ 1 .. $#{$order_chunks->[$o_idx]} ]
686 ];
687 }
0a3441ee 688 }
689
eb58c082 690 $self->throw_exception ( sprintf
9736be65 691 'Unable to programatically derive a required group_by from the supplied '
692 . 'order_by criteria. To proceed either add an explicit group_by, or '
693 . 'simplify your order_by to only include plain columns '
694 . '(supplied order_by: %s)',
eb58c082 695 join ', ', map { "'$_'" } @$leftovers,
696 ) if $leftovers;
697
698 # recreate the untouched order parts
699 if (@new_order_by) {
700 $new_order_by[$_] ||= \ $order_chunks->[$_] for ( 0 .. $#$order_chunks );
701 }
702
703 return (
704 \@group_by,
705 (@new_order_by ? \@new_order_by : $attrs->{order_by} ), # same ref as original == unchanged
706 );
07f31d19 707}
708
d28bb90d 709sub _resolve_ident_sources {
710 my ($self, $ident) = @_;
711
712 my $alias2source = {};
d28bb90d 713
714 # the reason this is so contrived is that $ident may be a {from}
715 # structure, specifying multiple tables to join
6298a324 716 if ( blessed $ident && $ident->isa("DBIx::Class::ResultSource") ) {
d28bb90d 717 # this is compat mode for insert/update/delete which do not deal with aliases
718 $alias2source->{me} = $ident;
d28bb90d 719 }
720 elsif (ref $ident eq 'ARRAY') {
721
722 for (@$ident) {
723 my $tabinfo;
724 if (ref $_ eq 'HASH') {
725 $tabinfo = $_;
d28bb90d 726 }
727 if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
728 $tabinfo = $_->[0];
729 }
730
4376a157 731 $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-rsrc}
732 if ($tabinfo->{-rsrc});
d28bb90d 733 }
734 }
735
90f10b5a 736 return $alias2source;
d28bb90d 737}
738
739# Takes $ident, \@column_names
740#
741# returns { $column_name => \%column_info, ... }
742# also note: this adds -result_source => $rsrc to the column info
743#
09e14fdc 744# If no columns_names are supplied returns info about *all* columns
745# for all sources
d28bb90d 746sub _resolve_column_info {
747 my ($self, $ident, $colnames) = @_;
8d005ad9 748
749 return {} if $colnames and ! @$colnames;
750
229401a0 751 my $sources = $self->_resolve_ident_sources($ident);
752
753 $_ = { rsrc => $_, colinfos => $_->columns_info }
754 for values %$sources;
d28bb90d 755
52416317 756 my (%seen_cols, @auto_colnames);
d28bb90d 757
758 # compile a global list of column names, to be able to properly
759 # disambiguate unqualified column names (if at all possible)
229401a0 760 for my $alias (keys %$sources) {
761 (
762 ++$seen_cols{$_}{$alias}
763 and
764 ! $colnames
765 and
766 push @auto_colnames, "$alias.$_"
767 ) for keys %{ $sources->{$alias}{colinfos} };
d28bb90d 768 }
769
09e14fdc 770 $colnames ||= [
771 @auto_colnames,
229401a0 772 ( grep { keys %{$seen_cols{$_}} == 1 } keys %seen_cols ),
09e14fdc 773 ];
774
229401a0 775 my %return;
776 for (@$colnames) {
777 my ($colname, $source_alias) = reverse split /\./, $_;
d28bb90d 778
229401a0 779 my $assumed_alias =
780 $source_alias
781 ||
782 # if the column was seen exactly once - we know which rsrc it came from
783 (
784 $seen_cols{$colname}
785 and
786 keys %{$seen_cols{$colname}} == 1
787 and
788 ( %{$seen_cols{$colname}} )[0]
789 )
790 ||
791 next
792 ;
52416317 793
229401a0 794 $self->throw_exception(
795 "No such column '$colname' on source " . $sources->{$assumed_alias}{rsrc}->source_name
796 ) unless $seen_cols{$colname}{$assumed_alias};
52416317 797
229401a0 798 $return{$_} = {
799 %{ $sources->{$assumed_alias}{colinfos}{$colname} },
800 -result_source => $sources->{$assumed_alias}{rsrc},
801 -source_alias => $assumed_alias,
802 -fq_colname => "$assumed_alias.$colname",
81bf295c 803 -colname => $colname,
d28bb90d 804 };
81bf295c 805
229401a0 806 $return{"$assumed_alias.$colname"} = $return{$_}
807 unless $source_alias;
d28bb90d 808 }
809
810 return \%return;
811}
812
289ac713 813# The DBIC relationship chaining implementation is pretty simple - every
814# new related_relationship is pushed onto the {from} stack, and the {select}
815# window simply slides further in. This means that when we count somewhere
816# in the middle, we got to make sure that everything in the join chain is an
817# actual inner join, otherwise the count will come back with unpredictable
818# results (a resultset may be generated with _some_ rows regardless of if
819# the relation which the $rs currently selects has rows or not). E.g.
820# $artist_rs->cds->count - normally generates:
821# SELECT COUNT( * ) FROM artist me LEFT JOIN cd cds ON cds.artist = me.artistid
822# which actually returns the number of artists * (number of cds || 1)
823#
824# So what we do here is crawl {from}, determine if the current alias is at
825# the top of the stack, and if not - make sure the chain is inner-joined down
826# to the root.
827#
31a8aaaf 828sub _inner_join_to_node {
289ac713 829 my ($self, $from, $alias) = @_;
830
302d35f8 831 my $switch_branch = $self->_find_join_path_to_node($from, $alias);
289ac713 832
302d35f8 833 return $from unless @{$switch_branch||[]};
289ac713 834
835 # So it looks like we will have to switch some stuff around.
836 # local() is useless here as we will be leaving the scope
837 # anyway, and deep cloning is just too fucking expensive
8273e845 838 # So replace the first hashref in the node arrayref manually
289ac713 839 my @new_from = ($from->[0]);
faeb2407 840 my $sw_idx = { map { (values %$_), 1 } @$switch_branch }; #there's one k/v per join-path
289ac713 841
842 for my $j (@{$from}[1 .. $#$from]) {
843 my $jalias = $j->[0]{-alias};
844
845 if ($sw_idx->{$jalias}) {
846 my %attrs = %{$j->[0]};
847 delete $attrs{-join_type};
848 push @new_from, [
849 \%attrs,
850 @{$j}[ 1 .. $#$j ],
851 ];
852 }
853 else {
854 push @new_from, $j;
855 }
856 }
857
858 return \@new_from;
859}
860
302d35f8 861sub _find_join_path_to_node {
862 my ($self, $from, $target_alias) = @_;
863
864 # subqueries and other oddness are naturally not supported
865 return undef if (
866 ref $from ne 'ARRAY'
867 ||
868 ref $from->[0] ne 'HASH'
869 ||
870 ! defined $from->[0]{-alias}
871 );
872
873 # no path - the head is the alias
874 return [] if $from->[0]{-alias} eq $target_alias;
875
876 for my $i (1 .. $#$from) {
877 return $from->[$i][0]{-join_path} if ( ($from->[$i][0]{-alias}||'') eq $target_alias );
878 }
879
880 # something else went quite wrong
881 return undef;
882}
883
bac358c9 884sub _extract_order_criteria {
1a736efb 885 my ($self, $order_by, $sql_maker) = @_;
c0748280 886
1a736efb 887 my $parser = sub {
e6977bbb 888 my ($sql_maker, $order_by, $orig_quote_chars) = @_;
c0748280 889
1a736efb 890 return scalar $sql_maker->_order_by_chunks ($order_by)
891 unless wantarray;
c0748280 892
e6977bbb 893 my ($lq, $rq, $sep) = map { quotemeta($_) } (
894 ($orig_quote_chars ? @$orig_quote_chars : $sql_maker->_quote_chars),
895 $sql_maker->name_sep
896 );
897
1a736efb 898 my @chunks;
bac358c9 899 for ($sql_maker->_order_by_chunks ($order_by) ) {
e6977bbb 900 my $chunk = ref $_ ? [ @$_ ] : [ $_ ];
cb3e87f5 901 ($chunk->[0]) = $sql_maker->_split_order_chunk($chunk->[0]);
e6977bbb 902
903 # order criteria may have come back pre-quoted (literals and whatnot)
904 # this is fragile, but the best we can currently do
905 $chunk->[0] =~ s/^ $lq (.+?) $rq $sep $lq (.+?) $rq $/"$1.$2"/xe
906 or $chunk->[0] =~ s/^ $lq (.+) $rq $/$1/x;
907
1a736efb 908 push @chunks, $chunk;
bac6c4fb 909 }
1a736efb 910
911 return @chunks;
912 };
913
914 if ($sql_maker) {
915 return $parser->($sql_maker, $order_by);
bac6c4fb 916 }
917 else {
1a736efb 918 $sql_maker = $self->sql_maker;
e6977bbb 919
920 # pass these in to deal with literals coming from
921 # the user or the deep guts of prefetch
922 my $orig_quote_chars = [$sql_maker->_quote_chars];
923
1a736efb 924 local $sql_maker->{quote_char};
e6977bbb 925 return $parser->($sql_maker, $order_by, $orig_quote_chars);
bac6c4fb 926 }
bac6c4fb 927}
928
7cec4356 929sub _order_by_is_stable {
5f11e54f 930 my ($self, $ident, $order_by, $where) = @_;
c0748280 931
eb58c082 932 my @cols = (
8d005ad9 933 ( map { $_->[0] } $self->_extract_order_criteria($order_by) ),
8e40a627 934 ( $where ? keys %{ $self->_extract_fixed_condition_columns($where) } : () ),
df4312bc 935 ) or return 0;
eb58c082 936
937 my $colinfo = $self->_resolve_column_info($ident, \@cols);
938
939 return keys %$colinfo
940 ? $self->_columns_comprise_identifying_set( $colinfo, \@cols )
df4312bc 941 : 0
eb58c082 942 ;
943}
c0748280 944
eb58c082 945sub _columns_comprise_identifying_set {
946 my ($self, $colinfo, $columns) = @_;
7cec4356 947
948 my $cols_per_src;
eb58c082 949 $cols_per_src -> {$_->{-source_alias}} -> {$_->{-colname}} = $_
950 for grep { defined $_ } @{$colinfo}{@$columns};
7cec4356 951
952 for (values %$cols_per_src) {
953 my $src = (values %$_)[0]->{-result_source};
954 return 1 if $src->_identifying_column_set($_);
c0748280 955 }
956
df4312bc 957 return 0;
7cec4356 958}
959
df4312bc 960# this is almost similar to _order_by_is_stable, except it takes
0e81e691 961# a single rsrc, and will succeed only if the first portion of the order
962# by is stable.
963# returns that portion as a colinfo hashref on success
df4312bc 964sub _extract_colinfo_of_stable_main_source_order_by_portion {
302d35f8 965 my ($self, $attrs) = @_;
0e81e691 966
302d35f8 967 my $nodes = $self->_find_join_path_to_node($attrs->{from}, $attrs->{alias});
968
969 return unless defined $nodes;
0e81e691 970
971 my @ord_cols = map
972 { $_->[0] }
302d35f8 973 ( $self->_extract_order_criteria($attrs->{order_by}) )
0e81e691 974 ;
975 return unless @ord_cols;
976
302d35f8 977 my $valid_aliases = { map { $_ => 1 } (
978 $attrs->{from}[0]{-alias},
979 map { values %$_ } @$nodes,
980 ) };
318e3d94 981
302d35f8 982 my $colinfos = $self->_resolve_column_info($attrs->{from});
983
984 my ($colinfos_to_return, $seen_main_src_cols);
985
986 for my $col (@ord_cols) {
987 # if order criteria is unresolvable - there is nothing we can do
988 my $colinfo = $colinfos->{$col} or last;
989
990 # if we reached the end of the allowed aliases - also nothing we can do
991 last unless $valid_aliases->{$colinfo->{-source_alias}};
992
993 $colinfos_to_return->{$col} = $colinfo;
994
995 $seen_main_src_cols->{$colinfo->{-colname}} = 1
996 if $colinfo->{-source_alias} eq $attrs->{alias};
0e81e691 997 }
998
302d35f8 999 # FIXME the condition may be singling out things on its own, so we
1000 # conceivable could come back wi "stable-ordered by nothing"
1001 # not confient enough in the parser yet, so punt for the time being
1002 return unless $seen_main_src_cols;
0e81e691 1003
302d35f8 1004 my $main_src_fixed_cols_from_cond = [ $attrs->{where}
1005 ? (
1006 map
1007 {
1008 ( $colinfos->{$_} and $colinfos->{$_}{-source_alias} eq $attrs->{alias} )
1009 ? $colinfos->{$_}{-colname}
1010 : ()
1011 }
8e40a627 1012 keys %{ $self->_extract_fixed_condition_columns($attrs->{where}) }
302d35f8 1013 )
1014 : ()
1015 ];
0e81e691 1016
302d35f8 1017 return $attrs->{result_source}->_identifying_column_set([
1018 keys %$seen_main_src_cols,
1019 @$main_src_fixed_cols_from_cond,
1020 ]) ? $colinfos_to_return : ();
0e81e691 1021}
1022
8d005ad9 1023# Attempts to flatten a passed in SQLA condition as much as possible towards
1024# a plain hashref, *without* altering its semantics. Required by
1025# create/populate being able to extract definitive conditions from preexisting
1026# resultset {where} stacks
1027#
1028# FIXME - while relatively robust, this is still imperfect, one of the first
1029# things to tackle with DQ
1030sub _collapse_cond {
1031 my ($self, $where, $where_is_anded_array) = @_;
1032
135ac69d 1033 my $fin;
1034
8d005ad9 1035 if (! $where) {
1036 return;
1037 }
1038 elsif ($where_is_anded_array or ref $where eq 'HASH') {
1039
1040 my @pairs;
1041
1042 my @pieces = $where_is_anded_array ? @$where : $where;
1043 while (@pieces) {
1044 my $chunk = shift @pieces;
1045
1046 if (ref $chunk eq 'HASH') {
e466c62b 1047 for (sort keys %$chunk) {
1048
1049 # Match SQLA 1.79 behavior
1050 if ($_ eq '') {
1051 is_literal_value($chunk->{$_})
1052 ? carp 'Hash-pairs consisting of an empty string with a literal are deprecated, use -and => [ $literal ] instead'
1053 : $self->throw_exception("Supplying an empty left hand side argument is not supported in hash-pairs")
1054 ;
1055 }
1056
1057 push @pairs, $_ => $chunk->{$_};
1058 }
8d005ad9 1059 }
1060 elsif (ref $chunk eq 'ARRAY') {
6565d2c3 1061 push @pairs, -or => $chunk
8d005ad9 1062 if @$chunk;
1063 }
b34d9331 1064 elsif ( ! length ref $chunk) {
e466c62b 1065
1066 # Match SQLA 1.79 behavior
1067 $self->throw_exception("Supplying an empty left hand side argument is not supported in array-pairs")
1068 if $where_is_anded_array and (! defined $chunk or $chunk eq '');
1069
6565d2c3 1070 push @pairs, $chunk, shift @pieces;
8d005ad9 1071 }
1072 else {
6565d2c3 1073 push @pairs, '', $chunk;
8d005ad9 1074 }
1075 }
1076
1077 return unless @pairs;
1078
1079 my @conds = $self->_collapse_cond_unroll_pairs(\@pairs)
1080 or return;
1081
1082 # Consolidate various @conds back into something more compact
8d005ad9 1083 for my $c (@conds) {
1084 if (ref $c ne 'HASH') {
1085 push @{$fin->{-and}}, $c;
1086 }
1087 else {
1088 for my $col (sort keys %$c) {
8d005ad9 1089
135ac69d 1090 # consolidate all -and nodes
1091 if ($col =~ /^\-and$/i) {
1092 push @{$fin->{-and}},
1093 ref $c->{$col} eq 'ARRAY' ? @{$c->{$col}}
1094 : ref $c->{$col} eq 'HASH' ? %{$c->{$col}}
1095 : { $col => $c->{$col} }
1096 ;
1097 }
1098 elsif ($col =~ /^\-/) {
1099 push @{$fin->{-and}}, { $col => $c->{$col} };
1100 }
1101 elsif (exists $fin->{$col}) {
1102 $fin->{$col} = [ -and => map {
1103 (ref $_ eq 'ARRAY' and ($_->[0]||'') =~ /^\-and$/i )
1104 ? @{$_}[1..$#$_]
1105 : $_
1106 ;
1107 } ($fin->{$col}, $c->{$col}) ];
8d005ad9 1108 }
1109 else {
1110 $fin->{$col} = $c->{$col};
1111 }
1112 }
1113 }
1114 }
8d005ad9 1115 }
1116 elsif (ref $where eq 'ARRAY') {
22485a7e 1117 # we are always at top-level here, it is safe to dump empty *standalone* pieces
1118 my $fin_idx;
8d005ad9 1119
22485a7e 1120 for (my $i = 0; $i <= $#$where; $i++ ) {
8d005ad9 1121
e466c62b 1122 # Match SQLA 1.79 behavior
1123 $self->throw_exception(
1124 "Supplying an empty left hand side argument is not supported in array-pairs"
1125 ) if (! defined $where->[$i] or ! length $where->[$i]);
1126
22485a7e 1127 my $logic_mod = lc ( ($where->[$i] =~ /^(\-(?:and|or))$/i)[0] || '' );
1128
1129 if ($logic_mod) {
1130 $i++;
1131 $self->throw_exception("Unsupported top-level op/arg pair: [ $logic_mod => $where->[$i] ]")
1132 unless ref $where->[$i] eq 'HASH' or ref $where->[$i] eq 'ARRAY';
1133
1134 my $sub_elt = $self->_collapse_cond({ $logic_mod => $where->[$i] })
1135 or next;
1136
e466c62b 1137 my @keys = keys %$sub_elt;
1138 if ( @keys == 1 and $keys[0] !~ /^\-/ ) {
1139 $fin_idx->{ "COL_$keys[0]_" . serialize $sub_elt } = $sub_elt;
1140 }
1141 else {
1142 $fin_idx->{ "SER_" . serialize $sub_elt } = $sub_elt;
1143 }
22485a7e 1144 }
1145 elsif (! length ref $where->[$i] ) {
135ac69d 1146 my $sub_elt = $self->_collapse_cond({ @{$where}[$i, $i+1] })
1147 or next;
1148
1149 $fin_idx->{ "COL_$where->[$i]_" . serialize $sub_elt } = $sub_elt;
22485a7e 1150 $i++;
8d005ad9 1151 }
1152 else {
135ac69d 1153 $fin_idx->{ "SER_" . serialize $where->[$i] } = $self->_collapse_cond( $where->[$i] ) || next;
8d005ad9 1154 }
1155 }
22485a7e 1156
07add744 1157 if (! $fin_idx) {
1158 return;
1159 }
1160 elsif ( keys %$fin_idx == 1 ) {
1161 $fin = (values %$fin_idx)[0];
1162 }
1163 else {
1164 my @or;
1165
1166 # at this point everything is at most one level deep - unroll if needed
1167 for (sort keys %$fin_idx) {
1168 if ( ref $fin_idx->{$_} eq 'HASH' and keys %{$fin_idx->{$_}} == 1 ) {
1169 my ($l, $r) = %{$fin_idx->{$_}};
1170
1171 if (
1172 ref $r eq 'ARRAY'
1173 and
1174 (
1175 ( @$r == 1 and $l =~ /^\-and$/i )
1176 or
1177 $l =~ /^\-or$/i
1178 )
1179 ) {
1180 push @or, @$r
1181 }
1182
1183 elsif (
1184 ref $r eq 'HASH'
1185 and
1186 keys %$r == 1
1187 and
1188 $l =~ /^\-(?:and|or)$/i
1189 ) {
1190 push @or, %$r;
1191 }
1192
1193 else {
1194 push @or, $l, $r;
1195 }
1196 }
1197 else {
1198 push @or, $fin_idx->{$_};
1199 }
1200 }
1201
1202 $fin->{-or} = \@or;
1203 }
8d005ad9 1204 }
1205 else {
1206 # not a hash not an array
07add744 1207 $fin = { -and => [ $where ] };
135ac69d 1208 }
1209
1210 # unroll single-element -and's
1211 while (
1212 $fin->{-and}
1213 and
1214 @{$fin->{-and}} < 2
1215 ) {
1216 my $and = delete $fin->{-and};
1217 last if @$and == 0;
1218
1219 # at this point we have @$and == 1
1220 if (
1221 ref $and->[0] eq 'HASH'
1222 and
1223 ! grep { exists $fin->{$_} } keys %{$and->[0]}
1224 ) {
1225 $fin = {
1226 %$fin, %{$and->[0]}
1227 };
1228 }
07add744 1229 else {
1230 $fin->{-and} = $and;
1231 last;
1232 }
135ac69d 1233 }
1234
1235 # compress same-column conds found in $fin
1236 for my $col ( grep { $_ !~ /^\-/ } keys %$fin ) {
1237 next unless ref $fin->{$col} eq 'ARRAY' and ($fin->{$col}[0]||'') =~ /^\-and$/i;
1238 my $val_bag = { map {
5379386e 1239 (! defined $_ ) ? ( UNDEF => undef )
1240 : ( ! length ref $_ or is_plain_value $_ ) ? ( "VAL_$_" => $_ )
135ac69d 1241 : ( ( 'SER_' . serialize $_ ) => $_ )
1242 } @{$fin->{$col}}[1 .. $#{$fin->{$col}}] };
1243
1244 if (keys %$val_bag == 1 ) {
1245 ($fin->{$col}) = values %$val_bag;
1246 }
1247 else {
1248 $fin->{$col} = [ -and => map { $val_bag->{$_} } sort keys %$val_bag ];
1249 }
8d005ad9 1250 }
1251
135ac69d 1252 return keys %$fin ? $fin : ();
8d005ad9 1253}
1254
1255sub _collapse_cond_unroll_pairs {
1256 my ($self, $pairs) = @_;
1257
1258 my @conds;
1259
1260 while (@$pairs) {
6565d2c3 1261 my ($lhs, $rhs) = splice @$pairs, 0, 2;
8d005ad9 1262
1263 if ($lhs eq '') {
1264 push @conds, $self->_collapse_cond($rhs);
1265 }
1266 elsif ( $lhs =~ /^\-and$/i ) {
1267 push @conds, $self->_collapse_cond($rhs, (ref $rhs eq 'ARRAY'));
1268 }
1269 elsif ( $lhs =~ /^\-or$/i ) {
1270 push @conds, $self->_collapse_cond(
1271 (ref $rhs eq 'HASH') ? [ map { $_ => $rhs->{$_} } sort keys %$rhs ] : $rhs
1272 );
1273 }
1274 else {
1275 if (ref $rhs eq 'HASH' and ! keys %$rhs) {
1276 # FIXME - SQLA seems to be doing... nothing...?
1277 }
f6fff270 1278 # normalize top level -ident, for saner extract_fixed_condition_columns code
5f35ba0f 1279 elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{-ident}) {
1280 push @conds, { $lhs => { '=', $rhs } };
1281 }
1282 elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{-value} and is_plain_value $rhs->{-value}) {
1283 push @conds, { $lhs => $rhs->{-value} };
1284 }
8d005ad9 1285 elsif (ref $rhs eq 'HASH' and keys %$rhs == 1 and exists $rhs->{'='}) {
f6fff270 1286 if ( length ref $rhs->{'='} and is_literal_value $rhs->{'='} ) {
5f35ba0f 1287 push @conds, { $lhs => $rhs };
1288 }
1289 else {
6565d2c3 1290 for my $p ($self->_collapse_cond_unroll_pairs([ $lhs => $rhs->{'='} ])) {
5f35ba0f 1291
1292 # extra sanity check
1293 if (keys %$p > 1) {
1294 require Data::Dumper::Concise;
1295 local $Data::Dumper::Deepcopy = 1;
1296 $self->throw_exception(
1297 "Internal error: unexpected collapse unroll:"
1298 . Data::Dumper::Concise::Dumper { in => { $lhs => $rhs }, out => $p }
1299 );
1300 }
8d005ad9 1301
5f35ba0f 1302 my ($l, $r) = %$p;
8d005ad9 1303
f6fff270 1304 push @conds, (
1305 ! length ref $r
1306 or
1307 # the unroller recursion may return a '=' prepended value already
1308 ref $r eq 'HASH' and keys %$rhs == 1 and exists $rhs->{'='}
1309 or
1310 is_plain_value($r)
1311 )
5f35ba0f 1312 ? { $l => $r }
1313 : { $l => { '=' => $r } }
1314 ;
1315 }
8d005ad9 1316 }
1317 }
1318 elsif (ref $rhs eq 'ARRAY') {
1319 # some of these conditionals encounter multi-values - roll them out using
1320 # an unshift, which will cause extra looping in the while{} above
1321 if (! @$rhs ) {
1322 push @conds, { $lhs => [] };
1323 }
1324 elsif ( ($rhs->[0]||'') =~ /^\-(?:and|or)$/i ) {
1325 $self->throw_exception("Value modifier not followed by any values: $lhs => [ $rhs->[0] ] ")
1326 if @$rhs == 1;
1327
1328 if( $rhs->[0] =~ /^\-and$/i ) {
6565d2c3 1329 unshift @$pairs, map { $lhs => $_ } @{$rhs}[1..$#$rhs];
8d005ad9 1330 }
1331 # if not an AND then it's an OR
1332 elsif(@$rhs == 2) {
6565d2c3 1333 unshift @$pairs, $lhs => $rhs->[1];
8d005ad9 1334 }
1335 else {
953d5b7d 1336 push @conds, { $lhs => [ @{$rhs}[1..$#$rhs] ] };
8d005ad9 1337 }
1338 }
1339 elsif (@$rhs == 1) {
6565d2c3 1340 unshift @$pairs, $lhs => $rhs->[0];
8d005ad9 1341 }
1342 else {
1343 push @conds, { $lhs => $rhs };
1344 }
1345 }
c1f3f2e8 1346 # unroll func + { -value => ... }
1347 elsif (
1348 ref $rhs eq 'HASH'
1349 and
1350 ( my ($subop) = keys %$rhs ) == 1
1351 and
1352 length ref ((values %$rhs)[0])
1353 and
1354 my $vref = is_plain_value( (values %$rhs)[0] )
1355 ) {
5379386e 1356 push @conds, { $lhs => { $subop => $$vref } }
c1f3f2e8 1357 }
8d005ad9 1358 else {
1359 push @conds, { $lhs => $rhs };
1360 }
1361 }
1362 }
1363
1364 return @conds;
1365}
1366
8e40a627 1367# Analyzes a given condition and attempts to extract all columns
1368# with a definitive fixed-condition criteria. Returns a hashref
1369# of k/v pairs suitable to be passed to set_columns(), with a
1370# MAJOR CAVEAT - multi-value (contradictory) equalities are still
1371# represented as a reference to the UNRESOVABLE_CONDITION constant
1372# The reason we do this is that some codepaths only care about the
1373# codition being stable, as opposed to actually making sense
5f11e54f 1374#
8e40a627 1375# The normal mode is used to figure out if a resultset is constrained
1376# to a column which is part of a unique constraint, which in turn
1377# allows us to better predict how ordering will behave etc.
1378#
1379# With the optional "consider_nulls" boolean argument, the function
1380# is instead used to infer inambiguous values from conditions
1381# (e.g. the inheritance of resultset conditions on new_result)
1382#
5f11e54f 1383sub _extract_fixed_condition_columns {
8e40a627 1384 my ($self, $where, $consider_nulls) = @_;
1385 my $where_hash = $self->_collapse_cond($_[1]);
1386
1387 my $res = {};
1388 my ($c, $v);
1389 for $c (keys %$where_hash) {
1390 my $vals;
1391
1392 if (!defined ($v = $where_hash->{$c}) ) {
b34d9331 1393 $vals->{UNDEF} = $v if $consider_nulls
8e40a627 1394 }
1395 elsif (
8e40a627 1396 ref $v eq 'HASH'
1397 and
1398 keys %$v == 1
5f35ba0f 1399 ) {
1400 if (exists $v->{-value}) {
1401 if (defined $v->{-value}) {
b34d9331 1402 $vals->{"VAL_$v->{-value}"} = $v->{-value}
5f35ba0f 1403 }
1404 elsif( $consider_nulls ) {
b34d9331 1405 $vals->{UNDEF} = $v->{-value};
5f35ba0f 1406 }
1407 }
8e40a627 1408 # do not need to check for plain values - _collapse_cond did it for us
f6fff270 1409 elsif(
1410 length ref $v->{'='}
1411 and
1412 (
1413 ( ref $v->{'='} eq 'HASH' and keys %{$v->{'='}} == 1 and exists $v->{'='}{-ident} )
1414 or
1415 is_literal_value($v->{'='})
1416 )
1417 ) {
b34d9331 1418 $vals->{ 'SER_' . serialize $v->{'='} } = $v->{'='};
5f35ba0f 1419 }
1420 }
1421 elsif (
1422 ! length ref $v
1423 or
1424 is_plain_value ($v)
8e40a627 1425 ) {
b34d9331 1426 $vals->{"VAL_$v"} = $v;
8e40a627 1427 }
1428 elsif (ref $v eq 'ARRAY' and ($v->[0]||'') eq '-and') {
1429 for ( @{$v}[1..$#$v] ) {
1430 my $subval = $self->_extract_fixed_condition_columns({ $c => $_ }, 'consider nulls'); # always fish nulls out on recursion
1431 next unless exists $subval->{$c}; # didn't find anything
b34d9331 1432 $vals->{
1433 ! defined $subval->{$c} ? 'UNDEF'
1434 : ( ! length ref $subval->{$c} or is_plain_value $subval->{$c} ) ? "VAL_$subval->{$c}"
1435 : ( 'SER_' . serialize $subval->{$c} )
1436 } = $subval->{$c};
8d005ad9 1437 }
5f11e54f 1438 }
8e40a627 1439
1440 if (keys %$vals == 1) {
1441 ($res->{$c}) = (values %$vals)
b34d9331 1442 unless !$consider_nulls and exists $vals->{UNDEF};
8e40a627 1443 }
1444 elsif (keys %$vals > 1) {
1445 $res->{$c} = UNRESOLVABLE_CONDITION;
1446 }
5f11e54f 1447 }
8d005ad9 1448
8e40a627 1449 $res;
c0748280 1450}
bac6c4fb 1451
d28bb90d 14521;