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