Small fix.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / MySQL.pm
1 package SQL::Translator::Producer::MySQL;
2
3 # -------------------------------------------------------------------
4 # $Id: MySQL.pm,v 1.11 2003-04-10 03:09:47 kycl4rk Exp $
5 # -------------------------------------------------------------------
6 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>,
7 #                    darren chamberlain <darren@cpan.org>,
8 #                    Chris Mungall <cjm@fruitfly.org>
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation; version 2.
13 #
14 # This program is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 # 02111-1307  USA
23 # -------------------------------------------------------------------
24
25 use strict;
26 use vars qw[ $VERSION $DEBUG ];
27 $VERSION = sprintf "%d.%02d", q$Revision: 1.11 $ =~ /(\d+)\.(\d+)/;
28 $DEBUG   = 0 unless defined $DEBUG;
29
30 use Data::Dumper;
31 use SQL::Translator::Utils qw(debug);
32
33 sub produce {
34     my ($translator, $data) = @_;
35     local $DEBUG            = $translator->debug;
36     my $no_comments         = $translator->no_comments;
37     my $add_drop_table      = $translator->add_drop_table;
38
39     debug("PKG: Beginning production\n");
40
41     my $create; 
42     unless ( $no_comments ) {
43         $create .= sprintf "--\n-- Created by %s\n-- Created on %s\n--\n\n",
44             __PACKAGE__, scalar localtime;
45     }
46
47     for my $table ( keys %{ $data } ) {
48         debug("PKG: Looking at table '$table'\n");
49         my $table_data = $data->{$table};
50         my @fields = sort { 
51             $table_data->{'fields'}->{$a}->{'order'} 
52             <=>
53             $table_data->{'fields'}->{$b}->{'order'}
54         } keys %{$table_data->{'fields'}};
55
56         #
57         # Header.  Should this look like what mysqldump produces?
58         #
59         $create .= "--\n-- Table: $table\n--\n" unless $no_comments;
60         $create .= qq[DROP TABLE $table;\n] if $add_drop_table;
61         $create .= "CREATE TABLE $table (";
62
63         #
64         # Fields
65         #
66         for (my $i = 0; $i <= $#fields; $i++) {
67             my $field = $fields[$i];
68             debug("PKG: Looking at field '$field'\n");
69             my $field_data = $table_data->{'fields'}->{$field};
70             my @fdata = ("", $field);
71             $create .= "\n";
72
73             # data type and size
74             my $attr = uc $field_data->{'data_type'} eq 'SET' ? 'list' : 'size';
75             my @values = @{ $field_data->{ $attr } || [] };
76             push @fdata, sprintf "%s%s", 
77                 $field_data->{'data_type'},
78                 ( @values )
79                     ? '('.join(', ', @values).')'
80                     : '';
81
82             # MySQL qualifiers
83             for my $qual ( qw[ binary unsigned zerofill ] ) {
84                 push @fdata, $qual 
85                     if $field_data->{ $qual } ||
86                        $field_data->{ uc $qual };
87             }
88
89             # Null?
90             push @fdata, "NOT NULL" unless $field_data->{'null'};
91
92             # Default?  XXX Need better quoting!
93             my $default = $field_data->{'default'};
94             if ( defined $default ) {
95                 if ( uc $default eq 'NULL') {
96                     push @fdata, "DEFAULT NULL";
97                 } else {
98                     push @fdata, "DEFAULT '$default'";
99                 }
100             }
101
102             # auto_increment?
103             push @fdata, "auto_increment" if $field_data->{'is_auto_inc'};
104
105             # primary key?
106             # This is taken care of in the indices, could be duplicated here
107             # push @fdata, "PRIMARY KEY" if $field_data->{'is_primary_key'};
108
109
110             $create .= (join " ", '', @fdata);
111             $create .= "," unless ($i == $#fields);
112         }
113
114         #
115         # Indices
116         #
117         my @index_creates;
118         my @indices = @{ $table_data->{'indices'} || [] };
119         for (my $i = 0; $i <= $#indices; $i++) {
120             my $key  = $indices[$i];
121             my ($name, $type, $fields) = @{ $key }{ qw[ name type fields ] };
122             $name ||= '';
123             my $index_type = 
124                 $type eq 'primary_key' ? 'PRIMARY KEY' :
125                 $type eq 'unique'      ? 'UNIQUE KEY'  : 'KEY';
126             push @index_creates, 
127                 "  $index_type $name (" . join( ', ', @$fields ) . ')';
128         }
129
130         if ( @index_creates ) {
131             $create .= join(",\n", '', @index_creates);
132         }
133
134         #
135         # Constraints -- need to handle more than just FK. -ky
136         #
137         my @constraints;
138         for my $constraint ( @{ $table_data->{'constraints'} } ) {
139             my $name       = $constraint->{'name'} || '';
140             my $type       = $constraint->{'type'};
141             my $fields     = $constraint->{'fields'};
142             my $ref_table  = $constraint->{'reference_table'};
143             my $ref_fields = $constraint->{'reference_fields'};
144             my $match_type = $constraint->{'match_type'} || '';
145             my $on_delete  = $constraint->{'on_delete_do'};
146             my $on_update  = $constraint->{'on_update_do'};
147
148             if ( $type eq 'foreign_key' ) {
149                 my $def = join(' ', map { $_ || () } '  FOREIGN KEY', $name );
150                 if ( @$fields ) {
151                     $def .= ' (' . join( ', ', @$fields ) . ')';
152                 }
153                 $def .= " REFERENCES $ref_table";
154
155                 if ( @{ $ref_fields || [] } ) {
156                     $def .= ' (' . join( ', ', @$ref_fields ) . ')';
157                 }
158
159                 if ( $match_type ) {
160                     $def .= ' MATCH ' . 
161                         ( $match_type =~ /full/i ) ? 'FULL' : 'PARTIAL';
162                 }
163
164                 if ( @{ $on_delete || [] } ) {
165                     $def .= ' ON DELETE '.join(' ', @$on_delete);
166                 }
167
168                 if ( @{ $on_update || [] } ) {
169                     $def .= ' ON UPDATE '.join(' ', @$on_update);
170                 }
171
172                 push @constraints, $def;
173             }
174         }
175
176         $create .= join(",\n", '', @constraints) if @constraints;
177
178         #
179         # Footer
180         #
181         $create .= "\n)";
182         while ( my ( $key, $val ) = each %{ $table_data->{'table_options'} } ) {
183             $create .= " $key=$val" 
184         }
185         $create .= ";\n\n";
186     }
187
188     return $create;
189 }
190
191 1;
192 __END__
193
194 =head1 NAME
195
196 SQL::Translator::Producer::MySQL - MySQL-specific producer for SQL::Translator
197
198 =head1 AUTHOR
199
200 darren chamberlain E<lt>darren@cpan.orgE<gt>,
201 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>