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