Rolled in Darren's new list_[producers|parsers], lots of cosmetic changes,
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / MySQL.pm
CommitLineData
16dc9970 1package SQL::Translator::Parser::MySQL;
2
49e1eb70 3# -------------------------------------------------------------------
d529894e 4# $Id: MySQL.pm,v 1.6 2002-11-22 03:03:40 kycl4rk Exp $
49e1eb70 5# -------------------------------------------------------------------
d529894e 6# Copyright (C) 2002 Ken Y. Clark <kclark@cpan.org>,
077ebf34 7# darren chamberlain <darren@cpan.org>
8#
9# This program is free software; you can redistribute it and/or
10# modify it under the terms of the GNU General Public License as
11# published by the Free Software Foundation; version 2.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21# 02111-1307 USA
22# -------------------------------------------------------------------
16dc9970 23
d529894e 24=head1 NAME
25
26SQL::Translator::Parser::MySQL - parser for MySQL
27
28=head1 SYNOPSIS
29
30 use SQL::Translator;
31 use SQL::Translator::Parser::MySQL;
32
33 my $translator = SQL::Translator->new;
34 $translator->parser("SQL::Translator::Parser::MySQL");
35
36=head1 DESCRIPTION
37
38The grammar is influenced heavily by Tim Bunce's "mysql2ora" grammar.
39
40=cut
41
16dc9970 42use strict;
d529894e 43use vars qw[ $DEBUG $VERSION $GRAMMAR @EXPORT_OK ];
44$VERSION = sprintf "%d.%02d", q$Revision: 1.6 $ =~ /(\d+)\.(\d+)/;
45$DEBUG = 1 unless defined $DEBUG;
077ebf34 46
d529894e 47use Data::Dumper;
077ebf34 48use Parse::RecDescent;
49use Exporter;
50use base qw(Exporter);
51
52@EXPORT_OK = qw(parse);
53
d529894e 54# Enable warnings within the Parse::RecDescent module.
55$::RD_ERRORS = 1; # Make sure the parser dies when it encounters an error
56$::RD_WARN = 1; # Enable warnings. This will warn on unused rules &c.
57$::RD_HINT = 1; # Give out hints to help fix problems.
58
077ebf34 59my $parser; # should we do this? There's no programmic way to
60 # change the grammar, so I think this is safe.
16dc9970 61
d529894e 62$GRAMMAR = q!
63
64{ our ( %tables, $table_order ) }
65
66startrule : statement(s) { \%tables }
67
68statement : comment
69 | create
70 | <error>
71
72create : create_table table_name '(' create_definition(s /,/) ')' table_option(s?) ';'
73 {
74 my $table_name = $item{'table_name'};
75 $tables{ $table_name }{'order'} = ++$table_order;
76 $tables{ $table_name }{'table_name'} = $table_name;
77
78 my $i = 0;
79 for my $definition ( @{ $item[4] } ) {
80 if ( $definition->{'type'} eq 'field' ) {
81 my $field_name = $definition->{'name'};
82 $tables{ $table_name }{'fields'}{ $field_name } =
83 { %$definition, order => $i };
84 $i++;
85
86 if ( $definition->{'is_primary_key'} ) {
87 push @{ $tables{ $table_name }{'indices'} },
88 {
89 type => 'primary_key',
90 fields => [ $field_name ],
16dc9970 91 }
d529894e 92 ;
93 }
dd2ef5ae 94 }
d529894e 95 else {
96 push @{ $tables{ $table_name }{'indices'} },
97 $definition;
dd2ef5ae 98 }
d529894e 99 }
dd2ef5ae 100
d529894e 101 for my $opt ( @{ $item{'table_option'} } ) {
102 if ( my ( $key, $val ) = each %$opt ) {
103 $tables{ $table_name }{'table_options'}{ $key } = $val;
dd2ef5ae 104 }
d529894e 105 }
106 }
dd2ef5ae 107
d529894e 108create : /CREATE/i unique(?) /(INDEX|KEY)/i index_name /on/i table_name '(' field_name(s /,/) ')' ';'
109 {
110 push @{ $tables{ $item{'table_name'} }{'indices'} },
111 {
112 name => $item[4],
113 type => $item[2] ? 'unique' : 'normal',
114 fields => $item[8],
dd2ef5ae 115 }
d529894e 116 ;
117 }
dd2ef5ae 118
d529894e 119create_definition : index
120 | field
121 | <error>
122
123comment : /^\s*(?:#|-{2}).*\n/
124
125blank : /\s*/
126
127field : field_name data_type field_qualifier(s?)
128 {
129 my %qualifiers = map { %$_ } @{ $item{'field_qualifier'} || [] };
130 my $null = defined $item{'not_null'} ? $item{'not_null'} : 1;
131 delete $qualifiers{'not_null'};
132 if ( my @type_quals = @{ $item{'data_type'}{'qualifiers'} || [] } ) {
133 $qualifiers{ $_ } = 1 for @type_quals;
134 }
135
136 $return = {
137 type => 'field',
138 name => $item{'field_name'},
139 data_type => $item{'data_type'}{'type'},
140 size => $item{'data_type'}{'size'},
141 list => $item{'data_type'}{'list'},
142 null => $null,
143 %qualifiers,
144 }
145 }
146 | <error>
dd2ef5ae 147
d529894e 148field_qualifier : not_null
149 {
150 $return = {
151 null => $item{'not_null'},
152 }
153 }
16dc9970 154
d529894e 155field_qualifier : default_val
156 {
157 $return = {
158 default => $item{'default_val'},
159 }
160 }
16dc9970 161
d529894e 162field_qualifier : auto_inc
163 {
164 $return = {
165 is_auto_inc => $item{'auto_inc'},
166 }
167 }
16dc9970 168
d529894e 169field_qualifier : primary_key
170 {
171 $return = {
172 is_primary_key => $item{'primary_key'},
173 }
174 }
16dc9970 175
d529894e 176field_qualifier : unsigned
177 {
178 $return = {
179 is_unsigned => $item{'unsigned'},
180 }
181 }
16dc9970 182
d529894e 183index : primary_key_index
184 | unique_index
185 | normal_index
186
187table_name : WORD
188
189field_name : WORD
190
191index_name : WORD
192
193data_type : WORD parens_value_list(s?) type_qualifier(s?)
194 {
195 my $type = $item[1];
196 my $size; # field size, applicable only to non-set fields
197 my $list; # set list, applicable only to sets (duh)
198
199 if ( uc $type eq 'SET' ) {
200 $size = undef;
201 $list = $item[2][0];
202 }
203 else {
204 $size = $item[2][0];
205 $list = [];
206 }
207
208 $return = {
209 type => $type,
210 size => $size,
211 list => $list,
212 qualifiers => $item[3],
213 }
214 }
16dc9970 215
d529894e 216parens_value_list : '(' VALUE(s /,/) ')'
217 { $item[2] }
16dc9970 218
d529894e 219type_qualifier : /(BINARY|UNSIGNED|ZEROFILL)/i
220 { lc $item[1] }
16dc9970 221
d529894e 222field_type : WORD
16dc9970 223
d529894e 224field_size : '(' num_range ')' { $item{'num_range'} }
16dc9970 225
d529894e 226num_range : DIGITS ',' DIGITS
227 { $return = $item[1].','.$item[3] }
228 | DIGITS
229 { $return = $item[1] }
dd2ef5ae 230
d529894e 231create_table : /create/i /table/i
16dc9970 232
d529894e 233create_index : /create/i /index/i
dd2ef5ae 234
d529894e 235not_null : /not/i /null/i { $return = 0 }
16dc9970 236
d529894e 237unsigned : /unsigned/i { $return = 0 }
16dc9970 238
d529894e 239default_val : /default/i /(?:')?[\w\d.-]*(?:')?/
240 {
241 $item[2] =~ s/'//g;
242 $return = $item[2];
243 }
16dc9970 244
d529894e 245auto_inc : /auto_increment/i { 1 }
16dc9970 246
d529894e 247primary_key : /primary/i /key/i { 1 }
16dc9970 248
d529894e 249primary_key_index : primary_key index_name(?) '(' field_name(s /,/) ')'
250 {
251 $return = {
252 name => $item{'index_name'}[0],
253 type => 'primary_key',
254 fields => $item[4],
255 }
256 }
16dc9970 257
d529894e 258normal_index : key index_name(?) '(' name_with_opt_paren(s /,/) ')'
259 {
260 $return = {
261 name => $item{'index_name'}[0],
262 type => 'normal',
263 fields => $item[4],
264 }
265 }
16dc9970 266
d529894e 267unique_index : unique key(?) index_name(?) '(' name_with_opt_paren(s /,/) ')'
268 {
269 $return = {
270 name => $item{'index_name'}[0],
271 type => 'unique',
272 fields => $item[5],
273 }
274 }
16dc9970 275
d529894e 276name_with_opt_paren : NAME parens_value_list(s?)
277 { $item[2][0] ? "$item[1]($item[2][0][0])" : $item[1] }
16dc9970 278
d529894e 279unique : /unique/i { 1 }
16dc9970 280
d529894e 281key : /key/i | /index/i
16dc9970 282
d529894e 283table_option : /[^\s;]+/
284 {
285 $return = { split /=/, $item[1] }
286 }
16dc9970 287
d529894e 288WORD : /\w+/
16dc9970 289
d529894e 290DIGITS : /\d+/
16dc9970 291
d529894e 292COMMA : ','
16dc9970 293
d529894e 294NAME : "`" /\w+/ "`"
295 { $item[2] }
296 | /\w+/
297 { $item[1] }
16dc9970 298
d529894e 299VALUE : /[-+]?\.?\d+(?:[eE]\d+)?/
300 { $item[1] }
301 | /'.*?'/ # XXX doesn't handle embedded quotes
302 { $item[1] }
303 | /NULL/
304 { 'NULL' }
16dc9970 305
d529894e 306!;
16dc9970 307
d529894e 308# -------------------------------------------------------------------
309sub parse {
310 my ( $translator, $data ) = @_;
311 $parser ||= Parse::RecDescent->new($GRAMMAR);
077ebf34 312
d529894e 313 $::RD_TRACE = $translator->trace ? 1 : undef;
314 $DEBUG = $translator->debug;
315
316 unless (defined $parser) {
317 return $translator->error("Error instantiating Parse::RecDescent ".
318 "instance: Bad grammer");
319 }
320
321 my $result = $parser->startrule($data);
322 die "Parse failed.\n" unless defined $result;
323 warn Dumper($result) if $DEBUG;
324 return $result;
325}
326
3271;
328
329#-----------------------------------------------------
330# Where man is not nature is barren.
331# William Blake
332#-----------------------------------------------------
16dc9970 333
d529894e 334=pod
16dc9970 335
336=head1 AUTHOR
337
d529894e 338Ken Y. Clark E<lt>kclark@cpan.orgE<gt>,
339Chris Mungall
16dc9970 340
341=head1 SEE ALSO
342
d529894e 343perl(1), Parse::RecDescent.
16dc9970 344
345=cut