Take the defined field size if present.
[dbsrgits/SQL-Translator.git] / bin / sqlt
CommitLineData
7a8e1f51 1#!/usr/bin/perl -w
e107f4d2 2# vim: set ft=perl:
16dc9970 3
49e1eb70 4# -------------------------------------------------------------------
af2301d7 5# $Id: sqlt,v 1.14 2004-07-08 20:37:53 grommit Exp $
49e1eb70 6# -------------------------------------------------------------------
daf4f623 7# Copyright (C) 2002-4 SQLFairy Authors
783908a1 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
44598b94 24=head1 NAME
25
26sqlt - convert SQL schema using SQL::Translator
27
28=head1 SYNOPSIS
29
30For help:
31
32 sqlt -h|--help
33
af2301d7 34For a list of all parsers and producers:
44598b94 35
36 sqlt -l|--list
37
38To translate a schema:
39
af2301d7 40 sqlt -f|--from|--parser MySQL
41 -t|--to|--producer Oracle
42 [options]
44598b94 43 file [file2 ...]
44
45 General Options:
46
47 -d|--debug Print debug info
48 -v|--validate Validate the schema
49 --trace Print parser trace info
50 --show-warnings Print warnings to STDERR
51
e107f4d2 52 DBI Parser Options:
53
54 --dsn DSN for connecting to database
55 --db-user Database user
af2301d7 56 --db-password Database password
e107f4d2 57
44598b94 58 xSV Parser Options:
59
60 --fs The field separator
61 --rs The record separator
af2301d7 62 --no-trim Don't trim whitespace on fields
63 --no-scan Don't scan fields for data types and sizes
44598b94 64
65 DB Producer Options:
66
67 --add-drop-table Add 'DROP TABLE' statements before creates
68 --no-comments Don't include comments in SQL output
69
70 Diagram Producer Options:
71
72 --imap-file Filename to put image map data
73 --imap-url URL to use for image map
74
e8aa1b67 75 Dumper Producer Options:
76
77 --skip Comma-separated list of tables to skip
78 --skiplike Regex for tables to skip
79 --dumper-db-user Database user for dumper script
80 --dumper-db-pass Database password for dumper script
81 --dumper-dsn DSN for dumper script
82 --add-truncate Add "TRUNCATE TABLE" statements for each table
83
44598b94 84 HTML/POD Producer Options:
85
1ae0e8cb 86 --pretty Use CGI::Pretty for the output
44598b94 87 --title Title of schema
88
89 TTSchema Producer Options:
90
91 --template The path to the template
92
93 XML-SQLFairy Producer Options:
94
af2301d7 95 --add-prefix Use an explicit namespace prefix of 'sqlf:'
96 --prefix=<p> Use the namespace prefix given as argument.
97 --no-newlines Write the XML as a single line.
98 --indent=<n> Use <n> characters of whitespace to indent the XML.
44598b94 99
100=head1 DESCRIPTION
101
102This script is part of the SQL Fairy project. It will try to convert
103any source file for which it has a grammar into any format for which
104it has a producer.
105
af2301d7 106If using "show-warnings," be sure to redirect STDERR to a separate file.
44598b94 107In bash, you could do this:
108
109 $ sql_translator.pl -f MySQL -t PostgreSQL --show-warnings \
110 file.sql 1>out 2>err
111
112You can specify a parser or producer located in any module that Perl
113knows about, allowing you to easily substitute your own.
114
115=cut
116
117# -------------------------------------------------------------------
118
16dc9970 119use strict;
120use Getopt::Long;
121use Pod::Usage;
122use SQL::Translator;
49e1eb70 123
16dc9970 124use vars qw( $VERSION );
af2301d7 125$VERSION = sprintf "%d.%02d", q$Revision: 1.14 $ =~ /(\d+)\.(\d+)/;
64ad4e66 126
127my $from; # the original database
af2301d7 128my $to; # the destination database
64ad4e66 129my $help; # show POD and bail
130my $stdin; # whether to read STDIN for create script
131my $no_comments; # whether to put comments in out file
132my $show_warnings; # whether to show warnings from SQL::Translator
133my $add_drop_table; # whether to show warnings from SQL::Translator
64ad4e66 134my $debug; # whether to print debug info
135my $trace; # whether to print parser trace
136my $list; # list all parsers and producers
032bd3c7 137my $no_trim; # don't trim whitespace on xSV fields
138my $no_scan; # don't scan xSV fields for data types and sizes
64ad4e66 139my $field_separator; # for xSV files
140my $record_separator; # for xSV files
35d75351 141my $validate; # whether to validate the parsed document
5cb879e2 142my $imap_file; # filename where to place image map coords
143my $imap_url; # URL to use in making image map
1ea530d4 144my $pretty; # use CGI::Pretty instead of CGI (HTML producer)
8ac2c35e 145my $template; # template to pass to TTSchema producer
44598b94 146my $title; # title for HTML/POD producer
af2301d7 147my $add_prefix; # Use explicit namespace prefix (XML producer)
148my $prefix; # Set explicit namespace prefix (XML producer)
149my $newlines; # Add newlines around tags (XML producer)
150my $indent; # Number of indent chars for XML
151my $dsn; # DBI parser
152my $db_user; # DBI parser
153my $db_password; # DBI parser
154my $skip;
155my $skiplike;
156my $dumper_db_user;
e8aa1b67 157my $dumper_db_pass;
158my $dumper_dsn;
159my $add_truncate;
16dc9970 160
16dc9970 161GetOptions(
e8aa1b67 162 'add-drop-table' => \$add_drop_table,
e8aa1b67 163 'd|debug' => \$debug,
e8aa1b67 164 'f|from|parser:s' => \$from,
165 'fs:s' => \$field_separator,
166 'h|help' => \$help,
167 'imap-file:s' => \$imap_file,
168 'imap-url:s' => \$imap_url,
169 't|to|producer:s' => \$to,
170 'l|list' => \$list,
171 'pretty!' => \$pretty,
172 'no-comments' => \$no_comments,
173 'no-scan' => \$no_scan,
174 'no-trim' => \$no_trim,
175 'rs:s' => \$record_separator,
176 'show-warnings' => \$show_warnings,
177 'template:s' => \$template,
178 'title:s' => \$title,
179 'trace' => \$trace,
180 'v|validate' => \$validate,
181 'dsn:s' => \$dsn,
182 'db-user:s' => \$db_user,
183 'db-password:s' => \$db_password,
184 'dumper-dsn:s' => \$dumper_dsn,
185 'dumper-db-user:s' => \$dumper_db_user,
186 'dumper-db-pass:s' => \$dumper_db_pass,
187 'skip:s' => \$skip,
188 'skiplike:s' => \$skiplike,
189 'add_truncate' => \$add_truncate,
af2301d7 190 'add-prefix' => \$add_prefix,
191 'prefix:s' => \$prefix,
192 'indent:s' => \$indent,
193 'newlines!' => \$newlines,
16dc9970 194) or pod2usage(2);
195
ec42851e 196my @files = @ARGV; # source files
b79348f4 197unless ( @files ) {
d4becbfd 198 if ( defined($from) && $from eq 'DBI' ) {
b79348f4 199 @files = ('!');
200 }
201 else {
202 @files = ('-');
203 }
204}
16dc9970 205
206pod2usage(1) if $help;
d529894e 207
44598b94 208my $translator = SQL::Translator->new(
209 debug => $debug || 0,
210 trace => $trace || 0,
211 no_comments => $no_comments || 0,
212 show_warnings => $show_warnings || 0,
213 add_drop_table => $add_drop_table || 0,
214 validate => $validate || 0,
215 parser_args => {
032bd3c7 216 trim_fields => $no_trim ? 0 : 1,
217 scan_fields => $no_scan ? 0 : 1,
64ad4e66 218 field_separator => $field_separator,
219 record_separator => $record_separator,
e107f4d2 220 dsn => $dsn,
221 db_user => $db_user,
222 db_password => $db_password,
5cb879e2 223 },
224 producer_args => {
225 imap_file => $imap_file,
226 imap_url => $imap_url,
1ea530d4 227 pretty => $pretty,
8ac2c35e 228 ttfile => $template,
44598b94 229 title => $title,
e8aa1b67 230 dsn => $dumper_dsn,
231 db_user => $dumper_db_user,
232 db_password => $dumper_db_pass,
233 skip => $skip,
234 skiplike => $skiplike,
235 add_truncate => $add_truncate,
af2301d7 236 add_prefix => $add_prefix,
237 prefix => $prefix,
238 indent => $indent,
239 newlines => $newlines,
5cb879e2 240 },
d529894e 241);
242
243if ( $list ) {
244 my @parsers = $translator->list_parsers;
245 my @producers = $translator->list_producers;
246
247 for ( @parsers, @producers ) {
248 if ( $_ =~ m/.+::(\w+)\.pm/ ) {
249 $_ = $1;
250 }
251 }
af2301d7 252
d529894e 253 print "\nParsers:\n", map { "\t$_\n" } sort @parsers;
254 print "\nProducers:\n", map { "\t$_\n" } sort @producers;
255 print "\n";
256 exit(0);
257}
258
af2301d7 259pod2usage( msg => 'Please supply "from" and "to" arguments' )
515a6a58 260 unless $from && $to;
d529894e 261
783908a1 262$translator->parser($from);
263$translator->producer($to);
264
265for my $file (@files) {
b79348f4 266 my @args =
267 ($file eq '-') ? (data => \*STDIN) :
268 ($file eq '!') ? (data => '') :
269 (file => $file);
270
2cd6675e 271 my $output = $translator->translate(@args) or die
49e1eb70 272 "Error: " . $translator->error;
b79348f4 273
49e1eb70 274 print $output;
783908a1 275}
16dc9970 276
49e1eb70 277# ----------------------------------------------------
16dc9970 278# It is not all books that are as dull as their readers.
279# Henry David Thoreau
49e1eb70 280# ----------------------------------------------------
16dc9970 281
44598b94 282=pod
96844cae 283
16dc9970 284=head1 AUTHOR
285
515a6a58 286Ken Y. Clark E<lt>kclark@cpan.orgE<gt>,
287darren chamberlain E<lt>darren@cpan.orgE<gt>.
16dc9970 288
289=head1 SEE ALSO
290
515a6a58 291SQL::Translator, L<http://sqlfairy.sourceforge.net>.
16dc9970 292
293=cut