args => $args,
pos => 0,
attrs => $attrs,
- pid => $$,
+ _dbh_gen => $storage->{_dbh_gen},
};
- $new->{tid} = threads->tid if $INC{'threads.pm'};
-
return bless ($new, $class);
}
=cut
-sub next {
- my ($self) = @_;
+sub _dbh_next {
+ my ($storage, $dbh, $self) = @_;
- $self->_check_forks_threads;
+ $self->_check_dbh_gen;
if ($self->{attrs}{rows} && $self->{pos} >= $self->{attrs}{rows}) {
$self->{sth}->finish if $self->{sth}->{Active};
delete $self->{sth};
}
return if $self->{done};
unless ($self->{sth}) {
- $self->{sth} = ($self->{storage}->_select(@{$self->{args}}))[1];
+ $self->{sth} = ($storage->_select(@{$self->{args}}))[1];
if ($self->{attrs}{software_limit}) {
if (my $offset = $self->{attrs}{offset}) {
$self->{sth}->fetch for 1 .. $offset;
return @row;
}
+sub next {
+ my ($self) = @_;
+ $self->{storage}->dbh_do($self->can('_dbh_next'), $self);
+}
+
=head2 all
=over 4
=cut
-sub all {
- my ($self) = @_;
+sub _dbh_all {
+ my ($storage, $dbh, $self) = @_;
- $self->_check_forks_threads;
- return $self->SUPER::all if $self->{attrs}{rows};
+ $self->_check_dbh_gen;
$self->{sth}->finish if $self->{sth}->{Active};
delete $self->{sth};
- my ($rv, $sth) = $self->{storage}->_select(@{$self->{args}});
+ my ($rv, $sth) = $storage->_select(@{$self->{args}});
return @{$sth->fetchall_arrayref};
}
+sub all {
+ my ($self) = @_;
+ return $self->SUPER::all if $self->{attrs}{rows};
+ $self->{storage}->dbh_do($self->can('_dbh_all'), $self);
+}
+
=head2 reset
Resets the cursor to the beginning of the L<DBIx::Class::ResultSet>.
sub reset {
my ($self) = @_;
- $self->_check_forks_threads;
- $self->{sth}->finish if $self->{sth}->{Active};
+ # No need to care about failures here
+ eval { $self->{sth}->finish if $self->{sth} && $self->{sth}->{Active} };
$self->_soft_reset;
}
my ($self) = @_;
delete $self->{sth};
- $self->{pos} = 0;
delete $self->{done};
+ $self->{pos} = 0;
return $self;
}
-sub _check_forks_threads {
+sub _check_dbh_gen {
my ($self) = @_;
- if($INC{'threads.pm'} && $self->{tid} != threads->tid) {
- $self->_soft_reset;
- $self->{tid} = threads->tid;
- }
-
- if($self->{pid} != $$) {
- $self->_soft_reset;
- $self->{pid} = $$;
+ if($self->{_dbh_gen} != $self->{storage}->{_dbh_gen}) {
+ $self->{_dbh_gen} = $self->{storage}->{_dbh_gen};
+ $self->_soft_reset;
}
}
sub DESTROY {
my ($self) = @_;
- $self->_check_forks_threads;
- $self->{sth}->finish if $self->{sth} && $self->{sth}->{Active};
+ # None of the reasons this would die matter if we're in DESTROY anyways
+ eval { $self->{sth}->finish if $self->{sth} && $self->{sth}->{Active} };
}
1;