package Fey::DBIManager::Source; BEGIN { $Fey::DBIManager::Source::VERSION = '0.16'; } use strict; use warnings; use namespace::autoclean; use DBI; use Fey::Exceptions qw( param_error ); use Moose; use MooseX::SemiAffordanceAccessor; use MooseX::StrictConstructor; has 'name' => ( is => 'ro', isa => 'Str', default => 'default', ); has 'dbh' => ( is => 'rw', isa => 'DBI::db', reader => '_dbh', writer => '_set_dbh', clearer => '_unset_dbh', predicate => '_has_dbh', lazy_build => 1, ); after '_unset_dbh' => sub { $_[0]->_clear_allows_nested_transactions() }; has 'dsn' => ( is => 'rw', isa => 'Str', predicate => '_has_dsn', writer => '_set_dsn', required => 1, ); has 'username' => ( is => 'ro', isa => 'Str', default => '', ); has 'password' => ( is => 'ro', isa => 'Str', default => '', ); has 'attributes' => ( is => 'rw', isa => 'HashRef', writer => '_set_attributes', default => sub { {} }, ); has 'post_connect' => ( is => 'ro', isa => 'CodeRef', ); has 'auto_refresh' => ( is => 'ro', isa => 'Bool', default => 1, ); has 'allows_nested_transactions' => ( is => 'ro', isa => 'Bool', lazy_build => 1, clearer => '_clear_allows_nested_transactions', ); has '_threaded' => ( is => 'ro', isa => 'Bool', lazy_build => 1, init_arg => undef, ); has '_pid' => ( is => 'rw', isa => 'Num', init_arg => undef, ); has '_tid' => ( is => 'rw', isa => 'Num', init_arg => undef, ); has 'ping_interval' => ( is => 'ro', isa => 'Maybe[Int]', default => 60, ); has '_last_ping' => ( is => 'rw', isa => 'Int', default => 0, clearer => '_clear_last_ping', lazy => 1, init_arg => undef, ); sub BUILD { my $self = shift; my $params = shift; $self->_set_attributes( { %{ $self->attributes() }, $self->_required_dbh_attributes(), } ); if ( $self->_has_dbh() ) { $self->_set_pid_tid(); $self->_apply_required_dbh_attributes(); } return $self; } sub clone { my $self = shift; my %p = map { $_ => $self->$_() } grep { defined $self->$_() } qw( dsn username password attributes post_connect auto_refresh ); return ( ref $self )->new( name => 'Clone of ' . $self->name(), %p, @_, ); } sub _required_dbh_attributes { return ( AutoCommit => 1, RaiseError => 1, PrintError => 0, PrintWarn => 1, ShowErrorStatement => 1, ); } sub _apply_required_dbh_attributes { my $self = shift; my %attr = $self->_required_dbh_attributes(); for my $k ( sort keys %attr ) { $self->dbh()->{$k} = $attr{$k}; } } sub dbh { my $self = shift; $self->_ensure_fresh_dbh() if $self->auto_refresh(); return $self->_dbh(); } sub _build_dbh { my $self = shift; my $dbh = DBI->connect( $self->dsn(), $self->username(), $self->password(), $self->attributes() ); $self->_set_pid_tid(); if ( my $pc = $self->post_connect() ) { $pc->($dbh); } $self->_set_dbh($dbh); return $self->_dbh(); } sub _build_allows_nested_transactions { my $self = shift; my $dbh = $self->dbh(); my $allows_nested = eval { # This error comes from DBI in its default implementation # of begin_work(). There didn't seem to be a way to shut # this off (setting PrintWarn to false does not do it, and # setting Warn to false does not stop it for all drivers, # either). Hopefully the message text won't change. # # The variant is for DBD::Mock, which has a slightly # different version of the text. local $SIG{__WARN__} = sub { warn @_ unless $_[0] =~ /Already (?:with)?in a transaction/i || $_[0] =~ /rollback ineffective/; }; $dbh->begin_work(); $dbh->begin_work(); $dbh->rollback(); $dbh->rollback(); 1; }; if ($@) { $dbh->rollback() unless $dbh->{AutoCommit}; } return $allows_nested; } sub _build__threaded { return threads->can('tid') ? 1 : 0; } sub _set_pid_tid { my $self = shift; $self->_set_pid($$); $self->_set_tid( threads->tid() ) if $self->_threaded(); } # The logic in this method is largely borrowed from # DBIx::Class::Storage::DBI. sub _ensure_fresh_dbh { my $self = shift; my $dbh = $self->_dbh(); if ( $self->_pid() != $$ ) { $dbh->{InactiveDestroy} = 1; $self->_unset_dbh(); undef $dbh; } if ( $self->_threaded() && $self->_tid() != threads->tid() ) { $self->_unset_dbh(); undef $dbh; } if ( $dbh && !( $dbh->{Active} && $self->_ping_dbh() ) ) { $dbh->disconnect(); $self->_unset_dbh(); } $self->_build_dbh() unless $self->_has_dbh(); } sub _ping_dbh { my $self = shift; my $now = time(); return 1 unless defined $self->ping_interval(); return 1 if ( $now - $self->_last_ping() ) < $self->ping_interval(); if ( $self->_dbh()->ping() ) { $self->_set_last_ping($now); return 1; } else { $self->_clear_last_ping(); return 0; } } __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: Wraps a single DBI handle =pod =head1 NAME Fey::DBIManager::Source - Wraps a single DBI handle =head1 VERSION version 0.16 =head1 SYNOPSIS my $source = Fey::DBIManager::Source->new( dbh => $dbh ); my $dbh = $source->dbh(); =head1 DESCRIPTION A C object provides a wrapper around a C handle which does things like ensure that handles are recreated properly after a fork. A source can be created from an existing DBI handle, or from parameters such as the dsn and authentication info. =head1 METHODS This class provides the following methods: =head2 Fey::DBIManager::Source->new(...) Creates a new C object. This method accepts a number of parameters. =over 4 =item * name The name of the source. This defaults to "default", which cooperates nicely with L. =item * dbh An already connected C handle. Even if this is given, you still need to provide the relevant connection parameters such as "dsn". =item * dsn A C DSN string. This is required. =item * username =item * password The username and password for the source. These both default to an empty string. =item * attributes A hash reference of attributes to be passed to C<< DBI->connect() >>. Note that some attributes are set for all handles. See L for more details. This attribute is optional. =item * post_connect This is an optional subroutine reference which will be called after a handle is created with C<< DBI->connect() >>. This is a handy way to set connection info or to set driver-specific attributes like "mysql_enable_utf8" or "pg_auto_escape". =item * auto_refresh A boolean value. The default is true, which means that whenever you call C<< $source->dbh() >>, the source ensures that the database handle is still active. See L for more details. =item * ping_interval An integer value representing the minimum number of seconds between successive pings of the database handle. See L for more details. The default value is 60 (seconds). A value of 0 causes the source to ping the database handle each time you call C<< $source->dbh() >>. If you explicitly set this value to C, then the database will never be pinged. Note that if "auto_refresh" is false, this attribute is meaningless. =back =head2 $source->dbh() Returns a database handle for the source. If you did not pass a handle to the constructor, this may create a new handle. If C is true, this may cause a new handle to be created. See L for more details. =head2 $source->dsn() =head2 $source->username() =head2 $source->password() =head2 $source->post_connect() =head2 $source->auto_connect() These methods simply return the value of the specified attribute. =head2 $source->attributes() This method returns attributes hash reference for the source. This will be a combination of any attributes passed to the constructor plus the L. =head2 $source->allows_nested_transactions() Returns a boolean indicating whether or not the database to which the source connects supports nested transactions. It does this by trying to issue two calls to C<< $dbh->begin_work() >> followed by two calls to C<< $dbh->rollback() >> (in an eval block). =head2 $source->clone(...) Returns a new source which is a clone of the original. If no name is provided, it is created as "Clone of ". The cloned source I share the original's database handle. Any arguments passed to this method are passed to the constructor when creating the clone. =head1 REQUIRED ATTRIBUTES In order to provide consistency for C, sources enforce a set of standard attributes on DBI handles: =over 4 =item * AutoCommit => 1 =item * RaiseError => 1 =item * PrintError => 0 =item * PrintWarn => 1 =item * ShowErrorStatement => 1 =back =head1 HANDLE FRESHNESS If C is true for a source, then every call to C<< $source->dbh() >> incurs the cost of a "freshness" check. The upside of this is that it will just work in the face of forks, threading, and lost connections. First, we check to see if the pid has changed since the handle was created. If it has, we set C to true in the handle before making a new handle. If the thread has changed, we just make a new handle. Next, we check C<< $dbh->{Active] >> and, if this is false, we disconnect the handle. Finally, we check that the handle has responded to C<< $dbh->ping() >> within the past C<< $source->ping_interval() >> seconds. If it hasn't, we call C<< $dbh->ping() >> and, if it returns false, we disconnect the handle. If the handle is not fresh, a new one is created. =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 AUTHOR Dave Rolsky =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2011 by Dave Rolsky. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut __END__