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