Fix bug in update of resultset using qualified condition in "-or"
[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
7eb76996 7# display. The arrival of SQLA2 should immediately oboslete 90% of this
d28bb90d 8#
9
10use strict;
11use warnings;
12
13use base 'DBIx::Class::Storage';
14use mro 'c3';
15
16use Carp::Clan qw/^DBIx::Class/;
6298a324 17use List::Util 'first';
18use Scalar::Util 'blessed';
19use namespace::clean;
d28bb90d 20
21#
052e8431 22# This code will remove non-selecting/non-restricting joins from
4b1b5ea3 23# {from} specs, aiding the RDBMS query optimizer
052e8431 24#
25sub _prune_unused_joins {
4b1b5ea3 26 my ($self) = shift;
27
28 my ($from, $select, $where, $attrs) = @_;
052e8431 29
052e8431 30 if (ref $from ne 'ARRAY' || ref $from->[0] ne 'HASH' || ref $from->[1] ne 'ARRAY') {
31 return $from; # only standard {from} specs are supported
32 }
33
4b1b5ea3 34 my $aliastypes = $self->_resolve_aliastypes_from_select_args(@_);
35
36 # a grouped set will not be affected by amount of rows. Thus any
37 # {multiplying} joins can go
38 delete $aliastypes->{multiplying} if $attrs->{group_by};
39
052e8431 40 my @newfrom = $from->[0]; # FROM head is always present
41
42 my %need_joins = (map { %{$_||{}} } (values %$aliastypes) );
43 for my $j (@{$from}[1..$#$from]) {
539ffe87 44 push @newfrom, $j if (
4b1b5ea3 45 (! $j->[0]{-alias}) # legacy crap
539ffe87 46 ||
47 $need_joins{$j->[0]{-alias}}
48 );
052e8431 49 }
50
51 return \@newfrom;
52}
53
052e8431 54#
d28bb90d 55# This is the code producing joined subqueries like:
56# SELECT me.*, other.* FROM ( SELECT me.* FROM ... ) JOIN other ON ...
57#
58sub _adjust_select_args_for_complex_prefetch {
59 my ($self, $from, $select, $where, $attrs) = @_;
60
61 $self->throw_exception ('Nothing to prefetch... how did we get here?!')
62 if not @{$attrs->{_prefetch_select}};
63
64 $self->throw_exception ('Complex prefetches are not supported on resultsets with a custom from attribute')
65 if (ref $from ne 'ARRAY' || ref $from->[0] ne 'HASH' || ref $from->[1] ne 'ARRAY');
66
67
68 # generate inner/outer attribute lists, remove stuff that doesn't apply
69 my $outer_attrs = { %$attrs };
70 delete $outer_attrs->{$_} for qw/where bind rows offset group_by having/;
71
72 my $inner_attrs = { %$attrs };
73 delete $inner_attrs->{$_} for qw/for collapse _prefetch_select _collapse_order_by select as/;
74
75
76 # bring over all non-collapse-induced order_by into the inner query (if any)
77 # the outer one will have to keep them all
78 delete $inner_attrs->{order_by};
79 if (my $ord_cnt = @{$outer_attrs->{order_by}} - @{$outer_attrs->{_collapse_order_by}} ) {
80 $inner_attrs->{order_by} = [
81 @{$outer_attrs->{order_by}}[ 0 .. $ord_cnt - 1]
82 ];
83 }
84
d28bb90d 85 # generate the inner/outer select lists
86 # for inside we consider only stuff *not* brought in by the prefetch
87 # on the outside we substitute any function for its alias
88 my $outer_select = [ @$select ];
89 my $inner_select = [];
90 for my $i (0 .. ( @$outer_select - @{$outer_attrs->{_prefetch_select}} - 1) ) {
91 my $sel = $outer_select->[$i];
92
93 if (ref $sel eq 'HASH' ) {
94 $sel->{-as} ||= $attrs->{as}[$i];
95 $outer_select->[$i] = join ('.', $attrs->{alias}, ($sel->{-as} || "inner_column_$i") );
96 }
97
98 push @$inner_select, $sel;
bb9bffea 99
100 push @{$inner_attrs->{as}}, $attrs->{as}[$i];
d28bb90d 101 }
102
d28bb90d 103 # construct the inner $from for the subquery
48580715 104 # we need to prune first, because this will determine if we need a group_by below
53c29913 105 # the fake group_by is so that the pruner throws away all non-selecting, non-restricting
106 # multijoins (since we def. do not care about those inside the subquery)
107 my $inner_from = $self->_prune_unused_joins ($from, $inner_select, $where, {
108 group_by => ['dummy'], %$inner_attrs,
109 });
ad630f4b 110
539ffe87 111 # if a multi-type join was needed in the subquery - add a group_by to simulate the
112 # collapse in the subq
113 $inner_attrs->{group_by} ||= $inner_select
6298a324 114 if first { ! $_->[0]{-is_single} } (@{$inner_from}[1 .. $#$inner_from]);
d28bb90d 115
d28bb90d 116 # generate the subquery
117 my $subq = $self->_select_args_to_query (
052e8431 118 $inner_from,
d28bb90d 119 $inner_select,
120 $where,
121 $inner_attrs,
122 );
123
124 my $subq_joinspec = {
125 -alias => $attrs->{alias},
052e8431 126 -source_handle => $inner_from->[0]{-source_handle},
d28bb90d 127 $attrs->{alias} => $subq,
128 };
129
130 # Generate the outer from - this is relatively easy (really just replace
131 # the join slot with the subquery), with a major caveat - we can not
132 # join anything that is non-selecting (not part of the prefetch), but at
133 # the same time is a multi-type relationship, as it will explode the result.
134 #
135 # There are two possibilities here
136 # - either the join is non-restricting, in which case we simply throw it away
137 # - it is part of the restrictions, in which case we need to collapse the outer
138 # result by tackling yet another group_by to the outside of the query
139
052e8431 140 $from = [ @$from ];
052e8431 141
d28bb90d 142 # so first generate the outer_from, up to the substitution point
143 my @outer_from;
144 while (my $j = shift @$from) {
53c29913 145 $j = [ $j ] unless ref $j eq 'ARRAY'; # promote the head-from to an AoH
146
d28bb90d 147 if ($j->[0]{-alias} eq $attrs->{alias}) { # time to swap
148 push @outer_from, [
149 $subq_joinspec,
150 @{$j}[1 .. $#$j],
151 ];
152 last; # we'll take care of what's left in $from below
153 }
154 else {
155 push @outer_from, $j;
156 }
157 }
158
052e8431 159 # scan the from spec against different attributes, and see which joins are needed
160 # in what role
161 my $outer_aliastypes =
539ffe87 162 $self->_resolve_aliastypes_from_select_args( $from, $outer_select, $where, $outer_attrs );
052e8431 163
d28bb90d 164 # see what's left - throw away if not selecting/restricting
165 # also throw in a group_by if restricting to guard against
166 # cross-join explosions
167 #
168 while (my $j = shift @$from) {
169 my $alias = $j->[0]{-alias};
170
1a736efb 171 if ($outer_aliastypes->{selecting}{$alias}) {
d28bb90d 172 push @outer_from, $j;
173 }
1a736efb 174 elsif ($outer_aliastypes->{restricting}{$alias}) {
d28bb90d 175 push @outer_from, $j;
539ffe87 176 $outer_attrs->{group_by} ||= $outer_select unless $j->[0]{-is_single};
d28bb90d 177 }
178 }
179
180 # demote the outer_from head
181 $outer_from[0] = $outer_from[0][0];
182
183 # This is totally horrific - the $where ends up in both the inner and outer query
184 # Unfortunately not much can be done until SQLA2 introspection arrives, and even
185 # then if where conditions apply to the *right* side of the prefetch, you may have
186 # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
187 # the outer select to exclude joins you didin't want in the first place
188 #
189 # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
190 return (\@outer_from, $outer_select, $where, $outer_attrs);
191}
192
1a736efb 193#
194# I KNOW THIS SUCKS! GET SQLA2 OUT THE DOOR SO THIS CAN DIE!
195#
ad630f4b 196# Due to a lack of SQLA2 we fall back to crude scans of all the
197# select/where/order/group attributes, in order to determine what
198# aliases are neded to fulfill the query. This information is used
199# throughout the code to prune unnecessary JOINs from the queries
200# in an attempt to reduce the execution time.
201# Although the method is pretty horrific, the worst thing that can
1a736efb 202# happen is for it to fail due to some scalar SQL, which in turn will
203# result in a vocal exception.
539ffe87 204sub _resolve_aliastypes_from_select_args {
052e8431 205 my ( $self, $from, $select, $where, $attrs ) = @_;
546f1cd9 206
ad630f4b 207 $self->throw_exception ('Unable to analyze custom {from}')
208 if ref $from ne 'ARRAY';
546f1cd9 209
ad630f4b 210 # what we will return
964a3c71 211 my $aliases_by_type;
546f1cd9 212
ad630f4b 213 # see what aliases are there to work with
214 my $alias_list;
539ffe87 215 for (@$from) {
216 my $j = $_;
ad630f4b 217 $j = $j->[0] if ref $j eq 'ARRAY';
539ffe87 218 my $al = $j->{-alias}
219 or next;
220
221 $alias_list->{$al} = $j;
222 $aliases_by_type->{multiplying}{$al} = 1
53c29913 223 if ref($_) eq 'ARRAY' and ! $j->{-is_single}; # not array == {from} head == can't be multiplying
546f1cd9 224 }
546f1cd9 225
1a736efb 226 # get a column to source/alias map (including unqualified ones)
227 my $colinfo = $self->_resolve_column_info ($from);
228
ad630f4b 229 # set up a botched SQLA
230 my $sql_maker = $self->sql_maker;
07f31d19 231
3f5b99fe 232 local $sql_maker->{having_bind}; # these are throw away results
233
234 # we can't scan properly without any quoting (\b doesn't cut it
235 # everywhere), so unless there is proper quoting set - use our
236 # own weird impossible character.
237 # Also in the case of no quoting, we need to explicitly disable
238 # name_sep, otherwise sorry nasty legacy syntax like
239 # { 'count(foo.id)' => { '>' => 3 } } will stop working >:(
240 local $sql_maker->{quote_char} = $sql_maker->{quote_char};
241 local $sql_maker->{name_sep} = $sql_maker->{name_sep};
242
243 unless (defined $sql_maker->{quote_char} and length $sql_maker->{quote_char}) {
244 $sql_maker->{quote_char} = "\x00";
245 $sql_maker->{name_sep} = '';
246 }
247
248 my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
07f31d19 249
1a736efb 250 # generate sql chunks
251 my $to_scan = {
252 restricting => [
253 $sql_maker->_recurse_where ($where),
a7e643b1 254 $sql_maker->_parse_rs_attrs ({
1a736efb 255 map { $_ => $attrs->{$_} } (qw/group_by having/)
256 }),
257 ],
258 selecting => [
7d3139ac 259 $self->_extract_order_columns ($attrs->{order_by}, $sql_maker),
1a736efb 260 $sql_maker->_recurse_fields ($select),
261 ],
262 };
263
264 # throw away empty chunks
265 $_ = [ map { $_ || () } @$_ ] for values %$to_scan;
266
267 # first loop through all fully qualified columns and get the corresponding
268 # alias (should work even if they are in scalarrefs)
ad630f4b 269 for my $alias (keys %$alias_list) {
1a736efb 270 my $al_re = qr/
3f5b99fe 271 $lquote $alias $rquote $sep
1a736efb 272 |
3f5b99fe 273 \b $alias \.
1a736efb 274 /x;
275
1a736efb 276 for my $type (keys %$to_scan) {
277 for my $piece (@{$to_scan->{$type}}) {
278 $aliases_by_type->{$type}{$alias} = 1 if ($piece =~ $al_re);
279 }
ad630f4b 280 }
1a736efb 281 }
282
283 # now loop through unqualified column names, and try to locate them within
284 # the chunks
285 for my $col (keys %$colinfo) {
3f5b99fe 286 next if $col =~ / \. /x; # if column is qualified it was caught by the above
1a736efb 287
3f5b99fe 288 my $col_re = qr/ $lquote $col $rquote /x;
1a736efb 289
290 for my $type (keys %$to_scan) {
291 for my $piece (@{$to_scan->{$type}}) {
292 $aliases_by_type->{$type}{$colinfo->{$col}{-source_alias}} = 1 if ($piece =~ $col_re);
293 }
07f31d19 294 }
295 }
296
297 # Add any non-left joins to the restriction list (such joins are indeed restrictions)
ad630f4b 298 for my $j (values %$alias_list) {
07f31d19 299 my $alias = $j->{-alias} or next;
1a736efb 300 $aliases_by_type->{restricting}{$alias} = 1 if (
07f31d19 301 (not $j->{-join_type})
302 or
303 ($j->{-join_type} !~ /^left (?: \s+ outer)? $/xi)
304 );
305 }
306
307 # mark all join parents as mentioned
308 # (e.g. join => { cds => 'tracks' } - tracks will need to bring cds too )
964a3c71 309 for my $type (keys %$aliases_by_type) {
310 for my $alias (keys %{$aliases_by_type->{$type}}) {
311 $aliases_by_type->{$type}{$_} = 1
faeb2407 312 for (map { values %$_ } @{ $alias_list->{$alias}{-join_path} || [] });
07f31d19 313 }
314 }
ad630f4b 315
964a3c71 316 return $aliases_by_type;
07f31d19 317}
318
d28bb90d 319sub _resolve_ident_sources {
320 my ($self, $ident) = @_;
321
322 my $alias2source = {};
323 my $rs_alias;
324
325 # the reason this is so contrived is that $ident may be a {from}
326 # structure, specifying multiple tables to join
6298a324 327 if ( blessed $ident && $ident->isa("DBIx::Class::ResultSource") ) {
d28bb90d 328 # this is compat mode for insert/update/delete which do not deal with aliases
329 $alias2source->{me} = $ident;
330 $rs_alias = 'me';
331 }
332 elsif (ref $ident eq 'ARRAY') {
333
334 for (@$ident) {
335 my $tabinfo;
336 if (ref $_ eq 'HASH') {
337 $tabinfo = $_;
338 $rs_alias = $tabinfo->{-alias};
339 }
340 if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
341 $tabinfo = $_->[0];
342 }
343
344 $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-source_handle}->resolve
345 if ($tabinfo->{-source_handle});
346 }
347 }
348
349 return ($alias2source, $rs_alias);
350}
351
352# Takes $ident, \@column_names
353#
354# returns { $column_name => \%column_info, ... }
355# also note: this adds -result_source => $rsrc to the column info
356#
09e14fdc 357# If no columns_names are supplied returns info about *all* columns
358# for all sources
d28bb90d 359sub _resolve_column_info {
360 my ($self, $ident, $colnames) = @_;
361 my ($alias2src, $root_alias) = $self->_resolve_ident_sources($ident);
362
09e14fdc 363 my (%return, %seen_cols, @auto_colnames);
d28bb90d 364
365 # compile a global list of column names, to be able to properly
366 # disambiguate unqualified column names (if at all possible)
367 for my $alias (keys %$alias2src) {
368 my $rsrc = $alias2src->{$alias};
369 for my $colname ($rsrc->columns) {
370 push @{$seen_cols{$colname}}, $alias;
3f5b99fe 371 push @auto_colnames, "$alias.$colname" unless $colnames;
d28bb90d 372 }
373 }
374
09e14fdc 375 $colnames ||= [
376 @auto_colnames,
377 grep { @{$seen_cols{$_}} == 1 } (keys %seen_cols),
378 ];
379
d28bb90d 380 COLUMN:
381 foreach my $col (@$colnames) {
3f5b99fe 382 my ($alias, $colname) = $col =~ m/^ (?: ([^\.]+) \. )? (.+) $/x;
d28bb90d 383
384 unless ($alias) {
385 # see if the column was seen exactly once (so we know which rsrc it came from)
386 if ($seen_cols{$colname} and @{$seen_cols{$colname}} == 1) {
387 $alias = $seen_cols{$colname}[0];
388 }
389 else {
390 next COLUMN;
391 }
392 }
393
394 my $rsrc = $alias2src->{$alias};
395 $return{$col} = $rsrc && {
396 %{$rsrc->column_info($colname)},
397 -result_source => $rsrc,
398 -source_alias => $alias,
399 };
400 }
401
402 return \%return;
403}
404
289ac713 405# The DBIC relationship chaining implementation is pretty simple - every
406# new related_relationship is pushed onto the {from} stack, and the {select}
407# window simply slides further in. This means that when we count somewhere
408# in the middle, we got to make sure that everything in the join chain is an
409# actual inner join, otherwise the count will come back with unpredictable
410# results (a resultset may be generated with _some_ rows regardless of if
411# the relation which the $rs currently selects has rows or not). E.g.
412# $artist_rs->cds->count - normally generates:
413# SELECT COUNT( * ) FROM artist me LEFT JOIN cd cds ON cds.artist = me.artistid
414# which actually returns the number of artists * (number of cds || 1)
415#
416# So what we do here is crawl {from}, determine if the current alias is at
417# the top of the stack, and if not - make sure the chain is inner-joined down
418# to the root.
419#
31a8aaaf 420sub _inner_join_to_node {
289ac713 421 my ($self, $from, $alias) = @_;
422
423 # subqueries and other oddness are naturally not supported
424 return $from if (
425 ref $from ne 'ARRAY'
426 ||
427 @$from <= 1
428 ||
429 ref $from->[0] ne 'HASH'
430 ||
431 ! $from->[0]{-alias}
432 ||
7eb76996 433 $from->[0]{-alias} eq $alias # this last bit means $alias is the head of $from - nothing to do
289ac713 434 );
435
436 # find the current $alias in the $from structure
437 my $switch_branch;
438 JOINSCAN:
439 for my $j (@{$from}[1 .. $#$from]) {
440 if ($j->[0]{-alias} eq $alias) {
441 $switch_branch = $j->[0]{-join_path};
442 last JOINSCAN;
443 }
444 }
445
7eb76996 446 # something else went quite wrong
289ac713 447 return $from unless $switch_branch;
448
449 # So it looks like we will have to switch some stuff around.
450 # local() is useless here as we will be leaving the scope
451 # anyway, and deep cloning is just too fucking expensive
7eb76996 452 # So replace the first hashref in the node arrayref manually
289ac713 453 my @new_from = ($from->[0]);
faeb2407 454 my $sw_idx = { map { (values %$_), 1 } @$switch_branch }; #there's one k/v per join-path
289ac713 455
456 for my $j (@{$from}[1 .. $#$from]) {
457 my $jalias = $j->[0]{-alias};
458
459 if ($sw_idx->{$jalias}) {
460 my %attrs = %{$j->[0]};
461 delete $attrs{-join_type};
462 push @new_from, [
463 \%attrs,
464 @{$j}[ 1 .. $#$j ],
465 ];
466 }
467 else {
468 push @new_from, $j;
469 }
470 }
471
472 return \@new_from;
473}
474
bac6c4fb 475# Most databases do not allow aliasing of tables in UPDATE/DELETE. Thus
476# a condition containing 'me' or other table prefixes will not work
477# at all. What this code tries to do (badly) is introspect the condition
478# and remove all column qualifiers. If it bails out early (returns undef)
479# the calling code should try another approach (e.g. a subquery)
480sub _strip_cond_qualifiers {
481 my ($self, $where) = @_;
482
483 my $cond = {};
484
485 # No-op. No condition, we're updating/deleting everything
486 return $cond unless $where;
487
488 if (ref $where eq 'ARRAY') {
489 $cond = [
490 map {
491 my %hash;
492 foreach my $key (keys %{$_}) {
493 $key =~ /([^.]+)$/;
494 $hash{$1} = $_->{$key};
495 }
496 \%hash;
497 } @$where
498 ];
499 }
500 elsif (ref $where eq 'HASH') {
501 if ( (keys %$where) == 1 && ( (keys %{$where})[0] eq '-and' )) {
502 $cond->{-and} = [];
503 my @cond = @{$where->{-and}};
504 for (my $i = 0; $i < @cond; $i++) {
505 my $entry = $cond[$i];
506 my $hash;
037e8dca 507 my $ref = ref $entry;
508 if ($ref eq 'HASH' or $ref eq 'ARRAY') {
bac6c4fb 509 $hash = $self->_strip_cond_qualifiers($entry);
510 }
037e8dca 511 elsif (! $ref) {
bac6c4fb 512 $entry =~ /([^.]+)$/;
513 $hash->{$1} = $cond[++$i];
514 }
037e8dca 515 else {
516 $self->throw_exception ("_strip_cond_qualifiers() is unable to handle a condition reftype $ref");
517 }
bac6c4fb 518 push @{$cond->{-and}}, $hash;
519 }
520 }
521 else {
522 foreach my $key (keys %$where) {
59ac6523 523 if ($key eq '-or' && ref $where->{$key} eq 'ARRAY') {
524 $cond->{$key} = $self->_strip_cond_qualifiers($where->{$key});
525 }
526 else {
527 $key =~ /([^.]+)$/;
528 $cond->{$1} = $where->{$key};
529 }
bac6c4fb 530 }
531 }
532 }
533 else {
534 return undef;
535 }
536
537 return $cond;
538}
539
7d3139ac 540sub _extract_order_columns {
1a736efb 541 my ($self, $order_by, $sql_maker) = @_;
c0748280 542
1a736efb 543 my $parser = sub {
544 my ($sql_maker, $order_by) = @_;
c0748280 545
1a736efb 546 return scalar $sql_maker->_order_by_chunks ($order_by)
547 unless wantarray;
c0748280 548
1a736efb 549 my @chunks;
550 for my $chunk (map { ref $_ ? @$_ : $_ } ($sql_maker->_order_by_chunks ($order_by) ) ) {
551 $chunk =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
552 push @chunks, $chunk;
553 }
554
555 return @chunks;
556 };
557
558 if ($sql_maker) {
559 return $parser->($sql_maker, $order_by);
560 }
561 else {
562 $sql_maker = $self->sql_maker;
563 local $sql_maker->{quote_char};
564 return $parser->($sql_maker, $order_by);
565 }
c0748280 566}
bac6c4fb 567
d28bb90d 5681;