2596c633dd149a59cf5a6b3b6ae5a5c3caeb639b
[dbsrgits/SQL-Abstract-2.0-ish.git] / lib / SQL / Abstract / AST / v1.pm
1 use MooseX::Declare;
2
3 class SQL::Abstract::AST::v1 extends SQL::Abstract {
4
5   use Carp qw/croak/;
6   use Data::Dump qw/pp/;
7
8   use Moose::Util::TypeConstraints;
9   use MooseX::Types::Moose qw/ArrayRef Str Int Ref HashRef/;
10   use MooseX::AttributeHelpers;
11   use SQL::Abstract::Types qw/AST ArrayAST HashAST/;
12   use Devel::PartialDump qw/dump/;
13
14   clean;
15
16   # set things that are valid in where clauses
17   override _build_expr_dispatch_table {
18     return { 
19       %{super()},
20       in => $self->can('_in'),
21       not_in => $self->can('_in'),
22       and => $self->can('_recurse_where'),
23       or => $self->can('_recurse_where'),
24       map { +"$_" => $self->can("_$_") } qw/
25         value
26         name
27         true
28         false
29         expr
30       /
31     };
32   }
33
34   method _select(HashAST $ast) {
35     # Default to requiring columns and from.
36     # DB specific ones (i.e. mysql/Pg) can not require the FROM part with a bit
37     # of refactoring
38     
39     for (qw/columns tablespec/) {
40       confess "'$_' is required in select AST with " . dump ($ast)
41         unless exists $ast->{$_};
42     }
43    
44     # Check that columns is a -list
45     confess "'columns' should be an array ref, not " . dump($ast->{columns})
46       unless is_ArrayRef($ast->{columns});
47
48     my $cols = $self->_list({-type => 'list', args => $ast->{columns} });
49
50     my @output = (
51       SELECT => $cols
52     );
53
54     push @output, FROM => $self->dispatch($ast->{tablespec})
55       if exists $ast->{tablespec};
56
57     for (qw//) {
58       if (exists $ast->{$_}) {
59         my $sub_ast = $ast->{$_};
60         $sub_ast->{-type} = "$_" if is_HashRef($sub_ast);
61         confess "$_ option is not an AST"
62           unless is_AST($sub_ast);
63
64         push @output, $self->dispatch($sub_ast);
65       }
66     }
67
68     return join(' ', @output);
69   }
70
71   method _join(HashRef $ast) {
72     my ($from, $to) = @{ $ast->{args} };
73   
74     my $output = $self->dispatch($from)
75                . ' JOIN ' 
76                . $self->dispatch($to);
77
78     $output .= exists $ast->{on}
79              ? ' ON (' . $self->_expr( $ast->{on} )
80              : ' USING (' .$self->dispatch($ast->{using} || croak "No 'on' or 'join' clause passed to -join");
81
82     $output .= ")";
83     return $output;
84       
85   }
86
87   method _order_by(AST $ast) {
88     my @clauses = @{$ast->{order_by}};
89   
90     my @output;
91    
92     for (@clauses) {
93       if (is_ArrayRef($_) && $_->[0] =~ /^-(asc|desc)$/) {
94         my $o = $1;
95         push @output, $self->dispatch($_->[1]) . " " . uc($o);
96         next;
97       }
98       push @output, $self->dispatch($_);
99     }
100
101     return "ORDER BY " . join(", ", @output);
102   }
103
104   method _name(HashAST $ast) {
105     my @names = @{$ast->{args}};
106
107     my $sep = $self->name_separator;
108     my $quote = $self->is_quoting 
109               ? $self->quote_chars
110               : [ '' ];
111
112     my $join = $quote->[-1] . $sep . $quote->[0];
113
114     # We dont want to quote * in [qw/me */]: `me`.* is the desired output there
115     # This means you can't have a field called `*`. I am willing to accept this
116     # situation, cos thats a really stupid thing to want.
117     my $post;
118     $post = pop @names if $names[-1] eq '*';
119
120     my $ret = 
121       $quote->[0] . 
122       join( $join, @names ) . 
123       $quote->[-1];
124
125     $ret .= $sep . $post if defined $post;
126     return $ret;
127   }
128
129
130   method _list(AST $ast) {
131     my @items = @{$ast->{args}};
132
133     return join(
134       $self->list_separator,
135       map { $self->dispatch($_) } @items);
136   }
137
138   # TODO: I think i want to parameterized AST type to get better validation
139   method _alias(AST $ast) {
140     
141     # TODO: Maybe we want qq{ AS "$as"} here
142     return $self->dispatch($ast->{ident}) . " AS " . $ast->{as};
143
144   }
145
146   method _value(HashAST $ast) {
147
148     $self->add_bind($ast->{value});
149     return "?";
150   }
151
152   # Perhaps badly named. handles 'and' and 'or' clauses
153   method _recurse_where(HashAST $ast) {
154
155     my $op = $ast->{op};
156
157     my $OP = uc $op;
158     my $prio = $SQL::Abstract::PRIO{$op};
159
160     my $dispatch_table = $self->expr_dispatch_table;
161
162     my @output;
163     foreach ( @{$ast->{args}} ) {
164       croak "invalid component in where clause: $_" unless is_HashAST($_);
165
166       if ($_->{-type} eq 'expr' && $_->{op} =~ /^(and|or)$/) {
167         my $sub_prio = $SQL::Abstract::PRIO{$1}; 
168
169         if ($sub_prio <= $prio) {
170           push @output, $self->_recurse_where($_);
171         } else {
172           push @output, '(' . $self->_recurse_where($_) . ')';
173         }
174       } else {
175         push @output, $self->_expr($_);
176       }
177     }
178
179     return join(" $OP ", @output);
180   }
181
182   method _expr(HashAST $ast) {
183     my $op = $ast->{-type};
184
185     $op = $ast->{op} if $op eq 'expr';
186
187     if (my $code = $self->lookup_expr_dispatch($op)) { 
188       
189       return $code->($self, $ast);
190
191     }
192     croak "'$op' is not a valid AST type in an expression with " . dump($ast)
193       if $ast->{-type} ne 'expr';
194
195     croak "'$op' is not a valid operator in an expression with " . dump($ast);
196    
197   }
198
199   method _binop(HashAST $ast) {
200     my ($lhs, $rhs) = @{$ast->{args}};
201     my $op = $ast->{op};
202
203     join (' ', $self->_expr($lhs), 
204                $self->binop_mapping($op) || croak("Unknown binary operator $op"),
205                $self->_expr($rhs)
206     );
207   }
208
209   method _in(HashAST $ast) {
210   
211     my ($field,@values) = @{$ast->{args}};
212
213     my $not = ($ast->{op} =~ /^not_/) ? " NOT" : "";
214
215     return $self->_false unless @values;
216
217     return $self->_expr($field) .
218            $not . 
219            " IN (" .
220            join(", ", map { $self->dispatch($_) } @values ) .
221            ")";
222   }
223
224   method _generic_func(ArrayRef $ast) {
225   }
226
227   # 'constants' that are portable across DBs
228   method _false($ast?) { "0 = 1" }
229   method _true($ast?) { "1 = 1" }
230
231 }