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