Release 0.07042
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / Oracle.pm
CommitLineData
d87d939a 1package DBIx::Class::Schema::Loader::DBI::Oracle;
e7262300 2
3use strict;
4use warnings;
383bd2a8 5use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault';
942bd5e0 6use mro 'c3';
1af21646 7use Try::Tiny;
ff4b0152 8use DBIx::Class::Schema::Loader::Utils qw/sigwarn_silencer/;
1af21646 9use namespace::clean;
e7262300 10
c52f11c9 11our $VERSION = '0.07042';
e7262300 12
13=head1 NAME
14
3b61a7ca 15DBIx::Class::Schema::Loader::DBI::Oracle - DBIx::Class::Schema::Loader::DBI
e7262300 16Oracle Implementation.
17
e7262300 18=head1 DESCRIPTION
19
c4a69b87 20See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base>.
e7262300 21
e7262300 22=cut
23
d0e184e9 24sub _setup {
25 my $self = shift;
26
27 $self->next::method(@_);
28
c4a69b87 29 my ($current_schema) = $self->dbh->selectrow_array('SELECT USER FROM DUAL');
46065bcb 30
c4a69b87 31 $self->db_schema([ $current_schema ]) unless $self->db_schema;
46065bcb 32
c4a69b87 33 if (@{ $self->db_schema } == 1 && $self->db_schema->[0] ne '%'
34 && lc($self->db_schema->[0]) ne lc($current_schema)) {
35 $self->dbh->do('ALTER SESSION SET current_schema=' . $self->db_schema->[0]);
46065bcb 36 }
bc1cb85e 37
38 if (not defined $self->preserve_case) {
39 $self->preserve_case(0);
40 }
3785bc2e 41 elsif ($self->preserve_case) {
c930f78b 42 $self->schema->storage->sql_maker->quote_char('"');
43 $self->schema->storage->sql_maker->name_sep('.');
3785bc2e 44 }
d0e184e9 45}
46
c4a69b87 47sub _build_name_sep { '.' }
48
49sub _system_schemas {
50 my $self = shift;
e7262300 51
c4a69b87 52 # From http://www.adp-gmbh.ch/ora/misc/known_schemas.html
53
54 return ($self->next::method(@_), qw/ANONYMOUS APEX_PUBLIC_USER APEX_030200 APPQOSSYS CTXSYS DBSNMP DIP DMSYS EXFSYS LBACSYS MDDATA MDSYS MGMT_VIEW OLAPSYS ORACLE_OCM ORDDATA ORDPLUGINS ORDSYS OUTLN SI_INFORMTN_SCHEMA SPATIAL_CSW_ADMIN_USR SPATIAL_WFS_ADMIN_USR SYS SYSMAN SYSTEM TRACESRV MTSSYS OASPUBLIC OWBSYS OWBSYS_AUDIT WEBSYS WK_PROXY WKSYS WK_TEST WMSYS XDB OSE$HTTP$ADMIN AURORA$JIS$UTILITY$ AURORA$ORB$UNAUTHENTICATED/, qr/^FLOWS_\d\d\d\d\d\d\z/);
e7262300 55}
56
c4a69b87 57sub _system_tables {
58 my $self = shift;
e7262300 59
c4a69b87 60 return ($self->next::method(@_), 'PLAN_TABLE');
61}
e7262300 62
c4a69b87 63sub _dbh_tables {
64 my ($self, $schema) = @_;
e7262300 65
c4a69b87 66 return $self->dbh->tables(undef, $schema, '%', 'TABLE,VIEW');
67}
e7262300 68
c4a69b87 69sub _filter_tables {
70 my $self = shift;
ffb03c96 71
c4a69b87 72 # silence a warning from older DBD::Oracles in tests
ff4b0152 73 local $SIG{__WARN__} = sigwarn_silencer(
74 qr/^Field \d+ has an Oracle type \(\d+\) which is not explicitly supported/
75 );
128f61d8 76
c4a69b87 77 return $self->next::method(@_);
e7262300 78}
79
a40434df 80sub _table_fk_info {
81 my $self = shift;
82 my ($table) = @_;
83
84 my $rels = $self->next::method(@_);
85
86 my $deferrable_sth = $self->dbh->prepare_cached(<<'EOF');
87select deferrable from all_constraints
88where owner = ? and table_name = ? and constraint_name = ?
89EOF
90
91 foreach my $rel (@$rels) {
92 # Oracle does not have update rules
93 $rel->{attrs}{on_update} = 'NO ACTION';;
94
95 # DBD::Oracle's foreign_key_info does not return DEFERRABILITY, so we get it ourselves
96 my ($deferrable) = $self->dbh->selectrow_array(
97 $deferrable_sth, undef, $table->schema, $table->name, $rel->{_constraint_name}
98 );
99
100 $rel->{attrs}{is_deferrable} = $deferrable && $deferrable =~ /^DEFERRABLE/i ? 1 : 0;
101 }
102
103 return $rels;
104}
105
e7262300 106sub _table_uniq_info {
107 my ($self, $table) = @_;
108
c4a69b87 109 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
5975bbe6 110SELECT ac.constraint_name, acc.column_name
111FROM all_constraints ac, all_cons_columns acc
112WHERE acc.table_name=? AND acc.owner = ?
113 AND ac.table_name = acc.table_name AND ac.owner = acc.owner
114 AND acc.constraint_name = ac.constraint_name
115 AND ac.constraint_type='U'
c4a69b87 116ORDER BY acc.position
117EOF
e7262300 118
c4a69b87 119 $sth->execute($table->name, $table->schema);
e7262300 120
e7262300 121 my %constr_names;
c4a69b87 122
e7262300 123 while(my $constr = $sth->fetchrow_arrayref) {
f28e7eae 124 my $constr_name = $self->_lc($constr->[0]);
3785bc2e 125 my $constr_col = $self->_lc($constr->[1]);
3785bc2e 126 push @{$constr_names{$constr_name}}, $constr_col;
e7262300 127 }
3b61a7ca 128
6c4f5a4a 129 return [ map { [ $_ => $constr_names{$_} ] } sort keys %constr_names ];
e7262300 130}
131
4cd5155b 132sub _table_comment {
ea998e8e 133 my $self = shift;
134 my ($table) = @_;
135
136 my $table_comment = $self->next::method(@_);
137
138 return $table_comment if $table_comment;
139
c4a69b87 140 ($table_comment) = $self->dbh->selectrow_array(<<'EOF', {}, $table->schema, $table->name);
141SELECT comments FROM all_tab_comments
3b61a7ca 142WHERE owner = ?
c4a69b87 143 AND table_name = ?
144 AND (table_type = 'TABLE' OR table_type = 'VIEW')
145EOF
4cd5155b 146
147 return $table_comment
148}
149
150sub _column_comment {
ea998e8e 151 my $self = shift;
152 my ($table, $column_number, $column_name) = @_;
153
154 my $column_comment = $self->next::method(@_);
155
156 return $column_comment if $column_comment;
157
c4a69b87 158 ($column_comment) = $self->dbh->selectrow_array(<<'EOF', {}, $table->schema, $table->name, $self->_uc($column_name));
159SELECT comments FROM all_col_comments
3b61a7ca 160WHERE owner = ?
c4a69b87 161 AND table_name = ?
162 AND column_name = ?
163EOF
e7262300 164
c4a69b87 165 return $column_comment
65ab592d 166}
167
168sub _columns_info_for {
c4a69b87 169 my $self = shift;
170 my ($table) = @_;
fb328d1a 171
c4a69b87 172 my $result = $self->next::method(@_);
fb328d1a 173
1af21646 174 local $self->dbh->{LongReadLen} = 1_000_000;
c4a69b87 175 local $self->dbh->{LongTruncOk} = 1;
5cd600fa 176
c4a69b87 177 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
5975bbe6 178SELECT trigger_body
179FROM all_triggers
180WHERE table_name = ? AND table_owner = ?
760fd65c 181AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIKE '%insert%'
c4a69b87 182EOF
760fd65c 183
5975bbe6 184 $sth->execute($table->name, $table->schema);
760fd65c 185
5975bbe6 186 while (my ($trigger_body) = $sth->fetchrow_array) {
1de9c8e1 187 if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:"?(\w+)"?\.)?"?(\w+)"?\.nextval/i) {
5975bbe6 188 if (my ($col_name) = $trigger_body =~ /:new\.(\w+)/i) {
189 $col_name = $self->_lc($col_name);
5cd600fa 190
5975bbe6 191 $result->{$col_name}{is_auto_increment} = 1;
5cd600fa 192
5975bbe6 193 $seq_schema = $self->_lc($seq_schema || $table->schema);
194 $seq_name = $self->_lc($seq_name);
5cd600fa 195
5975bbe6 196 $result->{$col_name}{sequence} = ($self->qualify_objects ? ($seq_schema . '.') : '') . $seq_name;
197 }
5cd600fa 198 }
760fd65c 199 }
200
08ae3055 201 # Old DBD::Oracle report the size in (UTF-16) bytes, not characters
202 my $nchar_size_factor = $DBD::Oracle::VERSION >= 1.52 ? 1 : 2;
203
760fd65c 204 while (my ($col, $info) = each %$result) {
205 no warnings 'uninitialized';
206
1af21646 207 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
208SELECT data_type, data_length
209FROM all_tab_columns
210WHERE column_name = ? AND table_name = ? AND owner = ?
211EOF
212 $sth->execute($self->_uc($col), $table->name, $table->schema);
213 my ($data_type, $data_length) = $sth->fetchrow_array;
214 $sth->finish;
215 $data_type = lc $data_type;
216
217 if ($data_type =~ /^(?:n(?:var)?char2?|u?rowid|nclob|timestamp\(\d+\)(?: with(?: local)? time zone)?|binary_(?:float|double))\z/i) {
218 $info->{data_type} = $data_type;
219
220 if ($data_type =~ /^u?rowid\z/i) {
221 $info->{size} = $data_length;
222 }
223 }
224
760fd65c 225 if ($info->{data_type} =~ /^(?:n?[cb]lob|long(?: raw)?|bfile|date|binary_(?:float|double)|rowid)\z/i) {
226 delete $info->{size};
227 }
228
229 if ($info->{data_type} =~ /^n(?:var)?char2?\z/i) {
1af21646 230 if (ref $info->{size}) {
231 $info->{size} = $info->{size}[0] / 8;
232 }
233 else {
08ae3055 234 $info->{size} = $info->{size} / $nchar_size_factor;
1af21646 235 }
236 }
237 elsif ($info->{data_type} =~ /^(?:var)?char2?\z/i) {
238 if (ref $info->{size}) {
239 $info->{size} = $info->{size}[0];
240 }
760fd65c 241 }
1af21646 242 elsif (lc($info->{data_type}) =~ /^(?:number|decimal)\z/i) {
4ea15dfe 243 $info->{original}{data_type} = 'number';
244 $info->{data_type} = 'numeric';
760fd65c 245
1af21646 246 if (try { $info->{size}[0] == 38 && $info->{size}[1] == 0 }) {
4ea15dfe 247 $info->{original}{size} = $info->{size};
248
760fd65c 249 $info->{data_type} = 'integer';
250 delete $info->{size};
251 }
252 }
253 elsif (my ($precision) = $info->{data_type} =~ /^timestamp\((\d+)\)(?: with (?:local )?time zone)?\z/i) {
254 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
255
256 if ($precision == 6) {
257 delete $info->{size};
258 }
259 else {
260 $info->{size} = $precision;
261 }
262 }
1af21646 263 elsif ($info->{data_type} =~ /timestamp/i && ref $info->{size} && $info->{size}[0] == 0) {
264 my $size = $info->{size}[1];
265 delete $info->{size};
266 $info->{size} = $size unless $size == 6;
267 }
760fd65c 268 elsif (($precision) = $info->{data_type} =~ /^interval year\((\d+)\) to month\z/i) {
269 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
270
271 if ($precision == 2) {
272 delete $info->{size};
273 }
274 else {
275 $info->{size} = $precision;
276 }
277 }
278 elsif (my ($day_precision, $second_precision) = $info->{data_type} =~ /^interval day\((\d+)\) to second\((\d+)\)\z/i) {
279 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
280
281 if ($day_precision == 2 && $second_precision == 6) {
282 delete $info->{size};
283 }
284 else {
285 $info->{size} = [ $day_precision, $second_precision ];
286 }
287 }
1af21646 288 elsif ($info->{data_type} =~ /^interval year to month\z/i && ref $info->{size}) {
289 my $precision = $info->{size}[0];
290
291 if ($precision == 2) {
292 delete $info->{size};
293 }
294 else {
295 $info->{size} = $precision;
296 }
297 }
298 elsif ($info->{data_type} =~ /^interval day to second\z/i && ref $info->{size}) {
299 if ($info->{size}[0] == 2 && $info->{size}[1] == 6) {
300 delete $info->{size};
301 }
302 }
1c22571b 303 elsif (lc($info->{data_type}) eq 'float') {
304 $info->{original}{data_type} = 'float';
305 $info->{original}{size} = $info->{size};
306
307 if ($info->{size} <= 63) {
308 $info->{data_type} = 'real';
309 }
310 else {
311 $info->{data_type} = 'double precision';
312 }
313 delete $info->{size};
314 }
1af21646 315 elsif (lc($info->{data_type}) eq 'double precision') {
316 $info->{original}{data_type} = 'float';
317
318 my $size = try { $info->{size}[0] };
319
320 $info->{original}{size} = $size;
321
322 if ($size <= 63) {
323 $info->{data_type} = 'real';
324 }
325 delete $info->{size};
326 }
760fd65c 327 elsif (lc($info->{data_type}) eq 'urowid' && $info->{size} == 4000) {
328 delete $info->{size};
329 }
1af21646 330 elsif ($info->{data_type} eq '-9104') {
331 $info->{data_type} = 'rowid';
332 delete $info->{size};
333 }
334 elsif ($info->{data_type} eq '-2') {
335 $info->{data_type} = 'raw';
336 $info->{size} = try { $info->{size}[0] / 2 };
337 }
3785bc2e 338 elsif (lc($info->{data_type}) eq 'date') {
339 $info->{data_type} = 'datetime';
340 $info->{original}{data_type} = 'date';
341 }
1c22571b 342 elsif (lc($info->{data_type}) eq 'binary_float') {
343 $info->{data_type} = 'real';
344 $info->{original}{data_type} = 'binary_float';
3b61a7ca 345 }
1c22571b 346 elsif (lc($info->{data_type}) eq 'binary_double') {
347 $info->{data_type} = 'double precision';
348 $info->{original}{data_type} = 'binary_double';
1af21646 349 }
350
351 # DEFAULT could be missed by ::DBI because of ORA-24345
352 if (not defined $info->{default_value}) {
353 local $self->dbh->{LongReadLen} = 1_000_000;
354 local $self->dbh->{LongTruncOk} = 1;
355 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
356SELECT data_default
357FROM all_tab_columns
358WHERE column_name = ? AND table_name = ? AND owner = ?
359EOF
360 $sth->execute($self->_uc($col), $table->name, $table->schema);
361 my ($default) = $sth->fetchrow_array;
362 $sth->finish;
363
364 # this is mostly copied from ::DBI::QuotedDefault
365 if (defined $default) {
366 s/^\s+//, s/\s+\z// for $default;
367
368 if ($default =~ /^'(.*?)'\z/) {
369 $info->{default_value} = $1;
370 }
371 elsif ($default =~ /^(-?\d.*?)\z/) {
372 $info->{default_value} = $1;
373 }
374 elsif ($default =~ /^NULL\z/i) {
375 my $null = 'null';
376 $info->{default_value} = \$null;
377 }
378 elsif ($default ne '') {
379 my $val = $default;
380 $info->{default_value} = \$val;
381 }
382 }
383 }
760fd65c 384
1af21646 385 if ((try { lc(${ $info->{default_value} }) }||'') eq 'sysdate') {
3785bc2e 386 my $current_timestamp = 'current_timestamp';
387 $info->{default_value} = \$current_timestamp;
701cd3e3 388
389 my $sysdate = 'sysdate';
390 $info->{original}{default_value} = \$sysdate;
760fd65c 391 }
fb328d1a 392 }
393
760fd65c 394 return $result;
fb328d1a 395}
396
1af21646 397sub _dbh_column_info {
398 my $self = shift;
399 my ($dbh) = @_;
400
401 # try to avoid ORA-24345
402 local $dbh->{LongReadLen} = 1_000_000;
403 local $dbh->{LongTruncOk} = 1;
404
405 return $self->next::method(@_);
406}
407
e7262300 408=head1 SEE ALSO
409
410L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
411L<DBIx::Class::Schema::Loader::DBI>
412
413=head1 AUTHOR
414
9cc8e7e1 415See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
e7262300 416
be80bba7 417=head1 LICENSE
418
419This library is free software; you can redistribute it and/or modify it under
420the same terms as Perl itself.
fb328d1a 421
e7262300 422=cut
423
4241;
760fd65c 425# vim:et sts=4 sw=4 tw=0: