Parser changes to accomodate function-based indexes and optional size modifier for...
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / Oracle.pm
CommitLineData
17cae8ab 1package SQL::Translator::Parser::Oracle;
2
3# -------------------------------------------------------------------
7f6504d3 4# $Id: Oracle.pm,v 1.22 2006-05-03 21:25:07 duality72 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 ];
7f6504d3 100$VERSION = sprintf "%d.%02d", q$Revision: 1.22 $ =~ /(\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
115my $parser;
116
3b668c81 117$GRAMMAR = q`
17cae8ab 118
6a36a3d8 119{ my ( %tables, %indices, %constraints, $table_order, @table_comments ) }
17cae8ab 120
121#
122# The "eofile" rule makes the parser fail if any "statement" rule
123# fails. Otherwise, the first successful match by a "statement"
124# won't cause the failure needed to know that the parse, as a whole,
125# failed. -ky
126#
87053733 127startrule : statement(s) eofile
128 {
129 $return = {
6a36a3d8 130 tables => \%tables,
131 indices => \%indices,
132 constraints => \%constraints,
87053733 133 };
134 }
17cae8ab 135
136eofile : /^\Z/
137
87053733 138statement : remark
3b668c81 139 | run
87053733 140 | prompt
141 | create
f77a985b 142 | table_comment
067e3cf4 143 | comment_on_table
144 | comment_on_column
145 | alter
146 | drop
147 | <error>
17cae8ab 148
44567b47 149alter : /alter/i WORD /[^;]+/ ';'
067e3cf4 150 { @table_comments = () }
151
152drop : /drop/i TABLE ';'
153
154drop : /drop/i WORD(s) ';'
155 { @table_comments = () }
44567b47 156
87053733 157create : create_table table_name '(' create_definition(s /,/) ')' table_option(s?) ';'
17cae8ab 158 {
159 my $table_name = $item{'table_name'};
160 $tables{ $table_name }{'order'} = ++$table_order;
161 $tables{ $table_name }{'table_name'} = $table_name;
162
067e3cf4 163 if ( @table_comments ) {
164 $tables{ $table_name }{'comments'} = [ @table_comments ];
165 @table_comments = ();
166 }
167
17cae8ab 168 my $i = 1;
169 my @constraints;
87053733 170 for my $definition ( @{ $item[4] } ) {
17cae8ab 171 if ( $definition->{'type'} eq 'field' ) {
172 my $field_name = $definition->{'name'};
173 $tables{ $table_name }{'fields'}{ $field_name } =
174 { %$definition, order => $i };
175 $i++;
176
17cae8ab 177 for my $constraint ( @{ $definition->{'constraints'} || [] } ) {
178 $constraint->{'fields'} = [ $field_name ];
179 push @{ $tables{ $table_name }{'constraints'} },
180 $constraint;
181 }
182 }
183 elsif ( $definition->{'type'} eq 'constraint' ) {
184 $definition->{'type'} = $definition->{'constraint_type'};
f77a985b 185 push @{ $tables{ $table_name }{'constraints'} }, $definition;
17cae8ab 186 }
187 else {
188 push @{ $tables{ $table_name }{'indices'} }, $definition;
189 }
190 }
191
87053733 192 for my $option ( @{ $item[6] } ) {
7c4cf567 193 push @{ $tables{ $table_name }{'table_options'} }, $option;
17cae8ab 194 }
195
196 1;
197 }
198
7f6504d3 199create : create_index index_name /on/i table_name index_expr table_option(?) ';'
b85a95ec 200 {
3b668c81 201 my $table_name = $item[4];
202 if ( $item[1] ) {
6a36a3d8 203 push @{ $constraints{ $table_name } }, {
3b668c81 204 name => $item[2],
6a36a3d8 205 type => 'unique',
3b668c81 206 fields => $item[5],
6a36a3d8 207 };
208 }
209 else {
210 push @{ $indices{ $table_name } }, {
3b668c81 211 name => $item[2],
6a36a3d8 212 type => 'normal',
3b668c81 213 fields => $item[5],
6a36a3d8 214 };
215 }
b85a95ec 216 }
217
7f6504d3 218index_expr: parens_word_list
219 { $item[1] }
220 | '(' WORD parens_word_list ')'
221 { $item[2].$item[3] }
222
17cae8ab 223# Create anything else (e.g., domain, function, etc.)
3b668c81 224create : ...!create_table ...!create_index /create/i WORD /[^;]+/ ';'
067e3cf4 225 { @table_comments = () }
17cae8ab 226
3b668c81 227create_index : /create/i UNIQUE(?) /index/i
228 { $return = $item[2] }
229
230index_name : NAME '.' NAME
231 { $item[3] }
232 | NAME
233 { $item[1] }
234
17cae8ab 235global_temporary: /global/i /temporary/i
236
237table_name : NAME '.' NAME
238 { $item[3] }
239 | NAME
240 { $item[1] }
241
242create_definition : field
243 | table_constraint
244 | <error>
245
f77a985b 246table_comment : comment
247 {
248 my $comment = $item[1];
249 $return = $comment;
250 push @table_comments, $comment;
251 }
252
17cae8ab 253comment : /^\s*(?:#|-{2}).*\n/
067e3cf4 254 {
39129b47 255 my $comment = $item[1];
256 $comment =~ s/^\s*(#|-{2})\s*//;
257 $comment =~ s/\s*$//;
258 $return = $comment;
f77a985b 259 }
260
261comment : /\/\*/ /[^\*]+/ /\*\//
262 {
263 my $comment = $item[2];
264 $comment =~ s/^\s*|\s*$//g;
265 $return = $comment;
067e3cf4 266 }
17cae8ab 267
87053733 268remark : /^REM\s+.*\n/
269
3b668c81 270run : /^(RUN|\/)\s+.*\n/
271
87053733 272prompt : /prompt/i /(table|index|sequence|trigger)/i ';'
273
274prompt : /prompt\s+create\s+.*\n/i
275
947dfd86 276comment_on_table : /comment/i /on/i /table/i table_name /is/i comment_phrase ';'
17cae8ab 277 {
947dfd86 278 push @{ $tables{ $item{'table_name'} }{'comments'} }, $item{'comment_phrase'};
17cae8ab 279 }
280
947dfd86 281comment_on_column : /comment/i /on/i /column/i column_name /is/i comment_phrase ';'
17cae8ab 282 {
283 my $table_name = $item[4]->{'table'};
284 my $field_name = $item[4]->{'field'};
285 push @{ $tables{ $table_name }{'fields'}{ $field_name }{'comments'} },
947dfd86 286 $item{'comment_phrase'};
17cae8ab 287 }
288
289column_name : NAME '.' NAME
290 { $return = { table => $item[1], field => $item[3] } }
291
947dfd86 292comment_phrase : /'.*?'/
293 {
294 my $val = $item[1];
295 $val =~ s/^'|'$//g;
296 $return = $val;
297 }
17cae8ab 298
299field : comment(s?) field_name data_type field_meta(s?) comment(s?)
300 {
947dfd86 301 my ( $is_pk, $default, @constraints );
302 my $null = 1;
17cae8ab 303 for my $meta ( @{ $item[4] } ) {
947dfd86 304 if ( $meta->{'type'} eq 'default' ) {
305 $default = $meta;
306 next;
307 }
308 elsif ( $meta->{'type'} eq 'not_null' ) {
309 $null = 0;
310 next;
311 }
312 elsif ( $meta->{'type'} eq 'primary_key' ) {
313 $is_pk = 1;
314 }
315
316 push @constraints, $meta if $meta->{'supertype'} eq 'constraint';
17cae8ab 317 }
318
947dfd86 319 my @comments = ( @{ $item[1] }, @{ $item[5] } );
17cae8ab 320
321 $return = {
322 type => 'field',
323 name => $item{'field_name'},
324 data_type => $item{'data_type'}{'type'},
325 size => $item{'data_type'}{'size'},
17cae8ab 326 null => $null,
327 default => $default->{'value'},
947dfd86 328 is_primary_key => $is_pk,
17cae8ab 329 constraints => [ @constraints ],
947dfd86 330 comments => [ @comments ],
17cae8ab 331 }
332 }
333 | <error>
334
335field_name : NAME
336
7f6504d3 337data_type : ora_data_type data_size(?)
17cae8ab 338 {
339 $return = {
340 type => $item[1],
341 size => $item[2][0] || '',
342 }
343 }
7f6504d3 344
345data_size : '(' VALUE(s /,/) data_size_modifier(?) ')'
346 { $item[2] }
347
348data_size_modifier: /byte/i
349 | /char/i
17cae8ab 350
3b668c81 351column_constraint : constraint_name(?) column_constraint_type constraint_state(s?)
17cae8ab 352 {
353 my $desc = $item{'column_constraint_type'};
354 my $type = $desc->{'type'};
355 my $fields = $desc->{'fields'} || [];
356 my $expression = $desc->{'expression'} || '';
357
358 $return = {
947dfd86 359 supertype => 'constraint',
360 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 361 type => $type,
362 expression => $type eq 'check' ? $expression : '',
40c5e2f4 363 deferrable => $item{'deferrable'},
17cae8ab 364 deferred => $item{'deferred'},
365 reference_table => $desc->{'reference_table'},
366 reference_fields => $desc->{'reference_fields'},
367# match_type => $desc->{'match_type'},
100684f3 368# on_update => $desc->{'on_update'},
17cae8ab 369 }
370 }
371
372constraint_name : /constraint/i NAME { $item[2] }
373
c72b8f32 374column_constraint_type : /not\s+null/i { $return = { type => 'not_null' } }
947dfd86 375 | /null/
17cae8ab 376 { $return = { type => 'null' } }
947dfd86 377 | /unique/
17cae8ab 378 { $return = { type => 'unique' } }
c72b8f32 379 | /primary\s+key/i
17cae8ab 380 { $return = { type => 'primary_key' } }
947dfd86 381 | /check/i '(' /[^)]+/ ')'
c72b8f32 382 { $return = { type => 'check', expression => $item[3] } }
100684f3 383 | /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 384 {
385 $return = {
386 type => 'foreign_key',
387 reference_table => $item[2],
388 reference_fields => $item[3][0],
389# match_type => $item[4][0],
100684f3 390 on_delete => $item[5][0],
17cae8ab 391 }
392 }
393
3b668c81 394constraint_state : deferrable { $return = { type => $item[1] } }
395 | deferred { $return = { type => $item[1] } }
396 | /(no)?rely/i { $return = { type => $item[1] } }
17cae8ab 397# | /using/i /index/i using_index_clause
3b668c81 398# { $return = { type => 'using_index', index => $item[3] } }
399 | /(dis|en)able/i { $return = { type => $item[1] } }
400 | /(no)?validate/i { $return = { type => $item[1] } }
401 | /exceptions/i /into/i table_name
402 { $return = { type => 'exceptions_into', table => $item[3] } }
17cae8ab 403
404deferrable : /not/i /deferrable/i
405 { $return = 'not_deferrable' }
406 | /deferrable/i
407 { $return = 'deferrable' }
408
409deferred : /initially/i /(deferred|immediate)/i { $item[2] }
410
411ora_data_type :
947dfd86 412 /(n?varchar2|varchar)/i { $return = 'varchar2' }
17cae8ab 413 |
414 /n?char/i { $return = 'character' }
415 |
00e41431 416 /n?dec/i { $return = 'decimal' }
417 |
17cae8ab 418 /number/i { $return = 'number' }
419 |
87053733 420 /integer/i { $return = 'integer' }
421 |
17cae8ab 422 /(pls_integer|binary_integer)/i { $return = 'integer' }
423 |
3b668c81 424 /interval\s+day/i { $return = 'interval day' }
17cae8ab 425 |
3b668c81 426 /interval\s+year/i { $return = 'interval year' }
17cae8ab 427 |
3b668c81 428 /long\s+raw/i { $return = 'long raw' }
17cae8ab 429 |
3b668c81 430 /(long|date|timestamp|raw|rowid|urowid|mlslabel|clob|nclob|blob|bfile|float)/i { $item[1] }
17cae8ab 431
432parens_value_list : '(' VALUE(s /,/) ')'
433 { $item[2] }
434
435parens_word_list : '(' WORD(s /,/) ')'
436 { $item[2] }
437
438field_meta : default_val
947dfd86 439 | column_constraint
17cae8ab 440
441default_val : /default/i /(?:')?[\w\d.-]*(?:')?/
442 {
b85a95ec 443 my $val = $item[2];
444 $val =~ s/'//g if defined $val;
17cae8ab 445 $return = {
947dfd86 446 supertype => 'constraint',
447 type => 'default',
17cae8ab 448 value => $val,
449 }
450 }
451
452create_table : /create/i global_temporary(?) /table/i
453
7c4cf567 454table_option : /organization/i WORD
455 {
456 $return = { 'ORGANIZATION' => $item[2] }
457 }
458
459table_option : /nomonitoring/i
460 {
461 $return = { 'NOMONITORING' => undef }
462 }
463
464table_option : /parallel/i '(' key_value(s) ')'
465 {
466 $return = { 'PARALLEL' => $item[3] }
467 }
468
469key_value : WORD VALUE
470 {
471 $return = { $item[1], $item[2] }
472 }
473
17cae8ab 474table_option : /[^;]+/
475
3b668c81 476table_constraint : comment(s?) constraint_name(?) table_constraint_type deferrable(?) deferred(?) constraint_state(s?) comment(s?)
17cae8ab 477 {
478 my $desc = $item{'table_constraint_type'};
479 my $type = $desc->{'type'};
480 my $fields = $desc->{'fields'};
481 my $expression = $desc->{'expression'};
482 my @comments = ( @{ $item[1] }, @{ $item[-1] } );
483
484 $return = {
947dfd86 485 name => $item{'constraint_name(?)'}[0] || '',
17cae8ab 486 type => 'constraint',
487 constraint_type => $type,
488 fields => $type ne 'check' ? $fields : [],
489 expression => $type eq 'check' ? $expression : '',
40c5e2f4 490 deferrable => $item{'deferrable(?)'},
947dfd86 491 deferred => $item{'deferred(?)'},
17cae8ab 492 reference_table => $desc->{'reference_table'},
493 reference_fields => $desc->{'reference_fields'},
494# match_type => $desc->{'match_type'}[0],
100684f3 495 on_delete => $desc->{'on_delete'} || $desc->{'on_delete_do'},
496 on_update => $desc->{'on_update'} || $desc->{'on_update_do'},
17cae8ab 497 comments => [ @comments ],
498 }
499 }
500
3b668c81 501table_constraint_type : /primary key/i '(' NAME(s /,/) ')'
17cae8ab 502 {
503 $return = {
504 type => 'primary_key',
505 fields => $item[3],
506 }
507 }
508 |
509 /unique/i '(' NAME(s /,/) ')'
510 {
511 $return = {
512 type => 'unique',
513 fields => $item[3],
514 }
515 }
516 |
517 /check/ '(' /(.+)/ ')'
518 {
519 $return = {
520 type => 'check',
521 expression => $item[3],
522 }
523 }
524 |
100684f3 525 /foreign key/i '(' NAME(s /,/) ')' /references/i table_name parens_word_list(?) on_delete(?)
17cae8ab 526 {
527 $return = {
528 type => 'foreign_key',
529 fields => $item[3],
530 reference_table => $item[6],
531 reference_fields => $item[7][0],
532 match_type => $item[8][0],
100684f3 533 on_delete => $item[9][0],
534 on_update => $item[10][0],
17cae8ab 535 }
536 }
537
100684f3 538on_delete : /on delete/i WORD(s)
17cae8ab 539 { $item[2] }
540
6a36a3d8 541UNIQUE : /unique/i { $return = 1 }
542
17cae8ab 543WORD : /\w+/
544
545NAME : /\w+/ { $item[1] }
546
067e3cf4 547TABLE : /table/i
548
17cae8ab 549VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
550 { $item[1] }
551 | /'.*?'/ # XXX doesn't handle embedded quotes
552 { $item[1] }
553 | /NULL/
554 { 'NULL' }
555
3b668c81 556`;
17cae8ab 557
558# -------------------------------------------------------------------
559sub parse {
560 my ( $translator, $data ) = @_;
561 $parser ||= Parse::RecDescent->new($GRAMMAR);
562
563 local $::RD_TRACE = $translator->trace ? 1 : undef;
564 local $DEBUG = $translator->debug;
565
566 unless (defined $parser) {
567 return $translator->error("Error instantiating Parse::RecDescent ".
568 "instance: Bad grammer");
569 }
570
87053733 571 my $result = $parser->startrule( $data );
17cae8ab 572 die "Parse failed.\n" unless defined $result;
c72b8f32 573 if ( $DEBUG ) {
574 warn "Parser results =\n", Dumper($result), "\n";
575 }
947dfd86 576
6a36a3d8 577 my $schema = $translator->schema;
578 my $indices = $result->{'indices'};
579 my $constraints = $result->{'constraints'};
580 my @tables = sort {
87053733 581 $result->{'tables'}{ $a }{'order'}
582 <=>
583 $result->{'tables'}{ $b }{'order'}
584 } keys %{ $result->{'tables'} };
947dfd86 585
586 for my $table_name ( @tables ) {
87053733 587 my $tdata = $result->{'tables'}{ $table_name };
588 next unless $tdata->{'table_name'};
947dfd86 589 my $table = $schema->add_table(
590 name => $tdata->{'table_name'},
44567b47 591 comments => $tdata->{'comments'},
947dfd86 592 ) or die $schema->error;
593
7c4cf567 594 $table->options( $tdata->{'table_options'} );
595
947dfd86 596 my @fields = sort {
597 $tdata->{'fields'}->{$a}->{'order'}
598 <=>
599 $tdata->{'fields'}->{$b}->{'order'}
600 } keys %{ $tdata->{'fields'} };
601
602 for my $fname ( @fields ) {
603 my $fdata = $tdata->{'fields'}{ $fname };
604 my $field = $table->add_field(
605 name => $fdata->{'name'},
606 data_type => $fdata->{'data_type'},
607 size => $fdata->{'size'},
608 default_value => $fdata->{'default'},
609 is_auto_increment => $fdata->{'is_auto_inc'},
610 is_nullable => $fdata->{'null'},
44567b47 611 comments => $fdata->{'comments'},
947dfd86 612 ) or die $table->error;
947dfd86 613 }
614
87053733 615 push @{ $tdata->{'indices'} }, @{ $indices->{ $table_name } || [] };
6a36a3d8 616 push @{ $tdata->{'constraints'} },
617 @{ $constraints->{ $table_name } || [] };
87053733 618
947dfd86 619 for my $idata ( @{ $tdata->{'indices'} || [] } ) {
620 my $index = $table->add_index(
621 name => $idata->{'name'},
622 type => uc $idata->{'type'},
623 fields => $idata->{'fields'},
624 ) or die $table->error;
625 }
626
627 for my $cdata ( @{ $tdata->{'constraints'} || [] } ) {
628 my $constraint = $table->add_constraint(
629 name => $cdata->{'name'},
630 type => $cdata->{'type'},
631 fields => $cdata->{'fields'},
632 reference_table => $cdata->{'reference_table'},
633 reference_fields => $cdata->{'reference_fields'},
634 match_type => $cdata->{'match_type'} || '',
100684f3 635 on_delete => $cdata->{'on_delete'} || $cdata->{'on_delete_do'},
636 on_update => $cdata->{'on_update'} || $cdata->{'on_update_do'},
947dfd86 637 ) or die $table->error;
638 }
639 }
640
f62bd16c 641 return 1;
17cae8ab 642}
643
6441;
645
947dfd86 646# -------------------------------------------------------------------
647# Something there is that doesn't love a wall.
648# Robert Frost
649# -------------------------------------------------------------------
650
17cae8ab 651=pod
652
653=head1 AUTHOR
654
655Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
656
657=head1 SEE ALSO
658
3b2be65a 659SQL::Translator, Parse::RecDescent, DDL::Oracle.
17cae8ab 660
661=cut