X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FQ-Branch.git;a=blobdiff_plain;f=lib%2FSQL%2FAbstract%2FPlugin%2FBangOverrides.pm;h=646a70a0affadd6ed1f35818a5b3322c120e8da5;hp=dae9d0c78d184e45e6a56ef0575e3ae626930141;hb=cf5b7ab163f8ac123ebc9bb1156e79646cd5bd2f;hpb=2ed2b14f25282f6674aab891455901f9d128e0de diff --git a/lib/SQL/Abstract/Plugin/BangOverrides.pm b/lib/SQL/Abstract/Plugin/BangOverrides.pm index dae9d0c..646a70a 100644 --- a/lib/SQL/Abstract/Plugin/BangOverrides.pm +++ b/lib/SQL/Abstract/Plugin/BangOverrides.pm @@ -33,3 +33,54 @@ sub register_extensions { } 1; + +__END__ + +=head1 NAME + +SQL::Abstract::Plugin::BangOverrides + +=head2 SYNOPSIS + + $sqla->plugin('+BangOverrides'); + ... + profit(); + +=head1 METHODS + +=head2 register_extensions + +Wraps all currently existing clause based statements such that when a clause +of '!name' is encountered, if its value is a coderef, it's called with the +original value of the 'name' clause and expected to return a replacement, and +if not, it's simply used as a direct replacement. + +So, given appropriate DBIC setup: + + $s->storage->sqlmaker->plugin('+ExtraClauses')->plugin('+BangOverrides'); + + my $rs2 = $s->resultset('Foo')->search({ + -op => [ '=', { -ident => 'outer.y' }, { -ident => 'me.x' } ] + }); + # (SELECT me.x, me.y, me.z FROM foo me WHERE ( outer.y = me.x )) + + my $rs3 = $rs2->search({}, { + '!from' => sub { my ($sqla, $from) = @_; + my $base = $sqla->expand_expr({ -old_from => $from }); + return [ $base, -join => [ 'wub', on => [ 'me.z' => 'wub.z' ] ] ]; + } + }); + # (SELECT me.x, me.y, me.z FROM foo me JOIN wub ON me.z = wub.z WHERE ( outer.y = me.x )) + + my $rs4 = $rs3->search({}, { + '!with' => [ [ qw(wub x y z) ], $s->resultset('Bar')->as_query ], + }); + # (WITH wub(x, y, z) AS (SELECT me.a, me.b, me.c FROM bar me) SELECT me.x, me.y, me.z FROM foo me JOIN wub ON me.z = wub.z WHERE ( outer.y = me.x )) + + my $rs5 = $rs->search({}, { select => [ { -coalesce => [ { -ident => 'x' }, { -value => 7 } ] } ] }); + # (SELECT -COALESCE( -IDENT( x ), -VALUE( 7 ) ) FROM foo me WHERE ( z = ? )) + + my $rs6 = $rs->search({}, { '!select' => [ { -coalesce => [ { -ident => 'x' }, { -value => 7 } ] } ] }); + # (SELECT COALESCE(x, ?) FROM foo me WHERE ( z = ? )) + +=cut