X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FParser%2FDBIx%2FClass.pm;h=e4e480a3f328a439c4f05620510b0dbee03a5333;hb=fd323bf1046faa7de5a8c985268d80ec5b703361;hp=8b68e8336b60d93f402f00625bd66cb6a4f09be0;hpb=ad91ed7400af5239bca95cd334449a9a81b062da;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/SQL/Translator/Parser/DBIx/Class.pm b/lib/SQL/Translator/Parser/DBIx/Class.pm index 8b68e83..e4e480a 100644 --- a/lib/SQL/Translator/Parser/DBIx/Class.pm +++ b/lib/SQL/Translator/Parser/DBIx/Class.pm @@ -14,8 +14,10 @@ $DEBUG = 0 unless defined $DEBUG; use Exporter; use SQL::Translator::Utils qw(debug normalize_name); -use Carp::Clan qw/^SQL::Translator|^DBIx::Class/; +use Carp::Clan qw/^SQL::Translator|^DBIx::Class|^Try::Tiny/; use Scalar::Util (); +use Try::Tiny; +use namespace::clean; use base qw(Exporter); @@ -33,7 +35,7 @@ use base qw(Exporter); sub parse { # this is a hack to prevent schema leaks due to a retarded SQLT implementation # DO NOT REMOVE (until SQLT2 is out, the all of this will be rewritten anyway) - Scalar::Util::weaken ($_[1]); + Scalar::Util::weaken ($_[1]) if ref ($_[1]); my ($tr, $data) = @_; my $args = $tr->parser_args; @@ -43,8 +45,12 @@ sub parse { croak 'No DBIx::Class::Schema' unless ($dbicschema); if (!ref $dbicschema) { - eval "use $dbicschema;"; - croak "Can't load $dbicschema ($@)" if($@); + try { + eval "require $dbicschema;" + } + catch { + croak "Can't load $dbicschema ($_)"; + } } my $schema = $tr->schema; @@ -59,7 +65,7 @@ sub parse { $dbicschema->throw_exception ("'sources' parameter must be an array or hash ref") unless( $ref eq 'ARRAY' || ref eq 'HASH' ); - # limit monikers to those specified in + # limit monikers to those specified in my $sources; if ($ref eq 'ARRAY') { $sources->{$_} = 1 for (@$limit_sources); @@ -165,7 +171,7 @@ sub parse { # Force the order of @cond to match the order of ->add_columns my $idx; my %other_columns_idx = map {'foreign.'.$_ => ++$idx } $relsource->columns; - my @cond = sort { $other_columns_idx{$a} cmp $other_columns_idx{$b} } keys(%{$rel_info->{cond}}); + my @cond = sort { $other_columns_idx{$a} cmp $other_columns_idx{$b} } keys(%{$rel_info->{cond}}); # Get the key information, mapping off the foreign/self markers my @refkeys = map {/^\w+\.(\w+)$/} @cond; @@ -209,11 +215,11 @@ sub parse { if($rel_table) { # Constraints are added only if applicable next unless $fk_constraint; - + # Make sure we dont create the same foreign key constraint twice my $key_test = join("\x00", sort @keys); next if $created_FK_rels{$rel_table}->{$key_test}; - + if (scalar(@keys)) { $created_FK_rels{$rel_table}->{$key_test} = 1; @@ -238,16 +244,14 @@ sub parse { # global parser_args add_fk_index param can be overridden on the rel def my $add_fk_index_rel = (exists $rel_info->{attrs}{add_fk_index}) ? $rel_info->{attrs}{add_fk_index} : $add_fk_index; - # Make sure we don't create another index with the same - # order of columns twice - # WARNING: don't sort the key columns because the order of + # Check that we do not create an index identical to the PK index + # (some RDBMS croak on this, and it generally doesn't make much sense) + # NOTE: we do not sort the key columns because the order of # columns is important for indexes and two indexes with the # same cols but different order are allowed and sometimes # needed - my $key_idx_test = join("\x00", @keys); - my $pk_idx_test = join("\x00", @primary); - next if $key_idx_test eq $pk_idx_test; + next if join("\x00", @keys) eq join("\x00", @primary); if ($add_fk_index_rel) { my $index = $table->add_index( @@ -428,7 +432,7 @@ sensible thing to do. =over 4 -=item Arguments: @classes +=item Arguments: \@class_names =back @@ -440,10 +444,10 @@ L, L =head1 AUTHORS -Jess Robinson +See L. -Matt S Trout +=head1 LICENSE -Ash Berlin +You may distribute this code under the same terms as Perl itself. -Alexander Hartmaier +=cut