first (naive) cut at identifier remapping and join injection
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker.pm
CommitLineData
d5dedbd6 1package DBIx::Class::SQLMaker;
6f4ddea1 2
a697fa31 3use strict;
4use warnings;
5
d5dedbd6 6=head1 NAME
7
8DBIx::Class::SQLMaker - An SQL::Abstract-based SQL maker class
9
10=head1 DESCRIPTION
11
12This module is a subclass of L<SQL::Abstract> and includes a number of
13DBIC-specific workarounds, not yet suitable for inclusion into the
14L<SQL::Abstract> core. It also provides all (and more than) the functionality
15of L<SQL::Abstract::Limit>, see L<DBIx::Class::SQLMaker::LimitDialects> for
16more info.
17
18Currently the enhancements to L<SQL::Abstract> are:
19
20=over
21
22=item * Support for C<JOIN> statements (via extended C<table/from> support)
23
24=item * Support of functions in C<SELECT> lists
25
26=item * C<GROUP BY>/C<HAVING> support (via extensions to the order_by parameter)
27
28=item * Support of C<...FOR UPDATE> type of select statement modifiers
29
10cef607 30=item * The L</-ident> operator
31
32=item * The L</-value> operator
33
d5dedbd6 34=back
35
36=cut
6a247f33 37
38use base qw/
39 SQL::Abstract
10cef607 40 DBIx::Class::SQLMaker::LimitDialects
6a247f33 41/;
42use mro 'c3';
a697fa31 43
10cef607 44use Module::Runtime qw(use_module);
6298a324 45use Sub::Name 'subname';
70c28808 46use DBIx::Class::Carp;
10cef607 47use DBIx::Class::Exception;
48use Moo;
e8fc51c7 49use namespace::clean;
b2b22cd6 50
10cef607 51has limit_dialect => (
52 is => 'rw', default => sub { 'LimitOffset' },
53 trigger => sub { shift->clear_renderer_class }
54);
55
7027fcdb 56sub BUILD {
57 if ($_[0]->can('emulate_limit')) {
58 die <<EODIE;
59The ancient and horrible emulate_limit method was deprecated for many moons.
60Now, it is no more. Time to rewrite the code in ${\ref($_[0])}
61EODIE
62 }
63}
64
10cef607 65our %LIMIT_DIALECT_MAP = (
66 'GenericSubQ' => 'GenericSubquery',
10cef607 67);
68
69sub mapped_limit_dialect {
70 my ($self) = @_;
71 my $unmapped = $self->limit_dialect;
72 $LIMIT_DIALECT_MAP{$unmapped}||$unmapped;
73}
74
75around _build_renderer_roles => sub {
76 my ($orig, $self) = (shift, shift);
77 return (
78 $self->$orig(@_),
79 'Data::Query::Renderer::SQL::Slice::'.$self->mapped_limit_dialect
80 );
81};
6a247f33 82
3f5b99fe 83# for when I need a normalized l/r pair
84sub _quote_chars {
85 map
86 { defined $_ ? $_ : '' }
87 ( ref $_[0]->{quote_char} ? (@{$_[0]->{quote_char}}) : ( ($_[0]->{quote_char}) x 2 ) )
88 ;
89}
90
10cef607 91sub _build_converter_class {
92 Module::Runtime::use_module('DBIx::Class::SQLMaker::Converter')
93}
94
70c28808 95# FIXME when we bring in the storage weaklink, check its schema
96# weaklink and channel through $schema->throw_exception
97sub throw_exception { DBIx::Class::Exception->throw($_[1]) }
98
b2b22cd6 99BEGIN {
2ea6032a 100 # reinstall the belch()/puke() functions of SQL::Abstract with custom versions
70c28808 101 # that use DBIx::Class::Carp/DBIx::Class::Exception instead of plain Carp
b2b22cd6 102 no warnings qw/redefine/;
2ea6032a 103
104 *SQL::Abstract::belch = subname 'SQL::Abstract::belch' => sub (@) {
105 my($func) = (caller(1))[3];
106 carp "[$func] Warning: ", @_;
107 };
108
109 *SQL::Abstract::puke = subname 'SQL::Abstract::puke' => sub (@) {
110 my($func) = (caller(1))[3];
70c28808 111 __PACKAGE__->throw_exception("[$func] Fatal: " . join ('', @_));
2ea6032a 112 };
10cef607 113
114 # Current SQLA pollutes its namespace - clean for the time being
115 namespace::clean->clean_subroutines(qw/SQL::Abstract carp croak confess/);
b2b22cd6 116}
6f4ddea1 117
e9657379 118# the "oh noes offset/top without limit" constant
fcb7fcbb 119# limited to 31 bits for sanity (and consistency,
120# since it may be handed to the like of sprintf %u)
121#
122# Also *some* builds of SQLite fail the test
123# some_column BETWEEN ? AND ?: 1, 4294967295
124# with the proper integer bind attrs
125#
6a247f33 126# Implemented as a method, since ::Storage::DBI also
127# refers to it (i.e. for the case of software_limit or
128# as the value to abuse with MSSQL ordered subqueries)
fcb7fcbb 129sub __max_int () { 0x7FFFFFFF };
e9657379 130
e39f188a 131# poor man's de-qualifier
132sub _quote {
133 $_[0]->next::method( ( $_[0]{_dequalify_idents} and ! ref $_[1] )
134 ? $_[1] =~ / ([^\.]+) $ /x
135 : $_[1]
136 );
137}
138
b1d821de 139sub _where_op_NEST {
70c28808 140 carp_unique ("-nest in search conditions is deprecated, you most probably wanted:\n"
b1d821de 141 .q|{..., -and => [ \%cond0, \@cond1, \'cond2', \[ 'cond3', [ col => bind ] ], etc. ], ... }|
70c28808 142 );
b1d821de 143
144 shift->next::method(@_);
145}
146
28be821e 147around _converter_args => sub {
148 my ($orig, $self) = (shift, shift);
149 +{
150 %{$self->$orig(@_)},
151 name_sep => $self->name_sep,
d94b8193 152 limit_dialect => $self->mapped_limit_dialect,
28be821e 153 slice_stability => { $self->renderer->slice_stability },
154 slice_subquery => { $self->renderer->slice_subquery },
6f4ddea1 155 }
28be821e 156};
c2b7c5dc 157
28be821e 158# Handle limit-dialect selection
159sub select {
160 my $self = shift;
161 my ($table, $fields, $where, $rs_attrs, $limit, $offset) = @_;
583a0c65 162
28be821e 163 my ($sql, @bind) = $self->next::method(@_);
583a0c65 164
e5372da4 165 $sql .= $self->_lock_select ($rs_attrs->{for})
166 if $rs_attrs->{for};
167
10cef607 168 return wantarray ? ($sql, @bind) : $sql;
583a0c65 169}
170
171sub _assemble_binds {
172 my $self = shift;
8b31f62e 173 return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/pre_select select from where group having order limit/);
6f4ddea1 174}
175
e5372da4 176my $for_syntax = {
177 update => 'FOR UPDATE',
178 shared => 'FOR SHARE',
179};
180sub _lock_select {
181 my ($self, $type) = @_;
8249c09b 182
183 my $sql;
184 if (ref($type) eq 'SCALAR') {
185 $sql = "FOR $$type";
186 }
187 else {
10cef607 188 $sql = $for_syntax->{$type} || $self->throw_exception( "Unknown SELECT .. FO
189R type '$type' requested" );
8249c09b 190 }
191
e5372da4 192 return " $sql";
193}
194
10cef607 195sub _recurse_from {
196 scalar shift->_render_sqla(table => \@_);
6f4ddea1 197}
198
10cef607 1991;
50136dd9 200
10cef607 201=head1 OPERATORS
81446c4f 202
10cef607 203=head2 -ident
50136dd9 204
10cef607 205Used to explicitly specify an SQL identifier. Takes a plain string as value
206which is then invariably treated as a column name (and is being properly
207quoted if quoting has been requested). Most useful for comparison of two
208columns:
83e09b5b 209
10cef607 210 my %where = (
211 priority => { '<', 2 },
212 requestor => { -ident => 'submitter' }
50136dd9 213 );
214
10cef607 215which results in:
6f4ddea1 216
10cef607 217 $stmt = 'WHERE "priority" < ? AND "requestor" = "submitter"';
218 @bind = ('2');
a6b68a60 219
10cef607 220=head2 -value
1cbd3034 221
10cef607 222The -value operator signals that the argument to the right is a raw bind value.
223It will be passed straight to DBI, without invoking any of the SQL::Abstract
224condition-parsing logic. This allows you to, for example, pass an array as a
225column value for databases that support array datatypes, e.g.:
15827712 226
10cef607 227 my %where = (
228 array => { -value => [1, 2, 3] }
b8391c87 229 );
6f4ddea1 230
10cef607 231which results in:
aa82ce29 232
10cef607 233 $stmt = 'WHERE array = ?';
234 @bind = ([1, 2, 3]);
d5dedbd6 235
236=head1 AUTHORS
237
238See L<DBIx::Class/CONTRIBUTORS>.
239
240=head1 LICENSE
241
242You may distribute this code under the same terms as Perl itself.
243
244=cut