Improve trigger 'scope' attribute support (RT#119997)
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / SQLServer.pm
index 4dbfee0..ed9d156 100644 (file)
@@ -1,5 +1,25 @@
 package SQL::Translator::Producer::SQLServer;
 
+use strict;
+use warnings;
+our ( $DEBUG, $WARN );
+our $VERSION = '1.59';
+$DEBUG = 1 unless defined $DEBUG;
+
+use SQL::Translator::Schema::Constants;
+use SQL::Translator::Utils qw(debug header_comment);
+use SQL::Translator::Generator::DDL::SQLServer;
+
+sub produce {
+  my $translator = shift;
+  SQL::Translator::Generator::DDL::SQLServer->new(
+    add_comments    => !$translator->no_comments,
+    add_drop_table => $translator->add_drop_table,
+  )->schema($translator->schema)
+}
+
+1;
+
 =head1 NAME
 
 SQL::Translator::Producer::SQLServer - MS SQLServer producer for SQL::Translator
@@ -13,8 +33,8 @@ SQL::Translator::Producer::SQLServer - MS SQLServer producer for SQL::Translator
 
 =head1 DESCRIPTION
 
-B<WARNING>B This is still fairly early code, basically a hacked version of the
-Sybase Producer (thanks Sam, Paul and Ken for doing the real work ;-)
+This is currently a thin wrapper around the nextgen
+L<SQL::Translator::Generator::DDL::SQLServer> DDL maker.
 
 =head1 Extra Attributes
 
@@ -32,131 +52,6 @@ List of values for an enum field.
  * Reserved words list needs updating to SQLServer.
  * Triggers, Procedures and Views DO NOT WORK
 
-=cut
-
-use strict;
-use warnings;
-our ( $DEBUG, $WARN );
-our $VERSION = '1.59';
-$DEBUG = 1 unless defined $DEBUG;
-
-use Data::Dumper;
-use SQL::Translator::Schema::Constants;
-use SQL::Translator::Utils qw(debug header_comment);
-use SQL::Translator::Generator::Utils;
-use SQL::Translator::Generator::DDL::SQLServer;
-
-my $util = SQL::Translator::Generator::Utils->new( quote_chars => ['[', ']'] );
-my $future = SQL::Translator::Generator::DDL::SQLServer->new();
-
-my %translate  = (
-    date      => 'datetime',
-    'time'    => 'datetime',
-    # Sybase types
-    #integer   => 'numeric',
-    #int       => 'numeric',
-    #number    => 'numeric',
-    #money     => 'money',
-    #varchar   => 'varchar',
-    #varchar2  => 'varchar',
-    #timestamp => 'datetime',
-    #text      => 'varchar',
-    #real      => 'double precision',
-    #comment   => 'text',
-    #bit       => 'bit',
-    #tinyint   => 'smallint',
-    #float     => 'double precision',
-    #serial    => 'numeric',
-    #boolean   => 'varchar',
-    #char      => 'char',
-    #long      => 'varchar',
-);
-
-# If these datatypes have size appended the sql fails.
-my @no_size = qw/tinyint smallint int integer bigint text bit image datetime/;
-
-my $max_id_length    = 128;
-my %global_names;
-
-=pod
-
-=head1 SQLServer Create Table Syntax
-
-TODO
-
-=cut
-
-sub produce {
-    my $translator     = shift;
-    $DEBUG             = $translator->debug;
-    $WARN              = $translator->show_warnings;
-    my $no_comments    = $translator->no_comments;
-    my $add_drop_table = $translator->add_drop_table;
-    my $schema         = $translator->schema;
-
-    %global_names = (); #reset
-
-    my $output;
-    $output .= header_comment."\n" unless ($no_comments);
-
-    # Generate the DROP statements.
-    if ($add_drop_table) {
-        my @tables = sort { $b->order <=> $a->order } $schema->get_tables;
-        $output .= "--\n-- Turn off constraints\n--\n\n" unless $no_comments;
-        foreach my $table (@tables) {
-            my $name = $table->name;
-            my $q_name = unreserve($name);
-            $output .= "IF EXISTS (SELECT name FROM sysobjects WHERE name = '$name' AND type = 'U') ALTER TABLE $q_name NOCHECK CONSTRAINT all;\n"
-        }
-        $output .= "\n";
-        $output .= "--\n-- Drop tables\n--\n\n" unless $no_comments;
-        foreach my $table (@tables) {
-            my $name = $table->name;
-            my $q_name = unreserve($name);
-            $output .= "IF EXISTS (SELECT name FROM sysobjects WHERE name = '$name' AND type = 'U') DROP TABLE $q_name;\n"
-        }
-    }
-
-    # these need to be added separately, as tables may not exist yet
-    my @foreign_constraints = ();
-
-    for my $table ( grep { $_->name } $schema->get_tables ) {
-        my $table_name_ur = unreserve($table->name);
-
-        my ( @comments );
-
-        push @comments, "\n\n--\n-- Table: $table_name_ur\n--"
-           unless $no_comments;
-
-        push @comments, map { "-- $_" } $table->comments;
-
-        push @foreign_constraints, map $future->foreign_key_constraint($_),
-           grep { $_->type eq FOREIGN_KEY } $table->get_constraints;
-
-        $output .= join( "\n\n",
-            @comments,
-            # index defs
-            $future->table($table),
-            (map $future->unique_constraint_multiple($_),
-               grep {
-                  $_->type eq UNIQUE &&
-                  grep { $_->is_nullable } $_->fields
-               } $table->get_constraints),
-
-            (map $future->index($_), $table->get_indices)
-        );
-    }
-
-# Add FK constraints
-    $output .= join ("\n", '', @foreign_constraints) if @foreign_constraints;
-
-# create view/procedure are NOT prepended to the input $sql, needs
-# to be filled in with the proper syntax
-
-    return $output;
-}
-
-=pod
 
     # Text of view is already a 'create view' statement so no need to
     # be fancy
@@ -181,42 +76,23 @@ sub produce {
       $text =~ s/\r//g;
         $output .= "$text\nGO\n";
     }
-=cut
-
-sub mk_name {
-    my ($name, $scope, $critical) = @_;
-
-    $scope ||= \%global_names;
-    if ( my $prev = $scope->{ $name } ) {
-        my $name_orig = $name;
-        $name        .= sprintf( "%02d", ++$prev );
-        substr($name, $max_id_length - 3) = "00"
-            if length( $name ) > $max_id_length;
-
-        warn "The name '$name_orig' has been changed to ",
-             "'$name' to make it unique.\n" if $WARN;
 
-        $scope->{ $name_orig }++;
-    }
-    $name = substr( $name, 0, $max_id_length )
-                        if ((length( $name ) > $max_id_length) && $critical);
-    $scope->{ $name }++;
-    return unreserve($name);
-}
+=head1 SEE ALSO
 
-sub unreserve { $util->quote($_[0]) }
+L<SQL::Translator>
 
-1;
+=head1 AUTHORS
 
-=pod
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
 
-=head1 SEE ALSO
+=head1 COPYRIGHT
 
-SQL::Translator.
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
 
-=head1 AUTHORS
+=head1 LICENSE
 
-Mark Addison E<lt>grommit@users.sourceforge.netE<gt> - Bulk of code from
-Sybase producer, I just tweaked it for SQLServer. Thanks.
+This code is free software and may be distributed under the same terms as Perl
+itself.
 
 =cut