Original (now passing) test for 08e163601
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract / Tree.pm
CommitLineData
01dd4e4f 1package SQL::Abstract::Tree;
2
3use strict;
4use warnings;
b3b79607 5no warnings 'qw';
01dd4e4f 6use Carp;
7
0769ac0e 8use Hash::Merge qw//;
9
10use base 'Class::Accessor::Grouped';
11
ad591616 12__PACKAGE__->mk_group_accessors( simple => qw(
0769ac0e 13 newline indent_string indent_amount colormap indentmap fill_in_placeholders
14 placeholder_surround
ad591616 15));
2fed0b4b 16
bc482085 17my $merger = Hash::Merge->new;
18
19$merger->specify_behavior({
2fed0b4b 20 SCALAR => {
21 SCALAR => sub { $_[1] },
22 ARRAY => sub { [ $_[0], @{$_[1]} ] },
23 HASH => sub { $_[1] },
24 },
25 ARRAY => {
26 SCALAR => sub { $_[1] },
27 ARRAY => sub { $_[1] },
28 HASH => sub { $_[1] },
29 },
30 HASH => {
31 SCALAR => sub { $_[1] },
32 ARRAY => sub { [ values %{$_[0]}, @{$_[1]} ] },
33 HASH => sub { Hash::Merge::_merge_hashes( $_[0], $_[1] ) },
34 },
0769ac0e 35}, 'SQLA::Tree Behavior' );
1536de15 36
0769ac0e 37my $op_look_ahead = '(?: (?= [\s\)\(\;] ) | \z)';
b3b79607 38my $op_look_behind = '(?: (?<= [\,\s\)\(] ) | \A )';
39
0769ac0e 40my $quote_left = qr/[\`\'\"\[]/;
41my $quote_right = qr/[\`\'\"\]]/;
01dd4e4f 42
4e914a7c 43my $placeholder_re = qr/(?: \? | \$\d+ )/x;
44
01dd4e4f 45# These SQL keywords always signal end of the current expression (except inside
46# of a parenthesized subexpression).
0769ac0e 47# Format: A list of strings that will be compiled to extended syntax ie.
01dd4e4f 48# /.../x) regexes, without capturing parentheses. They will be automatically
0769ac0e 49# anchored to op boundaries (excluding quotes) to match the whole token.
50my @expression_start_keywords = (
01dd4e4f 51 'SELECT',
7853a177 52 'UPDATE',
6c4d8eb8 53 'SET',
7853a177 54 'INSERT \s+ INTO',
55 'DELETE \s+ FROM',
3d910890 56 'FROM',
01dd4e4f 57 '(?:
58 (?:
0769ac0e 59 (?: (?: LEFT | RIGHT | FULL ) \s+ )?
60 (?: (?: CROSS | INNER | OUTER ) \s+ )?
01dd4e4f 61 )?
62 JOIN
63 )',
64 'ON',
65 'WHERE',
efc991a0 66 '(?: DEFAULT \s+ )? VALUES',
01dd4e4f 67 'GROUP \s+ BY',
68 'HAVING',
69 'ORDER \s+ BY',
c0eaa9fd 70 'SKIP',
81b3e585 71 'FETCH',
c0eaa9fd 72 'FIRST',
01dd4e4f 73 'LIMIT',
74 'OFFSET',
75 'FOR',
76 'UNION',
77 'INTERSECT',
78 'EXCEPT',
820bb1f5 79 'BEGIN \s+ WORK',
80 'COMMIT',
81 'ROLLBACK \s+ TO \s+ SAVEPOINT',
82 'ROLLBACK',
83 'SAVEPOINT',
84 'RELEASE \s+ SAVEPOINT',
01dd4e4f 85 'RETURNING',
8d0dd7dc 86 'ROW_NUMBER \s* \( \s* \) \s+ OVER',
01dd4e4f 87);
88
b3b79607 89my $expr_start_re = join ("\n\t|\n", @expression_start_keywords );
90$expr_start_re = qr/ $op_look_behind (?i: $expr_start_re ) $op_look_ahead /x;
0769ac0e 91
01dd4e4f 92# These are binary operator keywords always a single LHS and RHS
93# * AND/OR are handled separately as they are N-ary
94# * so is NOT as being unary
3af02ccb 95# * BETWEEN without parentheses around the ANDed arguments (which
96# makes it a non-binary op) is detected and accommodated in
01dd4e4f 97# _recurse_parse()
6c4d8eb8 98# * AS is not really an operator but is handled here as it's also LHS/RHS
01dd4e4f 99
0769ac0e 100# this will be included in the $binary_op_re, the distinction is interesting during
1ec9b9e3 101# testing as one is tighter than the other, plus alphanum cmp ops have different
102# look ahead/behind (e.g. "x"="y" )
103my @alphanum_cmp_op_keywords = (qw/< > != <> = <= >= /);
104my $alphanum_cmp_op_re = join ("\n\t|\n", map
0769ac0e 105 { "(?: (?<= [\\w\\s] | $quote_right ) | \\A )" . quotemeta ($_) . "(?: (?= [\\w\\s] | $quote_left ) | \\z )" }
1ec9b9e3 106 @alphanum_cmp_op_keywords
01dd4e4f 107);
1ec9b9e3 108$alphanum_cmp_op_re = qr/$alphanum_cmp_op_re/x;
0769ac0e 109
110my $binary_op_re = '(?: NOT \s+)? (?:' . join ('|', qw/IN BETWEEN R?LIKE/) . ')';
b3b79607 111$binary_op_re = join "\n\t|\n",
6c4d8eb8 112 "$op_look_behind (?i: $binary_op_re | AS ) $op_look_ahead",
1ec9b9e3 113 $alphanum_cmp_op_re,
b3b79607 114 $op_look_behind . 'IS (?:\s+ NOT)?' . "(?= \\s+ NULL \\b | $op_look_ahead )",
115;
b7b0f832 116$binary_op_re = qr/$binary_op_re/x;
0769ac0e 117
6f2a5b66 118my $unary_op_re = '(?: NOT \s+ EXISTS | NOT )';
119$unary_op_re = join "\n\t|\n",
120 "$op_look_behind (?i: $unary_op_re ) $op_look_ahead",
121;
122$unary_op_re = qr/$unary_op_re/x;
123
ad591616 124my $asc_desc_re = qr/$op_look_behind (?i: ASC | DESC ) $op_look_ahead /x;
125my $and_or_re = qr/$op_look_behind (?i: AND | OR ) $op_look_ahead /x;
6f2a5b66 126
ad591616 127my $tokenizer_re = join("\n\t|\n",
b3b79607 128 $expr_start_re,
0769ac0e 129 $binary_op_re,
6f2a5b66 130 $unary_op_re,
ad591616 131 $asc_desc_re,
132 $and_or_re,
1ec9b9e3 133 $op_look_behind . ' \* ' . $op_look_ahead,
257ecc8a 134 (map { quotemeta $_ } qw/, ( )/),
4e914a7c 135 $placeholder_re,
0769ac0e 136);
01dd4e4f 137
ad591616 138# this one *is* capturing for the split below
b3b79607 139# splits on whitespace if all else fails
3af02ccb 140# has to happen before the composing qr's are anchored (below)
ad591616 141$tokenizer_re = qr/ \s* ( $tokenizer_re ) \s* | \s+ /x;
b3b79607 142
143# Parser states for _recurse_parse()
144use constant PARSE_TOP_LEVEL => 0;
145use constant PARSE_IN_EXPR => 1;
146use constant PARSE_IN_PARENS => 2;
147use constant PARSE_IN_FUNC => 3;
148use constant PARSE_RHS => 4;
6f2a5b66 149use constant PARSE_LIST_ELT => 5;
b3b79607 150
ad591616 151my $expr_term_re = qr/$expr_start_re | \)/x;
152my $rhs_term_re = qr/ $expr_term_re | $binary_op_re | $unary_op_re | $asc_desc_re | $and_or_re | \, /x;
1ec9b9e3 153my $all_std_keywords_re = qr/ $rhs_term_re | \( | $placeholder_re /x;
ad591616 154
155# anchor everything - even though keywords are separated by the tokenizer, leakage may occur
156for (
157 $quote_left,
158 $quote_right,
159 $placeholder_re,
160 $expr_start_re,
1ec9b9e3 161 $alphanum_cmp_op_re,
ad591616 162 $binary_op_re,
163 $unary_op_re,
164 $asc_desc_re,
165 $and_or_re,
166 $expr_term_re,
167 $rhs_term_re,
ad591616 168 $all_std_keywords_re,
169) {
170 $_ = qr/ \A $_ \z /x;
171}
172
b4085a1a 173# what can be bunched together under one MISC in an AST
174my $compressable_node_re = qr/^ \- (?: MISC | LITERAL | PLACEHOLDER ) $/x;
01dd4e4f 175
7e5600e9 176my %indents = (
7853a177 177 select => 0,
178 update => 0,
179 'insert into' => 0,
180 'delete from' => 0,
3d910890 181 from => 1,
91916220 182 where => 0,
7853a177 183 join => 1,
184 'left join' => 1,
185 on => 2,
2867f4f5 186 having => 0,
91916220 187 'group by' => 0,
188 'order by' => 0,
7853a177 189 set => 1,
190 into => 1,
91916220 191 values => 1,
c0eaa9fd 192 limit => 1,
193 offset => 1,
194 skip => 1,
195 first => 1,
7e5600e9 196);
197
75c3a063 198my %profiles = (
199 console => {
84c65032 200 fill_in_placeholders => 1,
9d11f0d4 201 placeholder_surround => ['?/', ''],
1536de15 202 indent_string => ' ',
75c3a063 203 indent_amount => 2,
1536de15 204 newline => "\n",
3be357b0 205 colormap => {},
6d388c84 206 indentmap => \%indents,
aafbf833 207
208 eval { require Term::ANSIColor }
209 ? do {
210 my $c = \&Term::ANSIColor::color;
6d388c84 211
212 my $red = [$c->('red') , $c->('reset')];
213 my $cyan = [$c->('cyan') , $c->('reset')];
214 my $green = [$c->('green') , $c->('reset')];
215 my $yellow = [$c->('yellow') , $c->('reset')];
216 my $blue = [$c->('blue') , $c->('reset')];
217 my $magenta = [$c->('magenta'), $c->('reset')];
218 my $b_o_w = [$c->('black on_white'), $c->('reset')];
aafbf833 219 (
fb98df48 220 placeholder_surround => [$c->('black on_magenta'), $c->('reset')],
aafbf833 221 colormap => {
6d388c84 222 'begin work' => $b_o_w,
223 commit => $b_o_w,
224 rollback => $b_o_w,
225 savepoint => $b_o_w,
226 'rollback to savepoint' => $b_o_w,
227 'release savepoint' => $b_o_w,
228
229 select => $red,
230 'insert into' => $red,
231 update => $red,
232 'delete from' => $red,
233
234 set => $cyan,
235 from => $cyan,
236
237 where => $green,
238 values => $yellow,
239
240 join => $magenta,
241 'left join' => $magenta,
242 on => $blue,
243
244 'group by' => $yellow,
2867f4f5 245 having => $yellow,
6d388c84 246 'order by' => $yellow,
247
248 skip => $green,
249 first => $green,
250 limit => $green,
251 offset => $green,
aafbf833 252 }
253 );
254 } : (),
3be357b0 255 },
256 console_monochrome => {
84c65032 257 fill_in_placeholders => 1,
9d11f0d4 258 placeholder_surround => ['?/', ''],
3be357b0 259 indent_string => ' ',
260 indent_amount => 2,
261 newline => "\n",
262 colormap => {},
6d388c84 263 indentmap => \%indents,
7e5600e9 264 },
265 html => {
84c65032 266 fill_in_placeholders => 1,
9d11f0d4 267 placeholder_surround => ['<span class="placeholder">', '</span>'],
7e5600e9 268 indent_string => '&nbsp;',
269 indent_amount => 2,
270 newline => "<br />\n",
271 colormap => {
7853a177 272 select => ['<span class="select">' , '</span>'],
273 'insert into' => ['<span class="insert-into">' , '</span>'],
274 update => ['<span class="select">' , '</span>'],
275 'delete from' => ['<span class="delete-from">' , '</span>'],
c0eaa9fd 276
277 set => ['<span class="set">', '</span>'],
7853a177 278 from => ['<span class="from">' , '</span>'],
c0eaa9fd 279
280 where => ['<span class="where">' , '</span>'],
281 values => ['<span class="values">', '</span>'],
282
7853a177 283 join => ['<span class="join">' , '</span>'],
c0eaa9fd 284 'left join' => ['<span class="left-join">','</span>'],
7853a177 285 on => ['<span class="on">' , '</span>'],
c0eaa9fd 286
7853a177 287 'group by' => ['<span class="group-by">', '</span>'],
2867f4f5 288 having => ['<span class="having">', '</span>'],
7853a177 289 'order by' => ['<span class="order-by">', '</span>'],
c0eaa9fd 290
291 skip => ['<span class="skip">', '</span>'],
292 first => ['<span class="first">', '</span>'],
293 limit => ['<span class="limit">', '</span>'],
294 offset => ['<span class="offset">', '</span>'],
820bb1f5 295
296 'begin work' => ['<span class="begin-work">', '</span>'],
297 commit => ['<span class="commit">', '</span>'],
298 rollback => ['<span class="rollback">', '</span>'],
299 savepoint => ['<span class="savepoint">', '</span>'],
300 'rollback to savepoint' => ['<span class="rollback-to-savepoint">', '</span>'],
301 'release savepoint' => ['<span class="release-savepoint">', '</span>'],
1536de15 302 },
6d388c84 303 indentmap => \%indents,
75c3a063 304 },
305 none => {
1536de15 306 colormap => {},
307 indentmap => {},
75c3a063 308 },
309);
310
311sub new {
2fed0b4b 312 my $class = shift;
313 my $args = shift || {};
75c3a063 314
315 my $profile = delete $args->{profile} || 'none';
1c33db5d 316
317 die "No such profile '$profile'!" unless exists $profiles{$profile};
318
bc482085 319 my $data = $merger->merge( $profiles{$profile}, $args );
75c3a063 320
321 bless $data, $class
322}
d695b0ad 323
01dd4e4f 324sub parse {
d695b0ad 325 my ($self, $s) = @_;
01dd4e4f 326
327 # tokenize string, and remove all optional whitespace
328 my $tokens = [];
329 foreach my $token (split $tokenizer_re, $s) {
b3b79607 330 push @$tokens, $token if (
331 defined $token
332 and
333 length $token
09931431 334 and
b3b79607 335 $token =~ /\S/
336 );
01dd4e4f 337 }
6f2a5b66 338
339 return [ $self->_recurse_parse($tokens, PARSE_TOP_LEVEL) ];
01dd4e4f 340}
341
342sub _recurse_parse {
d695b0ad 343 my ($self, $tokens, $state) = @_;
01dd4e4f 344
6f2a5b66 345 my @left;
01dd4e4f 346 while (1) { # left-associative parsing
347
6f2a5b66 348 if ( ! @$tokens
01dd4e4f 349 or
6f2a5b66 350 ($state == PARSE_IN_PARENS && $tokens->[0] eq ')')
01dd4e4f 351 or
6f2a5b66 352 ($state == PARSE_IN_EXPR && $tokens->[0] =~ $expr_term_re )
0769ac0e 353 or
6f2a5b66 354 ($state == PARSE_RHS && $tokens->[0] =~ $rhs_term_re )
01dd4e4f 355 or
ad591616 356 ($state == PARSE_LIST_ELT && ( $tokens->[0] eq ',' or $tokens->[0] =~ $expr_term_re ) )
01dd4e4f 357 ) {
6f2a5b66 358 return @left;
01dd4e4f 359 }
360
361 my $token = shift @$tokens;
362
363 # nested expression in ()
364 if ($token eq '(' ) {
6f2a5b66 365 my @right = $self->_recurse_parse($tokens, PARSE_IN_PARENS);
366 $token = shift @$tokens or croak "missing closing ')' around block " . $self->unparse(\@right);
367 $token eq ')' or croak "unexpected token '$token' terminating block " . $self->unparse(\@right);
368
369 push @left, [ '-PAREN' => \@right ];
370 }
371
372 # AND/OR
ad591616 373 elsif ($token =~ $and_or_re) {
6f2a5b66 374 my $op = uc $token;
01dd4e4f 375
6f2a5b66 376 my @right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
377
378 # Merge chunks if "logic" matches
379 @left = [ $op => [ @left, (@right and $op eq $right[0][0])
380 ? @{ $right[0][1] }
381 : @right
382 ] ];
01dd4e4f 383 }
b3b79607 384
6f2a5b66 385 # LIST (,)
386 elsif ($token eq ',') {
387
388 my @right = $self->_recurse_parse($tokens, PARSE_LIST_ELT);
389
390 # deal with malformed lists ( foo, bar, , baz )
391 @right = [] unless @right;
01dd4e4f 392
6f2a5b66 393 @right = [ -MISC => [ @right ] ] if @right > 1;
394
395 if (!@left) {
396 @left = [ -LIST => [ [], @right ] ];
397 }
398 elsif ($left[0][0] eq '-LIST') {
399 push @{$left[0][1]}, (@{$right[0]} and $right[0][0] eq '-LIST')
400 ? @{$right[0][1]}
401 : @right
402 ;
01dd4e4f 403 }
404 else {
6f2a5b66 405 @left = [ -LIST => [ @left, @right ] ];
01dd4e4f 406 }
407 }
6f2a5b66 408
01dd4e4f 409 # binary operator keywords
6f2a5b66 410 elsif ($token =~ $binary_op_re) {
01dd4e4f 411 my $op = uc $token;
6f2a5b66 412
413 my @right = $self->_recurse_parse($tokens, PARSE_RHS);
01dd4e4f 414
415 # A between with a simple LITERAL for a 1st RHS argument needs a
416 # rerun of the search to (hopefully) find the proper AND construct
6f2a5b66 417 if ($op eq 'BETWEEN' and $right[0] eq '-LITERAL') {
418 unshift @$tokens, $right[1][0];
419 @right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 420 }
421
08e16360 422 push @left, [$op => [ (@left ? pop @left : ''), @right ]];
01dd4e4f 423 }
6f2a5b66 424
425 # unary op keywords
426 elsif ( $token =~ $unary_op_re ) {
01dd4e4f 427 my $op = uc $token;
6f2a5b66 428 my @right = $self->_recurse_parse ($tokens, PARSE_RHS);
429
430 push @left, [ $op => \@right ];
01dd4e4f 431 }
6f2a5b66 432
433 # expression terminator keywords
434 elsif ( $token =~ $expr_start_re ) {
01dd4e4f 435 my $op = uc $token;
6f2a5b66 436 my @right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 437
6f2a5b66 438 push @left, [ $op => \@right ];
01dd4e4f 439 }
6f2a5b66 440
441 # a '?'
4e914a7c 442 elsif ( $token =~ $placeholder_re) {
6f2a5b66 443 push @left, [ -PLACEHOLDER => [ $token ] ];
444 }
445
446 # check if the current token is an unknown op-start
1ec9b9e3 447 elsif (@$tokens and ($tokens->[0] eq '(' or $tokens->[0] =~ $placeholder_re ) ) {
6f2a5b66 448 push @left, [ $token => [ $self->_recurse_parse($tokens, PARSE_RHS) ] ];
4e914a7c 449 }
6f2a5b66 450
b3b79607 451 # we're now in "unknown token" land - start eating tokens until
6f30911f 452 # we see something familiar, OR in the case of RHS (binop) stop
453 # after the first token
e2a120ce 454 # Also stop processing when we could end up with an unknown func
01dd4e4f 455 else {
6f2a5b66 456 my @lits = [ -LITERAL => [$token] ];
b3b79607 457
b4085a1a 458 unshift @lits, pop @left if @left == 1;
459
6f30911f 460 unless ( $state == PARSE_RHS ) {
e2a120ce 461 while (
462 @$tokens
463 and
464 $tokens->[0] !~ $all_std_keywords_re
465 and
466 ! ( @$tokens > 1 and $tokens->[1] eq '(' )
467 ) {
6f30911f 468 push @lits, [ -LITERAL => [ shift @$tokens ] ];
b4085a1a 469 }
6f30911f 470 }
6f2a5b66 471
6f2a5b66 472 @lits = [ -MISC => [ @lits ] ] if @lits > 1;
473
474 push @left, @lits;
475 }
b3b79607 476
b4085a1a 477 # compress -LITERAL -MISC and -PLACEHOLDER pieces into a single
478 # -MISC container
479 if (@left > 1) {
480 my $i = 0;
481 while ($#left > $i) {
482 if ($left[$i][0] =~ $compressable_node_re and $left[$i+1][0] =~ $compressable_node_re) {
483 splice @left, $i, 2, [ -MISC => [
484 map { $_->[0] eq '-MISC' ? @{$_->[1]} : $_ } (@left[$i, $i+1])
485 ]];
486 }
487 else {
488 $i++;
489 }
490 }
491 }
492
493 return @left if $state == PARSE_RHS;
6f30911f 494
b4085a1a 495 # deal with post-fix operators
496 if (@$tokens) {
497 # asc/desc
6f2a5b66 498 if ($tokens->[0] =~ $asc_desc_re) {
1ec9b9e3 499 @left = [ ('-' . uc (shift @$tokens)) => [ @left ] ];
6f2a5b66 500 }
01dd4e4f 501 }
502 }
503}
504
d695b0ad 505sub format_keyword {
506 my ($self, $keyword) = @_;
507
1536de15 508 if (my $around = $self->colormap->{lc $keyword}) {
d695b0ad 509 $keyword = "$around->[0]$keyword$around->[1]";
510 }
511
512 return $keyword
513}
514
728f26a2 515my %starters = (
516 select => 1,
517 update => 1,
518 'insert into' => 1,
519 'delete from' => 1,
520);
521
f2ab166a 522sub pad_keyword {
a24cc3a0 523 my ($self, $keyword, $depth) = @_;
e171c446 524
525 my $before = '';
1536de15 526 if (defined $self->indentmap->{lc $keyword}) {
527 $before = $self->newline . $self->indent($depth + $self->indentmap->{lc $keyword});
a24cc3a0 528 }
728f26a2 529 $before = '' if $depth == 0 and defined $starters{lc $keyword};
e4570c8e 530 return [$before, ''];
a24cc3a0 531}
532
1536de15 533sub indent { ($_[0]->indent_string||'') x ( ( $_[0]->indent_amount || 0 ) * $_[1] ) }
a24cc3a0 534
a97eb57c 535sub _is_key {
536 my ($self, $tree) = @_;
0569a14f 537 $tree = $tree->[0] while ref $tree;
538
a97eb57c 539 defined $tree && defined $self->indentmap->{lc $tree};
0569a14f 540}
541
9d11f0d4 542sub fill_in_placeholder {
fb272e73 543 my ($self, $bindargs) = @_;
544
545 if ($self->fill_in_placeholders) {
ad46269d 546 my $val = shift @{$bindargs} || '';
4712657d 547 my $quoted = $val =~ s/^(['"])(.*)\1$/$2/;
9d11f0d4 548 my ($left, $right) = @{$self->placeholder_surround};
fb272e73 549 $val =~ s/\\/\\\\/g;
550 $val =~ s/'/\\'/g;
4712657d 551 $val = qq('$val') if $quoted;
552 return qq($left$val$right)
fb272e73 553 }
554 return '?'
555}
556
3a247d23 557# FIXME - terrible name for a user facing API
01dd4e4f 558sub unparse {
3a247d23 559 my ($self, $tree, $bindargs) = @_;
560 $self->_unparse($tree, [@{$bindargs||[]}], 0);
561}
a24cc3a0 562
3a247d23 563sub _unparse {
564 my ($self, $tree, $bindargs, $depth) = @_;
01dd4e4f 565
0769ac0e 566 if (not $tree or not @$tree) {
01dd4e4f 567 return '';
568 }
a24cc3a0 569
007f0853 570 # FIXME - needs a config switch to disable
c01ac648 571 $self->_parenthesis_unroll($tree);
007f0853 572
6f2a5b66 573 my ($op, $args) = @{$tree}[0,1];
0769ac0e 574
6f2a5b66 575 if (! defined $op or (! ref $op and ! defined $args) ) {
0769ac0e 576 require Data::Dumper;
577 Carp::confess( sprintf ( "Internal error - malformed branch at depth $depth:\n%s",
578 Data::Dumper::Dumper($tree)
579 ) );
580 }
a24cc3a0 581
6f2a5b66 582 if (ref $op) {
3a247d23 583 return join (' ', map $self->_unparse($_, $bindargs, $depth), @$tree);
01dd4e4f 584 }
6f2a5b66 585 elsif ($op eq '-LITERAL') { # literal has different sig
586 return $args->[0];
01dd4e4f 587 }
6f2a5b66 588 elsif ($op eq '-PLACEHOLDER') {
4e914a7c 589 return $self->fill_in_placeholder($bindargs);
590 }
6f2a5b66 591 elsif ($op eq '-PAREN') {
c4d7cfcf 592 return sprintf ('( %s )',
6f2a5b66 593 join (' ', map { $self->_unparse($_, $bindargs, $depth + 2) } @{$args} )
e4570c8e 594 .
6f2a5b66 595 ($self->_is_key($args)
e4570c8e 596 ? ( $self->newline||'' ) . $self->indent($depth + 1)
597 : ''
598 )
599 );
01dd4e4f 600 }
ad591616 601 elsif ($op eq 'AND' or $op eq 'OR' or $op =~ $binary_op_re ) {
6f2a5b66 602 return join (" $op ", map $self->_unparse($_, $bindargs, $depth), @{$args});
603 }
604 elsif ($op eq '-LIST' ) {
605 return join (', ', map $self->_unparse($_, $bindargs, $depth), @{$args});
01dd4e4f 606 }
6f2a5b66 607 elsif ($op eq '-MISC' ) {
608 return join (' ', map $self->_unparse($_, $bindargs, $depth), @{$args});
b3b79607 609 }
73835ff0 610 elsif ($op =~ qr/^-(ASC|DESC)$/ ) {
611 my $dir = $1;
612 return join (' ', (map $self->_unparse($_, $bindargs, $depth), @{$args}), $dir);
613 }
01dd4e4f 614 else {
6f2a5b66 615 my ($l, $r) = @{$self->pad_keyword($op, $depth)};
87abf9bc 616
617 my $rhs = $self->_unparse($args, $bindargs, $depth);
618
619 return sprintf "$l%s$r", join(
6f2a5b66 620 ( ref $args eq 'ARRAY' and @{$args} == 1 and $args->[0][0] eq '-PAREN' )
c4d7cfcf 621 ? '' # mysql--
622 : ' '
623 ,
87abf9bc 624 $self->format_keyword($op),
625 (length $rhs ? $rhs : () ),
626 );
01dd4e4f 627 }
628}
629
bb54fcb4 630# All of these keywords allow their parameters to be specified with or without parenthesis without changing the semantics
631my @unrollable_ops = (
632 'ON',
633 'WHERE',
634 'GROUP \s+ BY',
635 'HAVING',
636 'ORDER \s+ BY',
6e9a377b 637 'I?LIKE',
bb54fcb4 638);
639my $unrollable_ops_re = join ' | ', @unrollable_ops;
640$unrollable_ops_re = qr/$unrollable_ops_re/xi;
641
642sub _parenthesis_unroll {
643 my $self = shift;
644 my $ast = shift;
645
bb54fcb4 646 return unless (ref $ast and ref $ast->[1]);
647
648 my $changes;
649 do {
650 my @children;
651 $changes = 0;
652
653 for my $child (@{$ast->[1]}) {
007f0853 654
bb54fcb4 655 # the current node in this loop is *always* a PAREN
6f2a5b66 656 if (! ref $child or ! @$child or $child->[0] ne '-PAREN') {
bb54fcb4 657 push @children, $child;
658 next;
659 }
660
661 # unroll nested parenthesis
7d273452 662 while ( $ast->[0] ne 'IN' and @{$child->[1]} == 1 and $child->[1][0][0] eq '-PAREN') {
bb54fcb4 663 $child = $child->[1][0];
664 $changes++;
665 }
666
3af02ccb 667 # if the parent operator explicitly allows it nuke the parenthesis
6f2a5b66 668 if ( $ast->[0] =~ $unrollable_ops_re ) {
669 push @children, @{$child->[1]};
670 $changes++;
671 }
672
bb54fcb4 673 # if the parenthesis are wrapped around an AND/OR matching the parent AND/OR - open the parenthesis up and merge the list
6f2a5b66 674 elsif (
675 @{$child->[1]} == 1
676 and
bb54fcb4 677 ( $ast->[0] eq 'AND' or $ast->[0] eq 'OR')
678 and
6f2a5b66 679 $child->[1][0][0] eq $ast->[0]
bb54fcb4 680 ) {
681 push @children, @{$child->[1][0][1]};
682 $changes++;
683 }
684
bb54fcb4 685 # only *ONE* LITERAL or placeholder element
6e9a377b 686 # as an AND/OR/NOT argument
bb54fcb4 687 elsif (
688 @{$child->[1]} == 1 && (
6f2a5b66 689 $child->[1][0][0] eq '-LITERAL'
bb54fcb4 690 or
6f2a5b66 691 $child->[1][0][0] eq '-PLACEHOLDER'
6e9a377b 692 ) && (
693 $ast->[0] eq 'AND' or $ast->[0] eq 'OR' or $ast->[0] eq 'NOT'
bb54fcb4 694 )
695 ) {
6f2a5b66 696 push @children, @{$child->[1]};
bb54fcb4 697 $changes++;
698 }
699
007f0853 700 # an AND/OR expression with only one binop in the parenthesis
701 # with exactly two grandchildren
bb54fcb4 702 # the only time when we can *not* unroll this is when both
703 # the parent and the child are mathops (in which case we'll
704 # break precedence) or when the child is BETWEEN (special
705 # case)
706 elsif (
707 @{$child->[1]} == 1
708 and
007f0853 709 ($ast->[0] eq 'AND' or $ast->[0] eq 'OR')
710 and
ad591616 711 $child->[1][0][0] =~ $binary_op_re
bb54fcb4 712 and
713 $child->[1][0][0] ne 'BETWEEN'
714 and
715 @{$child->[1][0][1]} == 2
716 and
717 ! (
1ec9b9e3 718 $child->[1][0][0] =~ $alphanum_cmp_op_re
bb54fcb4 719 and
1ec9b9e3 720 $ast->[0] =~ $alphanum_cmp_op_re
bb54fcb4 721 )
722 ) {
6f2a5b66 723 push @children, @{$child->[1]};
bb54fcb4 724 $changes++;
725 }
726
727 # a function binds tighter than a mathop - see if our ancestor is a
728 # mathop, and our content is:
729 # a single non-mathop child with a single PAREN grandchild which
730 # would indicate mathop ( nonmathop ( ... ) )
731 # or a single non-mathop with a single LITERAL ( nonmathop foo )
732 # or a single non-mathop with a single PLACEHOLDER ( nonmathop ? )
733 elsif (
734 @{$child->[1]} == 1
735 and
736 @{$child->[1][0][1]} == 1
737 and
1ec9b9e3 738 $ast->[0] =~ $alphanum_cmp_op_re
bb54fcb4 739 and
1ec9b9e3 740 $child->[1][0][0] !~ $alphanum_cmp_op_re
bb54fcb4 741 and
742 (
6f2a5b66 743 $child->[1][0][1][0][0] eq '-PAREN'
bb54fcb4 744 or
6f2a5b66 745 $child->[1][0][1][0][0] eq '-LITERAL'
bb54fcb4 746 or
6f2a5b66 747 $child->[1][0][1][0][0] eq '-PLACEHOLDER'
bb54fcb4 748 )
749 ) {
6f2a5b66 750 push @children, @{$child->[1]};
bb54fcb4 751 $changes++;
752 }
753
1de1d085 754 # a construct of ... ( somefunc ( ... ) ) ... can safely lose the outer parens
755 # except for the case of ( NOT ( ... ) ) which has already been handled earlier
756 elsif (
757 @{$child->[1]} == 1
758 and
759 @{$child->[1][0][1]} == 1
760 and
761 $child->[1][0][0] ne 'NOT'
762 and
763 ref $child->[1][0][1][0] eq 'ARRAY'
764 and
765 $child->[1][0][1][0][0] eq '-PAREN'
766 ) {
767 push @children, @{$child->[1]};
768 $changes++;
769 }
770
bb54fcb4 771
772 # otherwise no more mucking for this pass
773 else {
774 push @children, $child;
775 }
776 }
777
778 $ast->[1] = \@children;
779
780 } while ($changes);
bb54fcb4 781}
782
0c2de280 783sub _strip_asc_from_order_by {
784 my ($self, $ast) = @_;
785
786 return $ast if (
787 ref $ast ne 'ARRAY'
788 or
789 $ast->[0] ne 'ORDER BY'
790 );
791
792
793 my $to_replace;
794
795 if (@{$ast->[1]} == 1 and $ast->[1][0][0] eq '-ASC') {
796 $to_replace = [ $ast->[1][0] ];
797 }
798 elsif (@{$ast->[1]} == 1 and $ast->[1][0][0] eq '-LIST') {
799 $to_replace = [ grep { $_->[0] eq '-ASC' } @{$ast->[1][0][1]} ];
800 }
801
802 @$_ = @{$_->[1][0]} for @$to_replace;
803
804 $ast;
805}
806
fb272e73 807sub format { my $self = shift; $self->unparse($self->parse($_[0]), $_[1]) }
01dd4e4f 808
8091;
810
3be357b0 811=pod
812
b912ee1e 813=head1 NAME
814
815SQL::Abstract::Tree - Represent SQL as an AST
816
3be357b0 817=head1 SYNOPSIS
818
819 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
820
821 print $sqla_tree->format('SELECT * FROM foo WHERE foo.a > 2');
822
823 # SELECT *
824 # FROM foo
825 # WHERE foo.a > 2
826
6b1bf9f8 827=head1 METHODS
828
829=head2 new
830
831 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
832
c22f502d 833 $args = {
834 profile => 'console', # predefined profile to use (default: 'none')
835 fill_in_placeholders => 1, # true for placeholder population
9d11f0d4 836 placeholder_surround => # The strings that will be wrapped around
837 [GREEN, RESET], # populated placeholders if the above is set
c22f502d 838 indent_string => ' ', # the string used when indenting
839 indent_amount => 2, # how many of above string to use for a single
840 # indent level
841 newline => "\n", # string for newline
842 colormap => {
843 select => [RED, RESET], # a pair of strings defining what to surround
844 # the keyword with for colorization
845 # ...
846 },
847 indentmap => {
848 select => 0, # A zero means that the keyword will start on
849 # a new line
850 from => 1, # Any other positive integer means that after
851 on => 2, # said newline it will get that many indents
852 # ...
853 },
854 }
855
856Returns a new SQL::Abstract::Tree object. All arguments are optional.
857
858=head3 profiles
859
860There are four predefined profiles, C<none>, C<console>, C<console_monochrome>,
861and C<html>. Typically a user will probably just use C<console> or
862C<console_monochrome>, but if something about a profile bothers you, merely
863use the profile and override the parts that you don't like.
864
6b1bf9f8 865=head2 format
866
c22f502d 867 $sqlat->format('SELECT * FROM bar WHERE x = ?', [1])
868
869Takes C<$sql> and C<\@bindargs>.
6b1bf9f8 870
1a3cc911 871Returns a formatting string based on the string passed in
ee4227a7 872
873=head2 parse
874
875 $sqlat->parse('SELECT * FROM bar WHERE x = ?')
876
877Returns a "tree" representing passed in SQL. Please do not depend on the
878structure of the returned tree. It may be stable at some point, but not yet.
879
880=head2 unparse
881
90d0250b 882 $sqlat->unparse($tree_structure, \@bindargs)
ee4227a7 883
884Transform "tree" into SQL, applying various transforms on the way.
885
886=head2 format_keyword
887
888 $sqlat->format_keyword('SELECT')
889
890Currently this just takes a keyword and puts the C<colormap> stuff around it.
891Later on it may do more and allow for coderef based transforms.
892
f2ab166a 893=head2 pad_keyword
ee4227a7 894
f2ab166a 895 my ($before, $after) = @{$sqlat->pad_keyword('SELECT')};
ee4227a7 896
897Returns whitespace to be inserted around a keyword.
9d11f0d4 898
899=head2 fill_in_placeholder
900
901 my $value = $sqlat->fill_in_placeholder(\@bindargs)
902
903Removes last arg from passed arrayref and returns it, surrounded with
904the values in placeholder_surround, and then surrounded with single quotes.
f2ab166a 905
906=head2 indent
907
908Returns as many indent strings as indent amounts times the first argument.
909
910=head1 ACCESSORS
911
912=head2 colormap
913
914See L</new>
915
916=head2 fill_in_placeholders
917
918See L</new>
919
920=head2 indent_amount
921
922See L</new>
923
924=head2 indent_string
925
926See L</new>
927
928=head2 indentmap
929
930See L</new>
931
932=head2 newline
933
934See L</new>
935
936=head2 placeholder_surround
937
938See L</new>
939