X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FReplicated%2FPool.pm;h=e5fa1a10f14c620d49c16372a5c6823a48fcd971;hb=b09e9528b306fe3394ad0b588c36ebbc2b89c6fb;hp=ac943f6a8eb2c1dbf0c5dbf90c7a9baf7c5218a6;hpb=4c91f8249ba6525712f09c341c9a92f4bd18f512;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm b/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm index ac943f6..e5fa1a1 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated/Pool.pm @@ -138,6 +138,16 @@ has 'replicants' => ( }, ); +has next_unknown_replicant_id => ( + is => 'rw', + metaclass => 'Counter', + isa => Int, + default => 1, + provides => { + inc => 'inc_unknown_replicant_id' + }, +); + =head1 METHODS This class defines the following methods. @@ -166,7 +176,8 @@ sub connect_replicants { my $dsn; my $replicant = do { -# yes this is evil, but it only usually happens once +# yes this is evil, but it only usually happens once (for coderefs) +# this will fail if the coderef does not actually DBI::connect no warnings 'redefine'; my $connect = \&DBI::connect; local *DBI::connect = sub { @@ -176,15 +187,27 @@ sub connect_replicants { $self->connect_replicant($schema, $connect_info); }; - if (!$dsn && !$connect_coderef) { - $dsn = $connect_info->[0]; - $dsn = $dsn->{dsn} if (reftype($dsn)||'') eq 'HASH'; - } - $replicant->dsn($dsn); + my $key; - my ($key) = ($dsn =~ m/^dbi\:.+\:(.+)$/i); + if (!$dsn) { + if (!$connect_coderef) { + $dsn = $connect_info->[0]; + $dsn = $dsn->{dsn} if (reftype($dsn)||'') eq 'HASH'; + } + else { + # all attempts to get the DSN failed + $key = "UNKNOWN_" . $self->next_unknown_replicant_id; + $self->inc_unknown_replicant_id; + } + } + if ($dsn) { + $replicant->dsn($dsn); + ($key) = ($dsn =~ m/^dbi\:.+\:(.+)$/i); + } + $replicant->id($key); $self->set_replicant($key => $replicant); + push @newly_created, $replicant; }