1 package DBIx::Class::SQLMaker;
8 DBIx::Class::SQLMaker - An SQL::Abstract-based SQL maker class
12 This module is a subclass of L<SQL::Abstract> and includes a number of
13 DBIC-specific workarounds, not yet suitable for inclusion into the
14 L<SQL::Abstract> core. It also provides all (and more than) the functionality
15 of L<SQL::Abstract::Limit>, see L<DBIx::Class::SQLMaker::LimitDialects> for
18 Currently the enhancements to L<SQL::Abstract> are:
22 =item * Support for C<JOIN> statements (via extended C<table/from> support)
24 =item * Support of functions in C<SELECT> lists
26 =item * C<GROUP BY>/C<HAVING> support (via extensions to the order_by parameter)
28 =item * Support of C<...FOR UPDATE> type of select statement modifiers
30 =item * The L</-ident> operator
32 =item * The L</-value> operator
39 DBIx::Class::SQLMaker::LimitDialects
45 use Sub::Name 'subname';
46 use DBIx::Class::Carp;
47 use DBIx::Class::Exception;
50 __PACKAGE__->mk_group_accessors (simple => qw/quote_char name_sep limit_dialect/);
52 # for when I need a normalized l/r pair
55 { defined $_ ? $_ : '' }
56 ( ref $_[0]->{quote_char} ? (@{$_[0]->{quote_char}}) : ( ($_[0]->{quote_char}) x 2 ) )
60 # FIXME when we bring in the storage weaklink, check its schema
61 # weaklink and channel through $schema->throw_exception
62 sub throw_exception { DBIx::Class::Exception->throw($_[1]) }
65 # reinstall the belch()/puke() functions of SQL::Abstract with custom versions
66 # that use DBIx::Class::Carp/DBIx::Class::Exception instead of plain Carp
67 no warnings qw/redefine/;
69 *SQL::Abstract::belch = subname 'SQL::Abstract::belch' => sub (@) {
70 my($func) = (caller(1))[3];
71 carp "[$func] Warning: ", @_;
74 *SQL::Abstract::puke = subname 'SQL::Abstract::puke' => sub (@) {
75 my($func) = (caller(1))[3];
76 __PACKAGE__->throw_exception("[$func] Fatal: " . join ('', @_));
79 # Current SQLA pollutes its namespace - clean for the time being
80 namespace::clean->clean_subroutines(qw/SQL::Abstract carp croak confess/);
83 # the "oh noes offset/top without limit" constant
84 # limited to 31 bits for sanity (and consistency,
85 # since it may be handed to the like of sprintf %u)
87 # Also *some* builds of SQLite fail the test
88 # some_column BETWEEN ? AND ?: 1, 4294967295
89 # with the proper integer bind attrs
91 # Implemented as a method, since ::Storage::DBI also
92 # refers to it (i.e. for the case of software_limit or
93 # as the value to abuse with MSSQL ordered subqueries)
94 sub __max_int () { 0x7FFFFFFF };
96 # poor man's de-qualifier
98 $_[0]->next::method( ( $_[0]{_dequalify_idents} and ! ref $_[1] )
99 ? $_[1] =~ / ([^\.]+) $ /x
105 my $self = shift->next::method(@_);
107 # use the same coderefs, they are prepared to handle both cases
108 my @extra_dbic_syntax = (
109 { regex => qr/^ ident $/xi, handler => '_where_op_IDENT' },
110 { regex => qr/^ value $/xi, handler => '_where_op_VALUE' },
113 push @{$self->{special_ops}}, @extra_dbic_syntax;
114 push @{$self->{unary_ops}}, @extra_dbic_syntax;
119 sub _where_op_IDENT {
121 my ($op, $rhs) = splice @_, -2;
123 $self->throw_exception("-$op takes a single scalar argument (a quotable identifier)");
126 # in case we are called as a top level special op (no '=')
129 $_ = $self->_convert($self->_quote($_)) for ($lhs, $rhs);
137 sub _where_op_VALUE {
139 my ($op, $rhs) = splice @_, -2;
141 # in case we are called as a top level special op (no '=')
145 ($lhs || $self->{_nested_func_lhs} || $self->throw_exception("Unable to find bindtype for -value $rhs") ),
151 $self->_convert($self->_quote($lhs)) . ' = ' . $self->_convert('?'),
155 $self->_convert('?'),
162 carp_unique ("-nest in search conditions is deprecated, you most probably wanted:\n"
163 .q|{..., -and => [ \%cond0, \@cond1, \'cond2', \[ 'cond3', [ col => bind ] ], etc. ], ... }|
166 shift->next::method(@_);
169 # Handle limit-dialect selection
171 my ($self, $table, $fields, $where, $rs_attrs, $limit, $offset) = @_;
174 $fields = $self->_recurse_fields($fields);
176 if (defined $offset) {
177 $self->throw_exception('A supplied offset must be a non-negative integer')
178 if ( $offset =~ /\D/ or $offset < 0 );
182 if (defined $limit) {
183 $self->throw_exception('A supplied limit must be a positive integer')
184 if ( $limit =~ /\D/ or $limit <= 0 );
187 $limit = $self->__max_int;
193 # this is legacy code-flow from SQLA::Limit, it is not set in stone
195 ($sql, @bind) = $self->next::method ($table, $fields, $where);
198 $self->can ('emulate_limit') # also backcompat hook from SQLA::Limit
201 my $dialect = $self->limit_dialect
202 or $self->throw_exception( "Unable to generate SQL-limit - no limit dialect specified on $self, and no emulate_limit method found" );
203 $self->can ("_$dialect")
204 or $self->throw_exception(__PACKAGE__ . " does not implement the requested dialect '$dialect'");
208 $sql = $self->$limiter (
210 { %{$rs_attrs||{}}, _selector_sql => $fields },
216 ($sql, @bind) = $self->next::method ($table, $fields, $where, $rs_attrs);
219 push @{$self->{where_bind}}, @bind;
221 # this *must* be called, otherwise extra binds will remain in the sql-maker
222 my @all_bind = $self->_assemble_binds;
224 $sql .= $self->_lock_select ($rs_attrs->{for})
227 return wantarray ? ($sql, @all_bind) : $sql;
230 sub _assemble_binds {
232 return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/pre_select select from where group having order limit/);
236 update => 'FOR UPDATE',
237 shared => 'FOR SHARE',
240 my ($self, $type) = @_;
241 my $sql = $for_syntax->{$type} || $self->throw_exception( "Unknown SELECT .. FOR type '$type' requested" );
245 # Handle default inserts
247 # optimized due to hotttnesss
248 # my ($self, $table, $data, $options) = @_;
250 # SQLA will emit INSERT INTO $table ( ) VALUES ( )
251 # which is sadly understood only by MySQL. Change default behavior here,
252 # until SQLA2 comes with proper dialect support
253 if (! $_[2] or (ref $_[2] eq 'HASH' and !keys %{$_[2]} ) ) {
256 'INSERT INTO %s DEFAULT VALUES', $_[0]->_quote($_[1])
259 if ( ($_[3]||{})->{returning} ) {
261 ($s, @bind) = $_[0]->_insert_returning ($_[3]);
265 return ($sql, @bind);
271 sub _recurse_fields {
272 my ($self, $fields) = @_;
273 my $ref = ref $fields;
274 return $self->_quote($fields) unless $ref;
275 return $$fields if $ref eq 'SCALAR';
277 if ($ref eq 'ARRAY') {
278 return join(', ', map { $self->_recurse_fields($_) } @$fields);
280 elsif ($ref eq 'HASH') {
281 my %hash = %$fields; # shallow copy
283 my $as = delete $hash{-as}; # if supplied
285 my ($func, $args, @toomany) = %hash;
287 # there should be only one pair
289 $self->throw_exception( "Malformed select argument - too many keys in hash: " . join (',', keys %$fields ) );
292 if (lc ($func) eq 'distinct' && ref $args eq 'ARRAY' && @$args > 1) {
293 $self->throw_exception (
294 'The select => { distinct => ... } syntax is not supported for multiple columns.'
295 .' Instead please use { group_by => [ qw/' . (join ' ', @$args) . '/ ] }'
296 .' or { select => [ qw/' . (join ' ', @$args) . '/ ], distinct => 1 }'
300 my $select = sprintf ('%s( %s )%s',
301 $self->_sqlcase($func),
302 $self->_recurse_fields($args),
304 ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
310 # Is the second check absolutely necessary?
311 elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
312 push @{$self->{select_bind}}, @{$$fields}[1..$#$$fields];
313 return $$fields->[0];
316 $self->throw_exception( $ref . qq{ unexpected in _recurse_fields()} );
321 # this used to be a part of _order_by but is broken out for clarity.
322 # What we have been doing forever is hijacking the $order arg of
323 # SQLA::select to pass in arbitrary pieces of data (first the group_by,
324 # then pretty much the entire resultset attr-hash, as more and more
325 # things in the SQLA space need to have mopre info about the $rs they
326 # create SQL for. The alternative would be to keep expanding the
327 # signature of _select with more and more positional parameters, which
328 # is just gross. All hail SQLA2!
329 sub _parse_rs_attrs {
330 my ($self, $arg) = @_;
334 if ($arg->{group_by}) {
335 # horible horrible, waiting for refactor
336 local $self->{select_bind};
337 if (my $g = $self->_recurse_fields($arg->{group_by}) ) {
338 $sql .= $self->_sqlcase(' group by ') . $g;
339 push @{$self->{group_bind} ||= []}, @{$self->{select_bind}||[]};
343 if (defined $arg->{having}) {
344 my ($frag, @bind) = $self->_recurse_where($arg->{having});
345 push(@{$self->{having_bind}}, @bind);
346 $sql .= $self->_sqlcase(' having ') . $frag;
349 if (defined $arg->{order_by}) {
350 $sql .= $self->_order_by ($arg->{order_by});
357 my ($self, $arg) = @_;
359 # check that we are not called in legacy mode (order_by as 4th argument)
360 if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
361 return $self->_parse_rs_attrs ($arg);
364 my ($sql, @bind) = $self->next::method($arg);
365 push @{$self->{order_bind}}, @bind;
371 # optimized due to hotttnesss
372 # my ($self, $from) = @_;
373 if (my $ref = ref $_[1] ) {
374 if ($ref eq 'ARRAY') {
375 return $_[0]->_recurse_from(@{$_[1]});
377 elsif ($ref eq 'HASH') {
378 return $_[0]->_recurse_from($_[1]);
380 elsif ($ref eq 'REF' && ref ${$_[1]} eq 'ARRAY') {
381 my ($sql, @bind) = @{ ${$_[1]} };
382 push @{$_[0]->{from_bind}}, @bind;
386 return $_[0]->next::method ($_[1]);
389 sub _generate_join_clause {
390 my ($self, $join_type) = @_;
392 $join_type = $self->{_default_jointype}
393 if ! defined $join_type;
395 return sprintf ('%s JOIN ',
396 $join_type ? $self->_sqlcase($join_type) : ''
403 return join (' ', $self->_gen_from_blocks(@_) );
406 sub _gen_from_blocks {
407 my ($self, $from, @joins) = @_;
409 my @fchunks = $self->_from_chunk_to_sql($from);
414 # check whether a join type exists
415 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
417 if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
418 $join_type = $to_jt->{-join_type};
419 $join_type =~ s/^\s+ | \s+$//xg;
422 my @j = $self->_generate_join_clause( $join_type );
424 if (ref $to eq 'ARRAY') {
425 push(@j, '(', $self->_recurse_from(@$to), ')');
428 push(@j, $self->_from_chunk_to_sql($to));
431 my ($sql, @bind) = $self->_join_condition($on);
432 push(@j, ' ON ', $sql);
433 push @{$self->{from_bind}}, @bind;
435 push @fchunks, join '', @j;
441 sub _from_chunk_to_sql {
442 my ($self, $fromspec) = @_;
444 return join (' ', do {
445 if (! ref $fromspec) {
446 $self->_quote($fromspec);
448 elsif (ref $fromspec eq 'SCALAR') {
451 elsif (ref $fromspec eq 'REF' and ref $$fromspec eq 'ARRAY') {
452 push @{$self->{from_bind}}, @{$$fromspec}[1..$#$$fromspec];
455 elsif (ref $fromspec eq 'HASH') {
456 my ($as, $table, $toomuch) = ( map
457 { $_ => $fromspec->{$_} }
458 ( grep { $_ !~ /^\-/ } keys %$fromspec )
461 $self->throw_exception( "Only one table/as pair expected in from-spec but an exra '$toomuch' key present" )
464 ($self->_from_chunk_to_sql($table), $self->_quote($as) );
467 $self->throw_exception('Unsupported from refkind: ' . ref $fromspec );
472 sub _join_condition {
473 my ($self, $cond) = @_;
475 # Backcompat for the old days when a plain hashref
476 # { 't1.col1' => 't2.col2' } meant ON t1.col1 = t2.col2
477 # Once things settle we should start warning here so that
478 # folks unroll their hacks
484 (keys %$cond)[0] =~ /\./
486 ! ref ( (values %$cond)[0] )
488 $cond = { keys %$cond => { -ident => values %$cond } }
490 elsif ( ref $cond eq 'ARRAY' ) {
491 # do our own ORing so that the hashref-shim above is invoked
494 foreach my $c (@$cond) {
495 my ($sql, @bind) = $self->_join_condition($c);
499 return join(' OR ', @parts), @binds;
502 return $self->_recurse_where($cond);
511 Used to explicitly specify an SQL identifier. Takes a plain string as value
512 which is then invariably treated as a column name (and is being properly
513 quoted if quoting has been requested). Most useful for comparison of two
517 priority => { '<', 2 },
518 requestor => { -ident => 'submitter' }
523 $stmt = 'WHERE "priority" < ? AND "requestor" = "submitter"';
528 The -value operator signals that the argument to the right is a raw bind value.
529 It will be passed straight to DBI, without invoking any of the SQL::Abstract
530 condition-parsing logic. This allows you to, for example, pass an array as a
531 column value for databases that support array datatypes, e.g.:
534 array => { -value => [1, 2, 3] }
539 $stmt = 'WHERE array = ?';
544 See L<DBIx::Class/CONTRIBUTORS>.
548 You may distribute this code under the same terms as Perl itself.