less accumulators more reduction
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / SQLServer.pm
CommitLineData
7a0ceaa1 1package SQL::Translator::Producer::SQLServer;
2
7a0ceaa1 3use strict;
f27f9229 4use warnings;
0c04c5a2 5our ( $DEBUG, $WARN );
6our $VERSION = '1.59';
7a0ceaa1 7$DEBUG = 1 unless defined $DEBUG;
8
9use Data::Dumper;
10use SQL::Translator::Schema::Constants;
11use SQL::Translator::Utils qw(debug header_comment);
c661b77d 12use SQL::Translator::Generator::DDL::SQLServer;
0a6e5a56 13
c661b77d 14my $future = SQL::Translator::Generator::DDL::SQLServer->new();
7a0ceaa1 15
7a0ceaa1 16sub produce {
17 my $translator = shift;
7a0ceaa1 18 my $no_comments = $translator->no_comments;
19 my $add_drop_table = $translator->add_drop_table;
20 my $schema = $translator->schema;
21
22 my $output;
23 $output .= header_comment."\n" unless ($no_comments);
24
d02c3cd2 25 # Generate the DROP statements.
7a0ceaa1 26 if ($add_drop_table) {
d02c3cd2 27 my @tables = sort { $b->order <=> $a->order } $schema->get_tables;
28 $output .= "--\n-- Turn off constraints\n--\n\n" unless $no_comments;
9b76e208 29 $output .= join "\n", map $future->remove_table_constraints($_), @tables;
d02c3cd2 30 $output .= "\n";
7a0ceaa1 31 $output .= "--\n-- Drop tables\n--\n\n" unless $no_comments;
9b76e208 32 $output .= join "\n", map $future->drop_table($_), @tables;
33 $output .= "\n";
7a0ceaa1 34 }
35
871f55d4 36 # these need to be added separately, as tables may not exist yet
37 my @foreign_constraints = ();
f9a5ee79 38
871f55d4 39 for my $table ( grep { $_->name } $schema->get_tables ) {
40 my $table_name_ur = unreserve($table->name);
f9a5ee79 41
871f55d4 42 my ( @comments );
7a0ceaa1 43
44 push @comments, "\n\n--\n-- Table: $table_name_ur\n--"
871f55d4 45 unless $no_comments;
7a0ceaa1 46
47 push @comments, map { "-- $_" } $table->comments;
48
871f55d4 49 push @foreign_constraints, map $future->foreign_key_constraint($_),
50 grep { $_->type eq FOREIGN_KEY } $table->get_constraints;
7a0ceaa1 51
52 $output .= join( "\n\n",
53 @comments,
871f55d4 54 # index defs
7a16a53e 55 $future->table($table),
871f55d4 56 (map $future->unique_constraint_multiple($_),
57 grep {
58 $_->type eq UNIQUE &&
59 grep { $_->is_nullable } $_->fields
60 } $table->get_constraints),
61
62 (map $future->index($_), $table->get_indices)
7a0ceaa1 63 );
64 }
65
f9a5ee79 66# Add FK constraints
67 $output .= join ("\n", '', @foreign_constraints) if @foreign_constraints;
68
e2fb9ad3 69# create view/procedure are NOT prepended to the input $sql, needs
70# to be filled in with the proper syntax
71
871f55d4 72 return $output;
73}
74
837afeae 75sub unreserve { $future->quote($_[0]) }
056238d8 76
771;
78
6fac033a 79=pod
e2fb9ad3 80
056238d8 81=head1 SQLServer Create Table Syntax
82
83TODO
84
85
86=head1 NAME
87
88SQL::Translator::Producer::SQLServer - MS SQLServer producer for SQL::Translator
89
90=head1 SYNOPSIS
91
92 use SQL::Translator;
93
94 my $t = SQL::Translator->new( parser => '...', producer => 'SQLServer' );
95 $t->translate;
96
97=head1 DESCRIPTION
98
99B<WARNING>B This is still fairly early code, basically a hacked version of the
100Sybase Producer (thanks Sam, Paul and Ken for doing the real work ;-)
101
102=head1 Extra Attributes
103
104=over 4
105
106=item field.list
107
108List of values for an enum field.
109
110=back
111
112=head1 TODO
113
114 * !! Write some tests !!
115 * Reserved words list needs updating to SQLServer.
116 * Triggers, Procedures and Views DO NOT WORK
117
118
7a0ceaa1 119 # Text of view is already a 'create view' statement so no need to
120 # be fancy
121 foreach ( $schema->get_views ) {
122 my $name = $_->name();
123 $output .= "\n\n";
5c5997ef 124 $output .= "--\n-- View: $name\n--\n\n" unless $no_comments;
3e0bcbfd 125 my $text = $_->sql();
e2fb9ad3 126 $text =~ s/\r//g;
5bb0a4ee 127 $output .= "$text\nGO\n";
7a0ceaa1 128 }
129
130 # Text of procedure already has the 'create procedure' stuff
131 # so there is no need to do anything fancy. However, we should
132 # think about doing fancy stuff with granting permissions and
133 # so on.
134 foreach ( $schema->get_procedures ) {
135 my $name = $_->name();
136 $output .= "\n\n";
5c5997ef 137 $output .= "--\n-- Procedure: $name\n--\n\n" unless $no_comments;
3e0bcbfd 138 my $text = $_->sql();
028386aa 139 $text =~ s/\r//g;
5bb0a4ee 140 $output .= "$text\nGO\n";
7a0ceaa1 141 }
7a0ceaa1 142
143=head1 SEE ALSO
144
145SQL::Translator.
146
147=head1 AUTHORS
148
149Mark Addison E<lt>grommit@users.sourceforge.netE<gt> - Bulk of code from
150Sybase producer, I just tweaked it for SQLServer. Thanks.
151
152=cut