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