A couple of typos, and general whitespace cleanup (ick)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Replicated / WithDSN.pm
CommitLineData
ee356d00 1package DBIx::Class::Storage::DBI::Replicated::WithDSN;
2
3use Moose::Role;
4requires qw/_query_start/;
5
6use namespace::clean -except => 'meta';
7
8=head1 NAME
9
10DBIx::Class::Storage::DBI::Replicated::WithDSN - A DBI Storage Role with DSN
11information in trace output
12
13=head1 SYNOPSIS
14
15This class is used internally by L<DBIx::Class::Storage::DBI::Replicated>.
d4daee7b 16
ee356d00 17=head1 DESCRIPTION
18
19This role adds C<DSN: > info to storage debugging output.
20
21=head1 METHODS
22
23This class defines the following methods.
24
25=head2 around: _query_start
26
27Add C<DSN: > to debugging output.
28
29=cut
30
31around '_query_start' => sub {
32 my ($method, $self, $sql, @bind) = @_;
33 my $dsn = $self->_dbi_connect_info->[0];
cda869a8 34 my($op, $rest) = (($sql=~m/^(\w+)(.+)$/),'NOP', 'NO SQL');
1fa4a3e2 35 my $storage_type = $self->can('active') ? 'REPLICANT' : 'MASTER';
36
cda869a8 37 $self->$method("$op [DSN_$storage_type=$dsn]$rest", @bind);
ee356d00 38};
39
40=head1 ALSO SEE
41
42L<DBIx::Class::Storage::DBI>
43
44=head1 AUTHOR
45
46John Napiorkowski <john.napiorkowski@takkle.com>
47
48=head1 LICENSE
49
50You may distribute this code under the same terms as Perl itself.
51
52=cut
53
541;