Release 0.07039
[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
a6900c91 11our $VERSION = '0.07039';
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
65ab592d 129 my @uniqs = map { [ $_ => $constr_names{$_} ] } keys %constr_names;
e7262300 130 return \@uniqs;
131}
132
4cd5155b 133sub _table_comment {
ea998e8e 134 my $self = shift;
135 my ($table) = @_;
136
137 my $table_comment = $self->next::method(@_);
138
139 return $table_comment if $table_comment;
140
c4a69b87 141 ($table_comment) = $self->dbh->selectrow_array(<<'EOF', {}, $table->schema, $table->name);
142SELECT comments FROM all_tab_comments
3b61a7ca 143WHERE owner = ?
c4a69b87 144 AND table_name = ?
145 AND (table_type = 'TABLE' OR table_type = 'VIEW')
146EOF
4cd5155b 147
148 return $table_comment
149}
150
151sub _column_comment {
ea998e8e 152 my $self = shift;
153 my ($table, $column_number, $column_name) = @_;
154
155 my $column_comment = $self->next::method(@_);
156
157 return $column_comment if $column_comment;
158
c4a69b87 159 ($column_comment) = $self->dbh->selectrow_array(<<'EOF', {}, $table->schema, $table->name, $self->_uc($column_name));
160SELECT comments FROM all_col_comments
3b61a7ca 161WHERE owner = ?
c4a69b87 162 AND table_name = ?
163 AND column_name = ?
164EOF
e7262300 165
c4a69b87 166 return $column_comment
65ab592d 167}
168
169sub _columns_info_for {
c4a69b87 170 my $self = shift;
171 my ($table) = @_;
fb328d1a 172
c4a69b87 173 my $result = $self->next::method(@_);
fb328d1a 174
1af21646 175 local $self->dbh->{LongReadLen} = 1_000_000;
c4a69b87 176 local $self->dbh->{LongTruncOk} = 1;
5cd600fa 177
c4a69b87 178 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
5975bbe6 179SELECT trigger_body
180FROM all_triggers
181WHERE table_name = ? AND table_owner = ?
760fd65c 182AND upper(trigger_type) LIKE '%BEFORE EACH ROW%' AND lower(triggering_event) LIKE '%insert%'
c4a69b87 183EOF
760fd65c 184
5975bbe6 185 $sth->execute($table->name, $table->schema);
760fd65c 186
5975bbe6 187 while (my ($trigger_body) = $sth->fetchrow_array) {
1de9c8e1 188 if (my ($seq_schema, $seq_name) = $trigger_body =~ /(?:"?(\w+)"?\.)?"?(\w+)"?\.nextval/i) {
5975bbe6 189 if (my ($col_name) = $trigger_body =~ /:new\.(\w+)/i) {
190 $col_name = $self->_lc($col_name);
5cd600fa 191
5975bbe6 192 $result->{$col_name}{is_auto_increment} = 1;
5cd600fa 193
5975bbe6 194 $seq_schema = $self->_lc($seq_schema || $table->schema);
195 $seq_name = $self->_lc($seq_name);
5cd600fa 196
5975bbe6 197 $result->{$col_name}{sequence} = ($self->qualify_objects ? ($seq_schema . '.') : '') . $seq_name;
198 }
5cd600fa 199 }
760fd65c 200 }
201
08ae3055 202 # Old DBD::Oracle report the size in (UTF-16) bytes, not characters
203 my $nchar_size_factor = $DBD::Oracle::VERSION >= 1.52 ? 1 : 2;
204
760fd65c 205 while (my ($col, $info) = each %$result) {
206 no warnings 'uninitialized';
207
1af21646 208 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
209SELECT data_type, data_length
210FROM all_tab_columns
211WHERE column_name = ? AND table_name = ? AND owner = ?
212EOF
213 $sth->execute($self->_uc($col), $table->name, $table->schema);
214 my ($data_type, $data_length) = $sth->fetchrow_array;
215 $sth->finish;
216 $data_type = lc $data_type;
217
218 if ($data_type =~ /^(?:n(?:var)?char2?|u?rowid|nclob|timestamp\(\d+\)(?: with(?: local)? time zone)?|binary_(?:float|double))\z/i) {
219 $info->{data_type} = $data_type;
220
221 if ($data_type =~ /^u?rowid\z/i) {
222 $info->{size} = $data_length;
223 }
224 }
225
760fd65c 226 if ($info->{data_type} =~ /^(?:n?[cb]lob|long(?: raw)?|bfile|date|binary_(?:float|double)|rowid)\z/i) {
227 delete $info->{size};
228 }
229
230 if ($info->{data_type} =~ /^n(?:var)?char2?\z/i) {
1af21646 231 if (ref $info->{size}) {
232 $info->{size} = $info->{size}[0] / 8;
233 }
234 else {
08ae3055 235 $info->{size} = $info->{size} / $nchar_size_factor;
1af21646 236 }
237 }
238 elsif ($info->{data_type} =~ /^(?:var)?char2?\z/i) {
239 if (ref $info->{size}) {
240 $info->{size} = $info->{size}[0];
241 }
760fd65c 242 }
1af21646 243 elsif (lc($info->{data_type}) =~ /^(?:number|decimal)\z/i) {
4ea15dfe 244 $info->{original}{data_type} = 'number';
245 $info->{data_type} = 'numeric';
760fd65c 246
1af21646 247 if (try { $info->{size}[0] == 38 && $info->{size}[1] == 0 }) {
4ea15dfe 248 $info->{original}{size} = $info->{size};
249
760fd65c 250 $info->{data_type} = 'integer';
251 delete $info->{size};
252 }
253 }
254 elsif (my ($precision) = $info->{data_type} =~ /^timestamp\((\d+)\)(?: with (?:local )?time zone)?\z/i) {
255 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
256
257 if ($precision == 6) {
258 delete $info->{size};
259 }
260 else {
261 $info->{size} = $precision;
262 }
263 }
1af21646 264 elsif ($info->{data_type} =~ /timestamp/i && ref $info->{size} && $info->{size}[0] == 0) {
265 my $size = $info->{size}[1];
266 delete $info->{size};
267 $info->{size} = $size unless $size == 6;
268 }
760fd65c 269 elsif (($precision) = $info->{data_type} =~ /^interval year\((\d+)\) to month\z/i) {
270 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
271
272 if ($precision == 2) {
273 delete $info->{size};
274 }
275 else {
276 $info->{size} = $precision;
277 }
278 }
279 elsif (my ($day_precision, $second_precision) = $info->{data_type} =~ /^interval day\((\d+)\) to second\((\d+)\)\z/i) {
280 $info->{data_type} = join ' ', $info->{data_type} =~ /[a-z]+/ig;
281
282 if ($day_precision == 2 && $second_precision == 6) {
283 delete $info->{size};
284 }
285 else {
286 $info->{size} = [ $day_precision, $second_precision ];
287 }
288 }
1af21646 289 elsif ($info->{data_type} =~ /^interval year to month\z/i && ref $info->{size}) {
290 my $precision = $info->{size}[0];
291
292 if ($precision == 2) {
293 delete $info->{size};
294 }
295 else {
296 $info->{size} = $precision;
297 }
298 }
299 elsif ($info->{data_type} =~ /^interval day to second\z/i && ref $info->{size}) {
300 if ($info->{size}[0] == 2 && $info->{size}[1] == 6) {
301 delete $info->{size};
302 }
303 }
1c22571b 304 elsif (lc($info->{data_type}) eq 'float') {
305 $info->{original}{data_type} = 'float';
306 $info->{original}{size} = $info->{size};
307
308 if ($info->{size} <= 63) {
309 $info->{data_type} = 'real';
310 }
311 else {
312 $info->{data_type} = 'double precision';
313 }
314 delete $info->{size};
315 }
1af21646 316 elsif (lc($info->{data_type}) eq 'double precision') {
317 $info->{original}{data_type} = 'float';
318
319 my $size = try { $info->{size}[0] };
320
321 $info->{original}{size} = $size;
322
323 if ($size <= 63) {
324 $info->{data_type} = 'real';
325 }
326 delete $info->{size};
327 }
760fd65c 328 elsif (lc($info->{data_type}) eq 'urowid' && $info->{size} == 4000) {
329 delete $info->{size};
330 }
1af21646 331 elsif ($info->{data_type} eq '-9104') {
332 $info->{data_type} = 'rowid';
333 delete $info->{size};
334 }
335 elsif ($info->{data_type} eq '-2') {
336 $info->{data_type} = 'raw';
337 $info->{size} = try { $info->{size}[0] / 2 };
338 }
3785bc2e 339 elsif (lc($info->{data_type}) eq 'date') {
340 $info->{data_type} = 'datetime';
341 $info->{original}{data_type} = 'date';
342 }
1c22571b 343 elsif (lc($info->{data_type}) eq 'binary_float') {
344 $info->{data_type} = 'real';
345 $info->{original}{data_type} = 'binary_float';
3b61a7ca 346 }
1c22571b 347 elsif (lc($info->{data_type}) eq 'binary_double') {
348 $info->{data_type} = 'double precision';
349 $info->{original}{data_type} = 'binary_double';
1af21646 350 }
351
352 # DEFAULT could be missed by ::DBI because of ORA-24345
353 if (not defined $info->{default_value}) {
354 local $self->dbh->{LongReadLen} = 1_000_000;
355 local $self->dbh->{LongTruncOk} = 1;
356 my $sth = $self->dbh->prepare_cached(<<'EOF', {}, 1);
357SELECT data_default
358FROM all_tab_columns
359WHERE column_name = ? AND table_name = ? AND owner = ?
360EOF
361 $sth->execute($self->_uc($col), $table->name, $table->schema);
362 my ($default) = $sth->fetchrow_array;
363 $sth->finish;
364
365 # this is mostly copied from ::DBI::QuotedDefault
366 if (defined $default) {
367 s/^\s+//, s/\s+\z// for $default;
368
369 if ($default =~ /^'(.*?)'\z/) {
370 $info->{default_value} = $1;
371 }
372 elsif ($default =~ /^(-?\d.*?)\z/) {
373 $info->{default_value} = $1;
374 }
375 elsif ($default =~ /^NULL\z/i) {
376 my $null = 'null';
377 $info->{default_value} = \$null;
378 }
379 elsif ($default ne '') {
380 my $val = $default;
381 $info->{default_value} = \$val;
382 }
383 }
384 }
760fd65c 385
1af21646 386 if ((try { lc(${ $info->{default_value} }) }||'') eq 'sysdate') {
3785bc2e 387 my $current_timestamp = 'current_timestamp';
388 $info->{default_value} = \$current_timestamp;
701cd3e3 389
390 my $sysdate = 'sysdate';
391 $info->{original}{default_value} = \$sysdate;
760fd65c 392 }
fb328d1a 393 }
394
760fd65c 395 return $result;
fb328d1a 396}
397
1af21646 398sub _dbh_column_info {
399 my $self = shift;
400 my ($dbh) = @_;
401
402 # try to avoid ORA-24345
403 local $dbh->{LongReadLen} = 1_000_000;
404 local $dbh->{LongTruncOk} = 1;
405
406 return $self->next::method(@_);
407}
408
e7262300 409=head1 SEE ALSO
410
411L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
412L<DBIx::Class::Schema::Loader::DBI>
413
414=head1 AUTHOR
415
9cc8e7e1 416See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
e7262300 417
be80bba7 418=head1 LICENSE
419
420This library is free software; you can redistribute it and/or modify it under
421the same terms as Perl itself.
fb328d1a 422
e7262300 423=cut
424
4251;
760fd65c 426# vim:et sts=4 sw=4 tw=0: