Skip constraint and index comparison shortcuts when ignoring the relevant names
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / Oracle.pm
CommitLineData
17cae8ab 1package SQL::Translator::Parser::Oracle;
2
3# -------------------------------------------------------------------
3294d624 4# $Id: Oracle.pm,v 1.26 2006-06-29 19:24:14 kycl4rk Exp $
17cae8ab 5# -------------------------------------------------------------------
90075866 6# Copyright (C) 2002-4 SQLFairy Authors
17cae8ab 7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; version 2.
11#
12# This program is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15# General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20# 02111-1307 USA
21# -------------------------------------------------------------------
22
23=head1 NAME
24
25SQL::Translator::Parser::Oracle - parser for Oracle
26
27=head1 SYNOPSIS
28
29 use SQL::Translator;
30 use SQL::Translator::Parser::Oracle;
31
32 my $translator = SQL::Translator->new;
33 $translator->parser("SQL::Translator::Parser::Oracle");
34
35=head1 DESCRIPTION
36
37From http://www.ss64.com/ora/table_c.html:
38
39 CREATE [GLOBAL TEMPORARY] TABLE [schema.]table (tbl_defs,...)
40 [ON COMMIT {DELETE|PRESERVE} ROWS]
41 [storage_options | CLUSTER cluster_name (col1, col2,... )
42 | ORGANIZATION {HEAP [storage_options]
43 | INDEX idx_organized_tbl_clause}]
44 [LOB_storage_clause][varray_clause][nested_storage_clause]
45 partitioning_options
46 [[NO]CACHE] [[NO]MONITORING] [PARALLEL parallel_clause]
47 [ENABLE enable_clause | DISABLE disable_clause]
48 [AS subquery]
49
50tbl_defs:
51 column datatype [DEFAULT expr] [column_constraint(s)]
17cae8ab 52 table_ref_constraint
53
54storage_options:
55 PCTFREE int
56 PCTUSED int
57 INITTRANS int
58 MAXTRANS int
59 STORAGE storage_clause
60 TABLESPACE tablespace
61 [LOGGING|NOLOGGING]
62
63idx_organized_tbl_clause:
64 storage_option(s) [PCTTHRESHOLD int]
65 [COMPRESS int|NOCOMPRESS]
66 [ [INCLUDING column_name] OVERFLOW [storage_option(s)] ]
67
68nested_storage_clause:
69 NESTED TABLE nested_item STORE AS storage_table
70 [RETURN AS {LOCATOR|VALUE} ]
71
72partitioning_options:
73 Partition_clause {ENABLE|DISABLE} ROW MOVEMENT
74
75Column Constraints
76(http://www.ss64.com/ora/clause_constraint_col.html)
77
78 CONSTRAINT constrnt_name {UNIQUE|PRIMARY KEY} constrnt_state
79
80 CONSTRAINT constrnt_name CHECK(condition) constrnt_state
81
82 CONSTRAINT constrnt_name [NOT] NULL constrnt_state
83
84 CONSTRAINT constrnt_name REFERENCES [schema.]table[(column)]
85 [ON DELETE {CASCADE|SET NULL}] constrnt_state
86
87constrnt_state
88 [[NOT] DEFERRABLE] [INITIALLY {IMMEDIATE|DEFERRED}]
89 [RELY | NORELY] [USING INDEX using_index_clause]
90 [ENABLE|DISABLE] [VALIDATE|NOVALIDATE]
91 [EXCEPTIONS INTO [schema.]table]
92
3b2be65a 93Note that probably not all of the above syntax is supported, but the grammar
94was altered to better handle the syntax created by DDL::Oracle.
95
17cae8ab 96=cut
97
98use strict;
99use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
3294d624 100$VERSION = sprintf "%d.%02d", q$Revision: 1.26 $ =~ /(\d+)\.(\d+)/;
17cae8ab 101$DEBUG = 0 unless defined $DEBUG;
102
103use Data::Dumper;
104use Parse::RecDescent;
105use Exporter;
106use base qw(Exporter);
107
108@EXPORT_OK = qw(parse);
109
110# Enable warnings within the Parse::RecDescent module.
111$::RD_ERRORS = 1; # Make sure the parser dies when it encounters an error
112$::RD_WARN = 1; # Enable warnings. This will warn on unused rules &c.
113$::RD_HINT = 1; # Give out hints to help fix problems.
114
3b668c81 115$GRAMMAR = q`
17cae8ab 116
6a36a3d8 117{ my ( %tables, %indices, %constraints, $table_order, @table_comments ) }
17cae8ab 118
119#
120# The "eofile" rule makes the parser fail if any "statement" rule
121# fails. Otherwise, the first successful match by a "statement"
122# won't cause the failure needed to know that the parse, as a whole,
123# failed. -ky
124#
87053733 125startrule : statement(s) eofile
126 {
127 $return = {
6a36a3d8 128 tables => \%tables,
129 indices => \%indices,
130 constraints => \%constraints,
87053733 131 };
132 }
17cae8ab 133
134eofile : /^\Z/
135
87053733 136statement : remark
3b668c81 137 | run
87053733 138 | prompt
139 | create
f77a985b 140 | table_comment
067e3cf4 141 | comment_on_table
142 | comment_on_column
143 | alter
144 | drop
145 | <error>
17cae8ab 146
44567b47 147alter : /alter/i WORD /[^;]+/ ';'
067e3cf4 148 { @table_comments = () }
149
150drop : /drop/i TABLE ';'
151
152drop : /drop/i WORD(s) ';'
153 { @table_comments = () }
44567b47 154
87053733 155create : create_table table_name '(' create_definition(s /,/) ')' table_option(s?) ';'
17cae8ab 156 {
157 my $table_name = $item{'table_name'};
158 $tables{ $table_name }{'order'} = ++$table_order;
159 $tables{ $table_name }{'table_name'} = $table_name;
160
067e3cf4 161 if ( @table_comments ) {
162 $tables{ $table_name }{'comments'} = [ @table_comments ];
163 @table_comments = ();
164 }
165
17cae8ab 166 my $i = 1;
167 my @constraints;
87053733 168 for my $definition ( @{ $item[4] } ) {
17cae8ab 169 if ( $definition->{'type'} eq 'field' ) {
170 my $field_name = $definition->{'name'};
171 $tables{ $table_name }{'fields'}{ $field_name } =
172 { %$definition, order => $i };
173 $i++;
174
17cae8ab 175 for my $constraint ( @{ $definition->{'constraints'} || [] } ) {
176 $constraint->{'fields'} = [ $field_name ];
177 push @{ $tables{ $table_name }{'constraints'} },
178 $constraint;
179 }
180 }
181 elsif ( $definition->{'type'} eq 'constraint' ) {
182 $definition->{'type'} = $definition->{'constraint_type'};
f77a985b 183 push @{ $tables{ $table_name }{'constraints'} }, $definition;
17cae8ab 184 }
185 else {
186 push @{ $tables{ $table_name }{'indices'} }, $definition;
187 }
188 }
189
87053733 190 for my $option ( @{ $item[6] } ) {
7c4cf567 191 push @{ $tables{ $table_name }{'table_options'} }, $option;
17cae8ab 192 }
193
194 1;
195 }
196
7f6504d3 197create : create_index index_name /on/i table_name index_expr table_option(?) ';'
b85a95ec 198 {
3b668c81 199 my $table_name = $item[4];
200 if ( $item[1] ) {
6a36a3d8 201 push @{ $constraints{ $table_name } }, {
3b668c81 202 name => $item[2],
6a36a3d8 203 type => 'unique',
3b668c81 204 fields => $item[5],
6a36a3d8 205 };
206 }
207 else {
208 push @{ $indices{ $table_name } }, {
3b668c81 209 name => $item[2],
6a36a3d8 210 type => 'normal',
3b668c81 211 fields => $item[5],
6a36a3d8 212 };
213 }
b85a95ec 214 }
215
7f6504d3 216index_expr: parens_word_list
217 { $item[1] }
218 | '(' WORD parens_word_list ')'
c4222efd 219 {
220 my $arg_list = join(",", @{$item[3]});
221 $return = "$item[2]($arg_list)";
222 }
7f6504d3 223
17cae8ab 224# Create anything else (e.g., domain, function, etc.)
3b668c81 225create : ...!create_table ...!create_index /create/i WORD /[^;]+/ ';'
067e3cf4 226 { @table_comments = () }
17cae8ab 227
3b668c81 228create_index : /create/i UNIQUE(?) /index/i
229 { $return = $item[2] }
230
231index_name : NAME '.' NAME
232 { $item[3] }
233 | NAME
234 { $item[1] }
235
17cae8ab 236global_temporary: /global/i /temporary/i
237
238table_name : NAME '.' NAME
239 { $item[3] }
240 | NAME
241 { $item[1] }
242
243create_definition : field
244 | table_constraint
245 | <error>
246
f77a985b 247table_comment : comment
248 {
249 my $comment = $item[1];
250 $return = $comment;
251 push @table_comments, $comment;
252 }
253
17cae8ab 254comment : /^\s*(?:#|-{2}).*\n/
067e3cf4 255 {
39129b47 256 my $comment = $item[1];
257 $comment =~ s/^\s*(#|-{2})\s*//;
258 $comment =~ s/\s*$//;
259 $return = $comment;
f77a985b 260 }
261
262comment : /\/\*/ /[^\*]+/ /\*\//
263 {
264 my $comment = $item[2];
265 $comment =~ s/^\s*|\s*$//g;
266 $return = $comment;
067e3cf4 267 }
17cae8ab 268
87053733 269remark : /^REM\s+.*\n/
270
3b668c81 271run : /^(RUN|\/)\s+.*\n/
272
87053733 273prompt : /prompt/i /(table|index|sequence|trigger)/i ';'
274
275prompt : /prompt\s+create\s+.*\n/i
276
947dfd86 277comment_on_table : /comment/i /on/i /table/i table_name /is/i comment_phrase ';'
17cae8ab 278 {
947dfd86 279 push @{ $tables{ $item{'table_name'} }{'comments'} }, $item{'comment_phrase'};
17cae8ab 280 }
281
947dfd86 282comment_on_column : /comment/i /on/i /column/i column_name /is/i comment_phrase ';'
17cae8ab 283 {
284 my $table_name = $item[4]->{'table'};
285 my $field_name = $item[4]->{'field'};
286 push @{ $tables{ $table_name }{'fields'}{ $field_name }{'comments'} },
947dfd86 287 $item{'comment_phrase'};
17cae8ab 288 }
289
290column_name : NAME '.' NAME
291 { $return = { table => $item[1], field => $item[3] } }
292
947dfd86 293comment_phrase : /'.*?'/
294 {
295 my $val = $item[1];
296 $val =~ s/^'|'$//g;
297 $return = $val;
298 }
17cae8ab 299
300field : comment(s?) field_name data_type field_meta(s?) comment(s?)
301 {
947dfd86 302 my ( $is_pk, $default, @constraints );
303 my $null = 1;
17cae8ab 304 for my $meta ( @{ $item[4] } ) {
947dfd86 305 if ( $meta->{'type'} eq 'default' ) {
306 $default = $meta;
307 next;
308 }
309 elsif ( $meta->{'type'} eq 'not_null' ) {
310 $null = 0;
311 next;
312 }
313 elsif ( $meta->{'type'} eq 'primary_key' ) {
314 $is_pk = 1;
315 }
316
317 push @constraints, $meta if $meta->{'supertype'} eq 'constraint';
17cae8ab 318 }
319
947dfd86 320 my @comments = ( @{ $item[1] }, @{ $item[5] } );
17cae8ab 321
322 $return = {
323 type => 'field',
324 name => $item{'field_name'},
325 data_type => $item{'data_type'}{'type'},
326 size => $item{'data_type'}{'size'},
17cae8ab 327 null => $null,
328 default => $default->{'value'},
947dfd86 329 is_primary_key => $is_pk,
17cae8ab 330 constraints => [ @constraints ],
947dfd86 331 comments => [ @comments ],
17cae8ab 332 }
333 }
334 | <error>
335
336field_name : NAME
337
7f6504d3 338data_type : ora_data_type data_size(?)
17cae8ab 339 {
340 $return = {
341 type => $item[1],
342 size => $item[2][0] || '',
343 }
344 }
7f6504d3 345
346data_size : '(' VALUE(s /,/) data_size_modifier(?) ')'
347 { $item[2] }
348
349data_size_modifier: /byte/i
350 | /char/i
17cae8ab 351
3b668c81 352column_constraint : constraint_name(?) column_constraint_type constraint_state(s?)
17cae8ab 353 {
354 my $desc = $item{'column_constraint_type'};
355 my $type = $desc->{'type'};
356 my $fields = $desc->{'fields'} || [];
357 my $expression = $desc->{'expression'} || '';
358
359 $return = {
947dfd86 360 supertype => 'constraint',
361 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 362 type => $type,
363 expression => $type eq 'check' ? $expression : '',
40c5e2f4 364 deferrable => $item{'deferrable'},
17cae8ab 365 deferred => $item{'deferred'},
366 reference_table => $desc->{'reference_table'},
367 reference_fields => $desc->{'reference_fields'},
368# match_type => $desc->{'match_type'},
100684f3 369# on_update => $desc->{'on_update'},
17cae8ab 370 }
371 }
372
373constraint_name : /constraint/i NAME { $item[2] }
374
c72b8f32 375column_constraint_type : /not\s+null/i { $return = { type => 'not_null' } }
3294d624 376 | /unique/i
17cae8ab 377 { $return = { type => 'unique' } }
c72b8f32 378 | /primary\s+key/i
17cae8ab 379 { $return = { type => 'primary_key' } }
947dfd86 380 | /check/i '(' /[^)]+/ ')'
c72b8f32 381 { $return = { type => 'check', expression => $item[3] } }
100684f3 382 | /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 383 {
384 $return = {
385 type => 'foreign_key',
386 reference_table => $item[2],
387 reference_fields => $item[3][0],
388# match_type => $item[4][0],
100684f3 389 on_delete => $item[5][0],
17cae8ab 390 }
391 }
392
3b668c81 393constraint_state : deferrable { $return = { type => $item[1] } }
394 | deferred { $return = { type => $item[1] } }
395 | /(no)?rely/i { $return = { type => $item[1] } }
17cae8ab 396# | /using/i /index/i using_index_clause
3b668c81 397# { $return = { type => 'using_index', index => $item[3] } }
398 | /(dis|en)able/i { $return = { type => $item[1] } }
399 | /(no)?validate/i { $return = { type => $item[1] } }
400 | /exceptions/i /into/i table_name
401 { $return = { type => 'exceptions_into', table => $item[3] } }
17cae8ab 402
403deferrable : /not/i /deferrable/i
404 { $return = 'not_deferrable' }
405 | /deferrable/i
406 { $return = 'deferrable' }
407
408deferred : /initially/i /(deferred|immediate)/i { $item[2] }
409
410ora_data_type :
947dfd86 411 /(n?varchar2|varchar)/i { $return = 'varchar2' }
17cae8ab 412 |
413 /n?char/i { $return = 'character' }
414 |
00e41431 415 /n?dec/i { $return = 'decimal' }
416 |
17cae8ab 417 /number/i { $return = 'number' }
418 |
87053733 419 /integer/i { $return = 'integer' }
420 |
17cae8ab 421 /(pls_integer|binary_integer)/i { $return = 'integer' }
422 |
3b668c81 423 /interval\s+day/i { $return = 'interval day' }
17cae8ab 424 |
3b668c81 425 /interval\s+year/i { $return = 'interval year' }
17cae8ab 426 |
3b668c81 427 /long\s+raw/i { $return = 'long raw' }
17cae8ab 428 |
3b668c81 429 /(long|date|timestamp|raw|rowid|urowid|mlslabel|clob|nclob|blob|bfile|float)/i { $item[1] }
17cae8ab 430
431parens_value_list : '(' VALUE(s /,/) ')'
432 { $item[2] }
433
434parens_word_list : '(' WORD(s /,/) ')'
435 { $item[2] }
436
437field_meta : default_val
947dfd86 438 | column_constraint
17cae8ab 439
440default_val : /default/i /(?:')?[\w\d.-]*(?:')?/
441 {
b85a95ec 442 my $val = $item[2];
443 $val =~ s/'//g if defined $val;
17cae8ab 444 $return = {
947dfd86 445 supertype => 'constraint',
446 type => 'default',
17cae8ab 447 value => $val,
448 }
449 }
3294d624 450 | /null/i
451 {
452 $return = {
453 supertype => 'constraint',
454 type => 'default',
455 value => 'NULL',
456 }
457 }
17cae8ab 458
459create_table : /create/i global_temporary(?) /table/i
460
7c4cf567 461table_option : /organization/i WORD
462 {
463 $return = { 'ORGANIZATION' => $item[2] }
464 }
465
466table_option : /nomonitoring/i
467 {
468 $return = { 'NOMONITORING' => undef }
469 }
470
471table_option : /parallel/i '(' key_value(s) ')'
472 {
473 $return = { 'PARALLEL' => $item[3] }
474 }
475
476key_value : WORD VALUE
477 {
478 $return = { $item[1], $item[2] }
479 }
480
17cae8ab 481table_option : /[^;]+/
482
3b668c81 483table_constraint : comment(s?) constraint_name(?) table_constraint_type deferrable(?) deferred(?) constraint_state(s?) comment(s?)
17cae8ab 484 {
485 my $desc = $item{'table_constraint_type'};
486 my $type = $desc->{'type'};
487 my $fields = $desc->{'fields'};
488 my $expression = $desc->{'expression'};
489 my @comments = ( @{ $item[1] }, @{ $item[-1] } );
490
491 $return = {
947dfd86 492 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 493 type => 'constraint',
494 constraint_type => $type,
495 fields => $type ne 'check' ? $fields : [],
496 expression => $type eq 'check' ? $expression : '',
40c5e2f4 497 deferrable => $item{'deferrable(?)'},
947dfd86 498 deferred => $item{'deferred(?)'},
17cae8ab 499 reference_table => $desc->{'reference_table'},
500 reference_fields => $desc->{'reference_fields'},
501# match_type => $desc->{'match_type'}[0],
100684f3 502 on_delete => $desc->{'on_delete'} || $desc->{'on_delete_do'},
503 on_update => $desc->{'on_update'} || $desc->{'on_update_do'},
17cae8ab 504 comments => [ @comments ],
505 }
506 }
507
3b668c81 508table_constraint_type : /primary key/i '(' NAME(s /,/) ')'
17cae8ab 509 {
510 $return = {
511 type => 'primary_key',
512 fields => $item[3],
513 }
514 }
515 |
516 /unique/i '(' NAME(s /,/) ')'
517 {
518 $return = {
519 type => 'unique',
520 fields => $item[3],
521 }
522 }
523 |
524 /check/ '(' /(.+)/ ')'
525 {
526 $return = {
527 type => 'check',
528 expression => $item[3],
529 }
530 }
531 |
100684f3 532 /foreign key/i '(' NAME(s /,/) ')' /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 533 {
534 $return = {
535 type => 'foreign_key',
536 fields => $item[3],
537 reference_table => $item[6],
538 reference_fields => $item[7][0],
188a97b5 539# match_type => $item[8][0],
540 on_delete => $item[8][0],
541# on_update => $item[9][0],
17cae8ab 542 }
543 }
544
100684f3 545on_delete : /on delete/i WORD(s)
188a97b5 546 { join(' ', @{$item[2]}) }
17cae8ab 547
6a36a3d8 548UNIQUE : /unique/i { $return = 1 }
549
17cae8ab 550WORD : /\w+/
551
552NAME : /\w+/ { $item[1] }
553
067e3cf4 554TABLE : /table/i
555
17cae8ab 556VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
557 { $item[1] }
558 | /'.*?'/ # XXX doesn't handle embedded quotes
559 { $item[1] }
560 | /NULL/
561 { 'NULL' }
562
3b668c81 563`;
17cae8ab 564
565# -------------------------------------------------------------------
566sub parse {
567 my ( $translator, $data ) = @_;
a74de73b 568 my $parser = Parse::RecDescent->new($GRAMMAR);
17cae8ab 569
570 local $::RD_TRACE = $translator->trace ? 1 : undef;
571 local $DEBUG = $translator->debug;
572
573 unless (defined $parser) {
574 return $translator->error("Error instantiating Parse::RecDescent ".
575 "instance: Bad grammer");
576 }
577
87053733 578 my $result = $parser->startrule( $data );
17cae8ab 579 die "Parse failed.\n" unless defined $result;
c72b8f32 580 if ( $DEBUG ) {
581 warn "Parser results =\n", Dumper($result), "\n";
582 }
947dfd86 583
6a36a3d8 584 my $schema = $translator->schema;
585 my $indices = $result->{'indices'};
586 my $constraints = $result->{'constraints'};
587 my @tables = sort {
87053733 588 $result->{'tables'}{ $a }{'order'}
589 <=>
590 $result->{'tables'}{ $b }{'order'}
591 } keys %{ $result->{'tables'} };
947dfd86 592
593 for my $table_name ( @tables ) {
87053733 594 my $tdata = $result->{'tables'}{ $table_name };
595 next unless $tdata->{'table_name'};
947dfd86 596 my $table = $schema->add_table(
597 name => $tdata->{'table_name'},
44567b47 598 comments => $tdata->{'comments'},
947dfd86 599 ) or die $schema->error;
600
7c4cf567 601 $table->options( $tdata->{'table_options'} );
602
947dfd86 603 my @fields = sort {
604 $tdata->{'fields'}->{$a}->{'order'}
605 <=>
606 $tdata->{'fields'}->{$b}->{'order'}
607 } keys %{ $tdata->{'fields'} };
608
609 for my $fname ( @fields ) {
610 my $fdata = $tdata->{'fields'}{ $fname };
611 my $field = $table->add_field(
612 name => $fdata->{'name'},
613 data_type => $fdata->{'data_type'},
614 size => $fdata->{'size'},
615 default_value => $fdata->{'default'},
616 is_auto_increment => $fdata->{'is_auto_inc'},
617 is_nullable => $fdata->{'null'},
44567b47 618 comments => $fdata->{'comments'},
947dfd86 619 ) or die $table->error;
947dfd86 620 }
621
87053733 622 push @{ $tdata->{'indices'} }, @{ $indices->{ $table_name } || [] };
6a36a3d8 623 push @{ $tdata->{'constraints'} },
624 @{ $constraints->{ $table_name } || [] };
87053733 625
947dfd86 626 for my $idata ( @{ $tdata->{'indices'} || [] } ) {
627 my $index = $table->add_index(
628 name => $idata->{'name'},
629 type => uc $idata->{'type'},
630 fields => $idata->{'fields'},
631 ) or die $table->error;
632 }
633
634 for my $cdata ( @{ $tdata->{'constraints'} || [] } ) {
635 my $constraint = $table->add_constraint(
636 name => $cdata->{'name'},
637 type => $cdata->{'type'},
638 fields => $cdata->{'fields'},
639 reference_table => $cdata->{'reference_table'},
640 reference_fields => $cdata->{'reference_fields'},
641 match_type => $cdata->{'match_type'} || '',
100684f3 642 on_delete => $cdata->{'on_delete'} || $cdata->{'on_delete_do'},
643 on_update => $cdata->{'on_update'} || $cdata->{'on_update_do'},
947dfd86 644 ) or die $table->error;
645 }
646 }
647
f62bd16c 648 return 1;
17cae8ab 649}
650
6511;
652
947dfd86 653# -------------------------------------------------------------------
654# Something there is that doesn't love a wall.
655# Robert Frost
656# -------------------------------------------------------------------
657
17cae8ab 658=pod
659
660=head1 AUTHOR
661
662Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
663
664=head1 SEE ALSO
665
3b2be65a 666SQL::Translator, Parse::RecDescent, DDL::Oracle.
17cae8ab 667
668=cut