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