X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FAbstract%2FExtraClauses.pm;h=7a701185f9f9ed63ba92fa1acc8e623d3554aabe;hb=ce3531b48040ab0fca3e6f1151abde624dc53d15;hp=8ad267b1eb22d664a468a264089ccb6d35223e20;hpb=b99e393b6090ff5593471b3a8bae23c772be38d8;p=scpubgit%2FQ-Branch.git diff --git a/lib/SQL/Abstract/ExtraClauses.pm b/lib/SQL/Abstract/ExtraClauses.pm index 8ad267b..7a70118 100644 --- a/lib/SQL/Abstract/ExtraClauses.pm +++ b/lib/SQL/Abstract/ExtraClauses.pm @@ -10,11 +10,12 @@ has sqla => ( ) ], ); -BEGIN { *puke = \&SQL::Abstract::puke } - sub cb { - my ($self, $method) = @_; - return sub { local $self->{sqla} = shift; $self->$method(@_) }; + my ($self, $method, @args) = @_; + return sub { + local $self->{sqla} = shift; + $self->$method(@args, @_) + }; } sub apply_to { @@ -44,17 +45,7 @@ sub apply_to { $sqla->op_expander(as => $self->cb('_expand_op_as')); $sqla->expander(as => $self->cb('_expand_op_as')); $sqla->renderer(as => $self->cb('_render_as')); - $sqla->expander(alias => $self->cb(sub { - my ($self, undef, $args) = @_; - if (ref($args) eq 'HASH' and my $alias = $args->{-alias}) { - $args = $alias; - } - +{ -alias => [ - map $self->expand_expr($_, -ident), - ref($args) eq 'ARRAY' ? @{$args} : $args - ] - } - })); + $sqla->expander(alias => $self->cb('_expand_alias')); $sqla->renderer(alias => $self->cb('_render_alias')); $sqla->clauses_of(update => sub { @@ -70,10 +61,8 @@ sub apply_to { }); $sqla->clause_expanders( - 'update.from' => $self->cb('_expand_select_clause_from'), - 'delete.using' => $self->cb(sub { - +(using => $_[0]->_expand_from_list(undef, $_[2])); - }), + 'update.from' => $self->cb('_expand_from_list'), + 'delete.using' => $self->cb('_expand_from_list'), 'insert.rowvalues' => $self->cb(sub { +(from => $_[0]->expand_expr({ -values => $_[2] })); }), @@ -84,51 +73,19 @@ sub apply_to { # set ops $sqla->wrap_expander(select => sub { - my $orig = shift; - $self->cb(sub { - my $self = shift; - my $exp = $self->sqla->$orig(@_); - return $exp unless my $setop = (my $sel = $exp->{-select})->{setop}; - if (my @keys = grep $sel->{$_}, @before_setop) { - my %inner; @inner{@keys} = delete @{$sel}{@keys}; - unshift @{(values(%$setop))[0]{queries}}, - { -select => \%inner }; - } - return $exp; - }); + $self->cb('_expand_select', $_[0], \@before_setop); }); - my $expand_setop = $self->cb(sub { - my ($self, $setop, $args) = @_; - +{ "-${setop}" => { - %$args, - queries => [ map $self->expand_expr($_), @{$args->{queries}} ], - } }; - }); - $sqla->expanders(map +($_ => $expand_setop), qw(union intersect except)); - $sqla->clause_renderer('select.setop' => $self->cb(sub { - my ($self, undef, $setop) = @_; - $self->render_aqt($setop); - })); + $sqla->clause_renderer( + 'select.setop' => $self->cb(sub { $_[0]->render_aqt($_[2]); }) + ); - $sqla->renderer($_ => $self->cb(sub { - my ($self, $setop, $args) = @_; - $self->join_query_parts( - ' '.$self->format_keyword(join '_', $setop, ($args->{type}||())).' ', - @{$args->{queries}} - ); - })) for qw(union intersect except); - - my $setop_expander = $self->cb(sub { - my ($self, $setop, $args) = @_; - my ($op, $type) = split '_', $setop; - +(setop => $self->expand_expr({ - "-${op}" => { - ($type ? (type => $type) : ()), - queries => (ref($args) eq 'ARRAY' ? $args : [ $args ]) - } - })); - }); + foreach my $setop (qw(union intersect except)) { + $sqla->expander($setop => $self->cb('_expand_setop')); + $sqla->renderer($setop => $self->cb('_render_setop')); + } + + my $setop_expander = $self->cb('_expand_clause_setop'); $sqla->clause_expanders( map +($_ => $setop_expander), @@ -137,65 +94,23 @@ sub apply_to { qw(union intersect except) ); - $sqla->clause_expander('select.with' => my $with_expander = $self->cb(sub { - my ($self, $name, $with) = @_; - my (undef, $type) = split '_', $name; - if (ref($with) eq 'HASH') { - return +{ - %$with, - queries => [ - map +[ - $self->expand_expr({ -alias => $_->[0] }, -ident), - $self->expand_expr($_->[1]), - ], @{$with->{queries}} - ] - } - } - my @with = @$with; - my @exp; - while (my ($alias, $query) = splice @with, 0, 2) { - push @exp, [ - $self->expand_expr({ -alias => $alias }, -ident), - $self->expand_expr($query) - ]; - } - return +(with => { ($type ? (type => $type) : ()), queries => \@exp }); - })); - $sqla->clause_expander('select.with_recursive', $with_expander); - $sqla->clause_renderer('select.with' => my $with_renderer = $self->cb(sub { - my ($self, undef, $with) = @_; - my $q_part = $self->join_query_parts(', ', - map { - my ($alias, $query) = @$_; - $self->join_query_parts(' ', - $alias, - $self->format_keyword('as'), - $query, - ) - } @{$with->{queries}} - ); - return $self->join_query_parts(' ', - $self->format_keyword(join '_', 'with', ($with->{type}||'')), - $q_part, - ); - })); + my $w_exp = $self->cb('_expand_with'); + my $w_rdr = $self->cb('_render_with'); + $sqla->clause_expander('select.with' => $w_exp); + $sqla->clause_expander('select.with_recursive' => $w_exp); + $sqla->clause_renderer('select.with' => $w_rdr); + foreach my $stmt (qw(insert update delete)) { $sqla->clauses_of($stmt => 'with', $sqla->clauses_of($stmt)); - $sqla->clause_expander("${stmt}.$_", $with_expander) + $sqla->clause_expander("${stmt}.$_" => $w_exp) for qw(with with_recursive); - $sqla->clause_renderer("${stmt}.with", $with_renderer); + $sqla->clause_renderer("${stmt}.with" => $w_rdr); } - $sqla->expander(cast => $self->cb(sub { - return { -func => [ cast => $_[2] ] } if ref($_[2]) eq 'HASH'; - my ($cast, $to) = @{$_[2]}; - +{ -func => [ cast => { -as => [ - $self->expand_expr($cast), - $self->expand_expr($to, -ident), - ] } ] }; - })); + + $sqla->expander(cast => $self->cb('_expand_cast')); $sqla->clause_expanders( - "select.from", $self->cb('_expand_select_clause_from'), + "select.from", $self->cb('_expand_from_list'), "update.target", $self->cb('_expand_update_clause_target'), "update.update", $self->cb('_expand_update_clause_target'), ); @@ -203,9 +118,16 @@ sub apply_to { return $sqla; } -sub _expand_select_clause_from { - my ($self, undef, $from) = @_; - +(from => $self->_expand_from_list(undef, $from)); +sub _expand_select { + my ($self, $orig, $before_setop, @args) = @_; + my $exp = $self->sqla->$orig(@args); + return $exp unless my $setop = (my $sel = $exp->{-select})->{setop}; + if (my @keys = grep $sel->{$_}, @$before_setop) { + my %inner; @inner{@keys} = delete @{$sel}{@keys}; + unshift @{(values(%$setop))[0]{queries}}, + { -select => \%inner }; + } + return $exp; } sub _expand_from_list { @@ -325,4 +247,96 @@ sub _expand_update_clause_target { +(target => $self->_expand_from_list(undef, $target)); } +sub _expand_cast { + my ($self, undef, $thing) = @_; + return { -func => [ cast => $thing ] } if ref($thing) eq 'HASH'; + my ($cast, $to) = @{$thing}; + +{ -func => [ cast => { -as => [ + $self->expand_expr($cast), + $self->expand_expr($to, -ident), + ] } ] }; +} + +sub _expand_alias { + my ($self, undef, $args) = @_; + if (ref($args) eq 'HASH' and my $alias = $args->{-alias}) { + $args = $alias; + } + +{ -alias => [ + map $self->expand_expr($_, -ident), + ref($args) eq 'ARRAY' ? @{$args} : $args + ] + } +} + +sub _expand_with { + my ($self, $name, $with) = @_; + my (undef, $type) = split '_', $name; + if (ref($with) eq 'HASH') { + return +{ + %$with, + queries => [ + map +[ + $self->expand_expr({ -alias => $_->[0] }, -ident), + $self->expand_expr($_->[1]), + ], @{$with->{queries}} + ] + } + } + my @with = @$with; + my @exp; + while (my ($alias, $query) = splice @with, 0, 2) { + push @exp, [ + $self->expand_expr({ -alias => $alias }, -ident), + $self->expand_expr($query) + ]; + } + return +(with => { ($type ? (type => $type) : ()), queries => \@exp }); +} + +sub _render_with { + my ($self, undef, $with) = @_; + my $q_part = $self->join_query_parts(', ', + map { + my ($alias, $query) = @$_; + $self->join_query_parts(' ', + $alias, + $self->format_keyword('as'), + $query, + ) + } @{$with->{queries}} + ); + return $self->join_query_parts(' ', + $self->format_keyword(join '_', 'with', ($with->{type}||'')), + $q_part, + ); +} + +sub _expand_setop { + my ($self, $setop, $args) = @_; + +{ "-${setop}" => { + %$args, + queries => [ map $self->expand_expr($_), @{$args->{queries}} ], + } }; +} + +sub _render_setop { + my ($self, $setop, $args) = @_; + $self->join_query_parts( + ' '.$self->format_keyword(join '_', $setop, ($args->{type}||())).' ', + @{$args->{queries}} + ); +} + +sub _expand_clause_setop { + my ($self, $setop, $args) = @_; + my ($op, $type) = split '_', $setop; + +(setop => $self->expand_expr({ + "-${op}" => { + ($type ? (type => $type) : ()), + queries => (ref($args) eq 'ARRAY' ? $args : [ $args ]) + } + })); +} + 1;