Stop flooding the console with garbage on pg blob errors
[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
6298a324 16use List::Util 'first';
17use Scalar::Util 'blessed';
18use namespace::clean;
d28bb90d 19
20#
052e8431 21# This code will remove non-selecting/non-restricting joins from
4b1b5ea3 22# {from} specs, aiding the RDBMS query optimizer
052e8431 23#
24sub _prune_unused_joins {
ea95892e 25 my $self = shift;
4b1b5ea3 26 my ($from, $select, $where, $attrs) = @_;
052e8431 27
ea95892e 28 return $from unless $self->_use_join_optimizer;
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?!')
36fd7f07 62 if not @{$attrs->{_prefetch_selector_range}};
d28bb90d 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 };
36fd7f07 73 delete $inner_attrs->{$_} for qw/for collapse _prefetch_selector_range _collapse_order_by select as/;
d28bb90d 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 = [];
36fd7f07 90
91 my ($p_start, $p_end) = @{$outer_attrs->{_prefetch_selector_range}};
92 for my $i (0 .. $p_start - 1, $p_end + 1 .. $#$outer_select) {
d28bb90d 93 my $sel = $outer_select->[$i];
94
95 if (ref $sel eq 'HASH' ) {
96 $sel->{-as} ||= $attrs->{as}[$i];
97 $outer_select->[$i] = join ('.', $attrs->{alias}, ($sel->{-as} || "inner_column_$i") );
98 }
99
100 push @$inner_select, $sel;
bb9bffea 101
102 push @{$inner_attrs->{as}}, $attrs->{as}[$i];
d28bb90d 103 }
104
ea95892e 105 # construct the inner $from and lock it in a subquery
48580715 106 # we need to prune first, because this will determine if we need a group_by below
53c29913 107 # the fake group_by is so that the pruner throws away all non-selecting, non-restricting
108 # multijoins (since we def. do not care about those inside the subquery)
ea95892e 109
110 my $subq_joinspec = do {
111
112 # must use it here regardless of user requests
113 local $self->{_use_join_optimizer} = 1;
114
115 my $inner_from = $self->_prune_unused_joins ($from, $inner_select, $where, {
116 group_by => ['dummy'], %$inner_attrs,
117 });
118
887a0aef 119 my $inner_aliastypes =
120 $self->_resolve_aliastypes_from_select_args( $inner_from, $inner_select, $where, $inner_attrs );
121
122 # if a multi-type non-selecting (only restricting) join was needed in the subquery
123 # add a group_by to simulate the collapse in the subq
0a3441ee 124 if (
125 ! $inner_attrs->{group_by}
126 and
887a0aef 127 first {
128 $inner_aliastypes->{restricting}{$_}
129 and
130 ! $inner_aliastypes->{selecting}{$_}
131 } ( keys %{$inner_aliastypes->{multiplying}||{}} )
0a3441ee 132 ) {
14e26c5f 133 my $unprocessed_order_chunks;
134 ($inner_attrs->{group_by}, $unprocessed_order_chunks) = $self->_group_over_selection (
0a3441ee 135 $inner_from, $inner_select, $inner_attrs->{order_by}
136 );
14e26c5f 137
138 $self->throw_exception (
139 'A required group_by clause could not be constructed automatically due to a complex '
140 . 'order_by criteria. Either order_by columns only (no functions) or construct a suitable '
141 . 'group_by by hand'
142 ) if $unprocessed_order_chunks;
0a3441ee 143 }
ea95892e 144
145 # we already optimized $inner_from above
146 local $self->{_use_join_optimizer} = 0;
147
148 # generate the subquery
149 my $subq = $self->_select_args_to_query (
150 $inner_from,
151 $inner_select,
152 $where,
153 $inner_attrs,
154 );
155
156 +{
157 -alias => $attrs->{alias},
4376a157 158 -rsrc => $inner_from->[0]{-rsrc},
ea95892e 159 $attrs->{alias} => $subq,
160 };
d28bb90d 161 };
162
163 # Generate the outer from - this is relatively easy (really just replace
164 # the join slot with the subquery), with a major caveat - we can not
165 # join anything that is non-selecting (not part of the prefetch), but at
166 # the same time is a multi-type relationship, as it will explode the result.
167 #
168 # There are two possibilities here
169 # - either the join is non-restricting, in which case we simply throw it away
170 # - it is part of the restrictions, in which case we need to collapse the outer
171 # result by tackling yet another group_by to the outside of the query
172
052e8431 173 $from = [ @$from ];
052e8431 174
d28bb90d 175 # so first generate the outer_from, up to the substitution point
176 my @outer_from;
177 while (my $j = shift @$from) {
53c29913 178 $j = [ $j ] unless ref $j eq 'ARRAY'; # promote the head-from to an AoH
179
d28bb90d 180 if ($j->[0]{-alias} eq $attrs->{alias}) { # time to swap
181 push @outer_from, [
182 $subq_joinspec,
183 @{$j}[1 .. $#$j],
184 ];
185 last; # we'll take care of what's left in $from below
186 }
187 else {
188 push @outer_from, $j;
189 }
190 }
191
ea95892e 192 # scan the *remaining* from spec against different attributes, and see which joins are needed
052e8431 193 # in what role
194 my $outer_aliastypes =
539ffe87 195 $self->_resolve_aliastypes_from_select_args( $from, $outer_select, $where, $outer_attrs );
052e8431 196
d28bb90d 197 # see what's left - throw away if not selecting/restricting
198 # also throw in a group_by if restricting to guard against
199 # cross-join explosions
200 #
36fd7f07 201 my $need_outer_group_by;
d28bb90d 202 while (my $j = shift @$from) {
203 my $alias = $j->[0]{-alias};
204
1a736efb 205 if ($outer_aliastypes->{selecting}{$alias}) {
d28bb90d 206 push @outer_from, $j;
207 }
1a736efb 208 elsif ($outer_aliastypes->{restricting}{$alias}) {
d28bb90d 209 push @outer_from, $j;
36fd7f07 210 $need_outer_group_by ||= ! $j->[0]{-is_single};
d28bb90d 211 }
212 }
213
214 # demote the outer_from head
215 $outer_from[0] = $outer_from[0][0];
216
36fd7f07 217 if ($need_outer_group_by and ! $outer_attrs->{group_by}) {
218
219 my $unprocessed_order_chunks;
220 ($outer_attrs->{group_by}, $unprocessed_order_chunks) = $self->_group_over_selection (
221 \@outer_from, $outer_select, $outer_attrs->{order_by}
222 );
223
224 $self->throw_exception (
225 'A required group_by clause could not be constructed automatically due to a complex '
226 . 'order_by criteria. Either order_by columns only (no functions) or construct a suitable '
227 . 'group_by by hand'
228 ) if $unprocessed_order_chunks;
229
230 }
231
d28bb90d 232 # This is totally horrific - the $where ends up in both the inner and outer query
233 # Unfortunately not much can be done until SQLA2 introspection arrives, and even
234 # then if where conditions apply to the *right* side of the prefetch, you may have
235 # to both filter the inner select (e.g. to apply a limit) and then have to re-filter
236 # the outer select to exclude joins you didin't want in the first place
237 #
238 # OTOH it can be seen as a plus: <ash> (notes that this query would make a DBA cry ;)
239 return (\@outer_from, $outer_select, $where, $outer_attrs);
240}
241
1a736efb 242#
243# I KNOW THIS SUCKS! GET SQLA2 OUT THE DOOR SO THIS CAN DIE!
244#
ad630f4b 245# Due to a lack of SQLA2 we fall back to crude scans of all the
246# select/where/order/group attributes, in order to determine what
247# aliases are neded to fulfill the query. This information is used
248# throughout the code to prune unnecessary JOINs from the queries
249# in an attempt to reduce the execution time.
250# Although the method is pretty horrific, the worst thing that can
1a736efb 251# happen is for it to fail due to some scalar SQL, which in turn will
252# result in a vocal exception.
539ffe87 253sub _resolve_aliastypes_from_select_args {
052e8431 254 my ( $self, $from, $select, $where, $attrs ) = @_;
546f1cd9 255
ad630f4b 256 $self->throw_exception ('Unable to analyze custom {from}')
257 if ref $from ne 'ARRAY';
546f1cd9 258
ad630f4b 259 # what we will return
964a3c71 260 my $aliases_by_type;
546f1cd9 261
ad630f4b 262 # see what aliases are there to work with
263 my $alias_list;
539ffe87 264 for (@$from) {
265 my $j = $_;
ad630f4b 266 $j = $j->[0] if ref $j eq 'ARRAY';
539ffe87 267 my $al = $j->{-alias}
268 or next;
269
270 $alias_list->{$al} = $j;
271 $aliases_by_type->{multiplying}{$al} = 1
53c29913 272 if ref($_) eq 'ARRAY' and ! $j->{-is_single}; # not array == {from} head == can't be multiplying
546f1cd9 273 }
546f1cd9 274
1a736efb 275 # get a column to source/alias map (including unqualified ones)
276 my $colinfo = $self->_resolve_column_info ($from);
277
ad630f4b 278 # set up a botched SQLA
279 my $sql_maker = $self->sql_maker;
07f31d19 280
4c2b30d6 281 # these are throw away results, do not pollute the bind stack
4c2b30d6 282 local $sql_maker->{select_bind};
0542ec57 283 local $sql_maker->{where_bind};
284 local $sql_maker->{group_bind};
285 local $sql_maker->{having_bind};
3f5b99fe 286
287 # we can't scan properly without any quoting (\b doesn't cut it
288 # everywhere), so unless there is proper quoting set - use our
289 # own weird impossible character.
290 # Also in the case of no quoting, we need to explicitly disable
291 # name_sep, otherwise sorry nasty legacy syntax like
292 # { 'count(foo.id)' => { '>' => 3 } } will stop working >:(
293 local $sql_maker->{quote_char} = $sql_maker->{quote_char};
294 local $sql_maker->{name_sep} = $sql_maker->{name_sep};
295
296 unless (defined $sql_maker->{quote_char} and length $sql_maker->{quote_char}) {
e493ecb2 297 $sql_maker->{quote_char} = ["\x00", "\xFF"];
298 # if we don't unset it we screw up retarded but unfortunately working
299 # 'MAX(foo.bar)' => { '>', 3 }
3f5b99fe 300 $sql_maker->{name_sep} = '';
301 }
302
303 my ($lquote, $rquote, $sep) = map { quotemeta $_ } ($sql_maker->_quote_chars, $sql_maker->name_sep);
07f31d19 304
1a736efb 305 # generate sql chunks
306 my $to_scan = {
307 restricting => [
308 $sql_maker->_recurse_where ($where),
a7e643b1 309 $sql_maker->_parse_rs_attrs ({
1a736efb 310 map { $_ => $attrs->{$_} } (qw/group_by having/)
311 }),
312 ],
313 selecting => [
1a736efb 314 $sql_maker->_recurse_fields ($select),
bac358c9 315 ( map { $_->[0] } $self->_extract_order_criteria ($attrs->{order_by}, $sql_maker) ),
1a736efb 316 ],
317 };
318
319 # throw away empty chunks
320 $_ = [ map { $_ || () } @$_ ] for values %$to_scan;
321
322 # first loop through all fully qualified columns and get the corresponding
323 # alias (should work even if they are in scalarrefs)
ad630f4b 324 for my $alias (keys %$alias_list) {
1a736efb 325 my $al_re = qr/
3f5b99fe 326 $lquote $alias $rquote $sep
1a736efb 327 |
3f5b99fe 328 \b $alias \.
1a736efb 329 /x;
330
1a736efb 331 for my $type (keys %$to_scan) {
332 for my $piece (@{$to_scan->{$type}}) {
333 $aliases_by_type->{$type}{$alias} = 1 if ($piece =~ $al_re);
334 }
ad630f4b 335 }
1a736efb 336 }
337
338 # now loop through unqualified column names, and try to locate them within
339 # the chunks
340 for my $col (keys %$colinfo) {
3f5b99fe 341 next if $col =~ / \. /x; # if column is qualified it was caught by the above
1a736efb 342
3f5b99fe 343 my $col_re = qr/ $lquote $col $rquote /x;
1a736efb 344
345 for my $type (keys %$to_scan) {
346 for my $piece (@{$to_scan->{$type}}) {
347 $aliases_by_type->{$type}{$colinfo->{$col}{-source_alias}} = 1 if ($piece =~ $col_re);
348 }
07f31d19 349 }
350 }
351
352 # Add any non-left joins to the restriction list (such joins are indeed restrictions)
ad630f4b 353 for my $j (values %$alias_list) {
07f31d19 354 my $alias = $j->{-alias} or next;
1a736efb 355 $aliases_by_type->{restricting}{$alias} = 1 if (
07f31d19 356 (not $j->{-join_type})
357 or
358 ($j->{-join_type} !~ /^left (?: \s+ outer)? $/xi)
359 );
360 }
361
ea95892e 362 # mark all restricting/selecting join parents as such
07f31d19 363 # (e.g. join => { cds => 'tracks' } - tracks will need to bring cds too )
ea95892e 364 for my $type (qw/restricting selecting/) {
365 for my $alias (keys %{$aliases_by_type->{$type}||{}}) {
964a3c71 366 $aliases_by_type->{$type}{$_} = 1
faeb2407 367 for (map { values %$_ } @{ $alias_list->{$alias}{-join_path} || [] });
07f31d19 368 }
369 }
ad630f4b 370
964a3c71 371 return $aliases_by_type;
07f31d19 372}
373
bac358c9 374# This is the engine behind { distinct => 1 }
0a3441ee 375sub _group_over_selection {
376 my ($self, $from, $select, $order_by) = @_;
377
378 my $rs_column_list = $self->_resolve_column_info ($from);
379
380 my (@group_by, %group_index);
381
36fd7f07 382 # the logic is: if it is a { func => val } we assume an aggregate,
383 # otherwise if \'...' or \[...] we assume the user knows what is
384 # going on thus group over it
0a3441ee 385 for (@$select) {
386 if (! ref($_) or ref ($_) ne 'HASH' ) {
387 push @group_by, $_;
388 $group_index{$_}++;
389 if ($rs_column_list->{$_} and $_ !~ /\./ ) {
390 # add a fully qualified version as well
391 $group_index{"$rs_column_list->{$_}{-source_alias}.$_"}++;
392 }
393 }
394 }
395
396 # add any order_by parts that are not already present in the group_by
397 # we need to be careful not to add any named functions/aggregates
bac358c9 398 # i.e. order_by => [ ... { count => 'foo' } ... ]
14e26c5f 399 my @leftovers;
bac358c9 400 for ($self->_extract_order_criteria($order_by)) {
0a3441ee 401 # only consider real columns (for functions the user got to do an explicit group_by)
14e26c5f 402 if (@$_ != 1) {
403 push @leftovers, $_;
404 next;
405 }
bac358c9 406 my $chunk = $_->[0];
14e26c5f 407 my $colinfo = $rs_column_list->{$chunk} or do {
408 push @leftovers, $_;
409 next;
410 };
0a3441ee 411
412 $chunk = "$colinfo->{-source_alias}.$chunk" if $chunk !~ /\./;
413 push @group_by, $chunk unless $group_index{$chunk}++;
414 }
415
14e26c5f 416 return wantarray
417 ? (\@group_by, (@leftovers ? \@leftovers : undef) )
418 : \@group_by
419 ;
0a3441ee 420}
421
d28bb90d 422sub _resolve_ident_sources {
423 my ($self, $ident) = @_;
424
425 my $alias2source = {};
426 my $rs_alias;
427
428 # the reason this is so contrived is that $ident may be a {from}
429 # structure, specifying multiple tables to join
6298a324 430 if ( blessed $ident && $ident->isa("DBIx::Class::ResultSource") ) {
d28bb90d 431 # this is compat mode for insert/update/delete which do not deal with aliases
432 $alias2source->{me} = $ident;
433 $rs_alias = 'me';
434 }
435 elsif (ref $ident eq 'ARRAY') {
436
437 for (@$ident) {
438 my $tabinfo;
439 if (ref $_ eq 'HASH') {
440 $tabinfo = $_;
441 $rs_alias = $tabinfo->{-alias};
442 }
443 if (ref $_ eq 'ARRAY' and ref $_->[0] eq 'HASH') {
444 $tabinfo = $_->[0];
445 }
446
4376a157 447 $alias2source->{$tabinfo->{-alias}} = $tabinfo->{-rsrc}
448 if ($tabinfo->{-rsrc});
d28bb90d 449 }
450 }
451
452 return ($alias2source, $rs_alias);
453}
454
455# Takes $ident, \@column_names
456#
457# returns { $column_name => \%column_info, ... }
458# also note: this adds -result_source => $rsrc to the column info
459#
09e14fdc 460# If no columns_names are supplied returns info about *all* columns
461# for all sources
d28bb90d 462sub _resolve_column_info {
463 my ($self, $ident, $colnames) = @_;
464 my ($alias2src, $root_alias) = $self->_resolve_ident_sources($ident);
465
52416317 466 my (%seen_cols, @auto_colnames);
d28bb90d 467
468 # compile a global list of column names, to be able to properly
469 # disambiguate unqualified column names (if at all possible)
470 for my $alias (keys %$alias2src) {
471 my $rsrc = $alias2src->{$alias};
472 for my $colname ($rsrc->columns) {
473 push @{$seen_cols{$colname}}, $alias;
3f5b99fe 474 push @auto_colnames, "$alias.$colname" unless $colnames;
d28bb90d 475 }
476 }
477
09e14fdc 478 $colnames ||= [
479 @auto_colnames,
480 grep { @{$seen_cols{$_}} == 1 } (keys %seen_cols),
481 ];
482
52416317 483 my (%return, $colinfos);
d28bb90d 484 foreach my $col (@$colnames) {
52416317 485 my ($source_alias, $colname) = $col =~ m/^ (?: ([^\.]+) \. )? (.+) $/x;
d28bb90d 486
52416317 487 # if the column was seen exactly once - we know which rsrc it came from
488 $source_alias ||= $seen_cols{$colname}[0]
489 if ($seen_cols{$colname} and @{$seen_cols{$colname}} == 1);
d28bb90d 490
52416317 491 next unless $source_alias;
492
493 my $rsrc = $alias2src->{$source_alias}
494 or next;
495
496 $return{$col} = {
497 %{ ( $colinfos->{$source_alias} ||= $rsrc->columns_info )->{$colname} },
d28bb90d 498 -result_source => $rsrc,
52416317 499 -source_alias => $source_alias,
d28bb90d 500 };
501 }
502
503 return \%return;
504}
505
289ac713 506# The DBIC relationship chaining implementation is pretty simple - every
507# new related_relationship is pushed onto the {from} stack, and the {select}
508# window simply slides further in. This means that when we count somewhere
509# in the middle, we got to make sure that everything in the join chain is an
510# actual inner join, otherwise the count will come back with unpredictable
511# results (a resultset may be generated with _some_ rows regardless of if
512# the relation which the $rs currently selects has rows or not). E.g.
513# $artist_rs->cds->count - normally generates:
514# SELECT COUNT( * ) FROM artist me LEFT JOIN cd cds ON cds.artist = me.artistid
515# which actually returns the number of artists * (number of cds || 1)
516#
517# So what we do here is crawl {from}, determine if the current alias is at
518# the top of the stack, and if not - make sure the chain is inner-joined down
519# to the root.
520#
31a8aaaf 521sub _inner_join_to_node {
289ac713 522 my ($self, $from, $alias) = @_;
523
524 # subqueries and other oddness are naturally not supported
525 return $from if (
526 ref $from ne 'ARRAY'
527 ||
528 @$from <= 1
529 ||
530 ref $from->[0] ne 'HASH'
531 ||
532 ! $from->[0]{-alias}
533 ||
7eb76996 534 $from->[0]{-alias} eq $alias # this last bit means $alias is the head of $from - nothing to do
289ac713 535 );
536
537 # find the current $alias in the $from structure
538 my $switch_branch;
539 JOINSCAN:
540 for my $j (@{$from}[1 .. $#$from]) {
541 if ($j->[0]{-alias} eq $alias) {
542 $switch_branch = $j->[0]{-join_path};
543 last JOINSCAN;
544 }
545 }
546
7eb76996 547 # something else went quite wrong
289ac713 548 return $from unless $switch_branch;
549
550 # So it looks like we will have to switch some stuff around.
551 # local() is useless here as we will be leaving the scope
552 # anyway, and deep cloning is just too fucking expensive
7eb76996 553 # So replace the first hashref in the node arrayref manually
289ac713 554 my @new_from = ($from->[0]);
faeb2407 555 my $sw_idx = { map { (values %$_), 1 } @$switch_branch }; #there's one k/v per join-path
289ac713 556
557 for my $j (@{$from}[1 .. $#$from]) {
558 my $jalias = $j->[0]{-alias};
559
560 if ($sw_idx->{$jalias}) {
561 my %attrs = %{$j->[0]};
562 delete $attrs{-join_type};
563 push @new_from, [
564 \%attrs,
565 @{$j}[ 1 .. $#$j ],
566 ];
567 }
568 else {
569 push @new_from, $j;
570 }
571 }
572
573 return \@new_from;
574}
575
bac6c4fb 576# Most databases do not allow aliasing of tables in UPDATE/DELETE. Thus
577# a condition containing 'me' or other table prefixes will not work
578# at all. What this code tries to do (badly) is introspect the condition
579# and remove all column qualifiers. If it bails out early (returns undef)
580# the calling code should try another approach (e.g. a subquery)
61f031bf 581
582sub _strip_cond_qualifiers_from_array {
583 my ($self, $where) = @_;
584 my @cond;
585 for (my $i = 0; $i < @$where; $i++) {
586 my $entry = $where->[$i];
587 my $hash;
588 my $ref = ref $entry;
589 if ($ref eq 'HASH' or $ref eq 'ARRAY') {
590 $hash = $self->_strip_cond_qualifiers($entry);
591 }
592 elsif (! $ref) {
593 $entry =~ /([^.]+)$/;
594 $hash->{$1} = $where->[++$i];
595 }
596 push @cond, $hash;
597 }
598 return \@cond;
599}
600
bac6c4fb 601sub _strip_cond_qualifiers {
602 my ($self, $where) = @_;
603
604 my $cond = {};
605
606 # No-op. No condition, we're updating/deleting everything
607 return $cond unless $where;
608
609 if (ref $where eq 'ARRAY') {
61f031bf 610 $cond = $self->_strip_cond_qualifiers_from_array($where);
bac6c4fb 611 }
612 elsif (ref $where eq 'HASH') {
613 if ( (keys %$where) == 1 && ( (keys %{$where})[0] eq '-and' )) {
61f031bf 614 $cond->{-and} =
615 $self->_strip_cond_qualifiers_from_array($where->{-and});
bac6c4fb 616 }
617 else {
618 foreach my $key (keys %$where) {
59ac6523 619 if ($key eq '-or' && ref $where->{$key} eq 'ARRAY') {
620 $cond->{$key} = $self->_strip_cond_qualifiers($where->{$key});
621 }
622 else {
623 $key =~ /([^.]+)$/;
624 $cond->{$1} = $where->{$key};
625 }
bac6c4fb 626 }
627 }
628 }
629 else {
630 return undef;
631 }
632
633 return $cond;
634}
635
bac358c9 636sub _extract_order_criteria {
1a736efb 637 my ($self, $order_by, $sql_maker) = @_;
c0748280 638
1a736efb 639 my $parser = sub {
640 my ($sql_maker, $order_by) = @_;
c0748280 641
1a736efb 642 return scalar $sql_maker->_order_by_chunks ($order_by)
643 unless wantarray;
c0748280 644
1a736efb 645 my @chunks;
bac358c9 646 for ($sql_maker->_order_by_chunks ($order_by) ) {
647 my $chunk = ref $_ ? $_ : [ $_ ];
648 $chunk->[0] =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
1a736efb 649 push @chunks, $chunk;
650 }
651
652 return @chunks;
653 };
654
655 if ($sql_maker) {
656 return $parser->($sql_maker, $order_by);
657 }
658 else {
659 $sql_maker = $self->sql_maker;
660 local $sql_maker->{quote_char};
661 return $parser->($sql_maker, $order_by);
662 }
c0748280 663}
bac6c4fb 664
d28bb90d 6651;