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