Adjust Oracle joinmaker for SQLA 1.80 fixes ( part of f6fff2706 )
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / OracleJoins.pm
CommitLineData
8bdccca2 1package DBIx::Class::SQLMaker::OracleJoins;
6f4ddea1 2
f116ff4e 3use warnings;
4use strict;
5
ba12b23f 6use base qw( DBIx::Class::SQLMaker::Oracle );
6f4ddea1 7
8sub select {
a6b68a60 9 my ($self, $table, $fields, $where, $rs_attrs, @rest) = @_;
6f4ddea1 10
f116ff4e 11 # pull out all join conds as regular WHEREs from all extra tables
6f4ddea1 12 if (ref($table) eq 'ARRAY') {
f116ff4e 13 $where = $self->_oracle_joins($where, @{ $table }[ 1 .. $#$table ]);
6f4ddea1 14 }
15
f116ff4e 16 return $self->next::method($table, $fields, $where, $rs_attrs, @rest);
6f4ddea1 17}
18
19sub _recurse_from {
20 my ($self, $from, @join) = @_;
21
4c2b30d6 22 my @sqlf = $self->_from_chunk_to_sql($from);
6f4ddea1 23
4c2b30d6 24 for (@join) {
25 my ($to, $on) = @$_;
6f4ddea1 26
27 if (ref $to eq 'ARRAY') {
28 push (@sqlf, $self->_recurse_from(@{ $to }));
29 }
30 else {
4c2b30d6 31 push (@sqlf, $self->_from_chunk_to_sql($to));
6f4ddea1 32 }
33 }
34
35 return join q{, }, @sqlf;
36}
37
38sub _oracle_joins {
f116ff4e 39 my ($self, $where, @join) = @_;
40 my $join_where = $self->_recurse_oracle_joins(@join);
41
6f4ddea1 42 if (keys %$join_where) {
43 if (!defined($where)) {
44 $where = $join_where;
45 } else {
46 if (ref($where) eq 'ARRAY') {
47 $where = { -or => $where };
48 }
49 $where = { -and => [ $join_where, $where ] };
50 }
51 }
52 return $where;
53}
54
55sub _recurse_oracle_joins {
f116ff4e 56 my $self = shift;
6f4ddea1 57
f116ff4e 58 my @where;
59 for my $j (@_) {
6f4ddea1 60 my ($to, $on) = @{ $j };
61
f116ff4e 62 push @where, $self->_recurse_oracle_joins(@{ $to })
63 if (ref $to eq 'ARRAY');
6f4ddea1 64
f116ff4e 65 my $join_opts = ref $to eq 'ARRAY' ? $to->[0] : $to;
6f4ddea1 66 my $left_join = q{};
67 my $right_join = q{};
68
f116ff4e 69 if (ref $join_opts eq 'HASH' and my $jt = $join_opts->{-join_type}) {
6f4ddea1 70 #TODO: Support full outer joins -- this would happen much earlier in
71 #the sequence since oracle 8's full outer join syntax is best
72 #described as INSANE.
70c28808 73 $self->throw_exception("Can't handle full outer joins in Oracle 8 yet!\n")
f116ff4e 74 if $jt =~ /full/i;
6f4ddea1 75
f116ff4e 76 $left_join = q{(+)} if $jt =~ /left/i
77 && $jt !~ /inner/i;
6f4ddea1 78
f116ff4e 79 $right_join = q{(+)} if $jt =~ /right/i
80 && $jt !~ /inner/i;
6f4ddea1 81 }
82
b4e9f590 83 # sadly SQLA treats where($scalar) as literal, so we need to jump some hoops
f5423b14 84 push @where, map { \do {
85 my ($sql) = $self->_recurse_where({
86 # FIXME - more borkage, more or less a copy of the kludge in ::SQLMaker::_join_condition()
87 $_ => ( length ref $on->{$_}
88 ? $on->{$_}
89 : { -ident => $on->{$_} }
90 )
91 });
92
93 $sql =~ s/\s*\=/$left_join =/
94 if $left_join;
95
96 "$sql$right_join";
97 }
98 } sort keys %$on;
6f4ddea1 99 }
f116ff4e 100
101 return { -and => \@where };
6f4ddea1 102}
103
1041;
105
106=pod
107
108=head1 NAME
109
d5dedbd6 110DBIx::Class::SQLMaker::OracleJoins - Pre-ANSI Joins-via-Where-Clause Syntax
6f4ddea1 111
112=head1 PURPOSE
113
86b23415 114This module is used with Oracle < 9.0 due to lack of support for standard
115ANSI join syntax.
6f4ddea1 116
117=head1 SYNOPSIS
118
119Not intended for use directly; used as the sql_maker_class for schemas and components.
120
121=head1 DESCRIPTION
122
123Implements pre-ANSI joins specified in the where clause. Instead of:
124
125 SELECT x FROM y JOIN z ON y.id = z.id
126
127It will write:
128
129 SELECT x FROM y, z WHERE y.id = z.id
130
131It should properly support left joins, and right joins. Full outer joins are
132not possible due to the fact that Oracle requires the entire query be written
133to union the results of a left and right join, and by the time this module is
134called to create the where query and table definition part of the sql query,
135it's already too late.
136
137=head1 METHODS
138
139=over
140
f116ff4e 141=item select
6f4ddea1 142
f116ff4e 143Overrides DBIx::Class::SQLMaker's select() method, which calls _oracle_joins()
144to modify the column and table list before calling next::method().
6f4ddea1 145
146=back
147
148=head1 BUGS
149
f116ff4e 150Does not support full outer joins (however neither really does DBIC itself)
6f4ddea1 151
152=head1 SEE ALSO
153
154=over
155
156=item L<DBIx::Class::Storage::DBI::Oracle::WhereJoins> - Storage class using this
157
d5dedbd6 158=item L<DBIx::Class::SQLMaker> - Parent module
6f4ddea1 159
160=item L<DBIx::Class> - Duh
161
162=back
163
164=head1 AUTHOR
165
166Justin Wheeler C<< <jwheeler@datademons.com> >>
167
168=head1 CONTRIBUTORS
169
170David Jack Olrik C<< <djo@cpan.org> >>
171
172=head1 LICENSE
173
174This module is licensed under the same terms as Perl itself.
175
176=cut
177