X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSQLMaker%2FOracle.pm;h=b4c1584f74c1538156e3c0d33b583fa4adffe1e0;hb=71b788fb0a6ec693cb27c44e326f01a219caf1a4;hp=0a773e7ad063a65666268182e63fa157ed8e03b6;hpb=d5dedbd62928f65a9071b4d9b6d56c6b663a073b;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/SQLMaker/Oracle.pm b/lib/DBIx/Class/SQLMaker/Oracle.pm index 0a773e7..b4c1584 100644 --- a/lib/DBIx/Class/SQLMaker/Oracle.pm +++ b/lib/DBIx/Class/SQLMaker/Oracle.pm @@ -4,8 +4,15 @@ package # Hide from PAUSE use warnings; use strict; -use base qw( DBIx::Class::SQLMaker ); -use Carp::Clan qw/^DBIx::Class|^SQL::Abstract/; +BEGIN { + require DBIx::Class::Optional::Dependencies; + if (my $missing = DBIx::Class::Optional::Dependencies->req_missing_for ('id_shortener') ) { + die "The following extra modules are required for Oracle-based Storages: $missing\n"; + } + require Digest::MD5; +} + +use base 'DBIx::Class::SQLMaker'; sub new { my $self = shift; @@ -15,12 +22,12 @@ sub new { handler => '_where_field_PRIOR', }; - $self->SUPER::new (\%opts); + $self->next::method(\%opts); } sub _assemble_binds { my $self = shift; - return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/from where oracle_connect_by having order/); + return map { @{ (delete $self->{"${_}_bind"}) || [] } } (qw/pre_select select from where oracle_connect_by group having order limit/); } @@ -31,7 +38,7 @@ sub _parse_rs_attrs { my ($cb_sql, @cb_bind) = $self->_connect_by($rs_attrs); push @{$self->{oracle_connect_by_bind}}, @cb_bind; - my $sql = $self->SUPER::_parse_rs_attrs(@_); + my $sql = $self->next::method(@_); return "$cb_sql $sql"; } @@ -70,13 +77,13 @@ sub _order_siblings_by { my ( @sql, @bind ); for my $c ( $self->_order_by_chunks($arg) ) { - $self->_SWITCH_refkind( - $c, - { - SCALAR => sub { push @sql, $c }, - ARRAYREF => sub { push @sql, shift @$c; push @bind, @$c }, - } - ); + if (ref $c) { + push @sql, shift @$c; + push @bind, @$c; + } + else { + push @sql, $c; + } } my $sql = @@ -87,7 +94,7 @@ sub _order_siblings_by { return wantarray ? ( $sql, @bind ) : $sql; } -# we need to add a '=' only when PRIOR is used against a column diretly +# we need to add a '=' only when PRIOR is used against a column directly # i.e. when it is invoked by a special_op callback sub _where_field_PRIOR { my ($self, $lhs, $op, $rhs) = @_; @@ -102,6 +109,19 @@ sub _where_field_PRIOR { return ($sql, @bind); } +# use this codepath to hook all identifiers and mangle them if necessary +# this is invoked regardless of quoting being on or off +sub _quote { + my ($self, $label) = @_; + + return '' unless defined $label; + return ${$label} if ref($label) eq 'SCALAR'; + + $label =~ s/ ( [^\.]{31,} ) /$self->_shorten_identifier($1)/gxe; + + $self->next::method($label); +} + # this takes an identifier and shortens it if necessary # optionally keywords can be passed as an arrayref to generate useful # identifiers @@ -118,7 +138,7 @@ sub _shorten_identifier { return $to_shorten if length($to_shorten) <= $max_len; - croak 'keywords needs to be an arrayref' + $self->throw_exception("'keywords' needs to be an arrayref") if defined $keywords && ref $keywords ne 'ARRAY'; # if no keywords are passed use the identifier as one @@ -126,9 +146,6 @@ sub _shorten_identifier { @keywords = $to_shorten unless @keywords; # get a base36 md5 of the identifier - require Digest::MD5; - require Math::BigInt; - require Math::Base36; my $b36sum = Math::Base36::encode_base36( Math::BigInt->from_hex ( '0x' . Digest::MD5::md5_hex ($to_shorten) @@ -159,7 +176,7 @@ sub _shorten_identifier { } } - # still too long - just start cuting proportionally + # still too long - just start cutting proportionally if ($concat_len > $max_trunc) { my $trim_ratio = $max_trunc / $concat_len; @@ -183,4 +200,57 @@ sub _unqualify_colname { return $self->_shorten_identifier($self->next::method($fqcn)); } +# +# Oracle has a different INSERT...RETURNING syntax +# + +sub _insert_returning { + my ($self, $options) = @_; + + my $f = $options->{returning}; + + my ($f_list, @f_names) = do { + if (! ref $f) { + ( + $self->_quote($f), + $f, + ) + } + elsif (ref $f eq 'ARRAY') { + ( + (join ', ', map { $self->_quote($_) } @$f), + @$f, + ) + } + elsif (ref $f eq 'SCALAR') { + ( + $$f, + $$f, + ) + } + else { + $self->throw_exception("Unsupported INSERT RETURNING option $f"); + } + }; + + my $rc_ref = $options->{returning_container} + or $self->throw_exception('No returning container supplied for IR values'); + + @$rc_ref = (undef) x @f_names; + + return ( + ( join (' ', + $self->_sqlcase(' returning'), + $f_list, + $self->_sqlcase('into'), + join (', ', ('?') x @f_names ), + )), + map { + $self->{bindtype} eq 'columns' + ? [ $f_names[$_] => \$rc_ref->[$_] ] + : \$rc_ref->[$_] + } (0 .. $#f_names), + ); +} + 1;