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
35 DBIx::Class::SQLMaker::LimitDialects
41 use Sub::Name 'subname';
42 use DBIx::Class::Carp;
43 use DBIx::Class::Exception;
46 __PACKAGE__->mk_group_accessors (simple => qw/quote_char name_sep limit_dialect/);
48 # for when I need a normalized l/r pair
51 { defined $_ ? $_ : '' }
52 ( ref $_[0]->{quote_char} ? (@{$_[0]->{quote_char}}) : ( ($_[0]->{quote_char}) x 2 ) )
56 # FIXME when we bring in the storage weaklink, check its schema
57 # weaklink and channel through $schema->throw_exception
58 sub throw_exception { DBIx::Class::Exception->throw($_[1]) }
61 # reinstall the belch()/puke() functions of SQL::Abstract with custom versions
62 # that use DBIx::Class::Carp/DBIx::Class::Exception instead of plain Carp
63 no warnings qw/redefine/;
65 *SQL::Abstract::belch = subname 'SQL::Abstract::belch' => sub (@) {
66 my($func) = (caller(1))[3];
67 carp "[$func] Warning: ", @_;
70 *SQL::Abstract::puke = subname 'SQL::Abstract::puke' => sub (@) {
71 my($func) = (caller(1))[3];
72 __PACKAGE__->throw_exception("[$func] Fatal: " . join ('', @_));
76 # the "oh noes offset/top without limit" constant
77 # limited to 31 bits for sanity (and consistency,
78 # since it may be handed to the like of sprintf %u)
80 # Also *some* builds of SQLite fail the test
81 # some_column BETWEEN ? AND ?: 1, 4294967295
82 # with the proper integer bind attrs
84 # Implemented as a method, since ::Storage::DBI also
85 # refers to it (i.e. for the case of software_limit or
86 # as the value to abuse with MSSQL ordered subqueries)
87 sub __max_int () { 0x7FFFFFFF };
89 # poor man's de-qualifier
91 $_[0]->next::method( ( $_[0]{_dequalify_idents} and ! ref $_[1] )
92 ? $_[1] =~ / ([^\.]+) $ /x
98 carp_unique ("-nest in search conditions is deprecated, you most probably wanted:\n"
99 .q|{..., -and => [ \%cond0, \@cond1, \'cond2', \[ 'cond3', [ col => bind ] ], etc. ], ... }|
102 shift->next::method(@_);
105 # Handle limit-dialect selection
107 my ($self, $table, $fields, $where, $rs_attrs, $limit, $offset) = @_;
110 $fields = $self->_recurse_fields($fields);
112 if (defined $offset) {
113 $self->throw_exception('A supplied offset must be a non-negative integer')
114 if ( $offset =~ /\D/ or $offset < 0 );
118 if (defined $limit) {
119 $self->throw_exception('A supplied limit must be a positive integer')
120 if ( $limit =~ /\D/ or $limit <= 0 );
123 $limit = $self->__max_int;
129 # this is legacy code-flow from SQLA::Limit, it is not set in stone
131 ($sql, @bind) = $self->next::method ($table, $fields, $where);
135 if( $limiter = $self->can ('emulate_limit') ) {
137 'Support for the legacy emulate_limit() mechanism inherited from '
138 . 'SQL::Abstract::Limit has been deprecated, and will be removed when '
139 . 'DBIC transitions to Data::Query. If your code uses this type of '
140 . 'limit specification please file an RT and provide the source of '
141 . 'your emulate_limit() implementation, so an acceptable upgrade-path '
146 my $dialect = $self->limit_dialect
147 or $self->throw_exception( "Unable to generate SQL-limit - no limit dialect specified on $self" );
149 $limiter = $self->can ("_$dialect")
150 or $self->throw_exception(__PACKAGE__ . " does not implement the requested dialect '$dialect'");
153 $sql = $self->$limiter (
155 { %{$rs_attrs||{}}, _selector_sql => $fields },
161 ($sql, @bind) = $self->next::method ($table, $fields, $where, $rs_attrs);
164 push @{$self->{where_bind}}, @bind;
166 # this *must* be called, otherwise extra binds will remain in the sql-maker
167 my @all_bind = $self->_assemble_binds;
169 $sql .= $self->_lock_select ($rs_attrs->{for})
172 return wantarray ? ($sql, @all_bind) : $sql;
175 sub _assemble_binds {
177 return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/pre_select select from where group having order limit/);
181 update => 'FOR UPDATE',
182 shared => 'FOR SHARE',
185 my ($self, $type) = @_;
188 if (ref($type) eq 'SCALAR') {
192 $sql = $for_syntax->{$type} || $self->throw_exception( "Unknown SELECT .. FOR type '$type' requested" );
198 # Handle default inserts
200 # optimized due to hotttnesss
201 # my ($self, $table, $data, $options) = @_;
203 # SQLA will emit INSERT INTO $table ( ) VALUES ( )
204 # which is sadly understood only by MySQL. Change default behavior here,
205 # until SQLA2 comes with proper dialect support
206 if (! $_[2] or (ref $_[2] eq 'HASH' and !keys %{$_[2]} ) ) {
209 'INSERT INTO %s DEFAULT VALUES', $_[0]->_quote($_[1])
212 if ( ($_[3]||{})->{returning} ) {
214 ($s, @bind) = $_[0]->_insert_returning ($_[3]);
218 return ($sql, @bind);
224 sub _recurse_fields {
225 my ($self, $fields) = @_;
226 my $ref = ref $fields;
227 return $self->_quote($fields) unless $ref;
228 return $$fields if $ref eq 'SCALAR';
230 if ($ref eq 'ARRAY') {
231 return join(', ', map { $self->_recurse_fields($_) } @$fields);
233 elsif ($ref eq 'HASH') {
234 my %hash = %$fields; # shallow copy
236 my $as = delete $hash{-as}; # if supplied
238 my ($func, $args, @toomany) = %hash;
240 # there should be only one pair
242 $self->throw_exception( "Malformed select argument - too many keys in hash: " . join (',', keys %$fields ) );
245 if (lc ($func) eq 'distinct' && ref $args eq 'ARRAY' && @$args > 1) {
246 $self->throw_exception (
247 'The select => { distinct => ... } syntax is not supported for multiple columns.'
248 .' Instead please use { group_by => [ qw/' . (join ' ', @$args) . '/ ] }'
249 .' or { select => [ qw/' . (join ' ', @$args) . '/ ], distinct => 1 }'
253 my $select = sprintf ('%s( %s )%s',
254 $self->_sqlcase($func),
255 $self->_recurse_fields($args),
257 ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
263 # Is the second check absolutely necessary?
264 elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
265 push @{$self->{select_bind}}, @{$$fields}[1..$#$$fields];
266 return $$fields->[0];
269 $self->throw_exception( $ref . qq{ unexpected in _recurse_fields()} );
274 # this used to be a part of _order_by but is broken out for clarity.
275 # What we have been doing forever is hijacking the $order arg of
276 # SQLA::select to pass in arbitrary pieces of data (first the group_by,
277 # then pretty much the entire resultset attr-hash, as more and more
278 # things in the SQLA space need to have mopre info about the $rs they
279 # create SQL for. The alternative would be to keep expanding the
280 # signature of _select with more and more positional parameters, which
281 # is just gross. All hail SQLA2!
282 sub _parse_rs_attrs {
283 my ($self, $arg) = @_;
287 if ($arg->{group_by}) {
288 # horible horrible, waiting for refactor
289 local $self->{select_bind};
290 if (my $g = $self->_recurse_fields($arg->{group_by}) ) {
291 $sql .= $self->_sqlcase(' group by ') . $g;
292 push @{$self->{group_bind} ||= []}, @{$self->{select_bind}||[]};
296 if (defined $arg->{having}) {
297 my ($frag, @bind) = $self->_recurse_where($arg->{having});
298 push(@{$self->{having_bind}}, @bind);
299 $sql .= $self->_sqlcase(' having ') . $frag;
302 if (defined $arg->{order_by}) {
303 $sql .= $self->_order_by ($arg->{order_by});
310 my ($self, $arg) = @_;
312 # check that we are not called in legacy mode (order_by as 4th argument)
313 if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
314 return $self->_parse_rs_attrs ($arg);
317 my ($sql, @bind) = $self->next::method($arg);
318 push @{$self->{order_bind}}, @bind;
324 # optimized due to hotttnesss
325 # my ($self, $from) = @_;
326 if (my $ref = ref $_[1] ) {
327 if ($ref eq 'ARRAY') {
328 return $_[0]->_recurse_from(@{$_[1]});
330 elsif ($ref eq 'HASH') {
331 return $_[0]->_recurse_from($_[1]);
333 elsif ($ref eq 'REF' && ref ${$_[1]} eq 'ARRAY') {
334 my ($sql, @bind) = @{ ${$_[1]} };
335 push @{$_[0]->{from_bind}}, @bind;
339 return $_[0]->next::method ($_[1]);
342 sub _generate_join_clause {
343 my ($self, $join_type) = @_;
345 $join_type = $self->{_default_jointype}
346 if ! defined $join_type;
348 return sprintf ('%s JOIN ',
349 $join_type ? $self->_sqlcase($join_type) : ''
356 return join (' ', $self->_gen_from_blocks(@_) );
359 sub _gen_from_blocks {
360 my ($self, $from, @joins) = @_;
362 my @fchunks = $self->_from_chunk_to_sql($from);
367 # check whether a join type exists
368 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
370 if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
371 $join_type = $to_jt->{-join_type};
372 $join_type =~ s/^\s+ | \s+$//xg;
375 my @j = $self->_generate_join_clause( $join_type );
377 if (ref $to eq 'ARRAY') {
378 push(@j, '(', $self->_recurse_from(@$to), ')');
381 push(@j, $self->_from_chunk_to_sql($to));
384 my ($sql, @bind) = $self->_join_condition($on);
385 push(@j, ' ON ', $sql);
386 push @{$self->{from_bind}}, @bind;
388 push @fchunks, join '', @j;
394 sub _from_chunk_to_sql {
395 my ($self, $fromspec) = @_;
397 return join (' ', do {
398 if (! ref $fromspec) {
399 $self->_quote($fromspec);
401 elsif (ref $fromspec eq 'SCALAR') {
404 elsif (ref $fromspec eq 'REF' and ref $$fromspec eq 'ARRAY') {
405 push @{$self->{from_bind}}, @{$$fromspec}[1..$#$$fromspec];
408 elsif (ref $fromspec eq 'HASH') {
409 my ($as, $table, $toomuch) = ( map
410 { $_ => $fromspec->{$_} }
411 ( grep { $_ !~ /^\-/ } keys %$fromspec )
414 $self->throw_exception( "Only one table/as pair expected in from-spec but an exra '$toomuch' key present" )
417 ($self->_from_chunk_to_sql($table), $self->_quote($as) );
420 $self->throw_exception('Unsupported from refkind: ' . ref $fromspec );
425 sub _join_condition {
426 my ($self, $cond) = @_;
428 # Backcompat for the old days when a plain hashref
429 # { 't1.col1' => 't2.col2' } meant ON t1.col1 = t2.col2
430 # Once things settle we should start warning here so that
431 # folks unroll their hacks
437 (keys %$cond)[0] =~ /\./
439 ! ref ( (values %$cond)[0] )
441 $cond = { keys %$cond => { -ident => values %$cond } }
443 elsif ( ref $cond eq 'ARRAY' ) {
444 # do our own ORing so that the hashref-shim above is invoked
447 foreach my $c (@$cond) {
448 my ($sql, @bind) = $self->_join_condition($c);
452 return join(' OR ', @parts), @binds;
455 return $self->_recurse_where($cond);
458 # This is hideously ugly, but SQLA does not understand multicol IN expressions
459 # FIXME TEMPORARY - DQ should have native syntax for this
460 # moved here to raise API questions
462 # !!! EXPERIMENTAL API !!! WILL CHANGE !!!
463 sub _where_op_multicolumn_in {
464 my ($self, $lhs, $rhs) = @_;
466 if (! ref $lhs or ref $lhs eq 'ARRAY') {
468 for (ref $lhs ? @$lhs : $lhs) {
470 push @sql, $self->_quote($_);
472 elsif (ref $_ eq 'SCALAR') {
475 elsif (ref $_ eq 'REF' and ref $$_ eq 'ARRAY') {
481 $self->throw_exception("ARRAY of @{[ ref $_ ]}es unsupported for multicolumn IN lhs...");
484 $lhs = \[ join(', ', @sql), @bind];
486 elsif (ref $lhs eq 'SCALAR') {
489 elsif (ref $lhs eq 'REF' and ref $$lhs eq 'ARRAY' ) {
493 $self->throw_exception( ref($lhs) . "es unsupported for multicolumn IN lhs...");
497 $rhs = \[ $self->_recurse_where($rhs) ];
500 $$_->[0] = "( $$_->[0] )"
501 unless $$_->[0] =~ /^ \s* \( .* \) \s* ^/xs;
504 \[ join( ' IN ', shift @$$lhs, shift @$$rhs ), @$$lhs, @$$rhs ];
511 See L<DBIx::Class/CONTRIBUTORS>.
515 You may distribute this code under the same terms as Perl itself.