initial start of warn-style caller info
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract / Tree.pm
CommitLineData
01dd4e4f 1package SQL::Abstract::Tree;
2
3use strict;
4use warnings;
5use Carp;
6
a97eb57c 7use List::Util;
2fed0b4b 8use Hash::Merge 'merge';
9
10Hash::Merge::specify_behavior({
11 SCALAR => {
12 SCALAR => sub { $_[1] },
13 ARRAY => sub { [ $_[0], @{$_[1]} ] },
14 HASH => sub { $_[1] },
15 },
16 ARRAY => {
17 SCALAR => sub { $_[1] },
18 ARRAY => sub { $_[1] },
19 HASH => sub { $_[1] },
20 },
21 HASH => {
22 SCALAR => sub { $_[1] },
23 ARRAY => sub { [ values %{$_[0]}, @{$_[1]} ] },
24 HASH => sub { Hash::Merge::_merge_hashes( $_[0], $_[1] ) },
25 },
26}, 'My Behavior' );
1536de15 27
1536de15 28use base 'Class::Accessor::Grouped';
29
30__PACKAGE__->mk_group_accessors( simple => $_ ) for qw(
fb272e73 31 newline indent_string indent_amount colormap indentmap fill_in_placeholders
637bb22c 32 include_caller caller_depth
1536de15 33);
34
01dd4e4f 35# Parser states for _recurse_parse()
36use constant PARSE_TOP_LEVEL => 0;
37use constant PARSE_IN_EXPR => 1;
38use constant PARSE_IN_PARENS => 2;
39use constant PARSE_RHS => 3;
40
41# These SQL keywords always signal end of the current expression (except inside
42# of a parenthesized subexpression).
43# Format: A list of strings that will be compiled to extended syntax (ie.
44# /.../x) regexes, without capturing parentheses. They will be automatically
45# anchored to word boundaries to match the whole token).
46my @expression_terminator_sql_keywords = (
47 'SELECT',
7853a177 48 'UPDATE',
49 'INSERT \s+ INTO',
50 'DELETE \s+ FROM',
3d910890 51 'FROM',
7853a177 52 'SET',
01dd4e4f 53 '(?:
54 (?:
55 (?: \b (?: LEFT | RIGHT | FULL ) \s+ )?
56 (?: \b (?: CROSS | INNER | OUTER ) \s+ )?
57 )?
58 JOIN
59 )',
60 'ON',
61 'WHERE',
7853a177 62 'VALUES',
01dd4e4f 63 'EXISTS',
64 'GROUP \s+ BY',
65 'HAVING',
66 'ORDER \s+ BY',
67 'LIMIT',
68 'OFFSET',
69 'FOR',
70 'UNION',
71 'INTERSECT',
72 'EXCEPT',
73 'RETURNING',
8d0dd7dc 74 'ROW_NUMBER \s* \( \s* \) \s+ OVER',
01dd4e4f 75);
76
77# These are binary operator keywords always a single LHS and RHS
78# * AND/OR are handled separately as they are N-ary
79# * so is NOT as being unary
80# * BETWEEN without paranthesis around the ANDed arguments (which
81# makes it a non-binary op) is detected and accomodated in
82# _recurse_parse()
83my $stuff_around_mathops = qr/[\w\s\`\'\"\)]/;
84my @binary_op_keywords = (
85 ( map
86 {
87 ' ^ ' . quotemeta ($_) . "(?= \$ | $stuff_around_mathops ) ",
88 " (?<= $stuff_around_mathops)" . quotemeta ($_) . "(?= \$ | $stuff_around_mathops ) ",
89 }
90 (qw/< > != <> = <= >=/)
91 ),
92 ( map
93 { '\b (?: NOT \s+)?' . $_ . '\b' }
94 (qw/IN BETWEEN LIKE/)
95 ),
96);
97
98my $tokenizer_re_str = join("\n\t|\n",
99 ( map { '\b' . $_ . '\b' } @expression_terminator_sql_keywords, 'AND', 'OR', 'NOT'),
100 @binary_op_keywords,
101);
102
103my $tokenizer_re = qr/ \s* ( $tokenizer_re_str | \( | \) | \? ) \s* /xi;
104
105sub _binary_op_keywords { @binary_op_keywords }
106
7e5600e9 107my %indents = (
7853a177 108 select => 0,
109 update => 0,
110 'insert into' => 0,
111 'delete from' => 0,
3d910890 112 from => 1,
91916220 113 where => 0,
7853a177 114 join => 1,
115 'left join' => 1,
116 on => 2,
91916220 117 'group by' => 0,
118 'order by' => 0,
7853a177 119 set => 1,
120 into => 1,
91916220 121 values => 1,
7e5600e9 122);
123
75c3a063 124my %profiles = (
125 console => {
637bb22c 126 caller_depth => 0,
84c65032 127 fill_in_placeholders => 1,
1536de15 128 indent_string => ' ',
75c3a063 129 indent_amount => 2,
1536de15 130 newline => "\n",
3be357b0 131 colormap => {},
7e5600e9 132 indentmap => { %indents },
3be357b0 133 },
134 console_monochrome => {
637bb22c 135 caller_depth => 0,
84c65032 136 fill_in_placeholders => 1,
3be357b0 137 indent_string => ' ',
138 indent_amount => 2,
139 newline => "\n",
140 colormap => {},
7e5600e9 141 indentmap => { %indents },
142 },
143 html => {
637bb22c 144 caller_depth => 0,
84c65032 145 fill_in_placeholders => 1,
7e5600e9 146 indent_string => '&nbsp;',
147 indent_amount => 2,
148 newline => "<br />\n",
149 colormap => {
7853a177 150 select => ['<span class="select">' , '</span>'],
151 'insert into' => ['<span class="insert-into">' , '</span>'],
152 update => ['<span class="select">' , '</span>'],
153 'delete from' => ['<span class="delete-from">' , '</span>'],
154 where => ['<span class="where">' , '</span>'],
155 from => ['<span class="from">' , '</span>'],
156 join => ['<span class="join">' , '</span>'],
157 on => ['<span class="on">' , '</span>'],
158 'group by' => ['<span class="group-by">', '</span>'],
159 'order by' => ['<span class="order-by">', '</span>'],
160 set => ['<span class="set">', '</span>'],
161 into => ['<span class="into">', '</span>'],
162 values => ['<span class="values">', '</span>'],
1536de15 163 },
7e5600e9 164 indentmap => { %indents },
75c3a063 165 },
166 none => {
1536de15 167 colormap => {},
168 indentmap => {},
75c3a063 169 },
170);
171
3be357b0 172eval {
173 require Term::ANSIColor;
174 $profiles{console}->{colormap} = {
7853a177 175 select => [Term::ANSIColor::color('red'), Term::ANSIColor::color('reset')],
176 'insert into' => [Term::ANSIColor::color('red'), Term::ANSIColor::color('reset')],
177 update => [Term::ANSIColor::color('red'), Term::ANSIColor::color('reset')],
178 'delete from' => [Term::ANSIColor::color('red'), Term::ANSIColor::color('reset')],
179
180 set => [Term::ANSIColor::color('cyan'), Term::ANSIColor::color('reset')],
c1b89c4f 181 from => [Term::ANSIColor::color('cyan'), Term::ANSIColor::color('reset')],
7853a177 182
183 where => [Term::ANSIColor::color('green'), Term::ANSIColor::color('reset')],
184 values => [Term::ANSIColor::color('yellow'), Term::ANSIColor::color('reset')],
185
186 join => [Term::ANSIColor::color('magenta'), Term::ANSIColor::color('reset')],
187 'left join' => [Term::ANSIColor::color('magenta'), Term::ANSIColor::color('reset')],
188 on => [Term::ANSIColor::color('blue'), Term::ANSIColor::color('reset')],
189
190 'group by' => [Term::ANSIColor::color('yellow'), Term::ANSIColor::color('reset')],
191 'order by' => [Term::ANSIColor::color('yellow'), Term::ANSIColor::color('reset')],
3be357b0 192 };
193};
194
75c3a063 195sub new {
2fed0b4b 196 my $class = shift;
197 my $args = shift || {};
75c3a063 198
199 my $profile = delete $args->{profile} || 'none';
2fed0b4b 200 my $data = merge( $profiles{$profile}, $args );
75c3a063 201
202 bless $data, $class
203}
d695b0ad 204
01dd4e4f 205sub parse {
d695b0ad 206 my ($self, $s) = @_;
01dd4e4f 207
208 # tokenize string, and remove all optional whitespace
209 my $tokens = [];
210 foreach my $token (split $tokenizer_re, $s) {
211 push @$tokens, $token if (length $token) && ($token =~ /\S/);
212 }
213
d695b0ad 214 my $tree = $self->_recurse_parse($tokens, PARSE_TOP_LEVEL);
01dd4e4f 215 return $tree;
216}
217
218sub _recurse_parse {
d695b0ad 219 my ($self, $tokens, $state) = @_;
01dd4e4f 220
221 my $left;
222 while (1) { # left-associative parsing
223
224 my $lookahead = $tokens->[0];
225 if ( not defined($lookahead)
226 or
227 ($state == PARSE_IN_PARENS && $lookahead eq ')')
228 or
229 ($state == PARSE_IN_EXPR && grep { $lookahead =~ /^ $_ $/xi } ('\)', @expression_terminator_sql_keywords ) )
230 or
231 ($state == PARSE_RHS && grep { $lookahead =~ /^ $_ $/xi } ('\)', @expression_terminator_sql_keywords, @binary_op_keywords, 'AND', 'OR', 'NOT' ) )
232 ) {
233 return $left;
234 }
235
236 my $token = shift @$tokens;
237
238 # nested expression in ()
239 if ($token eq '(' ) {
d695b0ad 240 my $right = $self->_recurse_parse($tokens, PARSE_IN_PARENS);
241 $token = shift @$tokens or croak "missing closing ')' around block " . $self->unparse($right);
242 $token eq ')' or croak "unexpected token '$token' terminating block " . $self->unparse($right);
01dd4e4f 243
244 $left = $left ? [@$left, [PAREN => [$right] ]]
245 : [PAREN => [$right] ];
246 }
247 # AND/OR
248 elsif ($token =~ /^ (?: OR | AND ) $/xi ) {
249 my $op = uc $token;
d695b0ad 250 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 251
252 # Merge chunks if logic matches
253 if (ref $right and $op eq $right->[0]) {
254 $left = [ (shift @$right ), [$left, map { @$_ } @$right] ];
255 }
256 else {
257 $left = [$op => [$left, $right]];
258 }
259 }
260 # binary operator keywords
261 elsif (grep { $token =~ /^ $_ $/xi } @binary_op_keywords ) {
262 my $op = uc $token;
d695b0ad 263 my $right = $self->_recurse_parse($tokens, PARSE_RHS);
01dd4e4f 264
265 # A between with a simple LITERAL for a 1st RHS argument needs a
266 # rerun of the search to (hopefully) find the proper AND construct
267 if ($op eq 'BETWEEN' and $right->[0] eq 'LITERAL') {
268 unshift @$tokens, $right->[1][0];
d695b0ad 269 $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 270 }
271
272 $left = [$op => [$left, $right] ];
273 }
274 # expression terminator keywords (as they start a new expression)
275 elsif (grep { $token =~ /^ $_ $/xi } @expression_terminator_sql_keywords ) {
276 my $op = uc $token;
d695b0ad 277 my $right = $self->_recurse_parse($tokens, PARSE_IN_EXPR);
01dd4e4f 278 $left = $left ? [ $left, [$op => [$right] ]]
279 : [ $op => [$right] ];
280 }
281 # NOT (last as to allow all other NOT X pieces first)
282 elsif ( $token =~ /^ not $/ix ) {
283 my $op = uc $token;
d695b0ad 284 my $right = $self->_recurse_parse ($tokens, PARSE_RHS);
01dd4e4f 285 $left = $left ? [ @$left, [$op => [$right] ]]
286 : [ $op => [$right] ];
287
288 }
289 # literal (eat everything on the right until RHS termination)
290 else {
d695b0ad 291 my $right = $self->_recurse_parse ($tokens, PARSE_RHS);
292 $left = $left ? [ $left, [LITERAL => [join ' ', $token, $self->unparse($right)||()] ] ]
293 : [ LITERAL => [join ' ', $token, $self->unparse($right)||()] ];
01dd4e4f 294 }
295 }
296}
297
d695b0ad 298sub format_keyword {
299 my ($self, $keyword) = @_;
300
1536de15 301 if (my $around = $self->colormap->{lc $keyword}) {
d695b0ad 302 $keyword = "$around->[0]$keyword$around->[1]";
303 }
304
305 return $keyword
306}
307
728f26a2 308my %starters = (
309 select => 1,
310 update => 1,
311 'insert into' => 1,
312 'delete from' => 1,
313);
314
a24cc3a0 315sub whitespace {
316 my ($self, $keyword, $depth) = @_;
e171c446 317
318 my $before = '';
1536de15 319 if (defined $self->indentmap->{lc $keyword}) {
320 $before = $self->newline . $self->indent($depth + $self->indentmap->{lc $keyword});
a24cc3a0 321 }
728f26a2 322 $before = '' if $depth == 0 and defined $starters{lc $keyword};
b4e0e260 323 return [$before, ' '];
a24cc3a0 324}
325
1536de15 326sub indent { ($_[0]->indent_string||'') x ( ( $_[0]->indent_amount || 0 ) * $_[1] ) }
a24cc3a0 327
a97eb57c 328sub _is_key {
329 my ($self, $tree) = @_;
0569a14f 330 $tree = $tree->[0] while ref $tree;
331
a97eb57c 332 defined $tree && defined $self->indentmap->{lc $tree};
0569a14f 333}
334
fb272e73 335sub _fill_in_placeholder {
336 my ($self, $bindargs) = @_;
337
338 if ($self->fill_in_placeholders) {
637bb22c 339 my $val = pop @{$bindargs} || '';
fb272e73 340 $val =~ s/\\/\\\\/g;
341 $val =~ s/'/\\'/g;
342 return qq('$val')
343 }
344 return '?'
345}
346
637bb22c 347sub _caller_info {
348 my ($self, $depth) = @_;
349
350 return '' if $depth != 1 or !$self->include_caller;
351
352 my @caller_info = caller($self->caller_depth + 0);
353
354 " at $caller_info[1] line $caller_info[2].";
355}
356
01dd4e4f 357sub unparse {
637bb22c 358 my ($self, $tree, $bindargs, $indent, $depth) = @_;
a24cc3a0 359
637bb22c 360 $depth ||= 0;
361 $indent ||= 0;
01dd4e4f 362
363 if (not $tree ) {
364 return '';
365 }
a24cc3a0 366
367 my $car = $tree->[0];
368 my $cdr = $tree->[1];
369
370 if (ref $car) {
637bb22c 371 return join ('', map $self->unparse($_, $bindargs, $indent, $depth + 1), @$tree);
01dd4e4f 372 }
a24cc3a0 373 elsif ($car eq 'LITERAL') {
fb272e73 374 if ($cdr->[0] eq '?') {
375 return $self->_fill_in_placeholder($bindargs)
376 }
a24cc3a0 377 return $cdr->[0];
01dd4e4f 378 }
a24cc3a0 379 elsif ($car eq 'PAREN') {
e171c446 380 return '(' .
a24cc3a0 381 join(' ',
637bb22c 382 map $self->unparse($_, $bindargs, $indent + 2, $depth + 1), @{$cdr}) .
383 ($self->_is_key($cdr)?( $self->newline||'' ).$self->indent($indent + 1):'') . ') ';
01dd4e4f 384 }
a24cc3a0 385 elsif ($car eq 'OR' or $car eq 'AND' or (grep { $car =~ /^ $_ $/xi } @binary_op_keywords ) ) {
637bb22c 386 return join (" $car ", map $self->unparse($_, $bindargs, $indent, $depth + 1), @{$cdr});
01dd4e4f 387 }
388 else {
637bb22c 389 my ($l, $r) = @{$self->whitespace($car, $indent)};
390 return sprintf "$l%s %s$r%s", $self->format_keyword($car), $self->unparse($cdr, $bindargs, $indent, $depth + 1), $self->_caller_info($depth);
01dd4e4f 391 }
392}
393
fb272e73 394sub format { my $self = shift; $self->unparse($self->parse($_[0]), $_[1]) }
01dd4e4f 395
3961;
397
3be357b0 398=pod
399
400=head1 SYNOPSIS
401
402 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
403
404 print $sqla_tree->format('SELECT * FROM foo WHERE foo.a > 2');
405
406 # SELECT *
407 # FROM foo
408 # WHERE foo.a > 2
409
6b1bf9f8 410=head1 METHODS
411
412=head2 new
413
414 my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' });
415
416=head2 format
417
418 $sqlat->format('SELECT * FROM bar')
419
420Returns a formatting string based on wthe string passed in