Set name_sep by default (even if unused). Simplify raw-sql scanner code
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker.pm
CommitLineData
d5dedbd6 1package DBIx::Class::SQLMaker;
6f4ddea1 2
d5dedbd6 3=head1 NAME
4
5DBIx::Class::SQLMaker - An SQL::Abstract-based SQL maker class
6
7=head1 DESCRIPTION
8
9This module is a subclass of L<SQL::Abstract> and includes a number of
10DBIC-specific workarounds, not yet suitable for inclusion into the
11L<SQL::Abstract> core. It also provides all (and more than) the functionality
12of L<SQL::Abstract::Limit>, see L<DBIx::Class::SQLMaker::LimitDialects> for
13more info.
14
15Currently the enhancements to L<SQL::Abstract> are:
16
17=over
18
19=item * Support for C<JOIN> statements (via extended C<table/from> support)
20
21=item * Support of functions in C<SELECT> lists
22
23=item * C<GROUP BY>/C<HAVING> support (via extensions to the order_by parameter)
24
25=item * Support of C<...FOR UPDATE> type of select statement modifiers
26
27=back
28
29=cut
6a247f33 30
31use base qw/
d5dedbd6 32 DBIx::Class::SQLMaker::LimitDialects
6a247f33 33 SQL::Abstract
34 Class::Accessor::Grouped
35/;
36use mro 'c3';
e3764383 37use strict;
38use warnings;
6298a324 39use Sub::Name 'subname';
ac322978 40use Carp::Clan qw/^DBIx::Class|^SQL::Abstract|^Try::Tiny/;
e8fc51c7 41use namespace::clean;
b2b22cd6 42
6a247f33 43__PACKAGE__->mk_group_accessors (simple => qw/quote_char name_sep limit_dialect/);
44
3f5b99fe 45# for when I need a normalized l/r pair
46sub _quote_chars {
47 map
48 { defined $_ ? $_ : '' }
49 ( ref $_[0]->{quote_char} ? (@{$_[0]->{quote_char}}) : ( ($_[0]->{quote_char}) x 2 ) )
50 ;
51}
52
b2b22cd6 53BEGIN {
54 # reinstall the carp()/croak() functions imported into SQL::Abstract
55 # as Carp and Carp::Clan do not like each other much
56 no warnings qw/redefine/;
57 no strict qw/refs/;
58 for my $f (qw/carp croak/) {
329d7385 59
b2b22cd6 60 my $orig = \&{"SQL::Abstract::$f"};
e8fc51c7 61 my $clan_import = \&{$f};
6298a324 62 *{"SQL::Abstract::$f"} = subname "SQL::Abstract::$f" =>
8637bb24 63 sub {
d5dedbd6 64 if (Carp::longmess() =~ /DBIx::Class::SQLMaker::[\w]+ .+? called \s at/x) {
ff04fc51 65 goto $clan_import;
8637bb24 66 }
67 else {
68 goto $orig;
69 }
70 };
b2b22cd6 71 }
72}
6f4ddea1 73
e9657379 74# the "oh noes offset/top without limit" constant
6a247f33 75# limited to 32 bits for sanity (and consistency,
76# since it is ultimately handed to sprintf %u)
77# Implemented as a method, since ::Storage::DBI also
78# refers to it (i.e. for the case of software_limit or
79# as the value to abuse with MSSQL ordered subqueries)
e9657379 80sub __max_int { 0xFFFFFFFF };
81
6a247f33 82# Handle limit-dialect selection
6f4ddea1 83sub select {
6a247f33 84 my ($self, $table, $fields, $where, $rs_attrs, $limit, $offset) = @_;
85
86
87 $fields = $self->_recurse_fields($fields);
88
89 if (defined $offset) {
90 croak ('A supplied offset must be a non-negative integer')
91 if ( $offset =~ /\D/ or $offset < 0 );
92 }
93 $offset ||= 0;
1cbd3034 94
6a247f33 95 if (defined $limit) {
96 croak ('A supplied limit must be a positive integer')
97 if ( $limit =~ /\D/ or $limit <= 0 );
98 }
99 elsif ($offset) {
100 $limit = $self->__max_int;
6f4ddea1 101 }
c2b7c5dc 102
a6b68a60 103
6a247f33 104 my ($sql, @bind);
105 if ($limit) {
106 # this is legacy code-flow from SQLA::Limit, it is not set in stone
107
108 ($sql, @bind) = $self->next::method ($table, $fields, $where);
109
110 my $limiter =
111 $self->can ('emulate_limit') # also backcompat hook from SQLA::Limit
112 ||
113 do {
114 my $dialect = $self->limit_dialect
115 or croak "Unable to generate SQL-limit - no limit dialect specified on $self, and no emulate_limit method found";
116 $self->can ("_$dialect")
d5dedbd6 117 or croak (__PACKAGE__ . " does not implement the requested dialect '$dialect'");
6a247f33 118 }
119 ;
120
121 $sql = $self->$limiter ($sql, $rs_attrs, $limit, $offset);
122 }
123 else {
124 ($sql, @bind) = $self->next::method ($table, $fields, $where, $rs_attrs);
125 }
126
49afd714 127 push @{$self->{where_bind}}, @bind;
583a0c65 128
129# this *must* be called, otherwise extra binds will remain in the sql-maker
49afd714 130 my @all_bind = $self->_assemble_binds;
583a0c65 131
e5372da4 132 $sql .= $self->_lock_select ($rs_attrs->{for})
133 if $rs_attrs->{for};
134
49afd714 135 return wantarray ? ($sql, @all_bind) : $sql;
583a0c65 136}
137
138sub _assemble_binds {
139 my $self = shift;
140 return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/from where having order/);
6f4ddea1 141}
142
e5372da4 143my $for_syntax = {
144 update => 'FOR UPDATE',
145 shared => 'FOR SHARE',
146};
147sub _lock_select {
148 my ($self, $type) = @_;
149 my $sql = $for_syntax->{$type} || croak "Unknown SELECT .. FOR type '$type' requested";
150 return " $sql";
151}
152
6a247f33 153# Handle default inserts
6f4ddea1 154sub insert {
6a247f33 155# optimized due to hotttnesss
156# my ($self, $table, $data, $options) = @_;
7a72e5a5 157
158 # SQLA will emit INSERT INTO $table ( ) VALUES ( )
159 # which is sadly understood only by MySQL. Change default behavior here,
160 # until SQLA2 comes with proper dialect support
6a247f33 161 if (! $_[2] or (ref $_[2] eq 'HASH' and !keys %{$_[2]} ) ) {
162 my $sql = "INSERT INTO $_[1] DEFAULT VALUES";
28d28903 163
6a247f33 164 if (my $ret = ($_[3]||{})->{returning} ) {
165 $sql .= $_[0]->_insert_returning ($ret);
28d28903 166 }
167
168 return $sql;
7a72e5a5 169 }
170
6a247f33 171 next::method(@_);
6f4ddea1 172}
173
174sub _recurse_fields {
81446c4f 175 my ($self, $fields) = @_;
6f4ddea1 176 my $ref = ref $fields;
177 return $self->_quote($fields) unless $ref;
178 return $$fields if $ref eq 'SCALAR';
179
180 if ($ref eq 'ARRAY') {
81446c4f 181 return join(', ', map { $self->_recurse_fields($_) } @$fields);
83e09b5b 182 }
183 elsif ($ref eq 'HASH') {
81446c4f 184 my %hash = %$fields; # shallow copy
83e09b5b 185
50136dd9 186 my $as = delete $hash{-as}; # if supplied
187
81446c4f 188 my ($func, $args, @toomany) = %hash;
189
190 # there should be only one pair
191 if (@toomany) {
192 croak "Malformed select argument - too many keys in hash: " . join (',', keys %$fields );
193 }
50136dd9 194
195 if (lc ($func) eq 'distinct' && ref $args eq 'ARRAY' && @$args > 1) {
196 croak (
197 'The select => { distinct => ... } syntax is not supported for multiple columns.'
198 .' Instead please use { group_by => [ qw/' . (join ' ', @$args) . '/ ] }'
199 .' or { select => [ qw/' . (join ' ', @$args) . '/ ], distinct => 1 }'
83e09b5b 200 );
6f4ddea1 201 }
83e09b5b 202
50136dd9 203 my $select = sprintf ('%s( %s )%s',
204 $self->_sqlcase($func),
205 $self->_recurse_fields($args),
206 $as
0491b597 207 ? sprintf (' %s %s', $self->_sqlcase('as'), $self->_quote ($as) )
50136dd9 208 : ''
209 );
210
83e09b5b 211 return $select;
6f4ddea1 212 }
213 # Is the second check absolutely necessary?
214 elsif ( $ref eq 'REF' and ref($$fields) eq 'ARRAY' ) {
db56cf3d 215 return $self->_fold_sqlbind( $fields );
6f4ddea1 216 }
217 else {
e8fcf76f 218 croak($ref . qq{ unexpected in _recurse_fields()})
6f4ddea1 219 }
220}
221
a6b68a60 222
223# this used to be a part of _order_by but is broken out for clarity.
224# What we have been doing forever is hijacking the $order arg of
225# SQLA::select to pass in arbitrary pieces of data (first the group_by,
226# then pretty much the entire resultset attr-hash, as more and more
227# things in the SQLA space need to have mopre info about the $rs they
228# create SQL for. The alternative would be to keep expanding the
229# signature of _select with more and more positional parameters, which
230# is just gross. All hail SQLA2!
231sub _parse_rs_attrs {
1cbd3034 232 my ($self, $arg) = @_;
15827712 233
a6b68a60 234 my $sql = '';
1cbd3034 235
b03f30a3 236 if (my $g = $self->_recurse_fields($arg->{group_by}) ) {
a6b68a60 237 $sql .= $self->_sqlcase(' group by ') . $g;
238 }
1cbd3034 239
a6b68a60 240 if (defined $arg->{having}) {
241 my ($frag, @bind) = $self->_recurse_where($arg->{having});
242 push(@{$self->{having_bind}}, @bind);
243 $sql .= $self->_sqlcase(' having ') . $frag;
244 }
15827712 245
a6b68a60 246 if (defined $arg->{order_by}) {
247 $sql .= $self->_order_by ($arg->{order_by});
248 }
15827712 249
a6b68a60 250 return $sql;
251}
252
253sub _order_by {
254 my ($self, $arg) = @_;
15827712 255
a6b68a60 256 # check that we are not called in legacy mode (order_by as 4th argument)
257 if (ref $arg eq 'HASH' and not grep { $_ =~ /^-(?:desc|asc)/i } keys %$arg ) {
258 return $self->_parse_rs_attrs ($arg);
fde3719a 259 }
1cbd3034 260 else {
6a247f33 261 my ($sql, @bind) = $self->next::method($arg);
a6b68a60 262 push @{$self->{order_bind}}, @bind;
1cbd3034 263 return $sql;
fd4cb60a 264 }
6f4ddea1 265}
266
267sub _table {
6a247f33 268# optimized due to hotttnesss
269# my ($self, $from) = @_;
270 if (my $ref = ref $_[1] ) {
271 if ($ref eq 'ARRAY') {
272 return $_[0]->_recurse_from(@{$_[1]});
273 }
274 elsif ($ref eq 'HASH') {
275 return $_[0]->_make_as($_[1]);
276 }
6f4ddea1 277 }
6a247f33 278
279 return $_[0]->next::method ($_[1]);
6f4ddea1 280}
281
b8391c87 282sub _generate_join_clause {
283 my ($self, $join_type) = @_;
284
285 return sprintf ('%s JOIN ',
286 $join_type ? ' ' . uc($join_type) : ''
287 );
288}
289
6f4ddea1 290sub _recurse_from {
291 my ($self, $from, @join) = @_;
292 my @sqlf;
293 push(@sqlf, $self->_make_as($from));
294 foreach my $j (@join) {
295 my ($to, $on) = @$j;
296
aa82ce29 297
6f4ddea1 298 # check whether a join type exists
6f4ddea1 299 my $to_jt = ref($to) eq 'ARRAY' ? $to->[0] : $to;
aa82ce29 300 my $join_type;
301 if (ref($to_jt) eq 'HASH' and defined($to_jt->{-join_type})) {
302 $join_type = $to_jt->{-join_type};
303 $join_type =~ s/^\s+ | \s+$//xg;
6f4ddea1 304 }
aa82ce29 305
de5f71ef 306 $join_type = $self->{_default_jointype} if not defined $join_type;
aa82ce29 307
b8391c87 308 push @sqlf, $self->_generate_join_clause( $join_type );
6f4ddea1 309
310 if (ref $to eq 'ARRAY') {
311 push(@sqlf, '(', $self->_recurse_from(@$to), ')');
312 } else {
313 push(@sqlf, $self->_make_as($to));
314 }
315 push(@sqlf, ' ON ', $self->_join_condition($on));
316 }
317 return join('', @sqlf);
318}
319
db56cf3d 320sub _fold_sqlbind {
321 my ($self, $sqlbind) = @_;
69989ea9 322
323 my @sqlbind = @$$sqlbind; # copy
324 my $sql = shift @sqlbind;
325 push @{$self->{from_bind}}, @sqlbind;
326
db56cf3d 327 return $sql;
6f4ddea1 328}
329
330sub _make_as {
331 my ($self, $from) = @_;
db56cf3d 332 return join(' ', map { (ref $_ eq 'SCALAR' ? $$_
333 : ref $_ eq 'REF' ? $self->_fold_sqlbind($_)
334 : $self->_quote($_))
6f4ddea1 335 } reverse each %{$self->_skip_options($from)});
336}
337
338sub _skip_options {
339 my ($self, $hash) = @_;
340 my $clean_hash = {};
341 $clean_hash->{$_} = $hash->{$_}
342 for grep {!/^-/} keys %$hash;
343 return $clean_hash;
344}
345
346sub _join_condition {
347 my ($self, $cond) = @_;
348 if (ref $cond eq 'HASH') {
349 my %j;
350 for (keys %$cond) {
351 my $v = $cond->{$_};
352 if (ref $v) {
e8fcf76f 353 croak (ref($v) . qq{ reference arguments are not supported in JOINS - try using \"..." instead'})
6f4ddea1 354 if ref($v) ne 'SCALAR';
355 $j{$_} = $v;
356 }
357 else {
358 my $x = '= '.$self->_quote($v); $j{$_} = \$x;
359 }
360 };
361 return scalar($self->_recurse_where(\%j));
362 } elsif (ref $cond eq 'ARRAY') {
363 return join(' OR ', map { $self->_join_condition($_) } @$cond);
364 } else {
b48d3b4e 365 croak "Can't handle this yet!";
6f4ddea1 366 }
367}
368
6f4ddea1 3691;
d5dedbd6 370
371=head1 AUTHORS
372
373See L<DBIx::Class/CONTRIBUTORS>.
374
375=head1 LICENSE
376
377You may distribute this code under the same terms as Perl itself.
378
379=cut