Added options for new Dumper producer.
[dbsrgits/SQL-Translator.git] / bin / sqlt
CommitLineData
7a8e1f51 1#!/usr/bin/perl -w
e107f4d2 2# vim: set ft=perl:
16dc9970 3
49e1eb70 4# -------------------------------------------------------------------
e8aa1b67 5# $Id: sqlt,v 1.13 2004-03-09 19:11:30 kycl4rk 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
34For a list of all parsers and producers:
35
36 sqlt -l|--list
37
38To 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 --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
56 --db-password Database password
57
44598b94 58 xSV Parser Options:
59
60 --fs The field separator
61 --rs The record separator
62 --no-trim Don't trim whitespace on fields
63 --no-scan Don't scan fields for data types and sizes
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
95 --emit-empty-tags Print empty tags for attributes
96 --attrib-values Use attributes instead of tags for
97 values of the schema objects
98
99=head1 DESCRIPTION
100
101This script is part of the SQL Fairy project. It will try to convert
102any source file for which it has a grammar into any format for which
103it has a producer.
104
105If using "show-warnings," be sure to redirect STDERR to a separate file.
106In bash, you could do this:
107
108 $ sql_translator.pl -f MySQL -t PostgreSQL --show-warnings \
109 file.sql 1>out 2>err
110
111You can specify a parser or producer located in any module that Perl
112knows about, allowing you to easily substitute your own.
113
114=cut
115
116# -------------------------------------------------------------------
117
16dc9970 118use strict;
119use Getopt::Long;
120use Pod::Usage;
121use SQL::Translator;
49e1eb70 122
16dc9970 123use vars qw( $VERSION );
e8aa1b67 124$VERSION = sprintf "%d.%02d", q$Revision: 1.13 $ =~ /(\d+)\.(\d+)/;
64ad4e66 125
126my $from; # the original database
127my $to; # the destination database
128my $help; # show POD and bail
129my $stdin; # whether to read STDIN for create script
130my $no_comments; # whether to put comments in out file
131my $show_warnings; # whether to show warnings from SQL::Translator
132my $add_drop_table; # whether to show warnings from SQL::Translator
64ad4e66 133my $debug; # whether to print debug info
134my $trace; # whether to print parser trace
135my $list; # list all parsers and producers
032bd3c7 136my $no_trim; # don't trim whitespace on xSV fields
137my $no_scan; # don't scan xSV fields for data types and sizes
64ad4e66 138my $field_separator; # for xSV files
139my $record_separator; # for xSV files
35d75351 140my $validate; # whether to validate the parsed document
5cb879e2 141my $imap_file; # filename where to place image map coords
142my $imap_url; # URL to use in making image map
1ea530d4 143my $pretty; # use CGI::Pretty instead of CGI (HTML producer)
8ac2c35e 144my $template; # template to pass to TTSchema producer
44598b94 145my $title; # title for HTML/POD producer
146my $emit_empty_tags; # show empty XML tags
147my $attrib_values; # use XML attributes instead of tags
e107f4d2 148my $dsn; # DBI parser
149my $db_user; # DBI parser
150my $db_password; # DBI parser
e8aa1b67 151my $skip;
152my $skiplike;
153my $dumper_db_user;
154my $dumper_db_pass;
155my $dumper_dsn;
156my $add_truncate;
16dc9970 157
16dc9970 158GetOptions(
e8aa1b67 159 'add-drop-table' => \$add_drop_table,
160 'attrib-values' => \$attrib_values,
161 'd|debug' => \$debug,
162 'emit-empty-tags' => \$emit_empty_tags,
163 'f|from|parser:s' => \$from,
164 'fs:s' => \$field_separator,
165 'h|help' => \$help,
166 'imap-file:s' => \$imap_file,
167 'imap-url:s' => \$imap_url,
168 't|to|producer:s' => \$to,
169 'l|list' => \$list,
170 'pretty!' => \$pretty,
171 'no-comments' => \$no_comments,
172 'no-scan' => \$no_scan,
173 'no-trim' => \$no_trim,
174 'rs:s' => \$record_separator,
175 'show-warnings' => \$show_warnings,
176 'template:s' => \$template,
177 'title:s' => \$title,
178 'trace' => \$trace,
179 'v|validate' => \$validate,
180 'dsn:s' => \$dsn,
181 'db-user:s' => \$db_user,
182 'db-password:s' => \$db_password,
183 'dumper-dsn:s' => \$dumper_dsn,
184 'dumper-db-user:s' => \$dumper_db_user,
185 'dumper-db-pass:s' => \$dumper_db_pass,
186 'skip:s' => \$skip,
187 'skiplike:s' => \$skiplike,
188 'add_truncate' => \$add_truncate,
16dc9970 189) or pod2usage(2);
190
ec42851e 191my @files = @ARGV; # source files
b79348f4 192unless ( @files ) {
d4becbfd 193 if ( defined($from) && $from eq 'DBI' ) {
b79348f4 194 @files = ('!');
195 }
196 else {
197 @files = ('-');
198 }
199}
16dc9970 200
201pod2usage(1) if $help;
d529894e 202
44598b94 203my $translator = SQL::Translator->new(
204 debug => $debug || 0,
205 trace => $trace || 0,
206 no_comments => $no_comments || 0,
207 show_warnings => $show_warnings || 0,
208 add_drop_table => $add_drop_table || 0,
209 validate => $validate || 0,
210 parser_args => {
032bd3c7 211 trim_fields => $no_trim ? 0 : 1,
212 scan_fields => $no_scan ? 0 : 1,
64ad4e66 213 field_separator => $field_separator,
214 record_separator => $record_separator,
e107f4d2 215 dsn => $dsn,
216 db_user => $db_user,
217 db_password => $db_password,
5cb879e2 218 },
219 producer_args => {
220 imap_file => $imap_file,
221 imap_url => $imap_url,
1ea530d4 222 pretty => $pretty,
8ac2c35e 223 ttfile => $template,
44598b94 224 title => $title,
225 emit_empty_tags => $emit_empty_tags,
226 attrib_values => $attrib_values,
e8aa1b67 227 dsn => $dumper_dsn,
228 db_user => $dumper_db_user,
229 db_password => $dumper_db_pass,
230 skip => $skip,
231 skiplike => $skiplike,
232 add_truncate => $add_truncate,
5cb879e2 233 },
d529894e 234);
235
236if ( $list ) {
237 my @parsers = $translator->list_parsers;
238 my @producers = $translator->list_producers;
239
240 for ( @parsers, @producers ) {
241 if ( $_ =~ m/.+::(\w+)\.pm/ ) {
242 $_ = $1;
243 }
244 }
245
246 print "\nParsers:\n", map { "\t$_\n" } sort @parsers;
247 print "\nProducers:\n", map { "\t$_\n" } sort @producers;
248 print "\n";
249 exit(0);
250}
251
515a6a58 252pod2usage( msg => 'Please supply "from" and "to" arguments' )
253 unless $from && $to;
d529894e 254
783908a1 255$translator->parser($from);
256$translator->producer($to);
257
258for my $file (@files) {
b79348f4 259 my @args =
260 ($file eq '-') ? (data => \*STDIN) :
261 ($file eq '!') ? (data => '') :
262 (file => $file);
263
2cd6675e 264 my $output = $translator->translate(@args) or die
49e1eb70 265 "Error: " . $translator->error;
b79348f4 266
49e1eb70 267 print $output;
783908a1 268}
16dc9970 269
49e1eb70 270# ----------------------------------------------------
16dc9970 271# It is not all books that are as dull as their readers.
272# Henry David Thoreau
49e1eb70 273# ----------------------------------------------------
16dc9970 274
44598b94 275=pod
96844cae 276
16dc9970 277=head1 AUTHOR
278
515a6a58 279Ken Y. Clark E<lt>kclark@cpan.orgE<gt>,
280darren chamberlain E<lt>darren@cpan.orgE<gt>.
16dc9970 281
282=head1 SEE ALSO
283
515a6a58 284SQL::Translator, L<http://sqlfairy.sourceforge.net>.
16dc9970 285
286=cut