has_many prefetch works. no, seriously
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSet.pm
CommitLineData
89c0a5a2 1package DBIx::Class::ResultSet;
2
3use strict;
4use warnings;
5use overload
ebaefbc2 6 '0+' => \&count,
a910dc57 7 'bool' => sub { 1; },
89c0a5a2 8 fallback => 1;
3c5b25c5 9use Data::Page;
ea20d0fd 10use Storable;
89c0a5a2 11
701da8c4 12use base qw/DBIx::Class/;
13__PACKAGE__->load_components(qw/AccessorGroup/);
a50bcd52 14__PACKAGE__->mk_group_accessors('simple' => qw/result_source result_class/);
701da8c4 15
ee38fa40 16=head1 NAME
17
bfab575a 18DBIx::Class::ResultSet - Responsible for fetching and creating resultset.
ee38fa40 19
bfab575a 20=head1 SYNOPSIS
ee38fa40 21
a33df5d4 22 my $rs = $schema->resultset('User')->search(registered => 1);
23 my @rows = $schema->resultset('Foo')->search(bar => 'baz');
ee38fa40 24
25=head1 DESCRIPTION
26
bfab575a 27The resultset is also known as an iterator. It is responsible for handling
a33df5d4 28queries that may return an arbitrary number of rows, e.g. via L</search>
bfab575a 29or a C<has_many> relationship.
ee38fa40 30
a33df5d4 31In the examples below, the following table classes are used:
32
33 package MyApp::Schema::Artist;
34 use base qw/DBIx::Class/;
f4409169 35 __PACKAGE__->load_components(qw/Core/);
a33df5d4 36 __PACKAGE__->table('artist');
37 __PACKAGE__->add_columns(qw/artistid name/);
38 __PACKAGE__->set_primary_key('artistid');
39 __PACKAGE__->has_many(cds => 'MyApp::Schema::CD');
40 1;
41
42 package MyApp::Schema::CD;
43 use base qw/DBIx::Class/;
f4409169 44 __PACKAGE__->load_components(qw/Core/);
45 __PACKAGE__->table('cd');
a33df5d4 46 __PACKAGE__->add_columns(qw/cdid artist title year/);
47 __PACKAGE__->set_primary_key('cdid');
48 __PACKAGE__->belongs_to(artist => 'MyApp::Schema::Artist');
49 1;
50
ee38fa40 51=head1 METHODS
52
87c4e602 53=head2 new
54
55=head3 Arguments: ($source, \%$attrs)
ee38fa40 56
a33df5d4 57The resultset constructor. Takes a source object (usually a
181a28f4 58L<DBIx::Class::ResultSourceProxy::Table>) and an attribute hash (see L</ATTRIBUTES>
a33df5d4 59below). Does not perform any queries -- these are executed as needed by the
60other methods.
61
62Generally you won't need to construct a resultset manually. You'll
63automatically get one from e.g. a L</search> called in scalar context:
64
65 my $rs = $schema->resultset('CD')->search({ title => '100th Window' });
ee38fa40 66
67=cut
68
89c0a5a2 69sub new {
fea3d045 70 my $class = shift;
f9db5527 71 return $class->new_result(@_) if ref $class;
fea3d045 72 my ($source, $attrs) = @_;
b98e75f6 73 #use Data::Dumper; warn Dumper($attrs);
ea20d0fd 74 $attrs = Storable::dclone($attrs || {}); # { %{ $attrs || {} } };
c7ce65e6 75 my %seen;
6aeb9185 76 my $alias = ($attrs->{alias} ||= 'me');
a9433341 77 if ($attrs->{cols} || !$attrs->{select}) {
78 delete $attrs->{as} if $attrs->{cols};
976f3686 79 my @cols = ($attrs->{cols}
80 ? @{delete $attrs->{cols}}
a9433341 81 : $source->columns);
6aeb9185 82 $attrs->{select} = [ map { m/\./ ? $_ : "${alias}.$_" } @cols ];
976f3686 83 }
6aeb9185 84 $attrs->{as} ||= [ map { m/^$alias\.(.*)$/ ? $1 : $_ } @{$attrs->{select}} ];
5ac6a044 85 if (my $include = delete $attrs->{include_columns}) {
86 push(@{$attrs->{select}}, @$include);
87 push(@{$attrs->{as}}, map { m/([^\.]+)$/; $1; } @$include);
88 }
976f3686 89 #use Data::Dumper; warn Dumper(@{$attrs}{qw/select as/});
fea3d045 90 $attrs->{from} ||= [ { $alias => $source->from } ];
8fab5eef 91 $attrs->{seen_join} ||= {};
b52e9bf8 92 if (my $join = delete $attrs->{join}) {
93 foreach my $j (ref $join eq 'ARRAY'
94 ? (@{$join}) : ($join)) {
c7ce65e6 95 if (ref $j eq 'HASH') {
96 $seen{$_} = 1 foreach keys %$j;
97 } else {
98 $seen{$j} = 1;
99 }
100 }
8fab5eef 101 push(@{$attrs->{from}}, $source->resolve_join($join, $attrs->{alias}, $attrs->{seen_join}));
c7ce65e6 102 }
54540863 103 $attrs->{group_by} ||= $attrs->{select} if delete $attrs->{distinct};
b3e8ac9b 104
a86b1efe 105 $attrs->{order_by} = [ $attrs->{order_by} ]
106 if $attrs->{order_by} && !ref($attrs->{order_by});
107 $attrs->{order_by} ||= [];
108
0f66a01b 109 my $collapse = {};
110
b3e8ac9b 111 if (my $prefetch = delete $attrs->{prefetch}) {
0f66a01b 112 my @pre_order;
b3e8ac9b 113 foreach my $p (ref $prefetch eq 'ARRAY'
114 ? (@{$prefetch}) : ($prefetch)) {
115 if( ref $p eq 'HASH' ) {
116 foreach my $key (keys %$p) {
117 push(@{$attrs->{from}}, $source->resolve_join($p, $attrs->{alias}))
118 unless $seen{$key};
119 }
120 }
121 else {
122 push(@{$attrs->{from}}, $source->resolve_join($p, $attrs->{alias}))
123 unless $seen{$p};
124 }
a86b1efe 125 my @prefetch = $source->resolve_prefetch(
0f66a01b 126 $p, $attrs->{alias}, {}, \@pre_order, $collapse);
b3e8ac9b 127 #die Dumper \@cols;
489709af 128 push(@{$attrs->{select}}, map { $_->[0] } @prefetch);
129 push(@{$attrs->{as}}, map { $_->[1] } @prefetch);
b3e8ac9b 130 }
0f66a01b 131 push(@{$attrs->{order_by}}, @pre_order);
fef5d100 132 }
b3e8ac9b 133
6aeb9185 134 if ($attrs->{page}) {
135 $attrs->{rows} ||= 10;
136 $attrs->{offset} ||= 0;
137 $attrs->{offset} += ($attrs->{rows} * ($attrs->{page} - 1));
138 }
0f66a01b 139
140#if (keys %{$collapse}) {
141# use Data::Dumper; warn Dumper($collapse);
142#}
143
89c0a5a2 144 my $new = {
701da8c4 145 result_source => $source,
a50bcd52 146 result_class => $attrs->{result_class} || $source->result_class,
89c0a5a2 147 cond => $attrs->{where},
0a3c5b43 148 from => $attrs->{from},
0f66a01b 149 collapse => $collapse,
3c5b25c5 150 count => undef,
93b004d3 151 page => delete $attrs->{page},
3c5b25c5 152 pager => undef,
89c0a5a2 153 attrs => $attrs };
2f5911b2 154 bless ($new, $class);
9229f20a 155 return $new;
89c0a5a2 156}
157
bfab575a 158=head2 search
0a3c5b43 159
87f0da6a 160 my @obj = $rs->search({ foo => 3 }); # "... WHERE foo = 3"
161 my $new_rs = $rs->search({ foo => 3 });
162
6009260a 163If you need to pass in additional attributes but no additional condition,
a33df5d4 164call it as C<search({}, \%attrs);>.
87f0da6a 165
a33df5d4 166 # "SELECT foo, bar FROM $class_table"
167 my @all = $class->search({}, { cols => [qw/foo bar/] });
0a3c5b43 168
169=cut
170
171sub search {
172 my $self = shift;
173
ff7bb7a1 174 my $rs;
175 if( @_ ) {
176
177 my $attrs = { %{$self->{attrs}} };
8839560b 178 my $having = delete $attrs->{having};
ff7bb7a1 179 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
180 $attrs = { %$attrs, %{ pop(@_) } };
181 }
6009260a 182
3e0e9e27 183 my $where = (@_
184 ? ((@_ == 1 || ref $_[0] eq "HASH")
185 ? shift
186 : ((@_ % 2)
187 ? $self->throw_exception(
188 "Odd number of arguments to search")
189 : {@_}))
190 : undef());
ff7bb7a1 191 if (defined $where) {
192 $where = (defined $attrs->{where}
ad3d2d7c 193 ? { '-and' =>
194 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
195 $where, $attrs->{where} ] }
0a3c5b43 196 : $where);
ff7bb7a1 197 $attrs->{where} = $where;
198 }
0a3c5b43 199
8839560b 200 if (defined $having) {
201 $having = (defined $attrs->{having}
202 ? { '-and' =>
203 [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
204 $having, $attrs->{having} ] }
205 : $having);
206 $attrs->{having} = $having;
207 }
208
ff7bb7a1 209 $rs = (ref $self)->new($self->result_source, $attrs);
210 }
211 else {
212 $rs = $self;
213 $rs->reset();
214 }
0a3c5b43 215 return (wantarray ? $rs->all : $rs);
216}
217
87f0da6a 218=head2 search_literal
219
6009260a 220 my @obj = $rs->search_literal($literal_where_cond, @bind);
221 my $new_rs = $rs->search_literal($literal_where_cond, @bind);
222
223Pass a literal chunk of SQL to be added to the conditional part of the
87f0da6a 224resultset.
6009260a 225
bfab575a 226=cut
fd9f5466 227
6009260a 228sub search_literal {
229 my ($self, $cond, @vals) = @_;
230 my $attrs = (ref $vals[$#vals] eq 'HASH' ? { %{ pop(@vals) } } : {});
231 $attrs->{bind} = [ @{$self->{attrs}{bind}||[]}, @vals ];
232 return $self->search(\$cond, $attrs);
233}
0a3c5b43 234
87c4e602 235=head2 find
236
237=head3 Arguments: (@colvalues) | (\%cols, \%attrs?)
87f0da6a 238
239Finds a row based on its primary key or unique constraint. For example:
240
87f0da6a 241 my $cd = $schema->resultset('CD')->find(5);
242
243Also takes an optional C<key> attribute, to search by a specific key or unique
244constraint. For example:
245
fd9f5466 246 my $cd = $schema->resultset('CD')->find(
87f0da6a 247 {
248 artist => 'Massive Attack',
249 title => 'Mezzanine',
250 },
251 { key => 'artist_title' }
252 );
253
a33df5d4 254See also L</find_or_create> and L</update_or_create>.
255
87f0da6a 256=cut
716b3d29 257
258sub find {
259 my ($self, @vals) = @_;
260 my $attrs = (@vals > 1 && ref $vals[$#vals] eq 'HASH' ? pop(@vals) : {});
87f0da6a 261
701da8c4 262 my @cols = $self->result_source->primary_columns;
87f0da6a 263 if (exists $attrs->{key}) {
701da8c4 264 my %uniq = $self->result_source->unique_constraints;
87f0da6a 265 $self->( "Unknown key " . $attrs->{key} . " on " . $self->name )
266 unless exists $uniq{$attrs->{key}};
267 @cols = @{ $uniq{$attrs->{key}} };
268 }
269 #use Data::Dumper; warn Dumper($attrs, @vals, @cols);
701da8c4 270 $self->throw_exception( "Can't find unless a primary key or unique constraint is defined" )
87f0da6a 271 unless @cols;
272
716b3d29 273 my $query;
274 if (ref $vals[0] eq 'HASH') {
01bc091e 275 $query = { %{$vals[0]} };
87f0da6a 276 } elsif (@cols == @vals) {
716b3d29 277 $query = {};
87f0da6a 278 @{$query}{@cols} = @vals;
716b3d29 279 } else {
280 $query = {@vals};
281 }
01bc091e 282 foreach (keys %$query) {
283 next if m/\./;
284 $query->{$self->{attrs}{alias}.'.'.$_} = delete $query->{$_};
285 }
716b3d29 286 #warn Dumper($query);
a04ab285 287 return (keys %$attrs
288 ? $self->search($query,$attrs)->single
289 : $self->single($query));
716b3d29 290}
291
b52e9bf8 292=head2 search_related
293
294 $rs->search_related('relname', $cond?, $attrs?);
295
a33df5d4 296Search the specified relationship. Optionally specify a condition for matching
297records.
298
b52e9bf8 299=cut
300
6aeb9185 301sub search_related {
64acc2bc 302 return shift->related_resultset(shift)->search(@_);
6aeb9185 303}
b52e9bf8 304
bfab575a 305=head2 cursor
ee38fa40 306
bfab575a 307Returns a storage-driven cursor to the given resultset.
ee38fa40 308
309=cut
310
73f58123 311sub cursor {
312 my ($self) = @_;
701da8c4 313 my ($attrs) = $self->{attrs};
6aeb9185 314 $attrs = { %$attrs };
73f58123 315 return $self->{cursor}
701da8c4 316 ||= $self->result_source->storage->select($self->{from}, $attrs->{select},
73f58123 317 $attrs->{where},$attrs);
318}
319
a04ab285 320=head2 single
321
322Inflates the first result without creating a cursor
323
324=cut
325
326sub single {
327 my ($self, $extra) = @_;
328 my ($attrs) = $self->{attrs};
329 $attrs = { %$attrs };
330 if ($extra) {
331 if (defined $attrs->{where}) {
332 $attrs->{where} = {
333 '-and'
334 => [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
335 delete $attrs->{where}, $extra ]
336 };
337 } else {
338 $attrs->{where} = $extra;
339 }
340 }
341 my @data = $self->result_source->storage->select_single(
342 $self->{from}, $attrs->{select},
343 $attrs->{where},$attrs);
344 return (@data ? $self->_construct_object(@data) : ());
345}
346
347
87f0da6a 348=head2 search_like
349
a33df5d4 350Perform a search, but use C<LIKE> instead of equality as the condition. Note
351that this is simply a convenience method; you most likely want to use
352L</search> with specific operators.
353
354For more information, see L<DBIx::Class::Manual::Cookbook>.
87f0da6a 355
356=cut
58a4bd18 357
358sub search_like {
359 my $class = shift;
360 my $attrs = { };
361 if (@_ > 1 && ref $_[$#_] eq 'HASH') {
362 $attrs = pop(@_);
363 }
364 my $query = ref $_[0] eq "HASH" ? { %{shift()} }: {@_};
365 $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
366 return $class->search($query, { %$attrs });
367}
368
87c4e602 369=head2 slice
370
371=head3 Arguments: ($first, $last)
ee38fa40 372
bfab575a 373Returns a subset of elements from the resultset.
ee38fa40 374
375=cut
376
89c0a5a2 377sub slice {
378 my ($self, $min, $max) = @_;
379 my $attrs = { %{ $self->{attrs} || {} } };
6aeb9185 380 $attrs->{offset} ||= 0;
381 $attrs->{offset} += $min;
89c0a5a2 382 $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
701da8c4 383 my $slice = (ref $self)->new($self->result_source, $attrs);
89c0a5a2 384 return (wantarray ? $slice->all : $slice);
385}
386
87f0da6a 387=head2 next
ee38fa40 388
a33df5d4 389Returns the next element in the resultset (C<undef> is there is none).
390
391Can be used to efficiently iterate over records in the resultset:
392
393 my $rs = $schema->resultset('CD')->search({});
394 while (my $cd = $rs->next) {
395 print $cd->title;
396 }
ee38fa40 397
398=cut
399
89c0a5a2 400sub next {
401 my ($self) = @_;
3e0e9e27 402 my $cache;
403 if( @{$cache = $self->{all_cache} || []}) {
64acc2bc 404 $self->{all_cache_position} ||= 0;
405 my $obj = $cache->[$self->{all_cache_position}];
406 $self->{all_cache_position}++;
407 return $obj;
408 }
3e0e9e27 409 if ($self->{attrs}{cache}) {
0f66a01b 410 $self->{all_cache_position} = 1;
3e0e9e27 411 return ($self->all)[0];
412 }
0f66a01b 413 my @row = (exists $self->{stashed_row}
414 ? @{delete $self->{stashed_row}}
415 : $self->cursor->next);
a953d8d9 416# warn Dumper(\@row); use Data::Dumper;
89c0a5a2 417 return unless (@row);
c7ce65e6 418 return $self->_construct_object(@row);
419}
420
421sub _construct_object {
422 my ($self, @row) = @_;
b3e8ac9b 423 my @as = @{ $self->{attrs}{as} };
0f66a01b 424
425 my $info = $self->_collapse_result(\@as, \@row);
426
b3e8ac9b 427 #use Data::Dumper; warn Dumper(\@as, $info);
a50bcd52 428 my $new = $self->result_class->inflate_result($self->result_source, @$info);
0f66a01b 429
33ce49d6 430 $new = $self->{attrs}{record_filter}->($new)
431 if exists $self->{attrs}{record_filter};
f9cc31dd 432
33ce49d6 433 return $new;
89c0a5a2 434}
435
0f66a01b 436sub _collapse_result {
437 my ($self, $as, $row, $prefix) = @_;
438
439 my %const;
440
441 my @copy = @$row;
5a5bec6c 442 foreach my $this_as (@$as) {
443 my $val = shift @copy;
444 if (defined $prefix) {
445 if ($this_as =~ m/^\Q${prefix}.\E(.+)$/) {
446 my $remain = $1;
447 $remain =~ /^(?:(.*)\.)?([^\.]+)$/;
448 $const{$1||''}{$2} = $val;
449 }
450 } else {
451 $this_as =~ /^(?:(.*)\.)?([^\.]+)$/;
452 $const{$1||''}{$2} = $val;
0f66a01b 453 }
0f66a01b 454 }
455
456 #warn "@cols -> @row";
457 my $info = [ {}, {} ];
458 foreach my $key (keys %const) {
459 if (length $key) {
460 my $target = $info;
461 my @parts = split(/\./, $key);
462 foreach my $p (@parts) {
463 $target = $target->[1]->{$p} ||= [];
464 }
465 $target->[0] = $const{$key};
466 } else {
467 $info->[0] = $const{$key};
468 }
469 }
470
5a5bec6c 471 my @collapse = (defined($prefix)
472 ? (map { (m/^\Q${prefix}.\E(.+)$/ ? ($1) : ()); }
473 keys %{$self->{collapse}})
474 : keys %{$self->{collapse}});
475 if (@collapse) {
476 my ($c) = sort { length $a <=> length $b } @collapse;
0f66a01b 477 #warn "Collapsing ${c}";
478 my $target = $info;
479 #warn Data::Dumper::Dumper($target);
480 foreach my $p (split(/\./, $c)) {
5a5bec6c 481 $target = $target->[1]->{$p} ||= [];
0f66a01b 482 }
5a5bec6c 483 my $c_prefix = (defined($prefix) ? "${prefix}.${c}" : $c);
484 my @co_key = @{$self->{collapse}{$c_prefix}};
0f66a01b 485 my %co_check = map { ($_, $target->[0]->{$_}); } @co_key;
5a5bec6c 486 my $tree = $self->_collapse_result($as, $row, $c_prefix);
487 #warn Data::Dumper::Dumper($tree, $row);
0f66a01b 488 my (@final, @raw);
5a5bec6c 489 while ( !(grep {
490 !defined($tree->[0]->{$_})
491 || $co_check{$_} ne $tree->[0]->{$_}
492 } @co_key) ) {
0f66a01b 493 push(@final, $tree);
494 last unless (@raw = $self->cursor->next);
495 $row = $self->{stashed_row} = \@raw;
5a5bec6c 496 $tree = $self->_collapse_result($as, $row, $c_prefix);
497 #warn Data::Dumper::Dumper($tree, $row);
0f66a01b 498 }
499 @{$target} = @final;
500 #warn Data::Dumper::Dumper($target);
5a5bec6c 501 #warn Data::Dumper::Dumper($info);
0f66a01b 502 }
503
504 #warn Dumper($info);
505
506 return $info;
507}
508
87c4e602 509=head2 result_source
701da8c4 510
511Returns a reference to the result source for this recordset.
512
513=cut
514
515
bfab575a 516=head2 count
ee38fa40 517
bfab575a 518Performs an SQL C<COUNT> with the same query as the resultset was built
6009260a 519with to find the number of elements. If passed arguments, does a search
520on the resultset and counts the results of that.
ee38fa40 521
bda4c2b8 522Note: When using C<count> with C<group_by>, L<DBIX::Class> emulates C<GROUP BY>
523using C<COUNT( DISTINCT( columns ) )>. Some databases (notably SQLite) do
524not support C<DISTINCT> with multiple columns. If you are using such a
525database, you should only use columns from the main table in your C<group_by>
526clause.
527
ee38fa40 528=cut
529
89c0a5a2 530sub count {
6009260a 531 my $self = shift;
532 return $self->search(@_)->count if @_ && defined $_[0];
6aeb9185 533 unless (defined $self->{count}) {
64acc2bc 534 return scalar @{ $self->get_cache }
535 if @{ $self->get_cache };
15c382be 536 my $group_by;
537 my $select = { 'count' => '*' };
8839560b 538 my $attrs = { %{ $self->{attrs} } };
539 if( $group_by = delete $attrs->{group_by} ) {
540 delete $attrs->{having};
dec2517f 541 my @distinct = (ref $group_by ? @$group_by : ($group_by));
15c382be 542 # todo: try CONCAT for multi-column pk
543 my @pk = $self->result_source->primary_columns;
544 if( scalar(@pk) == 1 ) {
545 my $pk = shift(@pk);
8839560b 546 my $alias = $attrs->{alias};
15c382be 547 my $re = qr/^($alias\.)?$pk$/;
d0f1e63f 548 foreach my $column ( @distinct) {
15c382be 549 if( $column =~ $re ) {
550 @distinct = ( $column );
551 last;
552 }
553 }
554 }
555
556 $select = { count => { 'distinct' => \@distinct } };
557 #use Data::Dumper; die Dumper $select;
558 }
559
8839560b 560 $attrs->{select} = $select;
561 $attrs->{as} = [ 'count' ];
ea20d0fd 562 # offset, order by and page are not needed to count. record_filter is cdbi
563 delete $attrs->{$_} for qw/rows offset order_by page pager record_filter/;
3c5b25c5 564
701da8c4 565 ($self->{count}) = (ref $self)->new($self->result_source, $attrs)->cursor->next;
3c5b25c5 566 }
567 return 0 unless $self->{count};
6aeb9185 568 my $count = $self->{count};
569 $count -= $self->{attrs}{offset} if $self->{attrs}{offset};
570 $count = $self->{attrs}{rows} if
571 ($self->{attrs}{rows} && $self->{attrs}{rows} < $count);
572 return $count;
89c0a5a2 573}
574
bfab575a 575=head2 count_literal
6009260a 576
a33df5d4 577Calls L</search_literal> with the passed arguments, then L</count>.
6009260a 578
579=cut
580
581sub count_literal { shift->search_literal(@_)->count; }
582
bfab575a 583=head2 all
ee38fa40 584
bfab575a 585Returns all elements in the resultset. Called implictly if the resultset
586is returned in list context.
ee38fa40 587
588=cut
589
89c0a5a2 590sub all {
591 my ($self) = @_;
64acc2bc 592 return @{ $self->get_cache }
593 if @{ $self->get_cache };
5a5bec6c 594
595 my @obj;
596
597 if (keys %{$self->{collapse}}) {
598 # Using $self->cursor->all is really just an optimisation.
599 # If we're collapsing has_many prefetches it probably makes
600 # very little difference, and this is cleaner than hacking
601 # _construct_object to survive the approach
602 my @row;
603 $self->cursor->reset;
604 while (@row = $self->cursor->next) {
605 push(@obj, $self->_construct_object(@row));
606 }
607 } else {
608 @obj = map { $self->_construct_object(@$_); }
609 $self->cursor->all;
610 }
611
64acc2bc 612 if( $self->{attrs}->{cache} ) {
64acc2bc 613 $self->set_cache( \@obj );
64acc2bc 614 }
5a5bec6c 615
616 return @obj;
89c0a5a2 617}
618
bfab575a 619=head2 reset
ee38fa40 620
bfab575a 621Resets the resultset's cursor, so you can iterate through the elements again.
ee38fa40 622
623=cut
624
89c0a5a2 625sub reset {
626 my ($self) = @_;
64acc2bc 627 $self->{all_cache_position} = 0;
73f58123 628 $self->cursor->reset;
89c0a5a2 629 return $self;
630}
631
bfab575a 632=head2 first
ee38fa40 633
bfab575a 634Resets the resultset and returns the first element.
ee38fa40 635
636=cut
637
89c0a5a2 638sub first {
639 return $_[0]->reset->next;
640}
641
87c4e602 642=head2 update
643
644=head3 Arguments: (\%values)
c01ab172 645
a33df5d4 646Sets the specified columns in the resultset to the supplied values.
c01ab172 647
648=cut
649
650sub update {
651 my ($self, $values) = @_;
701da8c4 652 $self->throw_exception("Values for update must be a hash") unless ref $values eq 'HASH';
653 return $self->result_source->storage->update(
654 $self->result_source->from, $values, $self->{cond});
c01ab172 655}
656
87c4e602 657=head2 update_all
658
659=head3 Arguments: (\%values)
c01ab172 660
a33df5d4 661Fetches all objects and updates them one at a time. Note that C<update_all>
662will run cascade triggers while L</update> will not.
c01ab172 663
664=cut
665
666sub update_all {
667 my ($self, $values) = @_;
701da8c4 668 $self->throw_exception("Values for update must be a hash") unless ref $values eq 'HASH';
c01ab172 669 foreach my $obj ($self->all) {
670 $obj->set_columns($values)->update;
671 }
672 return 1;
673}
674
bfab575a 675=head2 delete
ee38fa40 676
c01ab172 677Deletes the contents of the resultset from its result source.
ee38fa40 678
679=cut
680
28927b50 681sub delete {
89c0a5a2 682 my ($self) = @_;
ca4b5ab7 683 my $del = {};
684 $self->throw_exception("Can't delete on resultset with condition unless hash or array")
685 unless (ref($self->{cond}) eq 'HASH' || ref($self->{cond}) eq 'ARRAY');
686 if (ref $self->{cond} eq 'ARRAY') {
687 $del = [ map { my %hash;
688 foreach my $key (keys %{$_}) {
689 $key =~ /([^\.]+)$/;
690 $hash{$1} = $_->{$key};
691 }; \%hash; } @{$self->{cond}} ];
692 } elsif ((keys %{$self->{cond}})[0] eq '-and') {
693 $del->{-and} = [ map { my %hash;
694 foreach my $key (keys %{$_}) {
695 $key =~ /([^\.]+)$/;
696 $hash{$1} = $_->{$key};
697 }; \%hash; } @{$self->{cond}{-and}} ];
698 } else {
699 foreach my $key (keys %{$self->{cond}}) {
700 $key =~ /([^\.]+)$/;
701 $del->{$1} = $self->{cond}{$key};
702 }
703 }
704 $self->result_source->storage->delete($self->result_source->from, $del);
89c0a5a2 705 return 1;
706}
707
c01ab172 708=head2 delete_all
709
a33df5d4 710Fetches all objects and deletes them one at a time. Note that C<delete_all>
711will run cascade triggers while L</delete> will not.
c01ab172 712
713=cut
714
715sub delete_all {
716 my ($self) = @_;
717 $_->delete for $self->all;
718 return 1;
719}
28927b50 720
bfab575a 721=head2 pager
ee38fa40 722
723Returns a L<Data::Page> object for the current resultset. Only makes
a33df5d4 724sense for queries with a C<page> attribute.
ee38fa40 725
726=cut
727
3c5b25c5 728sub pager {
729 my ($self) = @_;
730 my $attrs = $self->{attrs};
701da8c4 731 $self->throw_exception("Can't create pager for non-paged rs") unless $self->{page};
6aeb9185 732 $attrs->{rows} ||= 10;
733 $self->count;
734 return $self->{pager} ||= Data::Page->new(
93b004d3 735 $self->{count}, $attrs->{rows}, $self->{page});
3c5b25c5 736}
737
87c4e602 738=head2 page
739
740=head3 Arguments: ($page_num)
ee38fa40 741
bfab575a 742Returns a new resultset for the specified page.
ee38fa40 743
744=cut
745
3c5b25c5 746sub page {
747 my ($self, $page) = @_;
6aeb9185 748 my $attrs = { %{$self->{attrs}} };
3c5b25c5 749 $attrs->{page} = $page;
701da8c4 750 return (ref $self)->new($self->result_source, $attrs);
fea3d045 751}
752
87c4e602 753=head2 new_result
754
755=head3 Arguments: (\%vals)
fea3d045 756
87f0da6a 757Creates a result in the resultset's result class.
fea3d045 758
759=cut
760
761sub new_result {
762 my ($self, $values) = @_;
701da8c4 763 $self->throw_exception( "new_result needs a hash" )
fea3d045 764 unless (ref $values eq 'HASH');
701da8c4 765 $self->throw_exception( "Can't abstract implicit construct, condition not a hash" )
fea3d045 766 if ($self->{cond} && !(ref $self->{cond} eq 'HASH'));
767 my %new = %$values;
768 my $alias = $self->{attrs}{alias};
769 foreach my $key (keys %{$self->{cond}||{}}) {
770 $new{$1} = $self->{cond}{$key} if ($key =~ m/^(?:$alias\.)?([^\.]+)$/);
771 }
a50bcd52 772 my $obj = $self->result_class->new(\%new);
701da8c4 773 $obj->result_source($self->result_source) if $obj->can('result_source');
097d3227 774 $obj;
fea3d045 775}
776
87c4e602 777=head2 create
778
779=head3 Arguments: (\%vals)
fea3d045 780
87f0da6a 781Inserts a record into the resultset and returns the object.
fea3d045 782
a33df5d4 783Effectively a shortcut for C<< ->new_result(\%vals)->insert >>.
fea3d045 784
785=cut
786
787sub create {
788 my ($self, $attrs) = @_;
701da8c4 789 $self->throw_exception( "create needs a hashref" ) unless ref $attrs eq 'HASH';
fea3d045 790 return $self->new_result($attrs)->insert;
3c5b25c5 791}
792
87c4e602 793=head2 find_or_create
794
795=head3 Arguments: (\%vals, \%attrs?)
87f0da6a 796
797 $class->find_or_create({ key => $val, ... });
c2b15ecc 798
fd9f5466 799Searches for a record matching the search condition; if it doesn't find one,
800creates one and returns that instead.
87f0da6a 801
87f0da6a 802 my $cd = $schema->resultset('CD')->find_or_create({
803 cdid => 5,
804 artist => 'Massive Attack',
805 title => 'Mezzanine',
806 year => 2005,
807 });
808
809Also takes an optional C<key> attribute, to search by a specific key or unique
810constraint. For example:
811
812 my $cd = $schema->resultset('CD')->find_or_create(
813 {
814 artist => 'Massive Attack',
815 title => 'Mezzanine',
816 },
817 { key => 'artist_title' }
818 );
819
820See also L</find> and L</update_or_create>.
821
c2b15ecc 822=cut
823
824sub find_or_create {
825 my $self = shift;
87f0da6a 826 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
827 my $hash = ref $_[0] eq "HASH" ? shift : {@_};
828 my $exists = $self->find($hash, $attrs);
c2b15ecc 829 return defined($exists) ? $exists : $self->create($hash);
830}
831
87f0da6a 832=head2 update_or_create
833
834 $class->update_or_create({ key => $val, ... });
835
836First, search for an existing row matching one of the unique constraints
837(including the primary key) on the source of this resultset. If a row is
838found, update it with the other given column values. Otherwise, create a new
839row.
840
841Takes an optional C<key> attribute to search on a specific unique constraint.
842For example:
843
844 # In your application
845 my $cd = $schema->resultset('CD')->update_or_create(
846 {
847 artist => 'Massive Attack',
848 title => 'Mezzanine',
849 year => 1998,
850 },
851 { key => 'artist_title' }
852 );
853
854If no C<key> is specified, it searches on all unique constraints defined on the
855source, including the primary key.
856
857If the C<key> is specified as C<primary>, search only on the primary key.
858
a33df5d4 859See also L</find> and L</find_or_create>.
860
87f0da6a 861=cut
862
863sub update_or_create {
864 my $self = shift;
865
866 my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
867 my $hash = ref $_[0] eq "HASH" ? shift : {@_};
868
701da8c4 869 my %unique_constraints = $self->result_source->unique_constraints;
87f0da6a 870 my @constraint_names = (exists $attrs->{key}
871 ? ($attrs->{key})
872 : keys %unique_constraints);
873
874 my @unique_hashes;
875 foreach my $name (@constraint_names) {
876 my @unique_cols = @{ $unique_constraints{$name} };
877 my %unique_hash =
878 map { $_ => $hash->{$_} }
879 grep { exists $hash->{$_} }
880 @unique_cols;
881
882 push @unique_hashes, \%unique_hash
883 if (scalar keys %unique_hash == scalar @unique_cols);
884 }
885
886 my $row;
887 if (@unique_hashes) {
888 $row = $self->search(\@unique_hashes, { rows => 1 })->first;
889 if ($row) {
890 $row->set_columns($hash);
891 $row->update;
892 }
893 }
894
895 unless ($row) {
896 $row = $self->create($hash);
897 }
898
899 return $row;
900}
901
64acc2bc 902=head2 get_cache
903
904Gets the contents of the cache for the resultset.
905
906=cut
907
908sub get_cache {
909 my $self = shift;
910 return $self->{all_cache} || [];
911}
912
913=head2 set_cache
914
915Sets the contents of the cache for the resultset. Expects an arrayref of objects of the same class as those produced by the resultset.
916
917=cut
918
919sub set_cache {
920 my ( $self, $data ) = @_;
921 $self->throw_exception("set_cache requires an arrayref")
922 if ref $data ne 'ARRAY';
a50bcd52 923 my $result_class = $self->result_class;
64acc2bc 924 foreach( @$data ) {
925 $self->throw_exception("cannot cache object of type '$_', expected '$result_class'")
926 if ref $_ ne $result_class;
927 }
928 $self->{all_cache} = $data;
929}
930
931=head2 clear_cache
932
933Clears the cache for the resultset.
934
935=cut
936
937sub clear_cache {
938 my $self = shift;
939 $self->set_cache([]);
940}
941
942=head2 related_resultset
943
944Returns a related resultset for the supplied relationship name.
945
946 $rs = $rs->related_resultset('foo');
947
948=cut
949
950sub related_resultset {
951 my ( $self, $rel, @rest ) = @_;
952 $self->{related_resultsets} ||= {};
953 my $resultsets = $self->{related_resultsets};
954 if( !exists $resultsets->{$rel} ) {
955 #warn "fetching related resultset for rel '$rel'";
956 my $rel_obj = $self->result_source->relationship_info($rel);
957 $self->throw_exception(
958 "search_related: result source '" . $self->result_source->name .
959 "' has no such relationship ${rel}")
960 unless $rel_obj; #die Dumper $self->{attrs};
a86b1efe 961 my $rs = $self->search(undef, { join => $rel });
962 #if( $self->{attrs}->{cache} ) {
963 # $rs = $self->search(undef);
964 #}
965 #else {
966 #}
64acc2bc 967 #use Data::Dumper; die Dumper $rs->{attrs};#$rs = $self->search( undef );
968 #use Data::Dumper; warn Dumper $self->{attrs}, Dumper $rs->{attrs};
969 my $alias = (defined $rs->{attrs}{seen_join}{$rel}
970 && $rs->{attrs}{seen_join}{$rel} > 1
971 ? join('_', $rel, $rs->{attrs}{seen_join}{$rel})
972 : $rel);
973 $resultsets->{$rel} =
974 $self->result_source->schema->resultset($rel_obj->{class}
975 )->search( undef,
976 { %{$rs->{attrs}},
977 alias => $alias,
978 select => undef(),
979 as => undef() }
980 )->search(@rest);
981 }
982 return $resultsets->{$rel};
983}
984
701da8c4 985=head2 throw_exception
986
987See Schema's throw_exception
988
989=cut
990
991sub throw_exception {
992 my $self=shift;
993 $self->result_source->schema->throw_exception(@_);
994}
995
40dbc108 996=head1 ATTRIBUTES
076652e8 997
a33df5d4 998The resultset takes various attributes that modify its behavior. Here's an
999overview of them:
bfab575a 1000
1001=head2 order_by
076652e8 1002
a33df5d4 1003Which column(s) to order the results by. This is currently passed through
1004directly to SQL, so you can give e.g. C<foo DESC> for a descending order.
076652e8 1005
87c4e602 1006=head2 cols
1007
1008=head3 Arguments: (arrayref)
976f3686 1009
a33df5d4 1010Shortcut to request a particular set of columns to be retrieved. Adds
1011C<me.> onto the start of any column without a C<.> in it and sets C<select>
1012from that, then auto-populates C<as> from C<select> as normal.
976f3686 1013
87c4e602 1014=head2 include_columns
1015
1016=head3 Arguments: (arrayref)
5ac6a044 1017
1018Shortcut to include additional columns in the returned results - for example
1019
1020 { include_columns => ['foo.name'], join => ['foo'] }
1021
1022would add a 'name' column to the information passed to object inflation
1023
87c4e602 1024=head2 select
1025
1026=head3 Arguments: (arrayref)
976f3686 1027
4a28c340 1028Indicates which columns should be selected from the storage. You can use
1029column names, or in the case of RDBMS back ends, function or stored procedure
1030names:
1031
1032 $rs = $schema->resultset('Foo')->search(
1033 {},
1034 {
cf7b40ed 1035 select => [
4a28c340 1036 'column_name',
1037 { count => 'column_to_count' },
1038 { sum => 'column_to_sum' }
cf7b40ed 1039 ]
4a28c340 1040 }
1041 );
1042
1043When you use function/stored procedure names and do not supply an C<as>
1044attribute, the column names returned are storage-dependent. E.g. MySQL would
1045return a column named C<count(column_to_count)> in the above example.
976f3686 1046
87c4e602 1047=head2 as
1048
1049=head3 Arguments: (arrayref)
076652e8 1050
4a28c340 1051Indicates column names for object inflation. This is used in conjunction with
1052C<select>, usually when C<select> contains one or more function or stored
1053procedure names:
1054
1055 $rs = $schema->resultset('Foo')->search(
1056 {},
1057 {
cf7b40ed 1058 select => [
4a28c340 1059 'column1',
1060 { count => 'column2' }
cf7b40ed 1061 ],
4a28c340 1062 as => [qw/ column1 column2_count /]
1063 }
1064 );
1065
1066 my $foo = $rs->first(); # get the first Foo
1067
1068If the object against which the search is performed already has an accessor
1069matching a column name specified in C<as>, the value can be retrieved using
1070the accessor as normal:
1071
1072 my $column1 = $foo->column1();
1073
1074If on the other hand an accessor does not exist in the object, you need to
1075use C<get_column> instead:
1076
1077 my $column2_count = $foo->get_column('column2_count');
1078
1079You can create your own accessors if required - see
1080L<DBIx::Class::Manual::Cookbook> for details.
ee38fa40 1081
bfab575a 1082=head2 join
ee38fa40 1083
a33df5d4 1084Contains a list of relationships that should be joined for this query. For
1085example:
1086
1087 # Get CDs by Nine Inch Nails
1088 my $rs = $schema->resultset('CD')->search(
1089 { 'artist.name' => 'Nine Inch Nails' },
1090 { join => 'artist' }
1091 );
1092
1093Can also contain a hash reference to refer to the other relation's relations.
1094For example:
1095
1096 package MyApp::Schema::Track;
1097 use base qw/DBIx::Class/;
1098 __PACKAGE__->table('track');
1099 __PACKAGE__->add_columns(qw/trackid cd position title/);
1100 __PACKAGE__->set_primary_key('trackid');
1101 __PACKAGE__->belongs_to(cd => 'MyApp::Schema::CD');
1102 1;
1103
1104 # In your application
1105 my $rs = $schema->resultset('Artist')->search(
1106 { 'track.title' => 'Teardrop' },
1107 {
1108 join => { cd => 'track' },
1109 order_by => 'artist.name',
1110 }
1111 );
1112
2cb360cc 1113If the same join is supplied twice, it will be aliased to <rel>_2 (and
1114similarly for a third time). For e.g.
1115
1116 my $rs = $schema->resultset('Artist')->search(
1117 { 'cds.title' => 'Foo',
1118 'cds_2.title' => 'Bar' },
1119 { join => [ qw/cds cds/ ] });
1120
1121will return a set of all artists that have both a cd with title Foo and a cd
1122with title Bar.
1123
1124If you want to fetch related objects from other tables as well, see C<prefetch>
ae1c90a1 1125below.
ee38fa40 1126
87c4e602 1127=head2 prefetch
1128
1129=head3 Arguments: arrayref/hashref
ee38fa40 1130
ae1c90a1 1131Contains one or more relationships that should be fetched along with the main
bfab575a 1132query (when they are accessed afterwards they will have already been
a33df5d4 1133"prefetched"). This is useful for when you know you will need the related
ae1c90a1 1134objects, because it saves at least one query:
1135
1136 my $rs = $schema->resultset('Tag')->search(
1137 {},
1138 {
1139 prefetch => {
1140 cd => 'artist'
1141 }
1142 }
1143 );
1144
1145The initial search results in SQL like the following:
1146
1147 SELECT tag.*, cd.*, artist.* FROM tag
1148 JOIN cd ON tag.cd = cd.cdid
1149 JOIN artist ON cd.artist = artist.artistid
1150
1151L<DBIx::Class> has no need to go back to the database when we access the
1152C<cd> or C<artist> relationships, which saves us two SQL statements in this
1153case.
1154
2cb360cc 1155Simple prefetches will be joined automatically, so there is no need
1156for a C<join> attribute in the above search. If you're prefetching to
1157depth (e.g. { cd => { artist => 'label' } or similar), you'll need to
1158specify the join as well.
ae1c90a1 1159
1160C<prefetch> can be used with the following relationship types: C<belongs_to>,
2cb360cc 1161C<has_one> (or if you're using C<add_relationship>, any relationship declared
1162with an accessor type of 'single' or 'filter').
ee38fa40 1163
87c4e602 1164=head2 from
1165
1166=head3 Arguments: (arrayref)
ee38fa40 1167
4a28c340 1168The C<from> attribute gives you manual control over the C<FROM> clause of SQL
1169statements generated by L<DBIx::Class>, allowing you to express custom C<JOIN>
1170clauses.
ee38fa40 1171
a33df5d4 1172NOTE: Use this on your own risk. This allows you to shoot off your foot!
4a28c340 1173C<join> will usually do what you need and it is strongly recommended that you
1174avoid using C<from> unless you cannot achieve the desired result using C<join>.
1175
1176In simple terms, C<from> works as follows:
1177
1178 [
1179 { <alias> => <table>, -join-type => 'inner|left|right' }
1180 [] # nested JOIN (optional)
1181 { <table.column> = <foreign_table.foreign_key> }
1182 ]
1183
1184 JOIN
1185 <alias> <table>
1186 [JOIN ...]
1187 ON <table.column> = <foreign_table.foreign_key>
1188
1189An easy way to follow the examples below is to remember the following:
1190
1191 Anything inside "[]" is a JOIN
1192 Anything inside "{}" is a condition for the enclosing JOIN
1193
1194The following examples utilize a "person" table in a family tree application.
1195In order to express parent->child relationships, this table is self-joined:
1196
1197 # Person->belongs_to('father' => 'Person');
1198 # Person->belongs_to('mother' => 'Person');
1199
1200C<from> can be used to nest joins. Here we return all children with a father,
1201then search against all mothers of those children:
1202
1203 $rs = $schema->resultset('Person')->search(
1204 {},
1205 {
1206 alias => 'mother', # alias columns in accordance with "from"
1207 from => [
1208 { mother => 'person' },
1209 [
1210 [
1211 { child => 'person' },
1212 [
1213 { father => 'person' },
1214 { 'father.person_id' => 'child.father_id' }
1215 ]
1216 ],
1217 { 'mother.person_id' => 'child.mother_id' }
fd9f5466 1218 ],
4a28c340 1219 ]
1220 },
1221 );
1222
1223 # Equivalent SQL:
1224 # SELECT mother.* FROM person mother
1225 # JOIN (
1226 # person child
1227 # JOIN person father
1228 # ON ( father.person_id = child.father_id )
1229 # )
1230 # ON ( mother.person_id = child.mother_id )
1231
1232The type of any join can be controlled manually. To search against only people
1233with a father in the person table, we could explicitly use C<INNER JOIN>:
1234
1235 $rs = $schema->resultset('Person')->search(
1236 {},
1237 {
1238 alias => 'child', # alias columns in accordance with "from"
1239 from => [
1240 { child => 'person' },
1241 [
1242 { father => 'person', -join-type => 'inner' },
1243 { 'father.id' => 'child.father_id' }
1244 ],
1245 ]
1246 },
1247 );
1248
1249 # Equivalent SQL:
1250 # SELECT child.* FROM person child
1251 # INNER JOIN person father ON child.father_id = father.id
ee38fa40 1252
bfab575a 1253=head2 page
076652e8 1254
a33df5d4 1255For a paged resultset, specifies which page to retrieve. Leave unset
bfab575a 1256for an unpaged resultset.
076652e8 1257
bfab575a 1258=head2 rows
076652e8 1259
4a28c340 1260For a paged resultset, how many rows per page:
1261
1262 rows => 10
1263
1264Can also be used to simulate an SQL C<LIMIT>.
076652e8 1265
87c4e602 1266=head2 group_by
1267
1268=head3 Arguments: (arrayref)
54540863 1269
bda4c2b8 1270A arrayref of columns to group by. Can include columns of joined tables.
54540863 1271
675ce4a6 1272 group_by => [qw/ column1 column2 ... /]
1273
54540863 1274=head2 distinct
1275
a33df5d4 1276Set to 1 to group by all columns.
1277
1278For more examples of using these attributes, see
1279L<DBIx::Class::Manual::Cookbook>.
54540863 1280
bfab575a 1281=cut
076652e8 1282
89c0a5a2 12831;