remove commented copyright
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / SQLite.pm
CommitLineData
72aa2647 1package SQL::Translator::Parser::SQLite;
2
72aa2647 3=head1 NAME
4
5SQL::Translator::Parser::SQLite - parser for SQLite
6
7=head1 SYNOPSIS
8
9 use SQL::Translator;
10 use SQL::Translator::Parser::SQLite;
11
12 my $translator = SQL::Translator->new;
13 $translator->parser("SQL::Translator::Parser::SQLite");
14
15=head1 DESCRIPTION
16
ea93df61 17This is a grammar for parsing CREATE statements for SQLite as
72aa2647 18described here:
19
20 http://www.sqlite.org/lang.html
21
22CREATE INDEX
23
24sql-statement ::=
ea93df61 25 CREATE [TEMP | TEMPORARY] [UNIQUE] INDEX index-name
72aa2647 26 ON [database-name .] table-name ( column-name [, column-name]* )
27 [ ON CONFLICT conflict-algorithm ]
28
29column-name ::=
30 name [ ASC | DESC ]
31
32CREATE TABLE
33
34sql-command ::=
35 CREATE [TEMP | TEMPORARY] TABLE table-name (
36 column-def [, column-def]*
37 [, constraint]*
38 )
39
40sql-command ::=
41 CREATE [TEMP | TEMPORARY] TABLE table-name AS select-statement
42
43column-def ::=
44 name [type] [[CONSTRAINT name] column-constraint]*
45
46type ::=
47 typename |
48 typename ( number ) |
49 typename ( number , number )
50
51column-constraint ::=
52 NOT NULL [ conflict-clause ] |
53 PRIMARY KEY [sort-order] [ conflict-clause ] |
54 UNIQUE [ conflict-clause ] |
55 CHECK ( expr ) [ conflict-clause ] |
56 DEFAULT value
57
58constraint ::=
59 PRIMARY KEY ( name [, name]* ) [ conflict-clause ]|
60 UNIQUE ( name [, name]* ) [ conflict-clause ] |
61 CHECK ( expr ) [ conflict-clause ]
62
63conflict-clause ::=
64 ON CONFLICT conflict-algorithm
65
66CREATE TRIGGER
67
68sql-statement ::=
69 CREATE [TEMP | TEMPORARY] TRIGGER trigger-name [ BEFORE | AFTER ]
70 database-event ON [database-name .] table-name
71 trigger-action
72
73sql-statement ::=
74 CREATE [TEMP | TEMPORARY] TRIGGER trigger-name INSTEAD OF
75 database-event ON [database-name .] view-name
76 trigger-action
77
78database-event ::=
ea93df61 79 DELETE |
80 INSERT |
81 UPDATE |
72aa2647 82 UPDATE OF column-list
83
84trigger-action ::=
ea93df61 85 [ FOR EACH ROW | FOR EACH STATEMENT ] [ WHEN expression ]
86 BEGIN
72aa2647 87 trigger-step ; [ trigger-step ; ]*
88 END
89
90trigger-step ::=
ea93df61 91 update-statement | insert-statement |
51af147e 92 delete-statement | select-statement
72aa2647 93
94CREATE VIEW
95
96sql-command ::=
97 CREATE [TEMP | TEMPORARY] VIEW view-name AS select-statement
98
99ON CONFLICT clause
100
101 conflict-clause ::=
102 ON CONFLICT conflict-algorithm
103
104 conflict-algorithm ::=
105 ROLLBACK | ABORT | FAIL | IGNORE | REPLACE
106
107expression
108
109expr ::=
110 expr binary-op expr |
111 expr like-op expr |
112 unary-op expr |
113 ( expr ) |
114 column-name |
115 table-name . column-name |
116 database-name . table-name . column-name |
117 literal-value |
118 function-name ( expr-list | * ) |
119 expr (+) |
120 expr ISNULL |
121 expr NOTNULL |
122 expr [NOT] BETWEEN expr AND expr |
123 expr [NOT] IN ( value-list ) |
124 expr [NOT] IN ( select-statement ) |
125 ( select-statement ) |
126 CASE [expr] ( WHEN expr THEN expr )+ [ELSE expr] END
127
128like-op::=
129 LIKE | GLOB | NOT LIKE | NOT GLOB
130
131=cut
132
133use strict;
da06ac74 134use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
11ad2df9 135$VERSION = '1.59';
72aa2647 136$DEBUG = 0 unless defined $DEBUG;
137
138use Data::Dumper;
139use Parse::RecDescent;
140use Exporter;
141use base qw(Exporter);
142
143@EXPORT_OK = qw(parse);
144
145# Enable warnings within the Parse::RecDescent module.
146$::RD_ERRORS = 1; # Make sure the parser dies when it encounters an error
147$::RD_WARN = 1; # Enable warnings. This will warn on unused rules &c.
148$::RD_HINT = 1; # Give out hints to help fix problems.
149
150$GRAMMAR = q!
151
ea93df61 152{
70698e1c 153 my ( %tables, $table_order, @table_comments, @views, @triggers );
72aa2647 154}
155
156#
157# The "eofile" rule makes the parser fail if any "statement" rule
ea93df61 158# fails. Otherwise, the first successful match by a "statement"
72aa2647 159# won't cause the failure needed to know that the parse, as a whole,
160# failed. -ky
161#
ea93df61 162startrule : statement(s) eofile {
8c12c406 163 $return = {
ea93df61 164 tables => \%tables,
70698e1c 165 views => \@views,
166 triggers => \@triggers,
167 }
168}
72aa2647 169
170eofile : /^\Z/
171
172statement : begin_transaction
173 | commit
ac9c4e2e 174 | drop
72aa2647 175 | comment
176 | create
177 | <error>
178
f9c96971 179begin_transaction : /begin/i TRANSACTION(?) SEMICOLON
72aa2647 180
181commit : /commit/i SEMICOLON
182
ae602737 183drop : /drop/i (tbl_drop | view_drop | trg_drop) SEMICOLON
184
185tbl_drop: TABLE <commit> table_name
186
187view_drop: VIEW if_exists(?) view_name
188
189trg_drop: TRIGGER if_exists(?) trigger_name
ac9c4e2e 190
72aa2647 191comment : /^\s*(?:#|-{2}).*\n/
192 {
193 my $comment = $item[1];
194 $comment =~ s/^\s*(#|-{2})\s*//;
195 $comment =~ s/\s*$//;
196 $return = $comment;
197 }
198
ea93df61 199comment : /\/\*/ /[^\*]+/ /\*\//
72aa2647 200 {
201 my $comment = $item[2];
202 $comment =~ s/^\s*|\s*$//g;
203 $return = $comment;
204 }
205
206#
207# Create Index
208#
6ceb5f1c 209create : CREATE TEMPORARY(?) UNIQUE(?) INDEX NAME ON table_name parens_field_list conflict_clause(?) SEMICOLON
72aa2647 210 {
211 my $db_name = $item[7]->{'db_name'} || '';
212 my $table_name = $item[7]->{'name'};
213
ea93df61 214 my $index = {
72aa2647 215 name => $item[5],
216 fields => $item[8],
217 on_conflict => $item[9][0],
218 is_temporary => $item[2][0] ? 1 : 0,
219 };
220
221 my $is_unique = $item[3][0];
222
223 if ( $is_unique ) {
224 $index->{'type'} = 'unique';
225 push @{ $tables{ $table_name }{'constraints'} }, $index;
226 }
227 else {
228 push @{ $tables{ $table_name }{'indices'} }, $index;
229 }
230 }
231
232#
233# Create Table
234#
235create : CREATE TEMPORARY(?) TABLE table_name '(' definition(s /,/) ')' SEMICOLON
236 {
237 my $db_name = $item[4]->{'db_name'} || '';
238 my $table_name = $item[4]->{'name'};
239
240 $tables{ $table_name }{'name'} = $table_name;
241 $tables{ $table_name }{'is_temporary'} = $item[2][0] ? 1 : 0;
242 $tables{ $table_name }{'order'} = ++$table_order;
243
244 for my $def ( @{ $item[6] } ) {
245 if ( $def->{'supertype'} eq 'column' ) {
246 push @{ $tables{ $table_name }{'fields'} }, $def;
247 }
248 elsif ( $def->{'supertype'} eq 'constraint' ) {
249 push @{ $tables{ $table_name }{'constraints'} }, $def;
250 }
251 }
252 }
253
ea93df61 254definition : constraint_def | column_def
72aa2647 255
7179cb09 256column_def: comment(s?) NAME type(?) column_constraint_def(s?)
72aa2647 257 {
258 my $column = {
259 supertype => 'column',
ae602737 260 name => $item[2],
261 data_type => $item[3][0]->{'type'},
262 size => $item[3][0]->{'size'},
72aa2647 263 is_nullable => 1,
264 is_primary_key => 0,
265 is_unique => 0,
266 check => '',
267 default => undef,
ae602737 268 constraints => $item[4],
269 comments => $item[1],
72aa2647 270 };
271
ae602737 272
273 for my $c ( @{ $item[4] } ) {
72aa2647 274 if ( $c->{'type'} eq 'not_null' ) {
275 $column->{'is_nullable'} = 0;
276 }
277 elsif ( $c->{'type'} eq 'primary_key' ) {
278 $column->{'is_primary_key'} = 1;
279 }
280 elsif ( $c->{'type'} eq 'unique' ) {
281 $column->{'is_unique'} = 1;
282 }
283 elsif ( $c->{'type'} eq 'check' ) {
284 $column->{'check'} = $c->{'expression'};
285 }
286 elsif ( $c->{'type'} eq 'default' ) {
287 $column->{'default'} = $c->{'value'};
288 }
6ceb5f1c 289 elsif ( $c->{'type'} eq 'autoincrement' ) {
290 $column->{'is_auto_inc'} = 1;
291 }
72aa2647 292 }
293
294 $column;
295 }
296
297type : WORD parens_value_list(?)
298 {
299 $return = {
300 type => $item[1],
301 size => $item[2][0],
302 }
303 }
304
7179cb09 305column_constraint_def : CONSTRAINT constraint_name column_constraint
306 {
307 $return = {
308 name => $item[2],
309 %{ $item[3] },
310 }
311 }
312 |
313 column_constraint
314
72aa2647 315column_constraint : NOT_NULL conflict_clause(?)
316 {
317 $return = {
318 type => 'not_null',
319 }
320 }
321 |
322 PRIMARY_KEY sort_order(?) conflict_clause(?)
323 {
324 $return = {
325 type => 'primary_key',
326 sort_order => $item[2][0],
ea93df61 327 on_conflict => $item[2][0],
72aa2647 328 }
329 }
330 |
331 UNIQUE conflict_clause(?)
332 {
333 $return = {
334 type => 'unique',
ea93df61 335 on_conflict => $item[2][0],
72aa2647 336 }
337 }
338 |
339 CHECK_C '(' expr ')' conflict_clause(?)
340 {
341 $return = {
342 type => 'check',
343 expression => $item[3],
ea93df61 344 on_conflict => $item[5][0],
72aa2647 345 }
346 }
347 |
348 DEFAULT VALUE
349 {
350 $return = {
351 type => 'default',
352 value => $item[2],
353 }
354 }
08e01b5c 355 |
356 REFERENCES ref_def
357 {
358 $return = {
359 type => 'foreign_key',
360 reference_table => $item[2]{'reference_table'},
361 reference_fields => $item[2]{'reference_fields'},
362 }
363 }
6ceb5f1c 364 |
365 AUTOINCREMENT
366 {
367 $return = {
368 type => 'autoincrement',
369 }
370 }
72aa2647 371
7179cb09 372constraint_def : comment(s?) CONSTRAINT constraint_name table_constraint
373 {
374 $return = {
375 comments => $item[1],
376 name => $item[3],
377 %{ $item[4] },
378 }
379 }
380 |
381 comment(s?) table_constraint
382 {
383 $return = {
384 comments => $item[1],
385 %{ $item[2] },
386 }
387 }
388
389table_constraint : PRIMARY_KEY parens_field_list conflict_clause(?)
72aa2647 390 {
391 $return = {
392 supertype => 'constraint',
393 type => 'primary_key',
394 fields => $item[2],
395 on_conflict => $item[3][0],
396 }
397 }
398 |
399 UNIQUE parens_field_list conflict_clause(?)
400 {
401 $return = {
402 supertype => 'constraint',
403 type => 'unique',
404 fields => $item[2],
405 on_conflict => $item[3][0],
406 }
407 }
408 |
409 CHECK_C '(' expr ')' conflict_clause(?)
410 {
411 $return = {
412 supertype => 'constraint',
413 type => 'check',
414 expression => $item[3],
415 on_conflict => $item[5][0],
416 }
417 }
0dbd2362 418 |
419 FOREIGN_KEY parens_field_list REFERENCES ref_def
420 {
421 $return = {
422 supertype => 'constraint',
423 type => 'foreign_key',
424 fields => $item[2],
425 reference_table => $item[4]{'reference_table'},
426 reference_fields => $item[4]{'reference_fields'},
427 }
428 }
72aa2647 429
08e01b5c 430ref_def : /(\w+)\s*\((\w+)\)/
431 { $return = { reference_table => $1, reference_fields => $2 } }
432
72aa2647 433table_name : qualified_name
ea93df61 434
435qualified_name : NAME
72aa2647 436 { $return = { name => $item[1] } }
437
ea93df61 438qualified_name : /(\w+)\.(\w+)/
72aa2647 439 { $return = { db_name => $1, name => $2 } }
440
441field_name : NAME
442
7179cb09 443constraint_name : NAME
444
72aa2647 445conflict_clause : /on conflict/i conflict_algorigthm
446
447conflict_algorigthm : /(rollback|abort|fail|ignore|replace)/i
448
449parens_field_list : '(' column_list ')'
450 { $item[2] }
451
452column_list : field_name(s /,/)
453
454parens_value_list : '(' VALUE(s /,/) ')'
455 { $item[2] }
456
457expr : /[^)]+/
458
459sort_order : /(ASC|DESC)/i
460
461#
462# Create Trigger
463
2661d702 464create : CREATE TEMPORARY(?) TRIGGER NAME before_or_after(?) database_event ON table_name trigger_action SEMICOLON
72aa2647 465 {
466 my $table_name = $item[8]->{'name'};
70698e1c 467 push @triggers, {
72aa2647 468 name => $item[4],
469 is_temporary => $item[2][0] ? 1 : 0,
470 when => $item[5][0],
471 instead_of => 0,
d0fcb05d 472 db_events => [ $item[6] ],
72aa2647 473 action => $item[9],
da2f5992 474 on_table => $table_name,
72aa2647 475 }
476 }
477
478create : CREATE TEMPORARY(?) TRIGGER NAME instead_of database_event ON view_name trigger_action
479 {
480 my $table_name = $item[8]->{'name'};
70698e1c 481 push @triggers, {
72aa2647 482 name => $item[4],
483 is_temporary => $item[2][0] ? 1 : 0,
484 when => undef,
485 instead_of => 1,
d0fcb05d 486 db_events => [ $item[6] ],
72aa2647 487 action => $item[9],
da2f5992 488 on_table => $table_name,
72aa2647 489 }
490 }
491
492database_event : /(delete|insert|update)/i
493
494database_event : /update of/i column_list
495
496trigger_action : for_each(?) when(?) BEGIN_C trigger_step(s) END_C
497 {
498 $return = {
499 for_each => $item[1][0],
500 when => $item[2][0],
501 steps => $item[4],
502 }
503 }
504
d0fcb05d 505for_each : /FOR EACH ROW/i
72aa2647 506
507when : WHEN expr { $item[2] }
508
9bf756df 509string :
ea93df61 510 /'(\\.|''|[^\\\'])*'/
9bf756df 511
512nonstring : /[^;\'"]+/
513
9644fab3 514statement_body : string | nonstring
9bf756df 515
9644fab3 516trigger_step : /(select|delete|insert|update)/i statement_body(s?) SEMICOLON
72aa2647 517 {
67a1819d 518 $return = join( ' ', $item[1], join ' ', @{ $item[2] || [] } )
ea93df61 519 }
72aa2647 520
521before_or_after : /(before|after)/i { $return = lc $1 }
522
523instead_of : /instead of/i
524
ae602737 525if_exists : /if exists/i
526
72aa2647 527view_name : qualified_name
528
ae602737 529trigger_name : qualified_name
530
72aa2647 531#
70698e1c 532# Create View
533#
ea93df61 534create : CREATE TEMPORARY(?) VIEW view_name AS select_statement
70698e1c 535 {
536 push @views, {
537 name => $item[4]->{'name'},
ea93df61 538 sql => $item[6],
70698e1c 539 is_temporary => $item[2][0] ? 1 : 0,
540 }
541 }
542
543select_statement : SELECT /[^;]+/ SEMICOLON
544 {
545 $return = join( ' ', $item[1], $item[2] );
546 }
547
548#
72aa2647 549# Tokens
550#
551BEGIN_C : /begin/i
552
553END_C : /end/i
554
f9c96971 555TRANSACTION: /transaction/i
556
72aa2647 557CREATE : /create/i
558
559TEMPORARY : /temp(orary)?/i { 1 }
560
561TABLE : /table/i
562
563INDEX : /index/i
564
565NOT_NULL : /not null/i
566
567PRIMARY_KEY : /primary key/i
568
0dbd2362 569FOREIGN_KEY : /foreign key/i
570
72aa2647 571CHECK_C : /check/i
572
573DEFAULT : /default/i
574
575TRIGGER : /trigger/i
576
70698e1c 577VIEW : /view/i
578
579SELECT : /select/i
580
72aa2647 581ON : /on/i
582
70698e1c 583AS : /as/i
584
72aa2647 585WORD : /\w+/
586
587WHEN : /when/i
588
08e01b5c 589REFERENCES : /references/i
590
7179cb09 591CONSTRAINT : /constraint/i
592
6ceb5f1c 593AUTOINCREMENT : /autoincrement/i
594
72aa2647 595UNIQUE : /unique/i { 1 }
596
597SEMICOLON : ';'
598
6ceb5f1c 599NAME : /["']?(\w+)["']?/ { $return = $1 }
72aa2647 600
70698e1c 601VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
72aa2647 602 { $item[1] }
ea93df61 603 | /'.*?'/
604 {
605 # remove leading/trailing quotes
72aa2647 606 my $val = $item[1];
607 $val =~ s/^['"]|['"]$//g;
608 $return = $val;
609 }
610 | /NULL/
611 { 'NULL' }
ac9c4e2e 612 | /CURRENT_TIMESTAMP/i
613 { 'CURRENT_TIMESTAMP' }
72aa2647 614
615!;
616
72aa2647 617sub parse {
618 my ( $translator, $data ) = @_;
619 my $parser = Parse::RecDescent->new($GRAMMAR);
620
621 local $::RD_TRACE = $translator->trace ? 1 : undef;
622 local $DEBUG = $translator->debug;
623
624 unless (defined $parser) {
625 return $translator->error("Error instantiating Parse::RecDescent ".
626 "instance: Bad grammer");
627 }
628
629 my $result = $parser->startrule($data);
630 return $translator->error( "Parse failed." ) unless defined $result;
631 warn Dumper( $result ) if $DEBUG;
632
633 my $schema = $translator->schema;
ea93df61 634 my @tables =
b727fc08 635 map { $_->[1] }
ea93df61 636 sort { $a->[0] <=> $b->[0] }
b727fc08 637 map { [ $result->{'tables'}{ $_ }->{'order'}, $_ ] }
638 keys %{ $result->{'tables'} };
72aa2647 639
640 for my $table_name ( @tables ) {
70698e1c 641 my $tdata = $result->{'tables'}{ $table_name };
ea93df61 642 my $table = $schema->add_table(
72aa2647 643 name => $tdata->{'name'},
644 ) or die $schema->error;
645
646 $table->comments( $tdata->{'comments'} );
647
648 for my $fdata ( @{ $tdata->{'fields'} } ) {
649 my $field = $table->add_field(
650 name => $fdata->{'name'},
651 data_type => $fdata->{'data_type'},
652 size => $fdata->{'size'},
653 default_value => $fdata->{'default'},
654 is_auto_increment => $fdata->{'is_auto_inc'},
655 is_nullable => $fdata->{'is_nullable'},
656 comments => $fdata->{'comments'},
657 ) or die $table->error;
658
659 $table->primary_key( $field->name ) if $fdata->{'is_primary_key'};
660
661 for my $cdata ( @{ $fdata->{'constraints'} } ) {
662 next unless $cdata->{'type'} eq 'foreign_key';
663 $cdata->{'fields'} ||= [ $field->name ];
664 push @{ $tdata->{'constraints'} }, $cdata;
665 }
666 }
667
668 for my $idata ( @{ $tdata->{'indices'} || [] } ) {
669 my $index = $table->add_index(
670 name => $idata->{'name'},
56b9e6a5 671 type => uc ($idata->{'type'}||''),
72aa2647 672 fields => $idata->{'fields'},
673 ) or die $table->error;
674 }
675
676 for my $cdata ( @{ $tdata->{'constraints'} || [] } ) {
677 my $constraint = $table->add_constraint(
678 name => $cdata->{'name'},
679 type => $cdata->{'type'},
680 fields => $cdata->{'fields'},
681 reference_table => $cdata->{'reference_table'},
682 reference_fields => $cdata->{'reference_fields'},
683 match_type => $cdata->{'match_type'} || '',
ea93df61 684 on_delete => $cdata->{'on_delete'}
08e01b5c 685 || $cdata->{'on_delete_do'},
ea93df61 686 on_update => $cdata->{'on_update'}
08e01b5c 687 || $cdata->{'on_update_do'},
72aa2647 688 ) or die $table->error;
689 }
690 }
691
70698e1c 692 for my $def ( @{ $result->{'views'} || [] } ) {
693 my $view = $schema->add_view(
694 name => $def->{'name'},
695 sql => $def->{'sql'},
696 );
697 }
698
699 for my $def ( @{ $result->{'triggers'} || [] } ) {
700 my $view = $schema->add_trigger(
701 name => $def->{'name'},
702 perform_action_when => $def->{'when'},
d0fcb05d 703 database_events => $def->{'db_events'},
70698e1c 704 action => $def->{'action'},
da2f5992 705 on_table => $def->{'on_table'},
70698e1c 706 );
707 }
708
72aa2647 709 return 1;
710}
711
7121;
713
714# -------------------------------------------------------------------
715# All wholsome food is caught without a net or a trap.
716# William Blake
717# -------------------------------------------------------------------
718
719=pod
720
721=head1 AUTHOR
722
08e01b5c 723Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
72aa2647 724
725=head1 SEE ALSO
726
727perl(1), Parse::RecDescent, SQL::Translator::Schema.
728
729=cut