X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FAbstract%2FTree.pm;h=dcf9daf4ff0ec725dd8a28874ffe019847525f5e;hb=b09bbc263a350b2037311b7dc5792f4a7ec4dad5;hp=715b1aeaa8725eb59483706875f54e7dcff3ce15;hpb=9191622002f5757a7448634687a09036e17cc15f;p=dbsrgits%2FSQL-Abstract.git diff --git a/lib/SQL/Abstract/Tree.pm b/lib/SQL/Abstract/Tree.pm index 715b1ae..dcf9daf 100644 --- a/lib/SQL/Abstract/Tree.pm +++ b/lib/SQL/Abstract/Tree.pm @@ -4,11 +4,31 @@ use strict; use warnings; use Carp; +use List::Util; +use Hash::Merge 'merge'; + +Hash::Merge::specify_behavior({ + SCALAR => { + SCALAR => sub { $_[1] }, + ARRAY => sub { [ $_[0], @{$_[1]} ] }, + HASH => sub { $_[1] }, + }, + ARRAY => { + SCALAR => sub { $_[1] }, + ARRAY => sub { $_[1] }, + HASH => sub { $_[1] }, + }, + HASH => { + SCALAR => sub { $_[1] }, + ARRAY => sub { [ values %{$_[0]}, @{$_[1]} ] }, + HASH => sub { Hash::Merge::_merge_hashes( $_[0], $_[1] ) }, + }, +}, 'My Behavior' ); use base 'Class::Accessor::Grouped'; __PACKAGE__->mk_group_accessors( simple => $_ ) for qw( - newline indent_string indent_amount colormap indentmap + newline indent_string indent_amount colormap indentmap fill_in_placeholders ); # Parser states for _recurse_parse() @@ -102,6 +122,7 @@ my %indents = ( my %profiles = ( console => { + fill_in_placeholders => 1, indent_string => ' ', indent_amount => 2, newline => "\n", @@ -109,6 +130,7 @@ my %profiles = ( indentmap => { %indents }, }, console_monochrome => { + fill_in_placeholders => 1, indent_string => ' ', indent_amount => 2, newline => "\n", @@ -116,6 +138,7 @@ my %profiles = ( indentmap => { %indents }, }, html => { + fill_in_placeholders => 1, indent_string => ' ', indent_amount => 2, newline => "
\n", @@ -166,10 +189,11 @@ eval { }; sub new { - my ($class, $args) = @_; + my $class = shift; + my $args = shift || {}; my $profile = delete $args->{profile} || 'none'; - my $data = {%{$profiles{$profile}}, %{$args||{}}}; + my $data = merge( $profiles{$profile}, $args ); bless $data, $class } @@ -277,6 +301,13 @@ sub format_keyword { return $keyword } +my %starters = ( + select => 1, + update => 1, + 'insert into' => 1, + 'delete from' => 1, +); + sub whitespace { my ($self, $keyword, $depth) = @_; @@ -284,21 +315,33 @@ sub whitespace { if (defined $self->indentmap->{lc $keyword}) { $before = $self->newline . $self->indent($depth + $self->indentmap->{lc $keyword}); } - $before = '' if $depth == 0 and lc $keyword eq 'select'; + $before = '' if $depth == 0 and defined $starters{lc $keyword}; return [$before, ' ']; } sub indent { ($_[0]->indent_string||'') x ( ( $_[0]->indent_amount || 0 ) * $_[1] ) } -sub _is_select { - my $tree = shift; +sub _is_key { + my ($self, $tree) = @_; $tree = $tree->[0] while ref $tree; - defined $tree && lc $tree eq 'select'; + defined $tree && defined $self->indentmap->{lc $tree}; +} + +sub _fill_in_placeholder { + my ($self, $bindargs) = @_; + + if ($self->fill_in_placeholders) { + my $val = pop @{$bindargs} || ''; + $val =~ s/\\/\\\\/g; + $val =~ s/'/\\'/g; + return qq('$val') + } + return '?' } sub unparse { - my ($self, $tree, $depth) = @_; + my ($self, $tree, $bindargs, $depth) = @_; $depth ||= 0; @@ -310,27 +353,30 @@ sub unparse { my $cdr = $tree->[1]; if (ref $car) { - return join ('', map $self->unparse($_, $depth), @$tree); + return join ('', map $self->unparse($_, $bindargs, $depth), @$tree); } elsif ($car eq 'LITERAL') { + if ($cdr->[0] eq '?') { + return $self->_fill_in_placeholder($bindargs) + } return $cdr->[0]; } elsif ($car eq 'PAREN') { return '(' . join(' ', - map $self->unparse($_, $depth + 2), @{$cdr}) . - (_is_select($cdr)?( $self->newline||'' ).$self->indent($depth + 1):'') . ') '; + map $self->unparse($_, $bindargs, $depth + 2), @{$cdr}) . + ($self->_is_key($cdr)?( $self->newline||'' ).$self->indent($depth + 1):'') . ') '; } elsif ($car eq 'OR' or $car eq 'AND' or (grep { $car =~ /^ $_ $/xi } @binary_op_keywords ) ) { - return join (" $car ", map $self->unparse($_, $depth), @{$cdr}); + return join (" $car ", map $self->unparse($_, $bindargs, $depth), @{$cdr}); } else { my ($l, $r) = @{$self->whitespace($car, $depth)}; - return sprintf "$l%s %s$r", $self->format_keyword($car), $self->unparse($cdr, $depth); + return sprintf "$l%s %s$r", $self->format_keyword($car), $self->unparse($cdr, $bindargs, $depth); } } -sub format { my $self = shift; $self->unparse($self->parse(@_)) } +sub format { my $self = shift; $self->unparse($self->parse($_[0]), $_[1]) } 1; @@ -352,8 +398,40 @@ sub format { my $self = shift; $self->unparse($self->parse(@_)) } my $sqla_tree = SQL::Abstract::Tree->new({ profile => 'console' }); + $args = { + profile => 'console', # predefined profile to use (default: 'none') + fill_in_placeholders => 1, # true for placeholder population + indent_string => ' ', # the string used when indenting + indent_amount => 2, # how many of above string to use for a single + # indent level + newline => "\n", # string for newline + colormap => { + select => [RED, RESET], # a pair of strings defining what to surround + # the keyword with for colorization + # ... + }, + indentmap => { + select => 0, # A zero means that the keyword will start on + # a new line + from => 1, # Any other positive integer means that after + on => 2, # said newline it will get that many indents + # ... + }, + } + +Returns a new SQL::Abstract::Tree object. All arguments are optional. + +=head3 profiles + +There are four predefined profiles, C, C, C, +and C. Typically a user will probably just use C or +C, but if something about a profile bothers you, merely +use the profile and override the parts that you don't like. + =head2 format - $sqlat->format('SELECT * FROM bar') + $sqlat->format('SELECT * FROM bar WHERE x = ?', [1]) + +Takes C<$sql> and C<\@bindargs>. -Returns a formatting string based on wthe string passed in +Returns a formatting string based on the string passed in