move ExtraClauses to -keyword
[scpubgit/Q-Branch.git] / lib / SQL / Abstract / ExtraClauses.pm
CommitLineData
1ff9018c 1package SQL::Abstract::ExtraClauses;
2
df5d0507 3use Moo;
4
5has sqla => (
6 is => 'ro', init_arg => undef,
7 handles => [ qw(
1601bb47 8 expand_expr expand_maybe_list_expr render_aqt join_query_parts
df5d0507 9 ) ],
10);
1ff9018c 11
df5d0507 12sub cb {
c671eba6 13 my ($self, $method, @args) = @_;
14 return sub {
15 local $self->{sqla} = shift;
16 $self->$method(@args, @_)
17 };
df5d0507 18}
19
20sub apply_to {
21 my ($self, $sqla) = @_;
22 $self = $self->new unless ref($self);
ad078c71 23 my @clauses = $sqla->clauses_of('select');
2b0b3d43 24 my @before_setop;
25 CLAUSE: foreach my $idx (0..$#clauses) {
26 if ($clauses[$idx] eq 'order_by') {
27 @before_setop = @clauses[0..$idx-1];
28 splice(@clauses, $idx, 0, qw(setop group_by having));
29 last CLAUSE;
30 }
31 }
32 die "Huh?" unless @before_setop;
ad078c71 33 $sqla->clauses_of(select => 'with', @clauses);
34 $sqla->clause_expanders(
df5d0507 35 'select.group_by', $self->cb(sub {
b99e393b 36 $_[0]->expand_maybe_list_expr($_[2], -ident)
df5d0507 37 }),
38 'select.having', $self->cb(sub { $_[0]->expand_expr($_[2]) }),
58ebc7fa 39 );
a6227174 40 foreach my $thing (qw(join from_list)) {
ad078c71 41 $sqla->expander($thing => $self->cb("_expand_${thing}"))
df5d0507 42 ->renderer($thing => $self->cb("_render_${thing}"))
a6227174 43 }
ad078c71 44 $sqla->op_expander(as => $self->cb('_expand_op_as'));
45 $sqla->expander(as => $self->cb('_expand_op_as'));
46 $sqla->renderer(as => $self->cb('_render_as'));
2f4717ad 47 $sqla->expander(alias => $self->cb('_expand_alias'));
ad078c71 48 $sqla->renderer(alias => $self->cb('_render_alias'));
58ebc7fa 49
ad078c71 50 $sqla->clauses_of(update => sub {
ee706e89 51 my ($self, @clauses) = @_;
52 splice(@clauses, 2, 0, 'from');
53 @clauses;
54 });
55
ad078c71 56 $sqla->clauses_of(delete => sub {
ee706e89 57 my ($self, @clauses) = @_;
58 splice(@clauses, 1, 0, 'using');
59 @clauses;
60 });
61
ad078c71 62 $sqla->clause_expanders(
805c64f1 63 'update.from' => $self->cb('_expand_from_list'),
9a20a32d 64 'delete.using' => $self->cb('_expand_from_list'),
df5d0507 65 'insert.rowvalues' => $self->cb(sub {
fe8b493f 66 +(from => $_[0]->expand_expr({ -values => $_[2] }));
df5d0507 67 }),
68 'insert.select' => $self->cb(sub {
fe8b493f 69 +(from => $_[0]->expand_expr({ -select => $_[2] }));
df5d0507 70 }),
58ebc7fa 71 );
26994fdd 72
2b0b3d43 73 # set ops
ad078c71 74 $sqla->wrap_expander(select => sub {
c671eba6 75 $self->cb('_expand_select', $_[0], \@before_setop);
3f9899e5 76 });
2b0b3d43 77
e2db8228 78 $sqla->clause_renderer(
79 'select.setop' => $self->cb(sub { $_[0]->render_aqt($_[2]); })
80 );
2b0b3d43 81
51046d0e 82 foreach my $setop (qw(union intersect except)) {
83 $sqla->expander($setop => $self->cb('_expand_setop'));
84 $sqla->renderer($setop => $self->cb('_render_setop'));
85 }
260e0f29 86
41086177 87 my $setop_expander = $self->cb('_expand_clause_setop');
f61bfd7b 88
ad078c71 89 $sqla->clause_expanders(
f61bfd7b 90 map +($_ => $setop_expander),
91 map "select.${_}",
92 map +($_, "${_}_all", "${_}_distinct"),
93 qw(union intersect except)
94 );
d175037f 95
2f4717ad 96 my $w_exp = $self->cb('_expand_with');
97 my $w_rdr = $self->cb('_render_with');
98 $sqla->clause_expander('select.with' => $w_exp);
99 $sqla->clause_expander('select.with_recursive' => $w_exp);
100 $sqla->clause_renderer('select.with' => $w_rdr);
101
a97ecd95 102 foreach my $stmt (qw(insert update delete)) {
ad078c71 103 $sqla->clauses_of($stmt => 'with', $sqla->clauses_of($stmt));
2f4717ad 104 $sqla->clause_expander("${stmt}.$_" => $w_exp)
a97ecd95 105 for qw(with with_recursive);
2f4717ad 106 $sqla->clause_renderer("${stmt}.with" => $w_rdr);
a97ecd95 107 }
2f4717ad 108
109 $sqla->expander(cast => $self->cb('_expand_cast'));
df5d0507 110
ad078c71 111 $sqla->clause_expanders(
805c64f1 112 "select.from", $self->cb('_expand_from_list'),
df5d0507 113 "update.target", $self->cb('_expand_update_clause_target'),
114 "update.update", $self->cb('_expand_update_clause_target'),
115 );
2b0b3d43 116
ad078c71 117 return $sqla;
1ff9018c 118}
119
c671eba6 120sub _expand_select {
093442c8 121 my ($self, $orig, $before_setop, @args) = @_;
122 my $exp = $self->sqla->$orig(@args);
c671eba6 123 return $exp unless my $setop = (my $sel = $exp->{-select})->{setop};
124 if (my @keys = grep $sel->{$_}, @$before_setop) {
125 my %inner; @inner{@keys} = delete @{$sel}{@keys};
126 unshift @{(values(%$setop))[0]{queries}},
127 { -select => \%inner };
128 }
129 return $exp;
130}
131
7741b7ad 132sub _expand_from_list {
133 my ($self, undef, $args) = @_;
134 if (ref($args) eq 'HASH') {
38e67490 135 return $args if $args->{-from_list};
7741b7ad 136 return { -from_list => [ $self->expand_expr($args) ] };
137 }
138 my @list;
86a6ebf4 139 my @args = ref($args) eq 'ARRAY' ? @$args : ($args);
7741b7ad 140 while (my $entry = shift @args) {
b99e9a14 141 if (!ref($entry) and $entry =~ /^-(.*)/) {
142 if ($1 eq 'as') {
143 $list[-1] = $self->expand_expr({ -as => [
144 $list[-1], map +(ref($_) eq 'ARRAY' ? @$_ : $_), shift(@args)
145 ]});
146 next;
147 }
7741b7ad 148 $entry = { $entry => shift @args };
149 }
150 my $aqt = $self->expand_expr($entry, -ident);
151 if ($aqt->{-join} and not $aqt->{-join}{from}) {
152 $aqt->{-join}{from} = pop @list;
153 }
154 push @list, $aqt;
155 }
156 return { -from_list => \@list };
157}
158
159sub _expand_join {
160 my ($self, undef, $args) = @_;
161 my %proto = (
162 ref($args) eq 'HASH'
163 ? %$args
164 : (to => $args->[0], @{$args}[1..$#$args])
165 );
b99e9a14 166 if (my $as = delete $proto{as}) {
984db0d7 167 $proto{to} = $self->expand_expr({ -as => [ $proto{to}, $as ] });
b99e9a14 168 }
e0eb8d26 169 if (defined($proto{using}) and ref(my $using = $proto{using}) ne 'HASH') {
13c99dad 170 $proto{using} = [
e0eb8d26 171 map [ $self->expand_expr($_, -ident) ],
172 ref($using) eq 'ARRAY' ? @$using: $using
13c99dad 173 ];
e0eb8d26 174 }
7741b7ad 175 my %ret = map +($_ => $self->expand_expr($proto{$_}, -ident)),
176 sort keys %proto;
177 return +{ -join => \%ret };
178}
179
180sub _render_from_list {
a01911a2 181 my ($self, undef, $list) = @_;
a1f8b6ef 182 return $self->join_query_parts(', ', @$list);
7741b7ad 183}
184
185sub _render_join {
a01911a2 186 my ($self, undef, $args) = @_;
7741b7ad 187
188 my @parts = (
412f9efe 189 $args->{from},
1601bb47 190 { -keyword => join '_', ($args->{type}||()), 'join' },
51ccda04 191 (map +($_->{-ident} || $_->{-as} ? $_ : ('(', $_, ')')), $args->{to}),
7741b7ad 192 ($args->{on} ? (
1601bb47 193 { -keyword => 'on' },
412f9efe 194 $args->{on},
7741b7ad 195 ) : ()),
196 ($args->{using} ? (
1601bb47 197 { -keyword => 'using' },
13c99dad 198 '(', $args->{using}, ')',
7741b7ad 199 ) : ()),
200 );
0236f122 201 return $self->join_query_parts(' ', @parts);
7741b7ad 202}
203
b99e9a14 204sub _expand_op_as {
205 my ($self, undef, $vv, $k) = @_;
984db0d7 206 my @vv = (ref($vv) eq 'ARRAY' ? @$vv : $vv);
207 $k ||= shift @vv;
208 my $ik = $self->expand_expr($k, -ident);
209 return +{ -as => [ $ik, $self->expand_expr($vv[0], -alias) ] }
210 if @vv == 1 and ref($vv[0]) eq 'HASH';
211
212 my @as = map $self->expand_expr($_, -ident), @vv;
213 return { -as => [ $ik, { -alias => \@as } ] };
b99e9a14 214}
215
216sub _render_as {
a01911a2 217 my ($self, undef, $args) = @_;
984db0d7 218 my ($thing, $alias) = @$args;
0236f122 219 return $self->join_query_parts(
ac7992be 220 ' ',
984db0d7 221 $thing,
1601bb47 222 { -keyword => 'as' },
984db0d7 223 $alias,
1ba47f38 224 );
225}
226
227sub _render_alias {
984db0d7 228 my ($self, undef, $args) = @_;
1ba47f38 229 my ($as, @cols) = @$args;
230 return (@cols
0236f122 231 ? $self->join_query_parts('',
a1f8b6ef 232 $as,
3f312d2e 233 '(',
234 $self->join_query_parts(
235 ', ',
236 @cols
237 ),
238 ')',
1ba47f38 239 )
240 : $self->render_aqt($as)
b99e9a14 241 );
242}
243
f9f1fdcd 244sub _expand_update_clause_target {
fe8b493f 245 my ($self, undef, $target) = @_;
f9f1fdcd 246 +(target => $self->_expand_from_list(undef, $target));
247}
248
2f4717ad 249sub _expand_cast {
250 my ($self, undef, $thing) = @_;
251 return { -func => [ cast => $thing ] } if ref($thing) eq 'HASH';
252 my ($cast, $to) = @{$thing};
253 +{ -func => [ cast => { -as => [
254 $self->expand_expr($cast),
255 $self->expand_expr($to, -ident),
256 ] } ] };
257}
258
259sub _expand_alias {
260 my ($self, undef, $args) = @_;
261 if (ref($args) eq 'HASH' and my $alias = $args->{-alias}) {
262 $args = $alias;
263 }
264 +{ -alias => [
265 map $self->expand_expr($_, -ident),
266 ref($args) eq 'ARRAY' ? @{$args} : $args
267 ]
268 }
269}
270
271sub _expand_with {
272 my ($self, $name, $with) = @_;
273 my (undef, $type) = split '_', $name;
274 if (ref($with) eq 'HASH') {
275 return +{
276 %$with,
277 queries => [
278 map +[
279 $self->expand_expr({ -alias => $_->[0] }, -ident),
280 $self->expand_expr($_->[1]),
281 ], @{$with->{queries}}
282 ]
283 }
284 }
285 my @with = @$with;
286 my @exp;
287 while (my ($alias, $query) = splice @with, 0, 2) {
288 push @exp, [
289 $self->expand_expr({ -alias => $alias }, -ident),
290 $self->expand_expr($query)
291 ];
292 }
293 return +(with => { ($type ? (type => $type) : ()), queries => \@exp });
294}
295
296sub _render_with {
297 my ($self, undef, $with) = @_;
298 my $q_part = $self->join_query_parts(', ',
299 map {
300 my ($alias, $query) = @$_;
301 $self->join_query_parts(' ',
302 $alias,
1601bb47 303 { -keyword => 'as' },
2f4717ad 304 $query,
305 )
306 } @{$with->{queries}}
307 );
308 return $self->join_query_parts(' ',
1601bb47 309 { -keyword => join '_', 'with', ($with->{type}||'') },
2f4717ad 310 $q_part,
311 );
312}
313
51046d0e 314sub _expand_setop {
315 my ($self, $setop, $args) = @_;
316 +{ "-${setop}" => {
317 %$args,
318 queries => [ map $self->expand_expr($_), @{$args->{queries}} ],
319 } };
320}
321
b5f4a869 322sub _render_setop {
323 my ($self, $setop, $args) = @_;
324 $self->join_query_parts(
1601bb47 325 { -keyword => ' '.join('_', $setop, ($args->{type}||())).' ' },
b5f4a869 326 @{$args->{queries}}
327 );
328}
329
41086177 330sub _expand_clause_setop {
331 my ($self, $setop, $args) = @_;
332 my ($op, $type) = split '_', $setop;
333 +(setop => $self->expand_expr({
334 "-${op}" => {
335 ($type ? (type => $type) : ()),
336 queries => (ref($args) eq 'ARRAY' ? $args : [ $args ])
337 }
338 }));
339}
340
1ff9018c 3411;