Fix syntax error that slipped into 9c1700e3
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / Oracle.pm
CommitLineData
c0024355 1package # Hide from PAUSE
d5dedbd6 2 DBIx::Class::SQLMaker::Oracle;
c0024355 3
9ab1e5f0 4use warnings;
5use strict;
6
d5dedbd6 7use base qw( DBIx::Class::SQLMaker );
c0024355 8use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/;
9c1700e3 9use namespace::clean;
c0024355 10
c7d50a7d 11BEGIN {
c7d50a7d 12 use DBIx::Class::Optional::Dependencies;
13 croak('The following extra modules are required for Oracle-based Storages ' . DBIx::Class::Optional::Dependencies->req_missing_for ('id_shortener') )
14 unless DBIx::Class::Optional::Dependencies->req_ok_for ('id_shortener');
15}
16
9ab1e5f0 17sub new {
18 my $self = shift;
19 my %opts = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_;
20 push @{$opts{special_ops}}, {
21 regex => qr/^prior$/i,
22 handler => '_where_field_PRIOR',
23 };
24
25 $self->SUPER::new (\%opts);
26}
27
583a0c65 28sub _assemble_binds {
29 my $self = shift;
55d02972 30 return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/select from where oracle_connect_by group having order/);
c0024355 31}
32
583a0c65 33
49afd714 34sub _parse_rs_attrs {
35 my $self = shift;
36 my ($rs_attrs) = @_;
c0024355 37
2e4dd241 38 my ($cb_sql, @cb_bind) = $self->_connect_by($rs_attrs);
49afd714 39 push @{$self->{oracle_connect_by_bind}}, @cb_bind;
40
41 my $sql = $self->SUPER::_parse_rs_attrs(@_);
c0024355 42
49afd714 43 return "$cb_sql $sql";
c0024355 44}
45
46sub _connect_by {
2e4dd241 47 my ($self, $attrs) = @_;
48
c0024355 49 my $sql = '';
50 my @bind;
51
52 if ( ref($attrs) eq 'HASH' ) {
53 if ( $attrs->{'start_with'} ) {
54 my ($ws, @wb) = $self->_recurse_where( $attrs->{'start_with'} );
55 $sql .= $self->_sqlcase(' start with ') . $ws;
56 push @bind, @wb;
57 }
6b2fbbf0 58 if ( my $connect_by = $attrs->{'connect_by'} || $attrs->{'connect_by_nocycle'} ) {
59 my ($connect_by_sql, @connect_by_sql_bind) = $self->_recurse_where( $connect_by );
43426175 60 $sql .= sprintf(" %s %s",
ef5db928 61 ( $attrs->{'connect_by_nocycle'} ) ? $self->_sqlcase('connect by nocycle')
2ba03b16 62 : $self->_sqlcase('connect by'),
43426175 63 $connect_by_sql,
64 );
65 push @bind, @connect_by_sql_bind;
c0024355 66 }
67 if ( $attrs->{'order_siblings_by'} ) {
68 $sql .= $self->_order_siblings_by( $attrs->{'order_siblings_by'} );
69 }
70 }
71
72 return wantarray ? ($sql, @bind) : $sql;
73}
74
75sub _order_siblings_by {
2a770efe 76 my ( $self, $arg ) = @_;
77
78 my ( @sql, @bind );
79 for my $c ( $self->_order_by_chunks($arg) ) {
80 $self->_SWITCH_refkind(
81 $c,
82 {
83 SCALAR => sub { push @sql, $c },
84 ARRAYREF => sub { push @sql, shift @$c; push @bind, @$c },
85 }
86 );
87 }
c0024355 88
2a770efe 89 my $sql =
90 @sql
91 ? sprintf( '%s %s', $self->_sqlcase(' order siblings by'), join( ', ', @sql ) )
92 : '';
c0024355 93
2a770efe 94 return wantarray ? ( $sql, @bind ) : $sql;
c0024355 95}
96
9ab1e5f0 97# we need to add a '=' only when PRIOR is used against a column diretly
98# i.e. when it is invoked by a special_op callback
99sub _where_field_PRIOR {
100 my ($self, $lhs, $op, $rhs) = @_;
101 my ($sql, @bind) = $self->_recurse_where ($rhs);
102
103 $sql = sprintf ('%s = %s %s ',
104 $self->_convert($self->_quote($lhs)),
105 $self->_sqlcase ($op),
106 $sql
107 );
108
109 return ($sql, @bind);
110}
111
19c4cc62 112# use this codepath to hook all identifiers and mangle them if necessary
113# this is invoked regardless of quoting being on or off
114sub _quote {
115 my ($self, $label) = @_;
116
117 return '' unless defined $label;
118 return ${$label} if ref($label) eq 'SCALAR';
119
120 $label =~ s/ ( [^\.]{31,} ) /$self->_shorten_identifier($1)/gxe;
121
122 $self->next::method($label);
123}
124
63ca94e1 125# this takes an identifier and shortens it if necessary
126# optionally keywords can be passed as an arrayref to generate useful
127# identifiers
128sub _shorten_identifier {
129 my ($self, $to_shorten, $keywords) = @_;
130
131 # 30 characters is the identifier limit for Oracle
132 my $max_len = 30;
133 # we want at least 10 characters of the base36 md5
134 my $min_entropy = 10;
135
136 my $max_trunc = $max_len - $min_entropy - 1;
137
138 return $to_shorten
139 if length($to_shorten) <= $max_len;
140
141 croak 'keywords needs to be an arrayref'
142 if defined $keywords && ref $keywords ne 'ARRAY';
143
144 # if no keywords are passed use the identifier as one
145 my @keywords = @{$keywords || []};
146 @keywords = $to_shorten unless @keywords;
147
148 # get a base36 md5 of the identifier
149 require Digest::MD5;
150 require Math::BigInt;
151 require Math::Base36;
152 my $b36sum = Math::Base36::encode_base36(
153 Math::BigInt->from_hex (
154 '0x' . Digest::MD5::md5_hex ($to_shorten)
155 )
156 );
157
158 # switch from perl to java
159 # get run-length
160 my ($concat_len, @lengths);
161 for (@keywords) {
162 $_ = ucfirst (lc ($_));
163 $_ =~ s/\_+(\w)/uc ($1)/eg;
164
165 push @lengths, length ($_);
166 $concat_len += $lengths[-1];
167 }
168
169 # if we are still too long - try to disemvowel non-capitals (not keyword starts)
170 if ($concat_len > $max_trunc) {
171 $concat_len = 0;
172 @lengths = ();
173
174 for (@keywords) {
175 $_ =~ s/[aeiou]//g;
176
177 push @lengths, length ($_);
178 $concat_len += $lengths[-1];
179 }
180 }
181
182 # still too long - just start cuting proportionally
183 if ($concat_len > $max_trunc) {
184 my $trim_ratio = $max_trunc / $concat_len;
185
186 for my $i (0 .. $#keywords) {
187 $keywords[$i] = substr ($keywords[$i], 0, int ($trim_ratio * $lengths[$i] ) );
188 }
189 }
190
191 my $fin = join ('', @keywords);
192 my $fin_len = length $fin;
193
194 return sprintf ('%s_%s',
195 $fin,
196 substr ($b36sum, 0, $max_len - $fin_len - 1),
197 );
198}
199
200sub _unqualify_colname {
201 my ($self, $fqcn) = @_;
202
203 return $self->_shorten_identifier($self->next::method($fqcn));
204}
205
bf51641f 206#
207# Oracle has a different INSERT...RETURNING syntax
208#
209
210sub _insert_returning {
211 my ($self, $options) = @_;
212
213 my $f = $options->{returning};
214
215 my ($f_list, @f_names) = $self->_SWITCH_refkind($f, {
216 ARRAYREF => sub {
217 (join ', ', map { $self->_quote($_) } @$f),
218 @$f
219 },
220 SCALAR => sub {
221 $self->_quote($f),
222 $f,
223 },
224 SCALARREF => sub {
225 $$f,
226 $$f,
227 },
228 });
229
230 my $rc_ref = $options->{returning_container}
231 or croak ('No returning container supplied for IR values');
232
233 @$rc_ref = (undef) x @f_names;
234
235 return (
236 ( join (' ',
237 $self->_sqlcase(' returning'),
238 $f_list,
239 $self->_sqlcase('into'),
240 join (', ', ('?') x @f_names ),
241 )),
242 map {
243 $self->{bindtype} eq 'columns'
244 ? [ $f_names[$_] => \$rc_ref->[$_] ]
245 : \$rc_ref->[$_]
246 } (0 .. $#f_names),
247 );
248}
249
c0024355 2501;