X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FReplicated%2FReplicant.pm;h=9e32ca39e837cbc5c472c0fa3680e834d18c4bb0;hb=41916570b3a93b05746e23b73c9a9b5005bc0d2e;hp=e1e7f8d537be6ad347396aa56bf938fcab199f1d;hpb=de5dc9efd2c3575f78a7dc71c50d571c9a17c38d;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm b/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm index e1e7f8d..9e32ca3 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm @@ -1,10 +1,14 @@ package DBIx::Class::Storage::DBI::Replicated::Replicant; use Moose::Role; +requires qw/_query_start/; +use MooseX::Types::Moose qw/Bool/; + +use namespace::clean -except => 'meta'; =head1 NAME -DBIx::Class::Storage::DBI::Replicated::Replicant; A replicated DBI Storage Role +DBIx::Class::Storage::DBI::Replicated::Replicant - A replicated DBI Storage Role =head1 SYNOPSIS @@ -40,29 +44,42 @@ storage driver for more information. =cut has 'active' => ( - is=>'rw', - isa=>'Bool', - lazy=>1, - required=>1, - default=>1, + is=>'rw', + isa=>Bool, + lazy=>1, + required=>1, + default=>1, ); =head1 METHODS This class defines the following methods. -=head2 after: _query_start +=head2 around: _query_start advice iof the _query_start method to add more debuggin =cut around '_query_start' => sub { - my ($method, $self, $sql, @bind) = @_; - my $dsn = $self->connect_info->[0]; - $self->$method("DSN: $dsn SQL: $sql", @bind); + my ($method, $self, $sql, @bind) = @_; + my $dsn = $self->_dbi_connect_info->[0]; + $self->$method("DSN: $dsn SQL: $sql", @bind); }; +=head2 debugobj + +Override the debugobj method to redirect this method call back to the master. + +=cut + +sub debugobj { + return shift->schema->storage->debugobj; +} + +=head1 ALSO SEE + +L<http://en.wikipedia.org/wiki/Replicant> =head1 AUTHOR @@ -74,4 +91,4 @@ You may distribute this code under the same terms as Perl itself. =cut -1; \ No newline at end of file +1;