OO-ify and add some silly colors for fun
[scpubgit/Q-Branch.git] / lib / SQL / Abstract / Tree.pm
CommitLineData
01dd4e4f 1package SQL::Abstract::Tree;
2
3use strict;
4use warnings;
5use Carp;
6
7# Parser states for _recurse_parse()
8use constant PARSE_TOP_LEVEL => 0;
9use constant PARSE_IN_EXPR => 1;
10use constant PARSE_IN_PARENS => 2;
11use constant PARSE_RHS => 3;
12
13# These SQL keywords always signal end of the current expression (except inside
14# of a parenthesized subexpression).
15# Format: A list of strings that will be compiled to extended syntax (ie.
16# /.../x) regexes, without capturing parentheses. They will be automatically
17# anchored to word boundaries to match the whole token).
18my @expression_terminator_sql_keywords = (
19 'SELECT',
20 'FROM',
21 '(?:
22 (?:
23 (?: \b (?: LEFT | RIGHT | FULL ) \s+ )?
24 (?: \b (?: CROSS | INNER | OUTER ) \s+ )?
25 )?
26 JOIN
27 )',
28 'ON',
29 'WHERE',
30 'EXISTS',
31 'GROUP \s+ BY',
32 'HAVING',
33 'ORDER \s+ BY',
34 'LIMIT',
35 'OFFSET',
36 'FOR',
37 'UNION',
38 'INTERSECT',
39 'EXCEPT',
40 'RETURNING',
41);
42
43# These are binary operator keywords always a single LHS and RHS
44# * AND/OR are handled separately as they are N-ary
45# * so is NOT as being unary
46# * BETWEEN without paranthesis around the ANDed arguments (which
47# makes it a non-binary op) is detected and accomodated in
48# _recurse_parse()
49my $stuff_around_mathops = qr/[\w\s\`\'\"\)]/;
50my @binary_op_keywords = (
51 ( map
52 {
53 ' ^ ' . quotemeta ($_) . "(?= \$ | $stuff_around_mathops ) ",
54 " (?<= $stuff_around_mathops)" . quotemeta ($_) . "(?= \$ | $stuff_around_mathops ) ",
55 }
56 (qw/< > != <> = <= >=/)
57 ),
58 ( map
59 { '\b (?: NOT \s+)?' . $_ . '\b' }
60 (qw/IN BETWEEN LIKE/)
61 ),
62);
63
64my $tokenizer_re_str = join("\n\t|\n",
65 ( map { '\b' . $_ . '\b' } @expression_terminator_sql_keywords, 'AND', 'OR', 'NOT'),
66 @binary_op_keywords,
67);
68
69my $tokenizer_re = qr/ \s* ( $tokenizer_re_str | \( | \) | \? ) \s* /xi;
70
71sub _binary_op_keywords { @binary_op_keywords }
72
d695b0ad 73sub new { bless sub {}, shift }
74
01dd4e4f 75sub parse {
d695b0ad 76 my ($self, $s) = @_;
01dd4e4f 77
78 # tokenize string, and remove all optional whitespace
79 my $tokens = [];
80 foreach my $token (split $tokenizer_re, $s) {
81 push @$tokens, $token if (length $token) && ($token =~ /\S/);
82 }
83
d695b0ad 84 my $tree = $self->_recurse_parse($tokens, PARSE_TOP_LEVEL);
01dd4e4f 85 return $tree;
86}
87
88sub _recurse_parse {
d695b0ad 89 my ($self, $tokens, $state) = @_;
01dd4e4f 90
91 my $left;
92 while (1) { # left-associative parsing
93
94 my $lookahead = $tokens->[0];
95 if ( not defined($lookahead)
96 or
97 ($state == PARSE_IN_PARENS && $lookahead eq ')')
98 or
99 ($state == PARSE_IN_EXPR && grep { $lookahead =~ /^ $_ $/xi } ('\)', @expression_terminator_sql_keywords ) )
100 or
101 ($state == PARSE_RHS && grep { $lookahead =~ /^ $_ $/xi } ('\)', @expression_terminator_sql_keywords, @binary_op_keywords, 'AND', 'OR', 'NOT' ) )
102 ) {
103 return $left;
104 }
105
106 my $token = shift @$tokens;
107
108 # nested expression in ()
109 if ($token eq '(' ) {
d695b0ad 110 my $right = $self->_recurse_parse($tokens, PARSE_IN_PARENS);
111 $token = shift @$tokens or croak "missing closing ')' around block " . $self->unparse($right);
112 $token eq ')' or croak "unexpected token '$token' terminating block " . $self->unparse($right);
01dd4e4f 113
114 $left = $left ? [@$left, [PAREN => [$right] ]]
115 : [PAREN => [$right] ];
116 }
117 # AND/OR
118 elsif ($token =~ /^ (?: OR | AND ) $/xi ) {
119 my $op = uc $token;
d695b0ad 120 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 121
122 # Merge chunks if logic matches
123 if (ref $right and $op eq $right->[0]) {
124 $left = [ (shift @$right ), [$left, map { @$_ } @$right] ];
125 }
126 else {
127 $left = [$op => [$left, $right]];
128 }
129 }
130 # binary operator keywords
131 elsif (grep { $token =~ /^ $_ $/xi } @binary_op_keywords ) {
132 my $op = uc $token;
d695b0ad 133 my $right = $self->_recurse_parse($tokens, PARSE_RHS);
01dd4e4f 134
135 # A between with a simple LITERAL for a 1st RHS argument needs a
136 # rerun of the search to (hopefully) find the proper AND construct
137 if ($op eq 'BETWEEN' and $right->[0] eq 'LITERAL') {
138 unshift @$tokens, $right->[1][0];
d695b0ad 139 $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 140 }
141
142 $left = [$op => [$left, $right] ];
143 }
144 # expression terminator keywords (as they start a new expression)
145 elsif (grep { $token =~ /^ $_ $/xi } @expression_terminator_sql_keywords ) {
146 my $op = uc $token;
d695b0ad 147 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 148 $left = $left ? [ $left, [$op => [$right] ]]
149 : [ $op => [$right] ];
150 }
151 # NOT (last as to allow all other NOT X pieces first)
152 elsif ( $token =~ /^ not $/ix ) {
153 my $op = uc $token;
d695b0ad 154 my $right = $self->_recurse_parse ($tokens, PARSE_RHS);
01dd4e4f 155 $left = $left ? [ @$left, [$op => [$right] ]]
156 : [ $op => [$right] ];
157
158 }
159 # literal (eat everything on the right until RHS termination)
160 else {
d695b0ad 161 my $right = $self->_recurse_parse ($tokens, PARSE_RHS);
162 $left = $left ? [ $left, [LITERAL => [join ' ', $token, $self->unparse($right)||()] ] ]
163 : [ LITERAL => [join ' ', $token, $self->unparse($right)||()] ];
01dd4e4f 164 }
165 }
166}
167
d695b0ad 168use Term::ANSIColor 'color';
169
170my %ghetto_colormap = (
171 select => [color('red'), color('reset')],
172 where => [color('green'), color('reset')],
173 from => [color('cyan'), color('reset')],
174);
175
176sub format_keyword {
177 my ($self, $keyword) = @_;
178
179 if (my $around = $ghetto_colormap{lc $keyword}) {
180 $keyword = "$around->[0]$keyword$around->[1]";
181 }
182
183 return $keyword
184}
185
01dd4e4f 186sub unparse {
d695b0ad 187 my ($self, $tree) = @_;
01dd4e4f 188
189 if (not $tree ) {
190 return '';
191 }
192 elsif (ref $tree->[0]) {
d695b0ad 193 return join (" ", map $self->unparse ($_), @$tree);
01dd4e4f 194 }
195 elsif ($tree->[0] eq 'LITERAL') {
196 return $tree->[1][0];
197 }
198 elsif ($tree->[0] eq 'PAREN') {
d695b0ad 199 return sprintf '(%s)', join (" ", map $self->unparse($_), @{$tree->[1]});
01dd4e4f 200 }
201 elsif ($tree->[0] eq 'OR' or $tree->[0] eq 'AND' or (grep { $tree->[0] =~ /^ $_ $/xi } @binary_op_keywords ) ) {
d695b0ad 202 return join (" $tree->[0] ", map $self->unparse($_), @{$tree->[1]});
01dd4e4f 203 }
204 else {
d695b0ad 205 return sprintf '%s %s', $self->format_keyword($tree->[0]), $self->unparse ($tree->[1]);
01dd4e4f 206 }
207}
208
d695b0ad 209sub format { my $self = shift; $self->unparse($self->parse(@_)) }
01dd4e4f 210
2111;
212