[Bast-commits] r9705 - in SQL-Abstract/1.x/trunk: . lib/SQL/Abstract
frew at dev.catalyst.perl.org
frew at dev.catalyst.perl.org
Thu Sep 9 02:50:57 GMT 2010
Author: frew
Date: 2010-09-09 03:50:57 +0100 (Thu, 09 Sep 2010)
New Revision: 9705
Modified:
SQL-Abstract/1.x/trunk/Changes
SQL-Abstract/1.x/trunk/lib/SQL/Abstract/Tree.pm
Log:
add placeholder support
Modified: SQL-Abstract/1.x/trunk/Changes
===================================================================
--- SQL-Abstract/1.x/trunk/Changes 2010-09-09 02:50:23 UTC (rev 9704)
+++ SQL-Abstract/1.x/trunk/Changes 2010-09-09 02:50:57 UTC (rev 9705)
@@ -1,5 +1,9 @@
Revision history for SQL::Abstract
+revision 1.67_03 2010-09-08
+----------------------------
+ - added fill_in_placeholders option for excellent copy/pasta
+
revision 1.67_02 2010-09-08
----------------------------
- rename DBIx::Class::Storage::PrettyPrinter to DBIx::Class::Storage::Debug::PrettyPrint
Modified: SQL-Abstract/1.x/trunk/lib/SQL/Abstract/Tree.pm
===================================================================
--- SQL-Abstract/1.x/trunk/lib/SQL/Abstract/Tree.pm 2010-09-09 02:50:23 UTC (rev 9704)
+++ SQL-Abstract/1.x/trunk/lib/SQL/Abstract/Tree.pm 2010-09-09 02:50:57 UTC (rev 9705)
@@ -9,7 +9,7 @@
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()
@@ -298,8 +298,20 @@
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;
@@ -311,27 +323,30 @@
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}) .
+ 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;
More information about the Bast-commits
mailing list