f49a071175110aad5642f11ab9ce79fa17ec61f0
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSet.pm
1 package DBIx::Class::ResultSet;
2
3 use strict;
4 use warnings;
5 use overload
6         '0+'     => \&count,
7         'bool'   => sub { 1; },
8         fallback => 1;
9 use Carp::Clan qw/^DBIx::Class/;
10 use Data::Page;
11 use Storable;
12 use DBIx::Class::ResultSetColumn;
13 use DBIx::Class::ResultSourceHandle;
14 use base qw/DBIx::Class/;
15
16 __PACKAGE__->mk_group_accessors('simple' => qw/result_class _source_handle/);
17
18 =head1 NAME
19
20 DBIx::Class::ResultSet - Responsible for fetching and creating resultset.
21
22 =head1 SYNOPSIS
23
24   my $rs   = $schema->resultset('User')->search(registered => 1);
25   my @rows = $schema->resultset('CD')->search(year => 2005);
26
27 =head1 DESCRIPTION
28
29 The resultset is also known as an iterator. It is responsible for handling
30 queries that may return an arbitrary number of rows, e.g. via L</search>
31 or a C<has_many> relationship.
32
33 In the examples below, the following table classes are used:
34
35   package MyApp::Schema::Artist;
36   use base qw/DBIx::Class/;
37   __PACKAGE__->load_components(qw/Core/);
38   __PACKAGE__->table('artist');
39   __PACKAGE__->add_columns(qw/artistid name/);
40   __PACKAGE__->set_primary_key('artistid');
41   __PACKAGE__->has_many(cds => 'MyApp::Schema::CD');
42   1;
43
44   package MyApp::Schema::CD;
45   use base qw/DBIx::Class/;
46   __PACKAGE__->load_components(qw/Core/);
47   __PACKAGE__->table('cd');
48   __PACKAGE__->add_columns(qw/cdid artist title year/);
49   __PACKAGE__->set_primary_key('cdid');
50   __PACKAGE__->belongs_to(artist => 'MyApp::Schema::Artist');
51   1;
52
53 =head1 METHODS
54
55 =head2 new
56
57 =over 4
58
59 =item Arguments: $source, \%$attrs
60
61 =item Return Value: $rs
62
63 =back
64
65 The resultset constructor. Takes a source object (usually a
66 L<DBIx::Class::ResultSourceProxy::Table>) and an attribute hash (see
67 L</ATTRIBUTES> below).  Does not perform any queries -- these are
68 executed as needed by the other methods.
69
70 Generally you won't need to construct a resultset manually.  You'll
71 automatically get one from e.g. a L</search> called in scalar context:
72
73   my $rs = $schema->resultset('CD')->search({ title => '100th Window' });
74
75 IMPORTANT: If called on an object, proxies to new_result instead so
76
77   my $cd = $schema->resultset('CD')->new({ title => 'Spoon' });
78
79 will return a CD object, not a ResultSet.
80
81 =cut
82
83 sub new {
84   my $class = shift;
85   return $class->new_result(@_) if ref $class;
86
87   my ($source, $attrs) = @_;
88   $source = $source->handle 
89     unless $source->isa('DBIx::Class::ResultSourceHandle');
90   $attrs = { %{$attrs||{}} };
91
92   if ($attrs->{page}) {
93     $attrs->{rows} ||= 10;
94     $attrs->{offset} ||= 0;
95     $attrs->{offset} += ($attrs->{rows} * ($attrs->{page} - 1));
96   }
97
98   $attrs->{alias} ||= 'me';
99
100   my $self = {
101     _source_handle => $source,
102     result_class => $attrs->{result_class} || $source->resolve->result_class,
103     cond => $attrs->{where},
104     count => undef,
105     pager => undef,
106     attrs => $attrs
107   };
108
109   bless $self, $class;
110
111   return $self;
112 }
113
114 =head2 search
115
116 =over 4
117
118 =item Arguments: $cond, \%attrs?
119
120 =item Return Value: $resultset (scalar context), @row_objs (list context)
121
122 =back
123
124   my @cds    = $cd_rs->search({ year => 2001 }); # "... WHERE year = 2001"
125   my $new_rs = $cd_rs->search({ year => 2005 });
126
127   my $new_rs = $cd_rs->search([ { year => 2005 }, { year => 2004 } ]);
128                  # year = 2005 OR year = 2004
129
130 If you need to pass in additional attributes but no additional condition,
131 call it as C<search(undef, \%attrs)>.
132
133   # "SELECT name, artistid FROM $artist_table"
134   my @all_artists = $schema->resultset('Artist')->search(undef, {
135     columns => [qw/name artistid/],
136   });
137
138 For a list of attributes that can be passed to C<search>, see
139 L</ATTRIBUTES>. For more examples of using this function, see
140 L<Searching|DBIx::Class::Manual::Cookbook/Searching>. For a complete
141 documentation for the first argument, see L<SQL::Abstract>.
142
143 =cut
144
145 sub search {
146   my $self = shift;
147   my $rs = $self->search_rs( @_ );
148   return (wantarray ? $rs->all : $rs);
149 }
150
151 =head2 search_rs
152
153 =over 4
154
155 =item Arguments: $cond, \%attrs?
156
157 =item Return Value: $resultset
158
159 =back
160
161 This method does the same exact thing as search() except it will
162 always return a resultset, even in list context.
163
164 =cut
165
166 sub search_rs {
167   my $self = shift;
168
169   my $rows;
170
171   unless (@_) {                 # no search, effectively just a clone
172     $rows = $self->get_cache;
173   }
174
175   my $attrs = {};
176   $attrs = pop(@_) if @_ > 1 and ref $_[$#_] eq 'HASH';
177   my $our_attrs = { %{$self->{attrs}} };
178   my $having = delete $our_attrs->{having};
179   my $where = delete $our_attrs->{where};
180
181   my $new_attrs = { %{$our_attrs}, %{$attrs} };
182
183   # merge new attrs into inherited
184   foreach my $key (qw/join prefetch/) {
185     next unless exists $attrs->{$key};
186     $new_attrs->{$key} = $self->_merge_attr($our_attrs->{$key}, $attrs->{$key});
187   }
188
189   my $cond = (@_
190     ? (
191         (@_ == 1 || ref $_[0] eq "HASH")
192           ? (
193               (ref $_[0] eq 'HASH')
194                 ? (
195                     (keys %{ $_[0] }  > 0)
196                       ? shift
197                       : undef
198                    )
199                 :  shift
200              )
201           : (
202               (@_ % 2)
203                 ? $self->throw_exception("Odd number of arguments to search")
204                 : {@_}
205              )
206       )
207     : undef
208   );
209
210   if (defined $where) {
211     $new_attrs->{where} = (
212       defined $new_attrs->{where}
213         ? { '-and' => [
214               map {
215                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
216               } $where, $new_attrs->{where}
217             ]
218           }
219         : $where);
220   }
221
222   if (defined $cond) {
223     $new_attrs->{where} = (
224       defined $new_attrs->{where}
225         ? { '-and' => [
226               map {
227                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
228               } $cond, $new_attrs->{where}
229             ]
230           }
231         : $cond);
232   }
233
234   if (defined $having) {
235     $new_attrs->{having} = (
236       defined $new_attrs->{having}
237         ? { '-and' => [
238               map {
239                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
240               } $having, $new_attrs->{having}
241             ]
242           }
243         : $having);
244   }
245
246   my $rs = (ref $self)->new($self->result_source, $new_attrs);
247   if ($rows) {
248     $rs->set_cache($rows);
249   }
250   return $rs;
251 }
252
253 =head2 search_literal
254
255 =over 4
256
257 =item Arguments: $sql_fragment, @bind_values
258
259 =item Return Value: $resultset (scalar context), @row_objs (list context)
260
261 =back
262
263   my @cds   = $cd_rs->search_literal('year = ? AND title = ?', qw/2001 Reload/);
264   my $newrs = $artist_rs->search_literal('name = ?', 'Metallica');
265
266 Pass a literal chunk of SQL to be added to the conditional part of the
267 resultset query.
268
269 =cut
270
271 sub search_literal {
272   my ($self, $cond, @vals) = @_;
273   my $attrs = (ref $vals[$#vals] eq 'HASH' ? { %{ pop(@vals) } } : {});
274   $attrs->{bind} = [ @{$self->{attrs}{bind}||[]}, @vals ];
275   return $self->search(\$cond, $attrs);
276 }
277
278 =head2 find
279
280 =over 4
281
282 =item Arguments: @values | \%cols, \%attrs?
283
284 =item Return Value: $row_object
285
286 =back
287
288 Finds a row based on its primary key or unique constraint. For example, to find
289 a row by its primary key:
290
291   my $cd = $schema->resultset('CD')->find(5);
292
293 You can also find a row by a specific unique constraint using the C<key>
294 attribute. For example:
295
296   my $cd = $schema->resultset('CD')->find('Massive Attack', 'Mezzanine', {
297     key => 'cd_artist_title'
298   });
299
300 Additionally, you can specify the columns explicitly by name:
301
302   my $cd = $schema->resultset('CD')->find(
303     {
304       artist => 'Massive Attack',
305       title  => 'Mezzanine',
306     },
307     { key => 'cd_artist_title' }
308   );
309
310 If the C<key> is specified as C<primary>, it searches only on the primary key.
311
312 If no C<key> is specified, it searches on all unique constraints defined on the
313 source, including the primary key.
314
315 If your table does not have a primary key, you B<must> provide a value for the
316 C<key> attribute matching one of the unique constraints on the source.
317
318 See also L</find_or_create> and L</update_or_create>. For information on how to
319 declare unique constraints, see
320 L<DBIx::Class::ResultSource/add_unique_constraint>.
321
322 =cut
323
324 sub find {
325   my $self = shift;
326   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
327
328   # Default to the primary key, but allow a specific key
329   my @cols = exists $attrs->{key}
330     ? $self->result_source->unique_constraint_columns($attrs->{key})
331     : $self->result_source->primary_columns;
332   $self->throw_exception(
333     "Can't find unless a primary key is defined or unique constraint is specified"
334   ) unless @cols;
335
336   # Parse out a hashref from input
337   my $input_query;
338   if (ref $_[0] eq 'HASH') {
339     $input_query = { %{$_[0]} };
340   }
341   elsif (@_ == @cols) {
342     $input_query = {};
343     @{$input_query}{@cols} = @_;
344   }
345   else {
346     # Compatibility: Allow e.g. find(id => $value)
347     carp "Find by key => value deprecated; please use a hashref instead";
348     $input_query = {@_};
349   }
350
351   my (%related, $info);
352
353   KEY: foreach my $key (keys %$input_query) {
354     if (ref($input_query->{$key})
355         && ($info = $self->result_source->relationship_info($key))) {
356       my $val = delete $input_query->{$key};
357       next KEY if (ref($val) eq 'ARRAY'); # has_many for multi_create
358       my $rel_q = $self->result_source->resolve_condition(
359                     $info->{cond}, $val, $key
360                   );
361       die "Can't handle OR join condition in find" if ref($rel_q) eq 'ARRAY';
362       @related{keys %$rel_q} = values %$rel_q;
363     }
364   }
365   if (my @keys = keys %related) {
366     @{$input_query}{@keys} = values %related;
367   }
368
369   my @unique_queries = $self->_unique_queries($input_query, $attrs);
370
371   # Build the final query: Default to the disjunction of the unique queries,
372   # but allow the input query in case the ResultSet defines the query or the
373   # user is abusing find
374   my $alias = exists $attrs->{alias} ? $attrs->{alias} : $self->{attrs}{alias};
375   my $query = @unique_queries
376     ? [ map { $self->_add_alias($_, $alias) } @unique_queries ]
377     : $self->_add_alias($input_query, $alias);
378
379   # Run the query
380   if (keys %$attrs) {
381     my $rs = $self->search($query, $attrs);
382     return keys %{$rs->_resolved_attrs->{collapse}} ? $rs->next : $rs->single;
383   }
384   else {
385     return keys %{$self->_resolved_attrs->{collapse}}
386       ? $self->search($query)->next
387       : $self->single($query);
388   }
389 }
390
391 # _add_alias
392 #
393 # Add the specified alias to the specified query hash. A copy is made so the
394 # original query is not modified.
395
396 sub _add_alias {
397   my ($self, $query, $alias) = @_;
398
399   my %aliased = %$query;
400   foreach my $col (grep { ! m/\./ } keys %aliased) {
401     $aliased{"$alias.$col"} = delete $aliased{$col};
402   }
403
404   return \%aliased;
405 }
406
407 # _unique_queries
408 #
409 # Build a list of queries which satisfy unique constraints.
410
411 sub _unique_queries {
412   my ($self, $query, $attrs) = @_;
413
414   my @constraint_names = exists $attrs->{key}
415     ? ($attrs->{key})
416     : $self->result_source->unique_constraint_names;
417
418   my $where = $self->_collapse_cond($self->{attrs}{where} || {});
419   my $num_where = scalar keys %$where;
420
421   my @unique_queries;
422   foreach my $name (@constraint_names) {
423     my @unique_cols = $self->result_source->unique_constraint_columns($name);
424     my $unique_query = $self->_build_unique_query($query, \@unique_cols);
425
426     my $num_cols = scalar @unique_cols;
427     my $num_query = scalar keys %$unique_query;
428
429     my $total = $num_query + $num_where;
430     if ($num_query && ($num_query == $num_cols || $total == $num_cols)) {
431       # The query is either unique on its own or is unique in combination with
432       # the existing where clause
433       push @unique_queries, $unique_query;
434     }
435   }
436
437   return @unique_queries;
438 }
439
440 # _build_unique_query
441 #
442 # Constrain the specified query hash based on the specified column names.
443
444 sub _build_unique_query {
445   my ($self, $query, $unique_cols) = @_;
446
447   return {
448     map  { $_ => $query->{$_} }
449     grep { exists $query->{$_} }
450       @$unique_cols
451   };
452 }
453
454 =head2 search_related
455
456 =over 4
457
458 =item Arguments: $rel, $cond, \%attrs?
459
460 =item Return Value: $new_resultset
461
462 =back
463
464   $new_rs = $cd_rs->search_related('artist', {
465     name => 'Emo-R-Us',
466   });
467
468 Searches the specified relationship, optionally specifying a condition and
469 attributes for matching records. See L</ATTRIBUTES> for more information.
470
471 =cut
472
473 sub search_related {
474   return shift->related_resultset(shift)->search(@_);
475 }
476
477 =head2 cursor
478
479 =over 4
480
481 =item Arguments: none
482
483 =item Return Value: $cursor
484
485 =back
486
487 Returns a storage-driven cursor to the given resultset. See
488 L<DBIx::Class::Cursor> for more information.
489
490 =cut
491
492 sub cursor {
493   my ($self) = @_;
494
495   my $attrs = { %{$self->_resolved_attrs} };
496   return $self->{cursor}
497     ||= $self->result_source->storage->select($attrs->{from}, $attrs->{select},
498           $attrs->{where},$attrs);
499 }
500
501 =head2 single
502
503 =over 4
504
505 =item Arguments: $cond?
506
507 =item Return Value: $row_object?
508
509 =back
510
511   my $cd = $schema->resultset('CD')->single({ year => 2001 });
512
513 Inflates the first result without creating a cursor if the resultset has
514 any records in it; if not returns nothing. Used by L</find> as an optimisation.
515
516 Can optionally take an additional condition *only* - this is a fast-code-path
517 method; if you need to add extra joins or similar call ->search and then
518 ->single without a condition on the $rs returned from that.
519
520 =cut
521
522 sub single {
523   my ($self, $where) = @_;
524   my $attrs = { %{$self->_resolved_attrs} };
525   if ($where) {
526     if (defined $attrs->{where}) {
527       $attrs->{where} = {
528         '-and' =>
529             [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
530                $where, delete $attrs->{where} ]
531       };
532     } else {
533       $attrs->{where} = $where;
534     }
535   }
536
537 #  XXX: Disabled since it doesn't infer uniqueness in all cases
538 #  unless ($self->_is_unique_query($attrs->{where})) {
539 #    carp "Query not guaranteed to return a single row"
540 #      . "; please declare your unique constraints or use search instead";
541 #  }
542
543   my @data = $self->result_source->storage->select_single(
544     $attrs->{from}, $attrs->{select},
545     $attrs->{where}, $attrs
546   );
547
548   return (@data ? ($self->_construct_object(@data))[0] : ());
549 }
550
551 # _is_unique_query
552 #
553 # Try to determine if the specified query is guaranteed to be unique, based on
554 # the declared unique constraints.
555
556 sub _is_unique_query {
557   my ($self, $query) = @_;
558
559   my $collapsed = $self->_collapse_query($query);
560   my $alias = $self->{attrs}{alias};
561
562   foreach my $name ($self->result_source->unique_constraint_names) {
563     my @unique_cols = map {
564       "$alias.$_"
565     } $self->result_source->unique_constraint_columns($name);
566
567     # Count the values for each unique column
568     my %seen = map { $_ => 0 } @unique_cols;
569
570     foreach my $key (keys %$collapsed) {
571       my $aliased = $key =~ /\./ ? $key : "$alias.$key";
572       next unless exists $seen{$aliased};  # Additional constraints are okay
573       $seen{$aliased} = scalar keys %{ $collapsed->{$key} };
574     }
575
576     # If we get 0 or more than 1 value for a column, it's not necessarily unique
577     return 1 unless grep { $_ != 1 } values %seen;
578   }
579
580   return 0;
581 }
582
583 # _collapse_query
584 #
585 # Recursively collapse the query, accumulating values for each column.
586
587 sub _collapse_query {
588   my ($self, $query, $collapsed) = @_;
589
590   $collapsed ||= {};
591
592   if (ref $query eq 'ARRAY') {
593     foreach my $subquery (@$query) {
594       next unless ref $subquery;  # -or
595 #      warn "ARRAY: " . Dumper $subquery;
596       $collapsed = $self->_collapse_query($subquery, $collapsed);
597     }
598   }
599   elsif (ref $query eq 'HASH') {
600     if (keys %$query and (keys %$query)[0] eq '-and') {
601       foreach my $subquery (@{$query->{-and}}) {
602 #        warn "HASH: " . Dumper $subquery;
603         $collapsed = $self->_collapse_query($subquery, $collapsed);
604       }
605     }
606     else {
607 #      warn "LEAF: " . Dumper $query;
608       foreach my $col (keys %$query) {
609         my $value = $query->{$col};
610         $collapsed->{$col}{$value}++;
611       }
612     }
613   }
614
615   return $collapsed;
616 }
617
618 =head2 get_column
619
620 =over 4
621
622 =item Arguments: $cond?
623
624 =item Return Value: $resultsetcolumn
625
626 =back
627
628   my $max_length = $rs->get_column('length')->max;
629
630 Returns a L<DBIx::Class::ResultSetColumn> instance for a column of the ResultSet.
631
632 =cut
633
634 sub get_column {
635   my ($self, $column) = @_;
636   my $new = DBIx::Class::ResultSetColumn->new($self, $column);
637   return $new;
638 }
639
640 =head2 search_like
641
642 =over 4
643
644 =item Arguments: $cond, \%attrs?
645
646 =item Return Value: $resultset (scalar context), @row_objs (list context)
647
648 =back
649
650   # WHERE title LIKE '%blue%'
651   $cd_rs = $rs->search_like({ title => '%blue%'});
652
653 Performs a search, but uses C<LIKE> instead of C<=> as the condition. Note
654 that this is simply a convenience method. You most likely want to use
655 L</search> with specific operators.
656
657 For more information, see L<DBIx::Class::Manual::Cookbook>.
658
659 =cut
660
661 sub search_like {
662   my $class = shift;
663   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
664   my $query = ref $_[0] eq 'HASH' ? { %{shift()} }: {@_};
665   $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
666   return $class->search($query, { %$attrs });
667 }
668
669 =head2 slice
670
671 =over 4
672
673 =item Arguments: $first, $last
674
675 =item Return Value: $resultset (scalar context), @row_objs (list context)
676
677 =back
678
679 Returns a resultset or object list representing a subset of elements from the
680 resultset slice is called on. Indexes are from 0, i.e., to get the first
681 three records, call:
682
683   my ($one, $two, $three) = $rs->slice(0, 2);
684
685 =cut
686
687 sub slice {
688   my ($self, $min, $max) = @_;
689   my $attrs = {}; # = { %{ $self->{attrs} || {} } };
690   $attrs->{offset} = $self->{attrs}{offset} || 0;
691   $attrs->{offset} += $min;
692   $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
693   return $self->search(undef(), $attrs);
694   #my $slice = (ref $self)->new($self->result_source, $attrs);
695   #return (wantarray ? $slice->all : $slice);
696 }
697
698 =head2 next
699
700 =over 4
701
702 =item Arguments: none
703
704 =item Return Value: $result?
705
706 =back
707
708 Returns the next element in the resultset (C<undef> is there is none).
709
710 Can be used to efficiently iterate over records in the resultset:
711
712   my $rs = $schema->resultset('CD')->search;
713   while (my $cd = $rs->next) {
714     print $cd->title;
715   }
716
717 Note that you need to store the resultset object, and call C<next> on it.
718 Calling C<< resultset('Table')->next >> repeatedly will always return the
719 first record from the resultset.
720
721 =cut
722
723 sub next {
724   my ($self) = @_;
725   if (my $cache = $self->get_cache) {
726     $self->{all_cache_position} ||= 0;
727     return $cache->[$self->{all_cache_position}++];
728   }
729   if ($self->{attrs}{cache}) {
730     $self->{all_cache_position} = 1;
731     return ($self->all)[0];
732   }
733   if ($self->{stashed_objects}) {
734     my $obj = shift(@{$self->{stashed_objects}});
735     delete $self->{stashed_objects} unless @{$self->{stashed_objects}};
736     return $obj;
737   }
738   my @row = (
739     exists $self->{stashed_row}
740       ? @{delete $self->{stashed_row}}
741       : $self->cursor->next
742   );
743   return unless (@row);
744   my ($row, @more) = $self->_construct_object(@row);
745   $self->{stashed_objects} = \@more if @more;
746   return $row;
747 }
748
749 sub _construct_object {
750   my ($self, @row) = @_;
751   my $info = $self->_collapse_result($self->{_attrs}{as}, \@row);
752   my @new = $self->result_class->inflate_result($self->result_source, @$info);
753   @new = $self->{_attrs}{record_filter}->(@new)
754     if exists $self->{_attrs}{record_filter};
755   return @new;
756 }
757
758 sub _collapse_result {
759   my ($self, $as_proto, $row) = @_;
760
761   my @copy = @$row;
762
763   # 'foo'         => [ undef, 'foo' ]
764   # 'foo.bar'     => [ 'foo', 'bar' ]
765   # 'foo.bar.baz' => [ 'foo.bar', 'baz' ]
766
767   my @construct_as = map { [ (/^(?:(.*)\.)?([^.]+)$/) ] } @$as_proto;
768
769   my %collapse = %{$self->{_attrs}{collapse}||{}};
770
771   my @pri_index;
772
773   # if we're doing collapsing (has_many prefetch) we need to grab records
774   # until the PK changes, so fill @pri_index. if not, we leave it empty so
775   # we know we don't have to bother.
776
777   # the reason for not using the collapse stuff directly is because if you
778   # had for e.g. two artists in a row with no cds, the collapse info for
779   # both would be NULL (undef) so you'd lose the second artist
780
781   # store just the index so we can check the array positions from the row
782   # without having to contruct the full hash
783
784   if (keys %collapse) {
785     my %pri = map { ($_ => 1) } $self->result_source->primary_columns;
786     foreach my $i (0 .. $#construct_as) {
787       next if defined($construct_as[$i][0]); # only self table
788       if (delete $pri{$construct_as[$i][1]}) {
789         push(@pri_index, $i);
790       }
791       last unless keys %pri; # short circuit (Johnny Five Is Alive!)
792     }
793   }
794
795   # no need to do an if, it'll be empty if @pri_index is empty anyway
796
797   my %pri_vals = map { ($_ => $copy[$_]) } @pri_index;
798
799   my @const_rows;
800
801   do { # no need to check anything at the front, we always want the first row
802
803     my %const;
804   
805     foreach my $this_as (@construct_as) {
806       $const{$this_as->[0]||''}{$this_as->[1]} = shift(@copy);
807     }
808
809     push(@const_rows, \%const);
810
811   } until ( # no pri_index => no collapse => drop straight out
812       !@pri_index
813     or
814       do { # get another row, stash it, drop out if different PK
815
816         @copy = $self->cursor->next;
817         $self->{stashed_row} = \@copy;
818
819         # last thing in do block, counts as true if anything doesn't match
820
821         # check xor defined first for NULL vs. NOT NULL then if one is
822         # defined the other must be so check string equality
823
824         grep {
825           (defined $pri_vals{$_} ^ defined $copy[$_])
826           || (defined $pri_vals{$_} && ($pri_vals{$_} ne $copy[$_]))
827         } @pri_index;
828       }
829   );
830
831   my $alias = $self->{attrs}{alias};
832   my $info = [];
833
834   my %collapse_pos;
835
836   my @const_keys;
837
838   use Data::Dumper;
839
840   foreach my $const (@const_rows) {
841     scalar @const_keys or do {
842       @const_keys = sort { length($a) <=> length($b) } keys %$const;
843     };
844     foreach my $key (@const_keys) {
845       if (length $key) {
846         my $target = $info;
847         my @parts = split(/\./, $key);
848         my $cur = '';
849         my $data = $const->{$key};
850         foreach my $p (@parts) {
851           $target = $target->[1]->{$p} ||= [];
852           $cur .= ".${p}";
853           if ($cur eq ".${key}" && (my @ckey = @{$collapse{$cur}||[]})) { 
854             # collapsing at this point and on final part
855             my $pos = $collapse_pos{$cur};
856             CK: foreach my $ck (@ckey) {
857               if (!defined $pos->{$ck} || $pos->{$ck} ne $data->{$ck}) {
858                 $collapse_pos{$cur} = $data;
859                 delete @collapse_pos{ # clear all positioning for sub-entries
860                   grep { m/^\Q${cur}.\E/ } keys %collapse_pos
861                 };
862                 push(@$target, []);
863                 last CK;
864               }
865             }
866           }
867           if (exists $collapse{$cur}) {
868             $target = $target->[-1];
869           }
870         }
871         $target->[0] = $data;
872       } else {
873         $info->[0] = $const->{$key};
874       }
875     }
876   }
877
878   return $info;
879 }
880
881 =head2 result_source
882
883 =over 4
884
885 =item Arguments: $result_source?
886
887 =item Return Value: $result_source
888
889 =back
890
891 An accessor for the primary ResultSource object from which this ResultSet
892 is derived.
893
894 =head2 result_class
895
896 =over 4
897
898 =item Arguments: $result_class?
899
900 =item Return Value: $result_class
901
902 =back
903
904 An accessor for the class to use when creating row objects. Defaults to 
905 C<< result_source->result_class >> - which in most cases is the name of the 
906 L<"table"|DBIx::Class::Manual::Glossary/"ResultSource"> class.
907
908 =cut
909
910
911 =head2 count
912
913 =over 4
914
915 =item Arguments: $cond, \%attrs??
916
917 =item Return Value: $count
918
919 =back
920
921 Performs an SQL C<COUNT> with the same query as the resultset was built
922 with to find the number of elements. If passed arguments, does a search
923 on the resultset and counts the results of that.
924
925 Note: When using C<count> with C<group_by>, L<DBIX::Class> emulates C<GROUP BY>
926 using C<COUNT( DISTINCT( columns ) )>. Some databases (notably SQLite) do
927 not support C<DISTINCT> with multiple columns. If you are using such a
928 database, you should only use columns from the main table in your C<group_by>
929 clause.
930
931 =cut
932
933 sub count {
934   my $self = shift;
935   return $self->search(@_)->count if @_ and defined $_[0];
936   return scalar @{ $self->get_cache } if $self->get_cache;
937   my $count = $self->_count;
938   return 0 unless $count;
939
940   $count -= $self->{attrs}{offset} if $self->{attrs}{offset};
941   $count = $self->{attrs}{rows} if
942     $self->{attrs}{rows} and $self->{attrs}{rows} < $count;
943   return $count;
944 }
945
946 sub _count { # Separated out so pager can get the full count
947   my $self = shift;
948   my $select = { count => '*' };
949
950   my $attrs = { %{$self->_resolved_attrs} };
951   if (my $group_by = delete $attrs->{group_by}) {
952     delete $attrs->{having};
953     my @distinct = (ref $group_by ?  @$group_by : ($group_by));
954     # todo: try CONCAT for multi-column pk
955     my @pk = $self->result_source->primary_columns;
956     if (@pk == 1) {
957       my $alias = $attrs->{alias};
958       foreach my $column (@distinct) {
959         if ($column =~ qr/^(?:\Q${alias}.\E)?$pk[0]$/) {
960           @distinct = ($column);
961           last;
962         }
963       }
964     }
965
966     $select = { count => { distinct => \@distinct } };
967   }
968
969   $attrs->{select} = $select;
970   $attrs->{as} = [qw/count/];
971
972   # offset, order by and page are not needed to count. record_filter is cdbi
973   delete $attrs->{$_} for qw/rows offset order_by page pager record_filter/;
974
975   my $tmp_rs = (ref $self)->new($self->_source_handle, $attrs);
976   my ($count) = $tmp_rs->cursor->next;
977   return $count;
978 }
979
980 =head2 count_literal
981
982 =over 4
983
984 =item Arguments: $sql_fragment, @bind_values
985
986 =item Return Value: $count
987
988 =back
989
990 Counts the results in a literal query. Equivalent to calling L</search_literal>
991 with the passed arguments, then L</count>.
992
993 =cut
994
995 sub count_literal { shift->search_literal(@_)->count; }
996
997 =head2 all
998
999 =over 4
1000
1001 =item Arguments: none
1002
1003 =item Return Value: @objects
1004
1005 =back
1006
1007 Returns all elements in the resultset. Called implicitly if the resultset
1008 is returned in list context.
1009
1010 =cut
1011
1012 sub all {
1013   my ($self) = @_;
1014   return @{ $self->get_cache } if $self->get_cache;
1015
1016   my @obj;
1017
1018   # TODO: don't call resolve here
1019   if (keys %{$self->_resolved_attrs->{collapse}}) {
1020 #  if ($self->{attrs}{prefetch}) {
1021       # Using $self->cursor->all is really just an optimisation.
1022       # If we're collapsing has_many prefetches it probably makes
1023       # very little difference, and this is cleaner than hacking
1024       # _construct_object to survive the approach
1025     my @row = $self->cursor->next;
1026     while (@row) {
1027       push(@obj, $self->_construct_object(@row));
1028       @row = (exists $self->{stashed_row}
1029                ? @{delete $self->{stashed_row}}
1030                : $self->cursor->next);
1031     }
1032   } else {
1033     @obj = map { $self->_construct_object(@$_) } $self->cursor->all;
1034   }
1035
1036   $self->set_cache(\@obj) if $self->{attrs}{cache};
1037   return @obj;
1038 }
1039
1040 =head2 reset
1041
1042 =over 4
1043
1044 =item Arguments: none
1045
1046 =item Return Value: $self
1047
1048 =back
1049
1050 Resets the resultset's cursor, so you can iterate through the elements again.
1051
1052 =cut
1053
1054 sub reset {
1055   my ($self) = @_;
1056   delete $self->{_attrs} if exists $self->{_attrs};
1057   $self->{all_cache_position} = 0;
1058   $self->cursor->reset;
1059   return $self;
1060 }
1061
1062 =head2 first
1063
1064 =over 4
1065
1066 =item Arguments: none
1067
1068 =item Return Value: $object?
1069
1070 =back
1071
1072 Resets the resultset and returns an object for the first result (if the
1073 resultset returns anything).
1074
1075 =cut
1076
1077 sub first {
1078   return $_[0]->reset->next;
1079 }
1080
1081 # _cond_for_update_delete
1082 #
1083 # update/delete require the condition to be modified to handle
1084 # the differing SQL syntax available.  This transforms the $self->{cond}
1085 # appropriately, returning the new condition.
1086
1087 sub _cond_for_update_delete {
1088   my ($self, $full_cond) = @_;
1089   my $cond = {};
1090
1091   $full_cond ||= $self->{cond};
1092   # No-op. No condition, we're updating/deleting everything
1093   return $cond unless ref $full_cond;
1094
1095   if (ref $full_cond eq 'ARRAY') {
1096     $cond = [
1097       map {
1098         my %hash;
1099         foreach my $key (keys %{$_}) {
1100           $key =~ /([^.]+)$/;
1101           $hash{$1} = $_->{$key};
1102         }
1103         \%hash;
1104       } @{$full_cond}
1105     ];
1106   }
1107   elsif (ref $full_cond eq 'HASH') {
1108     if ((keys %{$full_cond})[0] eq '-and') {
1109       $cond->{-and} = [];
1110
1111       my @cond = @{$full_cond->{-and}};
1112       for (my $i = 0; $i < @cond; $i++) {
1113         my $entry = $cond[$i];
1114
1115         my $hash;
1116         if (ref $entry eq 'HASH') {
1117           $hash = $self->_cond_for_update_delete($entry);
1118         }
1119         else {
1120           $entry =~ /([^.]+)$/;
1121           $hash->{$1} = $cond[++$i];
1122         }
1123
1124         push @{$cond->{-and}}, $hash;
1125       }
1126     }
1127     else {
1128       foreach my $key (keys %{$full_cond}) {
1129         $key =~ /([^.]+)$/;
1130         $cond->{$1} = $full_cond->{$key};
1131       }
1132     }
1133   }
1134   else {
1135     $self->throw_exception(
1136       "Can't update/delete on resultset with condition unless hash or array"
1137     );
1138   }
1139
1140   return $cond;
1141 }
1142
1143
1144 =head2 update
1145
1146 =over 4
1147
1148 =item Arguments: \%values
1149
1150 =item Return Value: $storage_rv
1151
1152 =back
1153
1154 Sets the specified columns in the resultset to the supplied values in a
1155 single query. Return value will be true if the update succeeded or false
1156 if no records were updated; exact type of success value is storage-dependent.
1157
1158 =cut
1159
1160 sub update {
1161   my ($self, $values) = @_;
1162   $self->throw_exception("Values for update must be a hash")
1163     unless ref $values eq 'HASH';
1164
1165   my $cond = $self->_cond_for_update_delete;
1166    
1167   return $self->result_source->storage->update(
1168     $self->result_source, $values, $cond
1169   );
1170 }
1171
1172 =head2 update_all
1173
1174 =over 4
1175
1176 =item Arguments: \%values
1177
1178 =item Return Value: 1
1179
1180 =back
1181
1182 Fetches all objects and updates them one at a time. Note that C<update_all>
1183 will run DBIC cascade triggers, while L</update> will not.
1184
1185 =cut
1186
1187 sub update_all {
1188   my ($self, $values) = @_;
1189   $self->throw_exception("Values for update must be a hash")
1190     unless ref $values eq 'HASH';
1191   foreach my $obj ($self->all) {
1192     $obj->set_columns($values)->update;
1193   }
1194   return 1;
1195 }
1196
1197 =head2 delete
1198
1199 =over 4
1200
1201 =item Arguments: none
1202
1203 =item Return Value: 1
1204
1205 =back
1206
1207 Deletes the contents of the resultset from its result source. Note that this
1208 will not run DBIC cascade triggers. See L</delete_all> if you need triggers
1209 to run. See also L<DBIx::Class::Row/delete>.
1210
1211 =cut
1212
1213 sub delete {
1214   my ($self) = @_;
1215
1216   my $cond = $self->_cond_for_update_delete;
1217
1218   $self->result_source->storage->delete($self->result_source, $cond);
1219   return 1;
1220 }
1221
1222 =head2 delete_all
1223
1224 =over 4
1225
1226 =item Arguments: none
1227
1228 =item Return Value: 1
1229
1230 =back
1231
1232 Fetches all objects and deletes them one at a time. Note that C<delete_all>
1233 will run DBIC cascade triggers, while L</delete> will not.
1234
1235 =cut
1236
1237 sub delete_all {
1238   my ($self) = @_;
1239   $_->delete for $self->all;
1240   return 1;
1241 }
1242
1243 =head2 populate
1244
1245 =over 4
1246
1247 =item Arguments: $source_name, \@data;
1248
1249 =back
1250
1251 Pass an arrayref of hashrefs. Each hashref should be a structure suitable for
1252 submitting to a $resultset->create(...) method.
1253
1254 In void context, C<insert_bulk> in L<DBIx::Class::Storage::DBI> is used
1255 to insert the data, as this is a fast method.
1256
1257 Otherwise, each set of data is inserted into the database using
1258 L<DBIx::Class::ResultSet/create>, and a arrayref of the resulting row
1259 objects is returned.
1260
1261 i.e.,
1262
1263   $rs->populate( [
1264           { artistid => 4, name => 'Manufactured Crap', cds => [ 
1265                   { title => 'My First CD', year => 2006 },
1266                   { title => 'Yet More Tweeny-Pop crap', year => 2007 },
1267                 ] 
1268           },
1269           { artistid => 5, name => 'Angsty-Whiny Girl', cds => [
1270                   { title => 'My parents sold me to a record company' ,year => 2005 },
1271                   { title => 'Why Am I So Ugly?', year => 2006 },
1272                   { title => 'I Got Surgery and am now Popular', year => 2007 }
1273                 ]
1274           },
1275           { name => 'Like I Give a Damn' }
1276
1277         ] );
1278
1279 =cut
1280 use Data::Dump qw/dump/;
1281
1282 sub populate {
1283   my ($self, $data) = @_;
1284   
1285   if(defined wantarray) {
1286     my @created;
1287     foreach my $item (@$data) {
1288       push(@created, $self->create($item));
1289     }
1290     return @created;
1291   } else {
1292     my ($first, @rest) = @$data;
1293         
1294     my @names = grep { !ref $first->{$_} } keys %$first;
1295         
1296         my @values = map {
1297                 [ map {
1298                         defined $_ ? $_ : $self->throw_exception("Undefined value for column!")
1299                 } @$_{@names} ]
1300         } @$data;
1301                 
1302     $self->result_source->storage->insert_bulk(
1303                 $self->result_source, 
1304                 \@names, 
1305                 \@values,
1306         );
1307
1308         my @rels = grep { $self->result_source->has_relationship($_) } keys %$first;
1309         my @pks = $self->result_source->primary_columns;
1310
1311         foreach my $item (@$data) {
1312
1313                 foreach my $rel (@rels) {
1314                         next unless $item->{$rel};
1315                         
1316                         my $parent      = $self->find(map {{$_=>$item->{$_}} } @pks) || next;
1317                         my $child       = $parent->$rel;
1318
1319                         my $related = $child->result_source->resolve_condition(
1320                                 
1321                                 $parent->result_source->relationship_info($rel)->{cond},
1322                                 $child,
1323                                 $parent,
1324                         );
1325                         
1326                         my @rows_to_add = ref $item->{$rel} eq 'ARRAY' ? @{$item->{$rel}} : ($item->{$rel});
1327                         my @populate = map { {%$_, %$related} } @rows_to_add;
1328
1329                         $child->populate( \@populate );
1330                 }
1331         }
1332         
1333   }
1334 }
1335
1336 =head2 pager
1337
1338 =over 4
1339
1340 =item Arguments: none
1341
1342 =item Return Value: $pager
1343
1344 =back
1345
1346 Return Value a L<Data::Page> object for the current resultset. Only makes
1347 sense for queries with a C<page> attribute.
1348
1349 =cut
1350
1351 sub pager {
1352   my ($self) = @_;
1353   my $attrs = $self->{attrs};
1354   $self->throw_exception("Can't create pager for non-paged rs")
1355     unless $self->{attrs}{page};
1356   $attrs->{rows} ||= 10;
1357   return $self->{pager} ||= Data::Page->new(
1358     $self->_count, $attrs->{rows}, $self->{attrs}{page});
1359 }
1360
1361 =head2 page
1362
1363 =over 4
1364
1365 =item Arguments: $page_number
1366
1367 =item Return Value: $rs
1368
1369 =back
1370
1371 Returns a resultset for the $page_number page of the resultset on which page
1372 is called, where each page contains a number of rows equal to the 'rows'
1373 attribute set on the resultset (10 by default).
1374
1375 =cut
1376
1377 sub page {
1378   my ($self, $page) = @_;
1379   return (ref $self)->new($self->_source_handle, { %{$self->{attrs}}, page => $page });
1380 }
1381
1382 =head2 new_result
1383
1384 =over 4
1385
1386 =item Arguments: \%vals
1387
1388 =item Return Value: $object
1389
1390 =back
1391
1392 Creates an object in the resultset's result class and returns it.
1393
1394 =cut
1395
1396 sub new_result {
1397   my ($self, $values) = @_;
1398   $self->throw_exception( "new_result needs a hash" )
1399     unless (ref $values eq 'HASH');
1400   $self->throw_exception(
1401     "Can't abstract implicit construct, condition not a hash"
1402   ) if ($self->{cond} && !(ref $self->{cond} eq 'HASH'));
1403
1404   my $alias = $self->{attrs}{alias};
1405   my $collapsed_cond = $self->{cond} ? $self->_collapse_cond($self->{cond}) : {};
1406   my %new = (
1407     %{ $self->_remove_alias($values, $alias) },
1408     %{ $self->_remove_alias($collapsed_cond, $alias) },
1409     -source_handle => $self->_source_handle
1410   );
1411
1412   return $self->result_class->new(\%new);
1413 }
1414
1415 # _collapse_cond
1416 #
1417 # Recursively collapse the condition.
1418
1419 sub _collapse_cond {
1420   my ($self, $cond, $collapsed) = @_;
1421
1422   $collapsed ||= {};
1423
1424   if (ref $cond eq 'ARRAY') {
1425     foreach my $subcond (@$cond) {
1426       next unless ref $subcond;  # -or
1427 #      warn "ARRAY: " . Dumper $subcond;
1428       $collapsed = $self->_collapse_cond($subcond, $collapsed);
1429     }
1430   }
1431   elsif (ref $cond eq 'HASH') {
1432     if (keys %$cond and (keys %$cond)[0] eq '-and') {
1433       foreach my $subcond (@{$cond->{-and}}) {
1434 #        warn "HASH: " . Dumper $subcond;
1435         $collapsed = $self->_collapse_cond($subcond, $collapsed);
1436       }
1437     }
1438     else {
1439 #      warn "LEAF: " . Dumper $cond;
1440       foreach my $col (keys %$cond) {
1441         my $value = $cond->{$col};
1442         $collapsed->{$col} = $value;
1443       }
1444     }
1445   }
1446
1447   return $collapsed;
1448 }
1449
1450 # _remove_alias
1451 #
1452 # Remove the specified alias from the specified query hash. A copy is made so
1453 # the original query is not modified.
1454
1455 sub _remove_alias {
1456   my ($self, $query, $alias) = @_;
1457
1458   my %orig = %{ $query || {} };
1459   my %unaliased;
1460
1461   foreach my $key (keys %orig) {
1462     if ($key !~ /\./) {
1463       $unaliased{$key} = $orig{$key};
1464       next;
1465     }
1466     $unaliased{$1} = $orig{$key}
1467       if $key =~ m/^(?:\Q$alias\E\.)?([^.]+)$/;
1468   }
1469
1470   return \%unaliased;
1471 }
1472
1473 =head2 find_or_new
1474
1475 =over 4
1476
1477 =item Arguments: \%vals, \%attrs?
1478
1479 =item Return Value: $object
1480
1481 =back
1482
1483 Find an existing record from this resultset. If none exists, instantiate a new
1484 result object and return it. The object will not be saved into your storage
1485 until you call L<DBIx::Class::Row/insert> on it.
1486
1487 If you want objects to be saved immediately, use L</find_or_create> instead.
1488
1489 =cut
1490
1491 sub find_or_new {
1492   my $self     = shift;
1493   my $attrs    = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1494   my $hash     = ref $_[0] eq 'HASH' ? shift : {@_};
1495   my $exists   = $self->find($hash, $attrs);
1496   return defined $exists ? $exists : $self->new_result($hash);
1497 }
1498
1499 =head2 create
1500
1501 =over 4
1502
1503 =item Arguments: \%vals
1504
1505 =item Return Value: $object
1506
1507 =back
1508
1509 Inserts a record into the resultset and returns the object representing it.
1510
1511 Effectively a shortcut for C<< ->new_result(\%vals)->insert >>.
1512
1513 =cut
1514
1515 sub create {
1516   my ($self, $attrs) = @_;
1517   $self->throw_exception( "create needs a hashref" )
1518     unless ref $attrs eq 'HASH';
1519   return $self->new_result($attrs)->insert;
1520 }
1521
1522 =head2 find_or_create
1523
1524 =over 4
1525
1526 =item Arguments: \%vals, \%attrs?
1527
1528 =item Return Value: $object
1529
1530 =back
1531
1532   $class->find_or_create({ key => $val, ... });
1533
1534 Tries to find a record based on its primary key or unique constraint; if none
1535 is found, creates one and returns that instead.
1536
1537   my $cd = $schema->resultset('CD')->find_or_create({
1538     cdid   => 5,
1539     artist => 'Massive Attack',
1540     title  => 'Mezzanine',
1541     year   => 2005,
1542   });
1543
1544 Also takes an optional C<key> attribute, to search by a specific key or unique
1545 constraint. For example:
1546
1547   my $cd = $schema->resultset('CD')->find_or_create(
1548     {
1549       artist => 'Massive Attack',
1550       title  => 'Mezzanine',
1551     },
1552     { key => 'cd_artist_title' }
1553   );
1554
1555 See also L</find> and L</update_or_create>. For information on how to declare
1556 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
1557
1558 =cut
1559
1560 sub find_or_create {
1561   my $self     = shift;
1562   my $attrs    = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1563   my $hash     = ref $_[0] eq 'HASH' ? shift : {@_};
1564   my $exists   = $self->find($hash, $attrs);
1565   return defined $exists ? $exists : $self->create($hash);
1566 }
1567
1568 =head2 update_or_create
1569
1570 =over 4
1571
1572 =item Arguments: \%col_values, { key => $unique_constraint }?
1573
1574 =item Return Value: $object
1575
1576 =back
1577
1578   $class->update_or_create({ col => $val, ... });
1579
1580 First, searches for an existing row matching one of the unique constraints
1581 (including the primary key) on the source of this resultset. If a row is
1582 found, updates it with the other given column values. Otherwise, creates a new
1583 row.
1584
1585 Takes an optional C<key> attribute to search on a specific unique constraint.
1586 For example:
1587
1588   # In your application
1589   my $cd = $schema->resultset('CD')->update_or_create(
1590     {
1591       artist => 'Massive Attack',
1592       title  => 'Mezzanine',
1593       year   => 1998,
1594     },
1595     { key => 'cd_artist_title' }
1596   );
1597
1598 If no C<key> is specified, it searches on all unique constraints defined on the
1599 source, including the primary key.
1600
1601 If the C<key> is specified as C<primary>, it searches only on the primary key.
1602
1603 See also L</find> and L</find_or_create>. For information on how to declare
1604 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
1605
1606 =cut
1607
1608 sub update_or_create {
1609   my $self = shift;
1610   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
1611   my $cond = ref $_[0] eq 'HASH' ? shift : {@_};
1612
1613   my $row = $self->find($cond, $attrs);
1614   if (defined $row) {
1615     $row->update($cond);
1616     return $row;
1617   }
1618
1619   return $self->create($cond);
1620 }
1621
1622 =head2 get_cache
1623
1624 =over 4
1625
1626 =item Arguments: none
1627
1628 =item Return Value: \@cache_objects?
1629
1630 =back
1631
1632 Gets the contents of the cache for the resultset, if the cache is set.
1633
1634 =cut
1635
1636 sub get_cache {
1637   shift->{all_cache};
1638 }
1639
1640 =head2 set_cache
1641
1642 =over 4
1643
1644 =item Arguments: \@cache_objects
1645
1646 =item Return Value: \@cache_objects
1647
1648 =back
1649
1650 Sets the contents of the cache for the resultset. Expects an arrayref
1651 of objects of the same class as those produced by the resultset. Note that
1652 if the cache is set the resultset will return the cached objects rather
1653 than re-querying the database even if the cache attr is not set.
1654
1655 =cut
1656
1657 sub set_cache {
1658   my ( $self, $data ) = @_;
1659   $self->throw_exception("set_cache requires an arrayref")
1660       if defined($data) && (ref $data ne 'ARRAY');
1661   $self->{all_cache} = $data;
1662 }
1663
1664 =head2 clear_cache
1665
1666 =over 4
1667
1668 =item Arguments: none
1669
1670 =item Return Value: []
1671
1672 =back
1673
1674 Clears the cache for the resultset.
1675
1676 =cut
1677
1678 sub clear_cache {
1679   shift->set_cache(undef);
1680 }
1681
1682 =head2 related_resultset
1683
1684 =over 4
1685
1686 =item Arguments: $relationship_name
1687
1688 =item Return Value: $resultset
1689
1690 =back
1691
1692 Returns a related resultset for the supplied relationship name.
1693
1694   $artist_rs = $schema->resultset('CD')->related_resultset('Artist');
1695
1696 =cut
1697
1698 sub related_resultset {
1699   my ($self, $rel) = @_;
1700
1701   $self->{related_resultsets} ||= {};
1702   return $self->{related_resultsets}{$rel} ||= do {
1703     my $rel_obj = $self->result_source->relationship_info($rel);
1704
1705     $self->throw_exception(
1706       "search_related: result source '" . $self->_source_handle->source_moniker .
1707         "' has no such relationship $rel")
1708       unless $rel_obj;
1709     
1710     my ($from,$seen) = $self->_resolve_from($rel);
1711
1712     my $join_count = $seen->{$rel};
1713     my $alias = ($join_count > 1 ? join('_', $rel, $join_count) : $rel);
1714
1715     $self->_source_handle->schema->resultset($rel_obj->{class})->search_rs(
1716       undef, {
1717         %{$self->{attrs}||{}},
1718         join => undef,
1719         prefetch => undef,
1720         select => undef,
1721         as => undef,
1722         alias => $alias,
1723         where => $self->{cond},
1724         seen_join => $seen,
1725         from => $from,
1726     });
1727   };
1728 }
1729
1730 sub _resolve_from {
1731   my ($self, $extra_join) = @_;
1732   my $source = $self->result_source;
1733   my $attrs = $self->{attrs};
1734   
1735   my $from = $attrs->{from}
1736     || [ { $attrs->{alias} => $source->from } ];
1737     
1738   my $seen = { %{$attrs->{seen_join}||{}} };
1739
1740   my $join = ($attrs->{join}
1741                ? [ $attrs->{join}, $extra_join ]
1742                : $extra_join);
1743   $from = [
1744     @$from,
1745     ($join ? $source->resolve_join($join, $attrs->{alias}, $seen) : ()),
1746   ];
1747
1748   return ($from,$seen);
1749 }
1750
1751 sub _resolved_attrs {
1752   my $self = shift;
1753   return $self->{_attrs} if $self->{_attrs};
1754
1755   my $attrs = { %{$self->{attrs}||{}} };
1756   my $source = $self->result_source;
1757   my $alias = $attrs->{alias};
1758
1759   $attrs->{columns} ||= delete $attrs->{cols} if exists $attrs->{cols};
1760   if ($attrs->{columns}) {
1761     delete $attrs->{as};
1762   } elsif (!$attrs->{select}) {
1763     $attrs->{columns} = [ $source->columns ];
1764   }
1765  
1766   $attrs->{select} = 
1767     ($attrs->{select}
1768       ? (ref $attrs->{select} eq 'ARRAY'
1769           ? [ @{$attrs->{select}} ]
1770           : [ $attrs->{select} ])
1771       : [ map { m/\./ ? $_ : "${alias}.$_" } @{delete $attrs->{columns}} ]
1772     );
1773   $attrs->{as} =
1774     ($attrs->{as}
1775       ? (ref $attrs->{as} eq 'ARRAY'
1776           ? [ @{$attrs->{as}} ]
1777           : [ $attrs->{as} ])
1778       : [ map { m/^\Q${alias}.\E(.+)$/ ? $1 : $_ } @{$attrs->{select}} ]
1779     );
1780   
1781   my $adds;
1782   if ($adds = delete $attrs->{include_columns}) {
1783     $adds = [$adds] unless ref $adds eq 'ARRAY';
1784     push(@{$attrs->{select}}, @$adds);
1785     push(@{$attrs->{as}}, map { m/([^.]+)$/; $1 } @$adds);
1786   }
1787   if ($adds = delete $attrs->{'+select'}) {
1788     $adds = [$adds] unless ref $adds eq 'ARRAY';
1789     push(@{$attrs->{select}},
1790            map { /\./ || ref $_ ? $_ : "${alias}.$_" } @$adds);
1791   }
1792   if (my $adds = delete $attrs->{'+as'}) {
1793     $adds = [$adds] unless ref $adds eq 'ARRAY';
1794     push(@{$attrs->{as}}, @$adds);
1795   }
1796
1797   $attrs->{from} ||= [ { 'me' => $source->from } ];
1798
1799   if (exists $attrs->{join} || exists $attrs->{prefetch}) {
1800     my $join = delete $attrs->{join} || {};
1801
1802     if (defined $attrs->{prefetch}) {
1803       $join = $self->_merge_attr(
1804         $join, $attrs->{prefetch}
1805       );
1806     }
1807
1808     $attrs->{from} =   # have to copy here to avoid corrupting the original
1809       [
1810         @{$attrs->{from}}, 
1811         $source->resolve_join($join, $alias, { %{$attrs->{seen_join}||{}} })
1812       ];
1813   }
1814
1815   $attrs->{group_by} ||= $attrs->{select} if delete $attrs->{distinct};
1816   if ($attrs->{order_by}) {
1817     $attrs->{order_by} = (ref($attrs->{order_by}) eq 'ARRAY'
1818                            ? [ @{$attrs->{order_by}} ]
1819                            : [ $attrs->{order_by} ]);
1820   } else {
1821     $attrs->{order_by} = [];    
1822   }
1823
1824   my $collapse = $attrs->{collapse} || {};
1825   if (my $prefetch = delete $attrs->{prefetch}) {
1826     $prefetch = $self->_merge_attr({}, $prefetch);
1827     my @pre_order;
1828     my $seen = $attrs->{seen_join} || {};
1829     foreach my $p (ref $prefetch eq 'ARRAY' ? @$prefetch : ($prefetch)) {
1830       # bring joins back to level of current class
1831       my @prefetch = $source->resolve_prefetch(
1832         $p, $alias, $seen, \@pre_order, $collapse
1833       );
1834       push(@{$attrs->{select}}, map { $_->[0] } @prefetch);
1835       push(@{$attrs->{as}}, map { $_->[1] } @prefetch);
1836     }
1837     push(@{$attrs->{order_by}}, @pre_order);
1838   }
1839   $attrs->{collapse} = $collapse;
1840
1841   return $self->{_attrs} = $attrs;
1842 }
1843
1844 sub _merge_attr {
1845   my ($self, $a, $b) = @_;
1846   return $b unless defined($a);
1847   return $a unless defined($b);
1848   
1849   if (ref $b eq 'HASH' && ref $a eq 'HASH') {
1850     foreach my $key (keys %{$b}) {
1851       if (exists $a->{$key}) {
1852         $a->{$key} = $self->_merge_attr($a->{$key}, $b->{$key});
1853       } else {
1854         $a->{$key} = $b->{$key};
1855       }
1856     }
1857     return $a;
1858   } else {
1859     $a = [$a] unless ref $a eq 'ARRAY';
1860     $b = [$b] unless ref $b eq 'ARRAY';
1861
1862     my $hash = {};
1863     my @array;
1864     foreach my $x ($a, $b) {
1865       foreach my $element (@{$x}) {
1866         if (ref $element eq 'HASH') {
1867           $hash = $self->_merge_attr($hash, $element);
1868         } elsif (ref $element eq 'ARRAY') {
1869           push(@array, @{$element});
1870         } else {
1871           push(@array, $element) unless $b == $x
1872             && grep { $_ eq $element } @array;
1873         }
1874       }
1875     }
1876     
1877     @array = grep { !exists $hash->{$_} } @array;
1878
1879     return keys %{$hash}
1880       ? ( scalar(@array)
1881             ? [$hash, @array]
1882             : $hash
1883         )
1884       : \@array;
1885   }
1886 }
1887
1888 sub result_source {
1889     my $self = shift;
1890
1891     if (@_) {
1892         $self->_source_handle($_[0]->handle);
1893     } else {
1894         $self->_source_handle->resolve;
1895     }
1896 }
1897
1898 =head2 throw_exception
1899
1900 See L<DBIx::Class::Schema/throw_exception> for details.
1901
1902 =cut
1903
1904 sub throw_exception {
1905   my $self=shift;
1906   $self->_source_handle->schema->throw_exception(@_);
1907 }
1908
1909 # XXX: FIXME: Attributes docs need clearing up
1910
1911 =head1 ATTRIBUTES
1912
1913 The resultset takes various attributes that modify its behavior. Here's an
1914 overview of them:
1915
1916 =head2 order_by
1917
1918 =over 4
1919
1920 =item Value: ($order_by | \@order_by)
1921
1922 =back
1923
1924 Which column(s) to order the results by. This is currently passed
1925 through directly to SQL, so you can give e.g. C<year DESC> for a
1926 descending order on the column `year'.
1927
1928 Please note that if you have C<quote_char> enabled (see
1929 L<DBIx::Class::Storage::DBI/connect_info>) you will need to do C<\'year DESC' > to
1930 specify an order. (The scalar ref causes it to be passed as raw sql to the DB,
1931 so you will need to manually quote things as appropriate.)
1932
1933 =head2 columns
1934
1935 =over 4
1936
1937 =item Value: \@columns
1938
1939 =back
1940
1941 Shortcut to request a particular set of columns to be retrieved.  Adds
1942 C<me.> onto the start of any column without a C<.> in it and sets C<select>
1943 from that, then auto-populates C<as> from C<select> as normal. (You may also
1944 use the C<cols> attribute, as in earlier versions of DBIC.)
1945
1946 =head2 include_columns
1947
1948 =over 4
1949
1950 =item Value: \@columns
1951
1952 =back
1953
1954 Shortcut to include additional columns in the returned results - for example
1955
1956   $schema->resultset('CD')->search(undef, {
1957     include_columns => ['artist.name'],
1958     join => ['artist']
1959   });
1960
1961 would return all CDs and include a 'name' column to the information
1962 passed to object inflation. Note that the 'artist' is the name of the
1963 column (or relationship) accessor, and 'name' is the name of the column
1964 accessor in the related table.
1965
1966 =head2 select
1967
1968 =over 4
1969
1970 =item Value: \@select_columns
1971
1972 =back
1973
1974 Indicates which columns should be selected from the storage. You can use
1975 column names, or in the case of RDBMS back ends, function or stored procedure
1976 names:
1977
1978   $rs = $schema->resultset('Employee')->search(undef, {
1979     select => [
1980       'name',
1981       { count => 'employeeid' },
1982       { sum => 'salary' }
1983     ]
1984   });
1985
1986 When you use function/stored procedure names and do not supply an C<as>
1987 attribute, the column names returned are storage-dependent. E.g. MySQL would
1988 return a column named C<count(employeeid)> in the above example.
1989
1990 =head2 +select
1991
1992 =over 4
1993
1994 Indicates additional columns to be selected from storage.  Works the same as
1995 L<select> but adds columns to the selection.
1996
1997 =back
1998
1999 =head2 +as
2000
2001 =over 4
2002
2003 Indicates additional column names for those added via L<+select>.
2004
2005 =back
2006
2007 =head2 as
2008
2009 =over 4
2010
2011 =item Value: \@inflation_names
2012
2013 =back
2014
2015 Indicates column names for object inflation. That is, c< as >
2016 indicates the name that the column can be accessed as via the
2017 C<get_column> method (or via the object accessor, B<if one already
2018 exists>).  It has nothing to do with the SQL code C< SELECT foo AS bar
2019 >.
2020
2021 The C< as > attribute is used in conjunction with C<select>,
2022 usually when C<select> contains one or more function or stored
2023 procedure names:
2024
2025   $rs = $schema->resultset('Employee')->search(undef, {
2026     select => [
2027       'name',
2028       { count => 'employeeid' }
2029     ],
2030     as => ['name', 'employee_count'],
2031   });
2032
2033   my $employee = $rs->first(); # get the first Employee
2034
2035 If the object against which the search is performed already has an accessor
2036 matching a column name specified in C<as>, the value can be retrieved using
2037 the accessor as normal:
2038
2039   my $name = $employee->name();
2040
2041 If on the other hand an accessor does not exist in the object, you need to
2042 use C<get_column> instead:
2043
2044   my $employee_count = $employee->get_column('employee_count');
2045
2046 You can create your own accessors if required - see
2047 L<DBIx::Class::Manual::Cookbook> for details.
2048
2049 Please note: This will NOT insert an C<AS employee_count> into the SQL
2050 statement produced, it is used for internal access only. Thus
2051 attempting to use the accessor in an C<order_by> clause or similar
2052 will fail miserably.
2053
2054 To get around this limitation, you can supply literal SQL to your
2055 C<select> attibute that contains the C<AS alias> text, eg:
2056
2057   select => [\'myfield AS alias']
2058
2059 =head2 join
2060
2061 =over 4
2062
2063 =item Value: ($rel_name | \@rel_names | \%rel_names)
2064
2065 =back
2066
2067 Contains a list of relationships that should be joined for this query.  For
2068 example:
2069
2070   # Get CDs by Nine Inch Nails
2071   my $rs = $schema->resultset('CD')->search(
2072     { 'artist.name' => 'Nine Inch Nails' },
2073     { join => 'artist' }
2074   );
2075
2076 Can also contain a hash reference to refer to the other relation's relations.
2077 For example:
2078
2079   package MyApp::Schema::Track;
2080   use base qw/DBIx::Class/;
2081   __PACKAGE__->table('track');
2082   __PACKAGE__->add_columns(qw/trackid cd position title/);
2083   __PACKAGE__->set_primary_key('trackid');
2084   __PACKAGE__->belongs_to(cd => 'MyApp::Schema::CD');
2085   1;
2086
2087   # In your application
2088   my $rs = $schema->resultset('Artist')->search(
2089     { 'track.title' => 'Teardrop' },
2090     {
2091       join     => { cd => 'track' },
2092       order_by => 'artist.name',
2093     }
2094   );
2095
2096 You need to use the relationship (not the table) name in  conditions, 
2097 because they are aliased as such. The current table is aliased as "me", so 
2098 you need to use me.column_name in order to avoid ambiguity. For example:
2099
2100   # Get CDs from 1984 with a 'Foo' track 
2101   my $rs = $schema->resultset('CD')->search(
2102     { 
2103       'me.year' => 1984,
2104       'tracks.name' => 'Foo'
2105     },
2106     { join => 'tracks' }
2107   );
2108   
2109 If the same join is supplied twice, it will be aliased to <rel>_2 (and
2110 similarly for a third time). For e.g.
2111
2112   my $rs = $schema->resultset('Artist')->search({
2113     'cds.title'   => 'Down to Earth',
2114     'cds_2.title' => 'Popular',
2115   }, {
2116     join => [ qw/cds cds/ ],
2117   });
2118
2119 will return a set of all artists that have both a cd with title 'Down
2120 to Earth' and a cd with title 'Popular'.
2121
2122 If you want to fetch related objects from other tables as well, see C<prefetch>
2123 below.
2124
2125 =head2 prefetch
2126
2127 =over 4
2128
2129 =item Value: ($rel_name | \@rel_names | \%rel_names)
2130
2131 =back
2132
2133 Contains one or more relationships that should be fetched along with the main
2134 query (when they are accessed afterwards they will have already been
2135 "prefetched").  This is useful for when you know you will need the related
2136 objects, because it saves at least one query:
2137
2138   my $rs = $schema->resultset('Tag')->search(
2139     undef,
2140     {
2141       prefetch => {
2142         cd => 'artist'
2143       }
2144     }
2145   );
2146
2147 The initial search results in SQL like the following:
2148
2149   SELECT tag.*, cd.*, artist.* FROM tag
2150   JOIN cd ON tag.cd = cd.cdid
2151   JOIN artist ON cd.artist = artist.artistid
2152
2153 L<DBIx::Class> has no need to go back to the database when we access the
2154 C<cd> or C<artist> relationships, which saves us two SQL statements in this
2155 case.
2156
2157 Simple prefetches will be joined automatically, so there is no need
2158 for a C<join> attribute in the above search. If you're prefetching to
2159 depth (e.g. { cd => { artist => 'label' } or similar), you'll need to
2160 specify the join as well.
2161
2162 C<prefetch> can be used with the following relationship types: C<belongs_to>,
2163 C<has_one> (or if you're using C<add_relationship>, any relationship declared
2164 with an accessor type of 'single' or 'filter').
2165
2166 =head2 page
2167
2168 =over 4
2169
2170 =item Value: $page
2171
2172 =back
2173
2174 Makes the resultset paged and specifies the page to retrieve. Effectively
2175 identical to creating a non-pages resultset and then calling ->page($page)
2176 on it.
2177
2178 If L<rows> attribute is not specified it defualts to 10 rows per page.
2179
2180 =head2 rows
2181
2182 =over 4
2183
2184 =item Value: $rows
2185
2186 =back
2187
2188 Specifes the maximum number of rows for direct retrieval or the number of
2189 rows per page if the page attribute or method is used.
2190
2191 =head2 offset
2192
2193 =over 4
2194
2195 =item Value: $offset
2196
2197 =back
2198
2199 Specifies the (zero-based) row number for the  first row to be returned, or the
2200 of the first row of the first page if paging is used.
2201
2202 =head2 group_by
2203
2204 =over 4
2205
2206 =item Value: \@columns
2207
2208 =back
2209
2210 A arrayref of columns to group by. Can include columns of joined tables.
2211
2212   group_by => [qw/ column1 column2 ... /]
2213
2214 =head2 having
2215
2216 =over 4
2217
2218 =item Value: $condition
2219
2220 =back
2221
2222 HAVING is a select statement attribute that is applied between GROUP BY and
2223 ORDER BY. It is applied to the after the grouping calculations have been
2224 done.
2225
2226   having => { 'count(employee)' => { '>=', 100 } }
2227
2228 =head2 distinct
2229
2230 =over 4
2231
2232 =item Value: (0 | 1)
2233
2234 =back
2235
2236 Set to 1 to group by all columns.
2237
2238 =head2 where
2239
2240 =over 4
2241
2242 Adds to the WHERE clause.
2243
2244   # only return rows WHERE deleted IS NULL for all searches
2245   __PACKAGE__->resultset_attributes({ where => { deleted => undef } }); )
2246
2247 Can be overridden by passing C<{ where => undef }> as an attribute
2248 to a resulset.
2249
2250 =back
2251
2252 =head2 cache
2253
2254 Set to 1 to cache search results. This prevents extra SQL queries if you
2255 revisit rows in your ResultSet:
2256
2257   my $resultset = $schema->resultset('Artist')->search( undef, { cache => 1 } );
2258
2259   while( my $artist = $resultset->next ) {
2260     ... do stuff ...
2261   }
2262
2263   $rs->first; # without cache, this would issue a query
2264
2265 By default, searches are not cached.
2266
2267 For more examples of using these attributes, see
2268 L<DBIx::Class::Manual::Cookbook>.
2269
2270 =head2 from
2271
2272 =over 4
2273
2274 =item Value: \@from_clause
2275
2276 =back
2277
2278 The C<from> attribute gives you manual control over the C<FROM> clause of SQL
2279 statements generated by L<DBIx::Class>, allowing you to express custom C<JOIN>
2280 clauses.
2281
2282 NOTE: Use this on your own risk.  This allows you to shoot off your foot!
2283
2284 C<join> will usually do what you need and it is strongly recommended that you
2285 avoid using C<from> unless you cannot achieve the desired result using C<join>.
2286 And we really do mean "cannot", not just tried and failed. Attempting to use
2287 this because you're having problems with C<join> is like trying to use x86
2288 ASM because you've got a syntax error in your C. Trust us on this.
2289
2290 Now, if you're still really, really sure you need to use this (and if you're
2291 not 100% sure, ask the mailing list first), here's an explanation of how this
2292 works.
2293
2294 The syntax is as follows -
2295
2296   [
2297     { <alias1> => <table1> },
2298     [
2299       { <alias2> => <table2>, -join_type => 'inner|left|right' },
2300       [], # nested JOIN (optional)
2301       { <table1.column1> => <table2.column2>, ... (more conditions) },
2302     ],
2303     # More of the above [ ] may follow for additional joins
2304   ]
2305
2306   <table1> <alias1>
2307   JOIN
2308     <table2> <alias2>
2309     [JOIN ...]
2310   ON <table1.column1> = <table2.column2>
2311   <more joins may follow>
2312
2313 An easy way to follow the examples below is to remember the following:
2314
2315     Anything inside "[]" is a JOIN
2316     Anything inside "{}" is a condition for the enclosing JOIN
2317
2318 The following examples utilize a "person" table in a family tree application.
2319 In order to express parent->child relationships, this table is self-joined:
2320
2321     # Person->belongs_to('father' => 'Person');
2322     # Person->belongs_to('mother' => 'Person');
2323
2324 C<from> can be used to nest joins. Here we return all children with a father,
2325 then search against all mothers of those children:
2326
2327   $rs = $schema->resultset('Person')->search(
2328       undef,
2329       {
2330           alias => 'mother', # alias columns in accordance with "from"
2331           from => [
2332               { mother => 'person' },
2333               [
2334                   [
2335                       { child => 'person' },
2336                       [
2337                           { father => 'person' },
2338                           { 'father.person_id' => 'child.father_id' }
2339                       ]
2340                   ],
2341                   { 'mother.person_id' => 'child.mother_id' }
2342               ],
2343           ]
2344       },
2345   );
2346
2347   # Equivalent SQL:
2348   # SELECT mother.* FROM person mother
2349   # JOIN (
2350   #   person child
2351   #   JOIN person father
2352   #   ON ( father.person_id = child.father_id )
2353   # )
2354   # ON ( mother.person_id = child.mother_id )
2355
2356 The type of any join can be controlled manually. To search against only people
2357 with a father in the person table, we could explicitly use C<INNER JOIN>:
2358
2359     $rs = $schema->resultset('Person')->search(
2360         undef,
2361         {
2362             alias => 'child', # alias columns in accordance with "from"
2363             from => [
2364                 { child => 'person' },
2365                 [
2366                     { father => 'person', -join_type => 'inner' },
2367                     { 'father.id' => 'child.father_id' }
2368                 ],
2369             ]
2370         },
2371     );
2372
2373     # Equivalent SQL:
2374     # SELECT child.* FROM person child
2375     # INNER JOIN person father ON child.father_id = father.id
2376
2377 =cut
2378
2379 1;