1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
package DBIx::Class::Storage::DBI::Cursor;
use base qw/DBIx::Class::Cursor/;
use strict;
use warnings;
=head1 NAME
DBIx::Class::Storage::DBI::Cursor - Object representing a query cursor on a
resultset.
=head1 SYNOPSIS
my $cursor = $schema->resultset('CD')->cursor();
my $first_cd = $cursor->next;
=head1 DESCRIPTION
A Cursor represents a query cursor on a L<DBIx::Class::ResultSet> object. It
allows for traversing the result set with L</next>, retrieving all results with
L</all> and resetting the cursor with L</reset>.
Usually, you would use the cursor methods built into L<DBIx::Class::ResultSet>
to traverse it. See L<DBIx::Class::ResultSet/next>,
L<DBIx::Class::ResultSet/reset> and L<DBIx::Class::ResultSet/all> for more
information.
=head1 METHODS
=head2 new
Returns a new L<DBIx::Class::Storage::DBI::Cursor> object.
=cut
sub new {
my ($class, $storage, $args, $attrs) = @_;
#use Data::Dumper; warn Dumper(@_);
$class = ref $class if ref $class;
my $new = {
storage => $storage,
args => $args,
pos => 0,
attrs => $attrs,
pid => $$,
};
$new->{tid} = threads->tid if $INC{'threads.pm'};
return bless ($new, $class);
}
=head2 next
=over 4
=item Arguments: none
=item Return Value: \@row_columns
=back
Advances the cursor to the next row and returns an arrayref of column values.
=cut
sub next {
my ($self) = @_;
$self->_check_forks_threads;
if ($self->{attrs}{rows} && $self->{pos} >= $self->{attrs}{rows}) {
$self->{sth}->finish if $self->{sth}->{Active};
delete $self->{sth};
$self->{done} = 1;
}
return if $self->{done};
unless ($self->{sth}) {
$self->{sth} = ($self->{storage}->_select(@{$self->{args}}))[1];
if ($self->{attrs}{software_limit}) {
if (my $offset = $self->{attrs}{offset}) {
$self->{sth}->fetch for 1 .. $offset;
}
}
}
my @row = $self->{sth}->fetchrow_array;
if (@row) {
$self->{pos}++;
} else {
delete $self->{sth};
$self->{done} = 1;
}
return @row;
}
=head2 all
=over 4
=item Arguments: none
=item Return Value: \@row_columns+
=back
Returns a list of arrayrefs of column values for all rows in the
L<DBIx::Class::ResultSet>.
=cut
sub all {
my ($self) = @_;
$self->_check_forks_threads;
return $self->SUPER::all if $self->{attrs}{rows};
$self->{sth}->finish if $self->{sth}->{Active};
delete $self->{sth};
my ($rv, $sth) = $self->{storage}->_select(@{$self->{args}});
return @{$sth->fetchall_arrayref};
}
=head2 reset
Resets the cursor to the beginning of the L<DBIx::Class::ResultSet>.
=cut
sub reset {
my ($self) = @_;
$self->_check_forks_threads;
$self->{sth}->finish if $self->{sth}->{Active};
$self->_soft_reset;
}
sub _soft_reset {
my ($self) = @_;
delete $self->{sth};
$self->{pos} = 0;
delete $self->{done};
return $self;
}
sub _check_forks_threads {
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} = $$;
}
}
sub DESTROY {
my ($self) = @_;
$self->_check_forks_threads;
$self->{sth}->finish if $self->{sth} && $self->{sth}->{Active};
}
1;
|