Moved search to resultset, created ResultSetInstance
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSet.pm
CommitLineData
89c0a5a2 1package DBIx::Class::ResultSet;
2
3use strict;
4use warnings;
5use overload
6 '0+' => 'count',
7 fallback => 1;
3c5b25c5 8use Data::Page;
89c0a5a2 9
ee38fa40 10=head1 NAME
11
38659261 12DBIX::Class::ResultSet - Responsible for fetching and creating resultset.
ee38fa40 13
14=head1 SYNOPSIS;
15
16$rs=MyApp::DB::Class->search(registered=>1);
17
18=head1 DESCRIPTION
19
38659261 20The resultset is also known as an iterator.
ee38fa40 21
22=head1 METHODS
23
24=over 4
25
26=item new <db_class> <attrs>
27
38659261 28The resultset constructor. Takes a db class and an
ee38fa40 29attribute hash (see below for more info on attributes)
30
31=cut
32
89c0a5a2 33sub new {
2f5911b2 34 my ($class, $db_class, $attrs) = @_;
89c0a5a2 35 #use Data::Dumper; warn Dumper(@_);
2f5911b2 36 $class = ref $class if ref $class;
89c0a5a2 37 $attrs = { %{ $attrs || {} } };
c7ce65e6 38 my %seen;
39 $attrs->{cols} ||= [ map { "me.$_" } $db_class->_select_columns ];
40 $attrs->{from} ||= [ { 'me' => $db_class->_table_name } ];
fef5d100 41 if ($attrs->{join}) {
c7ce65e6 42 foreach my $j (ref $attrs->{join} eq 'ARRAY'
43 ? (@{$attrs->{join}}) : ($attrs->{join})) {
44 if (ref $j eq 'HASH') {
45 $seen{$_} = 1 foreach keys %$j;
46 } else {
47 $seen{$j} = 1;
48 }
49 }
50 push(@{$attrs->{from}}, $db_class->_resolve_join($attrs->{join}, 'me'));
51 }
52 foreach my $pre (@{$attrs->{prefetch} || []}) {
53 push(@{$attrs->{from}}, $db_class->_resolve_join($pre, 'me'))
54 unless $seen{$pre};
55 push(@{$attrs->{cols}},
56 map { "$pre.$_" }
ddab752c 57 $db_class->_relationships->{$pre}->{class}->_select_columns);
fef5d100 58 }
89c0a5a2 59 my $new = {
2f5911b2 60 source => $db_class,
0a3c5b43 61 cols => $attrs->{cols},
89c0a5a2 62 cond => $attrs->{where},
0a3c5b43 63 from => $attrs->{from},
3c5b25c5 64 count => undef,
65 pager => undef,
89c0a5a2 66 attrs => $attrs };
2f5911b2 67 bless ($new, $class);
9229f20a 68 $new->pager if ($attrs->{page});
69 return $new;
89c0a5a2 70}
71
0a3c5b43 72=item search
73
74Runs a search against the current resultset.
75
76=cut
77
78sub search {
79 my $self = shift;
80
81 my $attrs = { %{$self->{attrs}} };
82 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
83 $attrs = { %{ pop(@_) } };
84 }
85
86 my $where = (@_ == 1 || ref $_[0] eq "HASH" ? shift: {@_});
87 if (defined $where) {
88 $where = (defined $attrs->{where}
89 ? { '-and' => [ $where, $attrs->{where} ] }
90 : $where);
91 $attrs->{where} = $where;
92 }
93
94 my $rs = $self->new($self->{source}, $attrs);
95
96 return (wantarray ? $rs->all : $rs);
97}
98
99
ee38fa40 100=item cursor
101
38659261 102Return a storage driven cursor to the given resultset.
ee38fa40 103
104=cut
105
73f58123 106sub cursor {
107 my ($self) = @_;
2f5911b2 108 my ($source, $attrs) = @{$self}{qw/source attrs/};
3c5b25c5 109 if ($attrs->{page}) {
110 $attrs->{rows} = $self->pager->entries_per_page;
111 $attrs->{offset} = $self->pager->skipped;
112 }
73f58123 113 return $self->{cursor}
2f5911b2 114 ||= $source->storage->select($self->{from}, $self->{cols},
73f58123 115 $attrs->{where},$attrs);
116}
117
ee38fa40 118=item slice <first> <last>
119
38659261 120return a number of elements from the given resultset.
ee38fa40 121
122=cut
123
89c0a5a2 124sub slice {
125 my ($self, $min, $max) = @_;
126 my $attrs = { %{ $self->{attrs} || {} } };
2f5911b2 127 $self->{source}->throw("Can't slice without where") unless $attrs->{where};
89c0a5a2 128 $attrs->{offset} = $min;
129 $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
2f5911b2 130 my $slice = $self->new($self->{source}, $attrs);
89c0a5a2 131 return (wantarray ? $slice->all : $slice);
132}
133
ee38fa40 134=item next
135
38659261 136Returns the next element in this resultset.
ee38fa40 137
138=cut
139
89c0a5a2 140sub next {
141 my ($self) = @_;
73f58123 142 my @row = $self->cursor->next;
89c0a5a2 143 return unless (@row);
c7ce65e6 144 return $self->_construct_object(@row);
145}
146
147sub _construct_object {
148 my ($self, @row) = @_;
90f3f5ff 149 my @cols = @{ $self->{attrs}{cols} };
150 s/^me\.// for @cols;
3cbddeb1 151 @cols = grep { /\(/ or ! /\./ } @cols;
33ce49d6 152 my $new;
c7ce65e6 153 unless ($self->{attrs}{prefetch}) {
2f5911b2 154 $new = $self->{source}->_row_to_object(\@cols, \@row);
c7ce65e6 155 } else {
156 my @main = splice(@row, 0, scalar @cols);
2f5911b2 157 $new = $self->{source}->_row_to_object(\@cols, \@main);
c7ce65e6 158 PRE: foreach my $pre (@{$self->{attrs}{prefetch}}) {
2f5911b2 159 my $rel_obj = $self->{source}->_relationships->{$pre};
160 my $pre_class = $self->{source}->resolve_class($rel_obj->{class});
dd417d06 161 my @pre_cols = $pre_class->_select_columns;
c7ce65e6 162 my @vals = splice(@row, 0, scalar @pre_cols);
dd417d06 163 my $fetched = $pre_class->_row_to_object(\@pre_cols, \@vals);
2f5911b2 164 $self->{source}->throw("No accessor for prefetched $pre")
c7ce65e6 165 unless defined $rel_obj->{attrs}{accessor};
166 if ($rel_obj->{attrs}{accessor} eq 'single') {
167 foreach my $pri ($rel_obj->{class}->primary_columns) {
7cd300ea 168 unless (defined $fetched->get_column($pri)) {
169 undef $fetched;
170 last;
171 }
c7ce65e6 172 }
173 $new->{_relationship_data}{$pre} = $fetched;
174 } elsif ($rel_obj->{attrs}{accessor} eq 'filter') {
175 $new->{_inflated_column}{$pre} = $fetched;
176 } else {
2f5911b2 177 $self->{source}->throw("Don't know how to store prefetched $pre");
c7ce65e6 178 }
179 }
c7ce65e6 180 }
33ce49d6 181 $new = $self->{attrs}{record_filter}->($new)
182 if exists $self->{attrs}{record_filter};
183 return $new;
89c0a5a2 184}
185
ee38fa40 186=item count
187
188Performs an SQL count with the same query as the resultset was built
189with to find the number of elements.
190
191=cut
192
193
89c0a5a2 194sub count {
195 my ($self) = @_;
59f8e584 196 my $attrs = { %{ $self->{attrs} } };
3c5b25c5 197 unless ($self->{count}) {
198 # offset and order by are not needed to count
199 delete $attrs->{$_} for qw/offset order_by/;
200
201 my @cols = 'COUNT(*)';
2f5911b2 202 $self->{count} = $self->{source}->storage->select_single(
203 $self->{from}, \@cols, $self->{cond}, $attrs);
3c5b25c5 204 }
205 return 0 unless $self->{count};
9229f20a 206 return $self->{pager}->entries_on_this_page if ($self->{pager});
3c5b25c5 207 return ( $attrs->{rows} && $attrs->{rows} < $self->{count} )
59f8e584 208 ? $attrs->{rows}
3c5b25c5 209 : $self->{count};
89c0a5a2 210}
211
ee38fa40 212=item all
213
38659261 214Returns all elements in the resultset. Is called implictly if the search
ee38fa40 215method is used in list context.
216
217=cut
218
89c0a5a2 219sub all {
220 my ($self) = @_;
c7ce65e6 221 return map { $self->_construct_object(@$_); }
73f58123 222 $self->cursor->all;
89c0a5a2 223}
224
ee38fa40 225=item reset
226
38659261 227Reset this resultset's cursor, so you can iterate through the elements again.
ee38fa40 228
229=cut
230
89c0a5a2 231sub reset {
232 my ($self) = @_;
73f58123 233 $self->cursor->reset;
89c0a5a2 234 return $self;
235}
236
ee38fa40 237=item first
238
38659261 239resets the resultset and returns the first element.
ee38fa40 240
241=cut
242
89c0a5a2 243sub first {
244 return $_[0]->reset->next;
245}
246
ee38fa40 247=item delete
248
38659261 249Deletes all elements in the resultset.
ee38fa40 250
251=cut
252
28927b50 253sub delete {
89c0a5a2 254 my ($self) = @_;
255 $_->delete for $self->all;
256 return 1;
257}
258
28927b50 259*delete_all = \&delete; # Yeah, yeah, yeah ...
260
ee38fa40 261=item pager
262
263Returns a L<Data::Page> object for the current resultset. Only makes
264sense for queries with page turned on.
265
266=cut
267
3c5b25c5 268sub pager {
269 my ($self) = @_;
270 my $attrs = $self->{attrs};
271 delete $attrs->{offset};
272 my $rows_per_page = delete $attrs->{rows} || 10;
273 $self->{pager} ||= Data::Page->new(
274 $self->count, $rows_per_page, $attrs->{page} || 1);
275 $attrs->{rows} = $rows_per_page;
276 return $self->{pager};
277}
278
ee38fa40 279=item page <page>
280
38659261 281Returns a new resultset representing a given page.
ee38fa40 282
283=cut
284
3c5b25c5 285sub page {
286 my ($self, $page) = @_;
287 my $attrs = $self->{attrs};
288 $attrs->{page} = $page;
2f5911b2 289 return $self->new($self->{source}, $attrs);
3c5b25c5 290}
291
ee38fa40 292=back
076652e8 293
294=head1 Attributes
295
38659261 296The resultset is responsible for handling the various attributes that
076652e8 297can be passed in with the search functions. Here's an overview of them:
298
299=over 4
300
301=item order_by
302
303Which column to order the results by.
ee38fa40 304
305=item cols
306
307Which cols should be retrieved on the first search.
308
309=item join
310
311Contains a list of relations that should be joined for this query. Can also
312contain a hash referece to refer to that relation's relations.
313
314=item from
315
316This attribute can contain a arrayref of elements. each element can be another
317arrayref, to nest joins, or it can be a hash which represents the two sides
318of the join.
319
320*NOTE* Use this on your own risk. This allows you to shoot your foot off!
321
076652e8 322=item page
323
324Should the resultset be paged? This can also be enabled by using the
325'page' option.
326
327=item rows
328
329For paged resultsset, how many rows per page
330
331=item offset
332
333For paged resultsset, which page to start on.
334
335=back
336
89c0a5a2 3371;