X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FSchema%2FProcedure.pm;h=e15082cbe9750aaa4aaba4087fdfc09d34eb93c7;hb=3a7eb46ecfa10f9d2fd4eb69c9303d09a7dc2aa7;hp=5ec5f82d0bdb1a2f2daac307db409988ca8d50d3;hpb=6606c4c60a5048e962e124dbc5a22eb8289faed8;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Schema/Procedure.pm b/lib/SQL/Translator/Schema/Procedure.pm index 5ec5f82..e15082c 100644 --- a/lib/SQL/Translator/Schema/Procedure.pm +++ b/lib/SQL/Translator/Schema/Procedure.pm @@ -1,7 +1,7 @@ package SQL::Translator::Schema::Procedure; # ---------------------------------------------------------------------- -# $Id: Procedure.pm,v 1.2 2004-02-09 22:15:15 kycl4rk Exp $ +# $Id: Procedure.pm,v 1.6 2005-06-29 22:02:29 duality72 Exp $ # ---------------------------------------------------------------------- # Copyright (C) 2002-4 SQLFairy Authors # @@ -48,16 +48,19 @@ stored procedures (and possibly other pieces of nameable SQL code?). =cut use strict; -use Class::Base; use SQL::Translator::Utils 'parse_list_arg'; -use base 'Class::Base'; +use base 'SQL::Translator::Schema::Object'; + use vars qw($VERSION); -$VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/; +$VERSION = sprintf "%d.%02d", q$Revision: 1.6 $ =~ /(\d+)\.(\d+)/; # ---------------------------------------------------------------------- -sub init { + +__PACKAGE__->_attributes( qw/ + name sql parameters comments owner sql schema order +/); =pod @@ -69,16 +72,6 @@ Object constructor. =cut - my ( $self, $config ) = @_; - - for my $arg ( qw[ name sql parameters comments owner sql schema ] ) { - next unless $config->{ $arg }; - $self->$arg( $config->{ $arg } ) or return; - } - - return $self; -} - # ---------------------------------------------------------------------- sub parameters { @@ -112,7 +105,7 @@ Gets and set the parameters of the stored procedure. $self->{'parameters'} = \@unique; } - return wantarray ? @{ $self->{'parameters'} || [] } : $self->{'parameters'}; + return wantarray ? @{ $self->{'parameters'} || [] } : ($self->{'parameters'} || ''); } # ---------------------------------------------------------------------- @@ -248,6 +241,32 @@ Get or set the procedures's schema object. } # ---------------------------------------------------------------------- +sub equals { + +=pod + +=head2 equals + +Determines if this procedure is the same as another + + my $isIdentical = $procedure1->equals( $procedure2 ); + +=cut + + my $self = shift; + my $other = shift; + + return 0 unless $self->SUPER::equals($other); + return 0 unless $self->name eq $other->name; + return 0 unless $self->sql eq $other->sql; + return 0 unless $self->_compare_objects(scalar $self->parameters, scalar $other->parameters); +# return 0 unless $self->comments eq $other->comments; + return 0 unless $self->owner eq $other->owner; + return 0 unless $self->_compare_objects(scalar $self->extra, scalar $other->extra); + return 1; +} + +# ---------------------------------------------------------------------- sub DESTROY { my $self = shift; undef $self->{'schema'}; # destroy cyclical reference