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