Server IP : 85.214.239.14 / Your IP : 3.138.134.106 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/3/task/3/cwd/usr/share/perl5/SQL/Abstract/Plugin/ |
Upload File : |
package SQL::Abstract::Plugin::BangOverrides; use Moo; with 'SQL::Abstract::Role::Plugin'; sub register_extensions { my ($self, $sqla) = @_; foreach my $stmt ($sqla->statement_list) { $sqla->wrap_expander($stmt => sub { my ($orig) = @_; sub { my ($self, $name, $args) = @_; my %args = ( %$args, (ref($args->{order_by}) eq 'HASH' ? %{$args->{order_by}} : ()) ); my %overrides; foreach my $clause (map /^!(.*)$/, keys %args) { my $override = delete $args{"!${clause}"}; $overrides{$clause} = ( ref($override) eq 'CODE' ? $self->$override($args{$clause}) : $override ); } $self->$orig($name, { %$args, %overrides }); } }); } } 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. This allows for passing data through existing systems that attempt to have their own handling for thing but whose capabilities are now superceded by L<SQL::Abstract>, and is primarily useful to provide access to experimental feature bundles such as L<SQL::Abstract::Plugin::ExtraClauses>. As an example of such a thing, given an appropriate DBIC setup (see C<examples/bangdbic.pl>): $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