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