c7841e82588f24cd72d2aa9c065b37b06c081d58
[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 DBIx::Class::Exception;
11 use Data::Page;
12 use Storable;
13 use DBIx::Class::ResultSetColumn;
14 use DBIx::Class::ResultSourceHandle;
15 use List::Util ();
16 use Scalar::Util ();
17 use base qw/DBIx::Class/;
18
19 __PACKAGE__->mk_group_accessors('simple' => qw/_result_class _source_handle/);
20
21 =head1 NAME
22
23 DBIx::Class::ResultSet - Represents a query used for fetching a set of results.
24
25 =head1 SYNOPSIS
26
27   my $users_rs   = $schema->resultset('User');
28   my $registered_users_rs   = $schema->resultset('User')->search({ registered => 1 });
29   my @cds_in_2005 = $schema->resultset('CD')->search({ year => 2005 })->all();
30
31 =head1 DESCRIPTION
32
33 A ResultSet is an object which stores a set of conditions representing
34 a query. It is the backbone of DBIx::Class (i.e. the really
35 important/useful bit).
36
37 No SQL is executed on the database when a ResultSet is created, it
38 just stores all the conditions needed to create the query.
39
40 A basic ResultSet representing the data of an entire table is returned
41 by calling C<resultset> on a L<DBIx::Class::Schema> and passing in a
42 L<Source|DBIx::Class::Manual::Glossary/Source> name.
43
44   my $users_rs = $schema->resultset('User');
45
46 A new ResultSet is returned from calling L</search> on an existing
47 ResultSet. The new one will contain all the conditions of the
48 original, plus any new conditions added in the C<search> call.
49
50 A ResultSet also incorporates an implicit iterator. L</next> and L</reset>
51 can be used to walk through all the L<DBIx::Class::Row>s the ResultSet
52 represents.
53
54 The query that the ResultSet represents is B<only> executed against
55 the database when these methods are called:
56 L</find> L</next> L</all> L</first> L</single> L</count>
57
58 =head1 EXAMPLES
59
60 =head2 Chaining resultsets
61
62 Let's say you've got a query that needs to be run to return some data
63 to the user. But, you have an authorization system in place that
64 prevents certain users from seeing certain information. So, you want
65 to construct the basic query in one method, but add constraints to it in
66 another.
67
68   sub get_data {
69     my $self = shift;
70     my $request = $self->get_request; # Get a request object somehow.
71     my $schema = $self->get_schema;   # Get the DBIC schema object somehow.
72
73     my $cd_rs = $schema->resultset('CD')->search({
74       title => $request->param('title'),
75       year => $request->param('year'),
76     });
77
78     $self->apply_security_policy( $cd_rs );
79
80     return $cd_rs->all();
81   }
82
83   sub apply_security_policy {
84     my $self = shift;
85     my ($rs) = @_;
86
87     return $rs->search({
88       subversive => 0,
89     });
90   }
91
92 =head3 Resolving conditions and attributes
93
94 When a resultset is chained from another resultset, conditions and
95 attributes with the same keys need resolving.
96
97 L</join>, L</prefetch>, L</+select>, L</+as> attributes are merged
98 into the existing ones from the original resultset.
99
100 The L</where>, L</having> attribute, and any search conditions are
101 merged with an SQL C<AND> to the existing condition from the original
102 resultset.
103
104 All other attributes are overridden by any new ones supplied in the
105 search attributes.
106
107 =head2 Multiple queries
108
109 Since a resultset just defines a query, you can do all sorts of
110 things with it with the same object.
111
112   # Don't hit the DB yet.
113   my $cd_rs = $schema->resultset('CD')->search({
114     title => 'something',
115     year => 2009,
116   });
117
118   # Each of these hits the DB individually.
119   my $count = $cd_rs->count;
120   my $most_recent = $cd_rs->get_column('date_released')->max();
121   my @records = $cd_rs->all;
122
123 And it's not just limited to SELECT statements.
124
125   $cd_rs->delete();
126
127 This is even cooler:
128
129   $cd_rs->create({ artist => 'Fred' });
130
131 Which is the same as:
132
133   $schema->resultset('CD')->create({
134     title => 'something',
135     year => 2009,
136     artist => 'Fred'
137   });
138
139 See: L</search>, L</count>, L</get_column>, L</all>, L</create>.
140
141 =head1 OVERLOADING
142
143 If a resultset is used in a numeric context it returns the L</count>.
144 However, if it is used in a booleand context it is always true.  So if
145 you want to check if a resultset has any results use C<if $rs != 0>.
146 C<if $rs> will always be true.
147
148 =head1 METHODS
149
150 =head2 new
151
152 =over 4
153
154 =item Arguments: $source, \%$attrs
155
156 =item Return Value: $rs
157
158 =back
159
160 The resultset constructor. Takes a source object (usually a
161 L<DBIx::Class::ResultSourceProxy::Table>) and an attribute hash (see
162 L</ATTRIBUTES> below).  Does not perform any queries -- these are
163 executed as needed by the other methods.
164
165 Generally you won't need to construct a resultset manually.  You'll
166 automatically get one from e.g. a L</search> called in scalar context:
167
168   my $rs = $schema->resultset('CD')->search({ title => '100th Window' });
169
170 IMPORTANT: If called on an object, proxies to new_result instead so
171
172   my $cd = $schema->resultset('CD')->new({ title => 'Spoon' });
173
174 will return a CD object, not a ResultSet.
175
176 =cut
177
178 sub new {
179   my $class = shift;
180   return $class->new_result(@_) if ref $class;
181
182   my ($source, $attrs) = @_;
183   $source = $source->handle
184     unless $source->isa('DBIx::Class::ResultSourceHandle');
185   $attrs = { %{$attrs||{}} };
186
187   if ($attrs->{page}) {
188     $attrs->{rows} ||= 10;
189   }
190
191   $attrs->{alias} ||= 'me';
192
193   # Creation of {} and bless separated to mitigate RH perl bug
194   # see https://bugzilla.redhat.com/show_bug.cgi?id=196836
195   my $self = {
196     _source_handle => $source,
197     cond => $attrs->{where},
198     count => undef,
199     pager => undef,
200     attrs => $attrs
201   };
202
203   bless $self, $class;
204
205   $self->result_class(
206     $attrs->{result_class} || $source->resolve->result_class
207   );
208
209   return $self;
210 }
211
212 =head2 search
213
214 =over 4
215
216 =item Arguments: $cond, \%attrs?
217
218 =item Return Value: $resultset (scalar context), @row_objs (list context)
219
220 =back
221
222   my @cds    = $cd_rs->search({ year => 2001 }); # "... WHERE year = 2001"
223   my $new_rs = $cd_rs->search({ year => 2005 });
224
225   my $new_rs = $cd_rs->search([ { year => 2005 }, { year => 2004 } ]);
226                  # year = 2005 OR year = 2004
227
228 If you need to pass in additional attributes but no additional condition,
229 call it as C<search(undef, \%attrs)>.
230
231   # "SELECT name, artistid FROM $artist_table"
232   my @all_artists = $schema->resultset('Artist')->search(undef, {
233     columns => [qw/name artistid/],
234   });
235
236 For a list of attributes that can be passed to C<search>, see
237 L</ATTRIBUTES>. For more examples of using this function, see
238 L<Searching|DBIx::Class::Manual::Cookbook/Searching>. For a complete
239 documentation for the first argument, see L<SQL::Abstract>.
240
241 For more help on using joins with search, see L<DBIx::Class::Manual::Joining>.
242
243 =cut
244
245 sub search {
246   my $self = shift;
247   my $rs = $self->search_rs( @_ );
248   return (wantarray ? $rs->all : $rs);
249 }
250
251 =head2 search_rs
252
253 =over 4
254
255 =item Arguments: $cond, \%attrs?
256
257 =item Return Value: $resultset
258
259 =back
260
261 This method does the same exact thing as search() except it will
262 always return a resultset, even in list context.
263
264 =cut
265
266 sub search_rs {
267   my $self = shift;
268
269   # Special-case handling for (undef, undef).
270   if ( @_ == 2 && !defined $_[1] && !defined $_[0] ) {
271     pop(@_); pop(@_);
272   }
273
274   my $attrs = {};
275   $attrs = pop(@_) if @_ > 1 and ref $_[$#_] eq 'HASH';
276   my $our_attrs = { %{$self->{attrs}} };
277   my $having = delete $our_attrs->{having};
278   my $where = delete $our_attrs->{where};
279
280   my $rows;
281
282   my %safe = (alias => 1, cache => 1);
283
284   unless (
285     (@_ && defined($_[0])) # @_ == () or (undef)
286     ||
287     (keys %$attrs # empty attrs or only 'safe' attrs
288     && List::Util::first { !$safe{$_} } keys %$attrs)
289   ) {
290     # no search, effectively just a clone
291     $rows = $self->get_cache;
292   }
293
294   my $new_attrs = { %{$our_attrs}, %{$attrs} };
295
296   # merge new attrs into inherited
297   foreach my $key (qw/join prefetch +select +as bind/) {
298     next unless exists $attrs->{$key};
299     $new_attrs->{$key} = $self->_merge_attr($our_attrs->{$key}, $attrs->{$key});
300   }
301
302   if (List::Util::first { exists $new_attrs->{$_} } qw{select as columns}) {
303      delete $new_attrs->{$_} for (qw{+select +as +columns});
304   }
305
306   my $cond = (@_
307     ? (
308         (@_ == 1 || ref $_[0] eq "HASH")
309           ? (
310               (ref $_[0] eq 'HASH')
311                 ? (
312                     (keys %{ $_[0] }  > 0)
313                       ? shift
314                       : undef
315                    )
316                 :  shift
317              )
318           : (
319               (@_ % 2)
320                 ? $self->throw_exception("Odd number of arguments to search")
321                 : {@_}
322              )
323       )
324     : undef
325   );
326
327   if (defined $where) {
328     $new_attrs->{where} = (
329       defined $new_attrs->{where}
330         ? { '-and' => [
331               map {
332                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
333               } $where, $new_attrs->{where}
334             ]
335           }
336         : $where);
337   }
338
339   if (defined $cond) {
340     $new_attrs->{where} = (
341       defined $new_attrs->{where}
342         ? { '-and' => [
343               map {
344                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
345               } $cond, $new_attrs->{where}
346             ]
347           }
348         : $cond);
349   }
350
351   if (defined $having) {
352     $new_attrs->{having} = (
353       defined $new_attrs->{having}
354         ? { '-and' => [
355               map {
356                 ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_
357               } $having, $new_attrs->{having}
358             ]
359           }
360         : $having);
361   }
362
363   my $rs = (ref $self)->new($self->result_source, $new_attrs);
364
365   $rs->set_cache($rows) if ($rows);
366
367   return $rs;
368 }
369
370 =head2 search_literal
371
372 =over 4
373
374 =item Arguments: $sql_fragment, @bind_values
375
376 =item Return Value: $resultset (scalar context), @row_objs (list context)
377
378 =back
379
380   my @cds   = $cd_rs->search_literal('year = ? AND title = ?', qw/2001 Reload/);
381   my $newrs = $artist_rs->search_literal('name = ?', 'Metallica');
382
383 Pass a literal chunk of SQL to be added to the conditional part of the
384 resultset query.
385
386 CAVEAT: C<search_literal> is provided for Class::DBI compatibility and should
387 only be used in that context. C<search_literal> is a convenience method.
388 It is equivalent to calling $schema->search(\[]), but if you want to ensure
389 columns are bound correctly, use C<search>.
390
391 Example of how to use C<search> instead of C<search_literal>
392
393   my @cds = $cd_rs->search_literal('cdid = ? AND (artist = ? OR artist = ?)', (2, 1, 2));
394   my @cds = $cd_rs->search(\[ 'cdid = ? AND (artist = ? OR artist = ?)', [ 'cdid', 2 ], [ 'artist', 1 ], [ 'artist', 2 ] ]);
395
396
397 See L<DBIx::Class::Manual::Cookbook/Searching> and
398 L<DBIx::Class::Manual::FAQ/Searching> for searching techniques that do not
399 require C<search_literal>.
400
401 =cut
402
403 sub search_literal {
404   my ($self, $sql, @bind) = @_;
405   my $attr;
406   if ( @bind && ref($bind[-1]) eq 'HASH' ) {
407     $attr = pop @bind;
408   }
409   return $self->search(\[ $sql, map [ __DUMMY__ => $_ ], @bind ], ($attr || () ));
410 }
411
412 =head2 find
413
414 =over 4
415
416 =item Arguments: @values | \%cols, \%attrs?
417
418 =item Return Value: $row_object | undef
419
420 =back
421
422 Finds a row based on its primary key or unique constraint. For example, to find
423 a row by its primary key:
424
425   my $cd = $schema->resultset('CD')->find(5);
426
427 You can also find a row by a specific unique constraint using the C<key>
428 attribute. For example:
429
430   my $cd = $schema->resultset('CD')->find('Massive Attack', 'Mezzanine', {
431     key => 'cd_artist_title'
432   });
433
434 Additionally, you can specify the columns explicitly by name:
435
436   my $cd = $schema->resultset('CD')->find(
437     {
438       artist => 'Massive Attack',
439       title  => 'Mezzanine',
440     },
441     { key => 'cd_artist_title' }
442   );
443
444 If the C<key> is specified as C<primary>, it searches only on the primary key.
445
446 If no C<key> is specified, it searches on all unique constraints defined on the
447 source for which column data is provided, including the primary key.
448
449 If your table does not have a primary key, you B<must> provide a value for the
450 C<key> attribute matching one of the unique constraints on the source.
451
452 In addition to C<key>, L</find> recognizes and applies standard
453 L<resultset attributes|/ATTRIBUTES> in the same way as L</search> does.
454
455 Note: If your query does not return only one row, a warning is generated:
456
457   Query returned more than one row
458
459 See also L</find_or_create> and L</update_or_create>. For information on how to
460 declare unique constraints, see
461 L<DBIx::Class::ResultSource/add_unique_constraint>.
462
463 =cut
464
465 sub find {
466   my $self = shift;
467   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
468
469   # Default to the primary key, but allow a specific key
470   my @cols = exists $attrs->{key}
471     ? $self->result_source->unique_constraint_columns($attrs->{key})
472     : $self->result_source->primary_columns;
473   $self->throw_exception(
474     "Can't find unless a primary key is defined or unique constraint is specified"
475   ) unless @cols;
476
477   # Parse out a hashref from input
478   my $input_query;
479   if (ref $_[0] eq 'HASH') {
480     $input_query = { %{$_[0]} };
481   }
482   elsif (@_ == @cols) {
483     $input_query = {};
484     @{$input_query}{@cols} = @_;
485   }
486   else {
487     # Compatibility: Allow e.g. find(id => $value)
488     carp "Find by key => value deprecated; please use a hashref instead";
489     $input_query = {@_};
490   }
491
492   my (%related, $info);
493
494   KEY: foreach my $key (keys %$input_query) {
495     if (ref($input_query->{$key})
496         && ($info = $self->result_source->relationship_info($key))) {
497       my $val = delete $input_query->{$key};
498       next KEY if (ref($val) eq 'ARRAY'); # has_many for multi_create
499       my $rel_q = $self->result_source->_resolve_condition(
500                     $info->{cond}, $val, $key
501                   );
502       die "Can't handle OR join condition in find" if ref($rel_q) eq 'ARRAY';
503       @related{keys %$rel_q} = values %$rel_q;
504     }
505   }
506   if (my @keys = keys %related) {
507     @{$input_query}{@keys} = values %related;
508   }
509
510
511   # Build the final query: Default to the disjunction of the unique queries,
512   # but allow the input query in case the ResultSet defines the query or the
513   # user is abusing find
514   my $alias = exists $attrs->{alias} ? $attrs->{alias} : $self->{attrs}{alias};
515   my $query;
516   if (exists $attrs->{key}) {
517     my @unique_cols = $self->result_source->unique_constraint_columns($attrs->{key});
518     my $unique_query = $self->_build_unique_query($input_query, \@unique_cols);
519     $query = $self->_add_alias($unique_query, $alias);
520   }
521   elsif ($self->{attrs}{accessor} and $self->{attrs}{accessor} eq 'single') {
522     # This means that we got here after a merger of relationship conditions
523     # in ::Relationship::Base::search_related (the row method), and furthermore
524     # the relationship is of the 'single' type. This means that the condition
525     # provided by the relationship (already attached to $self) is sufficient,
526     # as there can be only one row in the databse that would satisfy the
527     # relationship
528   }
529   else {
530     my @unique_queries = $self->_unique_queries($input_query, $attrs);
531     $query = @unique_queries
532       ? [ map { $self->_add_alias($_, $alias) } @unique_queries ]
533       : $self->_add_alias($input_query, $alias);
534   }
535
536   # Run the query
537   my $rs = $self->search ($query, {result_class => $self->result_class, %$attrs});
538   if (keys %{$rs->_resolved_attrs->{collapse}}) {
539     my $row = $rs->next;
540     carp "Query returned more than one row" if $rs->next;
541     return $row;
542   }
543   else {
544     return $rs->single;
545   }
546 }
547
548 # _add_alias
549 #
550 # Add the specified alias to the specified query hash. A copy is made so the
551 # original query is not modified.
552
553 sub _add_alias {
554   my ($self, $query, $alias) = @_;
555
556   my %aliased = %$query;
557   foreach my $col (grep { ! m/\./ } keys %aliased) {
558     $aliased{"$alias.$col"} = delete $aliased{$col};
559   }
560
561   return \%aliased;
562 }
563
564 # _unique_queries
565 #
566 # Build a list of queries which satisfy unique constraints.
567
568 sub _unique_queries {
569   my ($self, $query, $attrs) = @_;
570
571   my @constraint_names = exists $attrs->{key}
572     ? ($attrs->{key})
573     : $self->result_source->unique_constraint_names;
574
575   my $where = $self->_collapse_cond($self->{attrs}{where} || {});
576   my $num_where = scalar keys %$where;
577
578   my (@unique_queries, %seen_column_combinations);
579   foreach my $name (@constraint_names) {
580     my @constraint_cols = $self->result_source->unique_constraint_columns($name);
581
582     my $constraint_sig = join "\x00", sort @constraint_cols;
583     next if $seen_column_combinations{$constraint_sig}++;
584
585     my $unique_query = $self->_build_unique_query($query, \@constraint_cols);
586
587     my $num_cols = scalar @constraint_cols;
588     my $num_query = scalar keys %$unique_query;
589
590     my $total = $num_query + $num_where;
591     if ($num_query && ($num_query == $num_cols || $total == $num_cols)) {
592       # The query is either unique on its own or is unique in combination with
593       # the existing where clause
594       push @unique_queries, $unique_query;
595     }
596   }
597
598   return @unique_queries;
599 }
600
601 # _build_unique_query
602 #
603 # Constrain the specified query hash based on the specified column names.
604
605 sub _build_unique_query {
606   my ($self, $query, $unique_cols) = @_;
607
608   return {
609     map  { $_ => $query->{$_} }
610     grep { exists $query->{$_} }
611       @$unique_cols
612   };
613 }
614
615 =head2 search_related
616
617 =over 4
618
619 =item Arguments: $rel, $cond, \%attrs?
620
621 =item Return Value: $new_resultset
622
623 =back
624
625   $new_rs = $cd_rs->search_related('artist', {
626     name => 'Emo-R-Us',
627   });
628
629 Searches the specified relationship, optionally specifying a condition and
630 attributes for matching records. See L</ATTRIBUTES> for more information.
631
632 =cut
633
634 sub search_related {
635   return shift->related_resultset(shift)->search(@_);
636 }
637
638 =head2 search_related_rs
639
640 This method works exactly the same as search_related, except that
641 it guarantees a restultset, even in list context.
642
643 =cut
644
645 sub search_related_rs {
646   return shift->related_resultset(shift)->search_rs(@_);
647 }
648
649 =head2 cursor
650
651 =over 4
652
653 =item Arguments: none
654
655 =item Return Value: $cursor
656
657 =back
658
659 Returns a storage-driven cursor to the given resultset. See
660 L<DBIx::Class::Cursor> for more information.
661
662 =cut
663
664 sub cursor {
665   my ($self) = @_;
666
667   my $attrs = $self->_resolved_attrs_copy;
668
669   return $self->{cursor}
670     ||= $self->result_source->storage->select($attrs->{from}, $attrs->{select},
671           $attrs->{where},$attrs);
672 }
673
674 =head2 single
675
676 =over 4
677
678 =item Arguments: $cond?
679
680 =item Return Value: $row_object?
681
682 =back
683
684   my $cd = $schema->resultset('CD')->single({ year => 2001 });
685
686 Inflates the first result without creating a cursor if the resultset has
687 any records in it; if not returns nothing. Used by L</find> as a lean version of
688 L</search>.
689
690 While this method can take an optional search condition (just like L</search>)
691 being a fast-code-path it does not recognize search attributes. If you need to
692 add extra joins or similar, call L</search> and then chain-call L</single> on the
693 L<DBIx::Class::ResultSet> returned.
694
695 =over
696
697 =item B<Note>
698
699 As of 0.08100, this method enforces the assumption that the preceeding
700 query returns only one row. If more than one row is returned, you will receive
701 a warning:
702
703   Query returned more than one row
704
705 In this case, you should be using L</next> or L</find> instead, or if you really
706 know what you are doing, use the L</rows> attribute to explicitly limit the size
707 of the resultset.
708
709 This method will also throw an exception if it is called on a resultset prefetching
710 has_many, as such a prefetch implies fetching multiple rows from the database in
711 order to assemble the resulting object.
712
713 =back
714
715 =cut
716
717 sub single {
718   my ($self, $where) = @_;
719   if(@_ > 2) {
720       $self->throw_exception('single() only takes search conditions, no attributes. You want ->search( $cond, $attrs )->single()');
721   }
722
723   my $attrs = $self->_resolved_attrs_copy;
724
725   if (keys %{$attrs->{collapse}}) {
726     $self->throw_exception(
727       'single() can not be used on resultsets prefetching has_many. Use find( \%cond ) or next() instead'
728     );
729   }
730
731   if ($where) {
732     if (defined $attrs->{where}) {
733       $attrs->{where} = {
734         '-and' =>
735             [ map { ref $_ eq 'ARRAY' ? [ -or => $_ ] : $_ }
736                $where, delete $attrs->{where} ]
737       };
738     } else {
739       $attrs->{where} = $where;
740     }
741   }
742
743 #  XXX: Disabled since it doesn't infer uniqueness in all cases
744 #  unless ($self->_is_unique_query($attrs->{where})) {
745 #    carp "Query not guaranteed to return a single row"
746 #      . "; please declare your unique constraints or use search instead";
747 #  }
748
749   my @data = $self->result_source->storage->select_single(
750     $attrs->{from}, $attrs->{select},
751     $attrs->{where}, $attrs
752   );
753
754   return (@data ? ($self->_construct_object(@data))[0] : undef);
755 }
756
757
758 # _is_unique_query
759 #
760 # Try to determine if the specified query is guaranteed to be unique, based on
761 # the declared unique constraints.
762
763 sub _is_unique_query {
764   my ($self, $query) = @_;
765
766   my $collapsed = $self->_collapse_query($query);
767   my $alias = $self->{attrs}{alias};
768
769   foreach my $name ($self->result_source->unique_constraint_names) {
770     my @unique_cols = map {
771       "$alias.$_"
772     } $self->result_source->unique_constraint_columns($name);
773
774     # Count the values for each unique column
775     my %seen = map { $_ => 0 } @unique_cols;
776
777     foreach my $key (keys %$collapsed) {
778       my $aliased = $key =~ /\./ ? $key : "$alias.$key";
779       next unless exists $seen{$aliased};  # Additional constraints are okay
780       $seen{$aliased} = scalar keys %{ $collapsed->{$key} };
781     }
782
783     # If we get 0 or more than 1 value for a column, it's not necessarily unique
784     return 1 unless grep { $_ != 1 } values %seen;
785   }
786
787   return 0;
788 }
789
790 # _collapse_query
791 #
792 # Recursively collapse the query, accumulating values for each column.
793
794 sub _collapse_query {
795   my ($self, $query, $collapsed) = @_;
796
797   $collapsed ||= {};
798
799   if (ref $query eq 'ARRAY') {
800     foreach my $subquery (@$query) {
801       next unless ref $subquery;  # -or
802       $collapsed = $self->_collapse_query($subquery, $collapsed);
803     }
804   }
805   elsif (ref $query eq 'HASH') {
806     if (keys %$query and (keys %$query)[0] eq '-and') {
807       foreach my $subquery (@{$query->{-and}}) {
808         $collapsed = $self->_collapse_query($subquery, $collapsed);
809       }
810     }
811     else {
812       foreach my $col (keys %$query) {
813         my $value = $query->{$col};
814         $collapsed->{$col}{$value}++;
815       }
816     }
817   }
818
819   return $collapsed;
820 }
821
822 =head2 get_column
823
824 =over 4
825
826 =item Arguments: $cond?
827
828 =item Return Value: $resultsetcolumn
829
830 =back
831
832   my $max_length = $rs->get_column('length')->max;
833
834 Returns a L<DBIx::Class::ResultSetColumn> instance for a column of the ResultSet.
835
836 =cut
837
838 sub get_column {
839   my ($self, $column) = @_;
840   my $new = DBIx::Class::ResultSetColumn->new($self, $column);
841   return $new;
842 }
843
844 =head2 search_like
845
846 =over 4
847
848 =item Arguments: $cond, \%attrs?
849
850 =item Return Value: $resultset (scalar context), @row_objs (list context)
851
852 =back
853
854   # WHERE title LIKE '%blue%'
855   $cd_rs = $rs->search_like({ title => '%blue%'});
856
857 Performs a search, but uses C<LIKE> instead of C<=> as the condition. Note
858 that this is simply a convenience method retained for ex Class::DBI users.
859 You most likely want to use L</search> with specific operators.
860
861 For more information, see L<DBIx::Class::Manual::Cookbook>.
862
863 This method is deprecated and will be removed in 0.09. Use L</search()>
864 instead. An example conversion is:
865
866   ->search_like({ foo => 'bar' });
867
868   # Becomes
869
870   ->search({ foo => { like => 'bar' } });
871
872 =cut
873
874 sub search_like {
875   my $class = shift;
876   carp (
877     'search_like() is deprecated and will be removed in DBIC version 0.09.'
878    .' Instead use ->search({ x => { -like => "y%" } })'
879    .' (note the outer pair of {}s - they are important!)'
880   );
881   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
882   my $query = ref $_[0] eq 'HASH' ? { %{shift()} }: {@_};
883   $query->{$_} = { 'like' => $query->{$_} } for keys %$query;
884   return $class->search($query, { %$attrs });
885 }
886
887 =head2 slice
888
889 =over 4
890
891 =item Arguments: $first, $last
892
893 =item Return Value: $resultset (scalar context), @row_objs (list context)
894
895 =back
896
897 Returns a resultset or object list representing a subset of elements from the
898 resultset slice is called on. Indexes are from 0, i.e., to get the first
899 three records, call:
900
901   my ($one, $two, $three) = $rs->slice(0, 2);
902
903 =cut
904
905 sub slice {
906   my ($self, $min, $max) = @_;
907   my $attrs = {}; # = { %{ $self->{attrs} || {} } };
908   $attrs->{offset} = $self->{attrs}{offset} || 0;
909   $attrs->{offset} += $min;
910   $attrs->{rows} = ($max ? ($max - $min + 1) : 1);
911   return $self->search(undef(), $attrs);
912   #my $slice = (ref $self)->new($self->result_source, $attrs);
913   #return (wantarray ? $slice->all : $slice);
914 }
915
916 =head2 next
917
918 =over 4
919
920 =item Arguments: none
921
922 =item Return Value: $result?
923
924 =back
925
926 Returns the next element in the resultset (C<undef> is there is none).
927
928 Can be used to efficiently iterate over records in the resultset:
929
930   my $rs = $schema->resultset('CD')->search;
931   while (my $cd = $rs->next) {
932     print $cd->title;
933   }
934
935 Note that you need to store the resultset object, and call C<next> on it.
936 Calling C<< resultset('Table')->next >> repeatedly will always return the
937 first record from the resultset.
938
939 =cut
940
941 sub next {
942   my ($self) = @_;
943   if (my $cache = $self->get_cache) {
944     $self->{all_cache_position} ||= 0;
945     return $cache->[$self->{all_cache_position}++];
946   }
947   if ($self->{attrs}{cache}) {
948     $self->{all_cache_position} = 1;
949     return ($self->all)[0];
950   }
951   if ($self->{stashed_objects}) {
952     my $obj = shift(@{$self->{stashed_objects}});
953     delete $self->{stashed_objects} unless @{$self->{stashed_objects}};
954     return $obj;
955   }
956   my @row = (
957     exists $self->{stashed_row}
958       ? @{delete $self->{stashed_row}}
959       : $self->cursor->next
960   );
961   return undef unless (@row);
962   my ($row, @more) = $self->_construct_object(@row);
963   $self->{stashed_objects} = \@more if @more;
964   return $row;
965 }
966
967 sub _construct_object {
968   my ($self, @row) = @_;
969
970   my $info = $self->_collapse_result($self->{_attrs}{as}, \@row)
971     or return ();
972   my @new = $self->result_class->inflate_result($self->result_source, @$info);
973   @new = $self->{_attrs}{record_filter}->(@new)
974     if exists $self->{_attrs}{record_filter};
975   return @new;
976 }
977
978 sub _collapse_result {
979   my ($self, $as_proto, $row) = @_;
980
981   my @copy = @$row;
982
983   # 'foo'         => [ undef, 'foo' ]
984   # 'foo.bar'     => [ 'foo', 'bar' ]
985   # 'foo.bar.baz' => [ 'foo.bar', 'baz' ]
986
987   my @construct_as = map { [ (/^(?:(.*)\.)?([^.]+)$/) ] } @$as_proto;
988
989   my %collapse = %{$self->{_attrs}{collapse}||{}};
990
991   my @pri_index;
992
993   # if we're doing collapsing (has_many prefetch) we need to grab records
994   # until the PK changes, so fill @pri_index. if not, we leave it empty so
995   # we know we don't have to bother.
996
997   # the reason for not using the collapse stuff directly is because if you
998   # had for e.g. two artists in a row with no cds, the collapse info for
999   # both would be NULL (undef) so you'd lose the second artist
1000
1001   # store just the index so we can check the array positions from the row
1002   # without having to contruct the full hash
1003
1004   if (keys %collapse) {
1005     my %pri = map { ($_ => 1) } $self->result_source->primary_columns;
1006     foreach my $i (0 .. $#construct_as) {
1007       next if defined($construct_as[$i][0]); # only self table
1008       if (delete $pri{$construct_as[$i][1]}) {
1009         push(@pri_index, $i);
1010       }
1011       last unless keys %pri; # short circuit (Johnny Five Is Alive!)
1012     }
1013   }
1014
1015   # no need to do an if, it'll be empty if @pri_index is empty anyway
1016
1017   my %pri_vals = map { ($_ => $copy[$_]) } @pri_index;
1018
1019   my @const_rows;
1020
1021   do { # no need to check anything at the front, we always want the first row
1022
1023     my %const;
1024
1025     foreach my $this_as (@construct_as) {
1026       $const{$this_as->[0]||''}{$this_as->[1]} = shift(@copy);
1027     }
1028
1029     push(@const_rows, \%const);
1030
1031   } until ( # no pri_index => no collapse => drop straight out
1032       !@pri_index
1033     or
1034       do { # get another row, stash it, drop out if different PK
1035
1036         @copy = $self->cursor->next;
1037         $self->{stashed_row} = \@copy;
1038
1039         # last thing in do block, counts as true if anything doesn't match
1040
1041         # check xor defined first for NULL vs. NOT NULL then if one is
1042         # defined the other must be so check string equality
1043
1044         grep {
1045           (defined $pri_vals{$_} ^ defined $copy[$_])
1046           || (defined $pri_vals{$_} && ($pri_vals{$_} ne $copy[$_]))
1047         } @pri_index;
1048       }
1049   );
1050
1051   my $alias = $self->{attrs}{alias};
1052   my $info = [];
1053
1054   my %collapse_pos;
1055
1056   my @const_keys;
1057
1058   foreach my $const (@const_rows) {
1059     scalar @const_keys or do {
1060       @const_keys = sort { length($a) <=> length($b) } keys %$const;
1061     };
1062     foreach my $key (@const_keys) {
1063       if (length $key) {
1064         my $target = $info;
1065         my @parts = split(/\./, $key);
1066         my $cur = '';
1067         my $data = $const->{$key};
1068         foreach my $p (@parts) {
1069           $target = $target->[1]->{$p} ||= [];
1070           $cur .= ".${p}";
1071           if ($cur eq ".${key}" && (my @ckey = @{$collapse{$cur}||[]})) {
1072             # collapsing at this point and on final part
1073             my $pos = $collapse_pos{$cur};
1074             CK: foreach my $ck (@ckey) {
1075               if (!defined $pos->{$ck} || $pos->{$ck} ne $data->{$ck}) {
1076                 $collapse_pos{$cur} = $data;
1077                 delete @collapse_pos{ # clear all positioning for sub-entries
1078                   grep { m/^\Q${cur}.\E/ } keys %collapse_pos
1079                 };
1080                 push(@$target, []);
1081                 last CK;
1082               }
1083             }
1084           }
1085           if (exists $collapse{$cur}) {
1086             $target = $target->[-1];
1087           }
1088         }
1089         $target->[0] = $data;
1090       } else {
1091         $info->[0] = $const->{$key};
1092       }
1093     }
1094   }
1095
1096   return $info;
1097 }
1098
1099 =head2 result_source
1100
1101 =over 4
1102
1103 =item Arguments: $result_source?
1104
1105 =item Return Value: $result_source
1106
1107 =back
1108
1109 An accessor for the primary ResultSource object from which this ResultSet
1110 is derived.
1111
1112 =head2 result_class
1113
1114 =over 4
1115
1116 =item Arguments: $result_class?
1117
1118 =item Return Value: $result_class
1119
1120 =back
1121
1122 An accessor for the class to use when creating row objects. Defaults to
1123 C<< result_source->result_class >> - which in most cases is the name of the
1124 L<"table"|DBIx::Class::Manual::Glossary/"ResultSource"> class.
1125
1126 Note that changing the result_class will also remove any components
1127 that were originally loaded in the source class via
1128 L<DBIx::Class::ResultSource/load_components>. Any overloaded methods
1129 in the original source class will not run.
1130
1131 =cut
1132
1133 sub result_class {
1134   my ($self, $result_class) = @_;
1135   if ($result_class) {
1136     $self->ensure_class_loaded($result_class);
1137     $self->_result_class($result_class);
1138   }
1139   $self->_result_class;
1140 }
1141
1142 =head2 count
1143
1144 =over 4
1145
1146 =item Arguments: $cond, \%attrs??
1147
1148 =item Return Value: $count
1149
1150 =back
1151
1152 Performs an SQL C<COUNT> with the same query as the resultset was built
1153 with to find the number of elements. Passing arguments is equivalent to
1154 C<< $rs->search ($cond, \%attrs)->count >>
1155
1156 =cut
1157
1158 sub count {
1159   my $self = shift;
1160   return $self->search(@_)->count if @_ and defined $_[0];
1161   return scalar @{ $self->get_cache } if $self->get_cache;
1162
1163   my $attrs = $self->_resolved_attrs_copy;
1164
1165   # this is a little optimization - it is faster to do the limit
1166   # adjustments in software, instead of a subquery
1167   my $rows = delete $attrs->{rows};
1168   my $offset = delete $attrs->{offset};
1169
1170   my $crs;
1171   if ($self->_has_resolved_attr (qw/collapse group_by/)) {
1172     $crs = $self->_count_subq_rs ($attrs);
1173   }
1174   else {
1175     $crs = $self->_count_rs ($attrs);
1176   }
1177   my $count = $crs->next;
1178
1179   $count -= $offset if $offset;
1180   $count = $rows if $rows and $rows < $count;
1181   $count = 0 if ($count < 0);
1182
1183   return $count;
1184 }
1185
1186 =head2 count_rs
1187
1188 =over 4
1189
1190 =item Arguments: $cond, \%attrs??
1191
1192 =item Return Value: $count_rs
1193
1194 =back
1195
1196 Same as L</count> but returns a L<DBIx::Class::ResultSetColumn> object.
1197 This can be very handy for subqueries:
1198
1199   ->search( { amount => $some_rs->count_rs->as_query } )
1200
1201 As with regular resultsets the SQL query will be executed only after
1202 the resultset is accessed via L</next> or L</all>. That would return
1203 the same single value obtainable via L</count>.
1204
1205 =cut
1206
1207 sub count_rs {
1208   my $self = shift;
1209   return $self->search(@_)->count_rs if @_;
1210
1211   # this may look like a lack of abstraction (count() does about the same)
1212   # but in fact an _rs *must* use a subquery for the limits, as the
1213   # software based limiting can not be ported if this $rs is to be used
1214   # in a subquery itself (i.e. ->as_query)
1215   if ($self->_has_resolved_attr (qw/collapse group_by offset rows/)) {
1216     return $self->_count_subq_rs;
1217   }
1218   else {
1219     return $self->_count_rs;
1220   }
1221 }
1222
1223 #
1224 # returns a ResultSetColumn object tied to the count query
1225 #
1226 sub _count_rs {
1227   my ($self, $attrs) = @_;
1228
1229   my $rsrc = $self->result_source;
1230   $attrs ||= $self->_resolved_attrs;
1231
1232   my $tmp_attrs = { %$attrs };
1233
1234   # take off any limits, record_filter is cdbi, and no point of ordering a count
1235   delete $tmp_attrs->{$_} for (qw/select as rows offset order_by record_filter/);
1236
1237   # overwrite the selector (supplied by the storage)
1238   $tmp_attrs->{select} = $rsrc->storage->_count_select ($rsrc, $tmp_attrs);
1239   $tmp_attrs->{as} = 'count';
1240
1241   my $tmp_rs = $rsrc->resultset_class->new($rsrc, $tmp_attrs)->get_column ('count');
1242
1243   return $tmp_rs;
1244 }
1245
1246 #
1247 # same as above but uses a subquery
1248 #
1249 sub _count_subq_rs {
1250   my ($self, $attrs) = @_;
1251
1252   my $rsrc = $self->result_source;
1253   $attrs ||= $self->_resolved_attrs_copy;
1254
1255   my $sub_attrs = { %$attrs };
1256
1257   # extra selectors do not go in the subquery and there is no point of ordering it
1258   delete $sub_attrs->{$_} for qw/collapse select _prefetch_select as order_by/;
1259
1260   # if we prefetch, we group_by primary keys only as this is what we would get out
1261   # of the rs via ->next/->all. We DO WANT to clobber old group_by regardless
1262   if ( keys %{$attrs->{collapse}} ) {
1263     $sub_attrs->{group_by} = [ map { "$attrs->{alias}.$_" } ($rsrc->primary_columns) ]
1264   }
1265
1266   $sub_attrs->{select} = $rsrc->storage->_subq_count_select ($rsrc, $sub_attrs);
1267
1268   # this is so that the query can be simplified e.g.
1269   # * non-limiting joins can be pruned
1270   # * ordering can be thrown away in things like Top limit
1271   $sub_attrs->{-for_count_only} = 1;
1272
1273   my $sub_rs = $rsrc->resultset_class->new ($rsrc, $sub_attrs);
1274
1275   $attrs->{from} = [{
1276     -alias => 'count_subq',
1277     -source_handle => $rsrc->handle,
1278     count_subq => $sub_rs->as_query,
1279   }];
1280
1281   # the subquery replaces this
1282   delete $attrs->{$_} for qw/where bind collapse group_by having having_bind rows offset/;
1283
1284   return $self->_count_rs ($attrs);
1285 }
1286
1287 sub _bool {
1288   return 1;
1289 }
1290
1291 =head2 count_literal
1292
1293 =over 4
1294
1295 =item Arguments: $sql_fragment, @bind_values
1296
1297 =item Return Value: $count
1298
1299 =back
1300
1301 Counts the results in a literal query. Equivalent to calling L</search_literal>
1302 with the passed arguments, then L</count>.
1303
1304 =cut
1305
1306 sub count_literal { shift->search_literal(@_)->count; }
1307
1308 =head2 all
1309
1310 =over 4
1311
1312 =item Arguments: none
1313
1314 =item Return Value: @objects
1315
1316 =back
1317
1318 Returns all elements in the resultset. Called implicitly if the resultset
1319 is returned in list context.
1320
1321 =cut
1322
1323 sub all {
1324   my $self = shift;
1325   if(@_) {
1326       $self->throw_exception("all() doesn't take any arguments, you probably wanted ->search(...)->all()");
1327   }
1328
1329   return @{ $self->get_cache } if $self->get_cache;
1330
1331   my @obj;
1332
1333   if (keys %{$self->_resolved_attrs->{collapse}}) {
1334     # Using $self->cursor->all is really just an optimisation.
1335     # If we're collapsing has_many prefetches it probably makes
1336     # very little difference, and this is cleaner than hacking
1337     # _construct_object to survive the approach
1338     $self->cursor->reset;
1339     my @row = $self->cursor->next;
1340     while (@row) {
1341       push(@obj, $self->_construct_object(@row));
1342       @row = (exists $self->{stashed_row}
1343                ? @{delete $self->{stashed_row}}
1344                : $self->cursor->next);
1345     }
1346   } else {
1347     @obj = map { $self->_construct_object(@$_) } $self->cursor->all;
1348   }
1349
1350   $self->set_cache(\@obj) if $self->{attrs}{cache};
1351
1352   return @obj;
1353 }
1354
1355 =head2 reset
1356
1357 =over 4
1358
1359 =item Arguments: none
1360
1361 =item Return Value: $self
1362
1363 =back
1364
1365 Resets the resultset's cursor, so you can iterate through the elements again.
1366 Implicitly resets the storage cursor, so a subsequent L</next> will trigger
1367 another query.
1368
1369 =cut
1370
1371 sub reset {
1372   my ($self) = @_;
1373   delete $self->{_attrs} if exists $self->{_attrs};
1374   $self->{all_cache_position} = 0;
1375   $self->cursor->reset;
1376   return $self;
1377 }
1378
1379 =head2 first
1380
1381 =over 4
1382
1383 =item Arguments: none
1384
1385 =item Return Value: $object?
1386
1387 =back
1388
1389 Resets the resultset and returns an object for the first result (if the
1390 resultset returns anything).
1391
1392 =cut
1393
1394 sub first {
1395   return $_[0]->reset->next;
1396 }
1397
1398
1399 # _rs_update_delete
1400 #
1401 # Determines whether and what type of subquery is required for the $rs operation.
1402 # If grouping is necessary either supplies its own, or verifies the current one
1403 # After all is done delegates to the proper storage method.
1404
1405 sub _rs_update_delete {
1406   my ($self, $op, $values) = @_;
1407
1408   my $rsrc = $self->result_source;
1409
1410   # if a condition exists we need to strip all table qualifiers
1411   # if this is not possible we'll force a subquery below
1412   my $cond = $rsrc->schema->storage->_strip_cond_qualifiers ($self->{cond});
1413
1414   my $needs_group_by_subq = $self->_has_resolved_attr (qw/collapse group_by -join/);
1415   my $needs_subq = $needs_group_by_subq || (not defined $cond) || $self->_has_resolved_attr(qw/row offset/);
1416
1417   if ($needs_group_by_subq or $needs_subq) {
1418
1419     # make a new $rs selecting only the PKs (that's all we really need)
1420     my $attrs = $self->_resolved_attrs_copy;
1421
1422     delete $attrs->{$_} for qw/collapse select as/;
1423     $attrs->{columns} = [ map { "$attrs->{alias}.$_" } ($self->result_source->primary_columns) ];
1424
1425     if ($needs_group_by_subq) {
1426       # make sure no group_by was supplied, or if there is one - make sure it matches
1427       # the columns compiled above perfectly. Anything else can not be sanely executed
1428       # on most databases so croak right then and there
1429
1430       if (my $g = $attrs->{group_by}) {
1431         my @current_group_by = map
1432           { $_ =~ /\./ ? $_ : "$attrs->{alias}.$_" }
1433           @$g
1434         ;
1435
1436         if (
1437           join ("\x00", sort @current_group_by)
1438             ne
1439           join ("\x00", sort @{$attrs->{columns}} )
1440         ) {
1441           $self->throw_exception (
1442             "You have just attempted a $op operation on a resultset which does group_by"
1443             . ' on columns other than the primary keys, while DBIC internally needs to retrieve'
1444             . ' the primary keys in a subselect. All sane RDBMS engines do not support this'
1445             . ' kind of queries. Please retry the operation with a modified group_by or'
1446             . ' without using one at all.'
1447           );
1448         }
1449       }
1450       else {
1451         $attrs->{group_by} = $attrs->{columns};
1452       }
1453     }
1454
1455     my $subrs = (ref $self)->new($rsrc, $attrs);
1456
1457     return $self->result_source->storage->_subq_update_delete($subrs, $op, $values);
1458   }
1459   else {
1460     return $rsrc->storage->$op(
1461       $rsrc,
1462       $op eq 'update' ? $values : (),
1463       $cond,
1464     );
1465   }
1466 }
1467
1468 =head2 update
1469
1470 =over 4
1471
1472 =item Arguments: \%values
1473
1474 =item Return Value: $storage_rv
1475
1476 =back
1477
1478 Sets the specified columns in the resultset to the supplied values in a
1479 single query. Return value will be true if the update succeeded or false
1480 if no records were updated; exact type of success value is storage-dependent.
1481
1482 =cut
1483
1484 sub update {
1485   my ($self, $values) = @_;
1486   $self->throw_exception('Values for update must be a hash')
1487     unless ref $values eq 'HASH';
1488
1489   return $self->_rs_update_delete ('update', $values);
1490 }
1491
1492 =head2 update_all
1493
1494 =over 4
1495
1496 =item Arguments: \%values
1497
1498 =item Return Value: 1
1499
1500 =back
1501
1502 Fetches all objects and updates them one at a time. Note that C<update_all>
1503 will run DBIC cascade triggers, while L</update> will not.
1504
1505 =cut
1506
1507 sub update_all {
1508   my ($self, $values) = @_;
1509   $self->throw_exception('Values for update_all must be a hash')
1510     unless ref $values eq 'HASH';
1511   foreach my $obj ($self->all) {
1512     $obj->set_columns($values)->update;
1513   }
1514   return 1;
1515 }
1516
1517 =head2 delete
1518
1519 =over 4
1520
1521 =item Arguments: none
1522
1523 =item Return Value: $storage_rv
1524
1525 =back
1526
1527 Deletes the contents of the resultset from its result source. Note that this
1528 will not run DBIC cascade triggers. See L</delete_all> if you need triggers
1529 to run. See also L<DBIx::Class::Row/delete>.
1530
1531 Return value will be the amount of rows deleted; exact type of return value
1532 is storage-dependent.
1533
1534 =cut
1535
1536 sub delete {
1537   my $self = shift;
1538   $self->throw_exception('delete does not accept any arguments')
1539     if @_;
1540
1541   return $self->_rs_update_delete ('delete');
1542 }
1543
1544 =head2 delete_all
1545
1546 =over 4
1547
1548 =item Arguments: none
1549
1550 =item Return Value: 1
1551
1552 =back
1553
1554 Fetches all objects and deletes them one at a time. Note that C<delete_all>
1555 will run DBIC cascade triggers, while L</delete> will not.
1556
1557 =cut
1558
1559 sub delete_all {
1560   my $self = shift;
1561   $self->throw_exception('delete_all does not accept any arguments')
1562     if @_;
1563
1564   $_->delete for $self->all;
1565   return 1;
1566 }
1567
1568 =head2 populate
1569
1570 =over 4
1571
1572 =item Arguments: \@data;
1573
1574 =back
1575
1576 Accepts either an arrayref of hashrefs or alternatively an arrayref of arrayrefs.
1577 For the arrayref of hashrefs style each hashref should be a structure suitable
1578 forsubmitting to a $resultset->create(...) method.
1579
1580 In void context, C<insert_bulk> in L<DBIx::Class::Storage::DBI> is used
1581 to insert the data, as this is a faster method.
1582
1583 Otherwise, each set of data is inserted into the database using
1584 L<DBIx::Class::ResultSet/create>, and the resulting objects are
1585 accumulated into an array. The array itself, or an array reference
1586 is returned depending on scalar or list context.
1587
1588 Example:  Assuming an Artist Class that has many CDs Classes relating:
1589
1590   my $Artist_rs = $schema->resultset("Artist");
1591
1592   ## Void Context Example
1593   $Artist_rs->populate([
1594      { artistid => 4, name => 'Manufactured Crap', cds => [
1595         { title => 'My First CD', year => 2006 },
1596         { title => 'Yet More Tweeny-Pop crap', year => 2007 },
1597       ],
1598      },
1599      { artistid => 5, name => 'Angsty-Whiny Girl', cds => [
1600         { title => 'My parents sold me to a record company' ,year => 2005 },
1601         { title => 'Why Am I So Ugly?', year => 2006 },
1602         { title => 'I Got Surgery and am now Popular', year => 2007 }
1603       ],
1604      },
1605   ]);
1606
1607   ## Array Context Example
1608   my ($ArtistOne, $ArtistTwo, $ArtistThree) = $Artist_rs->populate([
1609     { name => "Artist One"},
1610     { name => "Artist Two"},
1611     { name => "Artist Three", cds=> [
1612     { title => "First CD", year => 2007},
1613     { title => "Second CD", year => 2008},
1614   ]}
1615   ]);
1616
1617   print $ArtistOne->name; ## response is 'Artist One'
1618   print $ArtistThree->cds->count ## reponse is '2'
1619
1620 For the arrayref of arrayrefs style,  the first element should be a list of the
1621 fieldsnames to which the remaining elements are rows being inserted.  For
1622 example:
1623
1624   $Arstist_rs->populate([
1625     [qw/artistid name/],
1626     [100, 'A Formally Unknown Singer'],
1627     [101, 'A singer that jumped the shark two albums ago'],
1628     [102, 'An actually cool singer.'],
1629   ]);
1630
1631 Please note an important effect on your data when choosing between void and
1632 wantarray context. Since void context goes straight to C<insert_bulk> in
1633 L<DBIx::Class::Storage::DBI> this will skip any component that is overriding
1634 C<insert>.  So if you are using something like L<DBIx-Class-UUIDColumns> to
1635 create primary keys for you, you will find that your PKs are empty.  In this
1636 case you will have to use the wantarray context in order to create those
1637 values.
1638
1639 =cut
1640
1641 sub populate {
1642   my $self = shift;
1643
1644   # cruft placed in standalone method
1645   my $data = $self->_normalize_populate_args(@_);
1646
1647   if(defined wantarray) {
1648     my @created;
1649     foreach my $item (@$data) {
1650       push(@created, $self->create($item));
1651     }
1652     return wantarray ? @created : \@created;
1653   } else {
1654     my $first = $data->[0];
1655
1656     # if a column is a registered relationship, and is a non-blessed hash/array, consider
1657     # it relationship data
1658     my (@rels, @columns);
1659     for (keys %$first) {
1660       my $ref = ref $first->{$_};
1661       $self->result_source->has_relationship($_) && ($ref eq 'ARRAY' or $ref eq 'HASH')
1662         ? push @rels, $_
1663         : push @columns, $_
1664       ;
1665     }
1666
1667     my @pks = $self->result_source->primary_columns;
1668
1669     ## do the belongs_to relationships
1670     foreach my $index (0..$#$data) {
1671
1672       # delegate to create() for any dataset without primary keys with specified relationships
1673       if (grep { !defined $data->[$index]->{$_} } @pks ) {
1674         for my $r (@rels) {
1675           if (grep { ref $data->[$index]{$r} eq $_ } qw/HASH ARRAY/) {  # a related set must be a HASH or AoH
1676             my @ret = $self->populate($data);
1677             return;
1678           }
1679         }
1680       }
1681
1682       foreach my $rel (@rels) {
1683         next unless ref $data->[$index]->{$rel} eq "HASH";
1684         my $result = $self->related_resultset($rel)->create($data->[$index]->{$rel});
1685         my ($reverse) = keys %{$self->result_source->reverse_relationship_info($rel)};
1686         my $related = $result->result_source->_resolve_condition(
1687           $result->result_source->relationship_info($reverse)->{cond},
1688           $self,
1689           $result,
1690         );
1691
1692         delete $data->[$index]->{$rel};
1693         $data->[$index] = {%{$data->[$index]}, %$related};
1694
1695         push @columns, keys %$related if $index == 0;
1696       }
1697     }
1698
1699     ## inherit the data locked in the conditions of the resultset
1700     my ($rs_data) = $self->_merge_cond_with_data({});
1701     delete @{$rs_data}{@columns};
1702     my @inherit_cols = keys %$rs_data;
1703     my @inherit_data = values %$rs_data;
1704
1705     ## do bulk insert on current row
1706     $self->result_source->storage->insert_bulk(
1707       $self->result_source,
1708       [@columns, @inherit_cols],
1709       [ map { [ @$_{@columns}, @inherit_data ] } @$data ],
1710     );
1711
1712     ## do the has_many relationships
1713     foreach my $item (@$data) {
1714
1715       foreach my $rel (@rels) {
1716         next unless $item->{$rel} && ref $item->{$rel} eq "ARRAY";
1717
1718         my $parent = $self->find({map { $_ => $item->{$_} } @pks})
1719      || $self->throw_exception('Cannot find the relating object.');
1720
1721         my $child = $parent->$rel;
1722
1723         my $related = $child->result_source->_resolve_condition(
1724           $parent->result_source->relationship_info($rel)->{cond},
1725           $child,
1726           $parent,
1727         );
1728
1729         my @rows_to_add = ref $item->{$rel} eq 'ARRAY' ? @{$item->{$rel}} : ($item->{$rel});
1730         my @populate = map { {%$_, %$related} } @rows_to_add;
1731
1732         $child->populate( \@populate );
1733       }
1734     }
1735   }
1736 }
1737
1738
1739 # populate() argumnets went over several incarnations
1740 # What we ultimately support is AoH
1741 sub _normalize_populate_args {
1742   my ($self, $arg) = @_;
1743
1744   if (ref $arg eq 'ARRAY') {
1745     if (ref $arg->[0] eq 'HASH') {
1746       return $arg;
1747     }
1748     elsif (ref $arg->[0] eq 'ARRAY') {
1749       my @ret;
1750       my @colnames = @{$arg->[0]};
1751       foreach my $values (@{$arg}[1 .. $#$arg]) {
1752         push @ret, { map { $colnames[$_] => $values->[$_] } (0 .. $#colnames) };
1753       }
1754       return \@ret;
1755     }
1756   }
1757
1758   $self->throw_exception('Populate expects an arrayref of hashrefs or arrayref of arrayrefs');
1759 }
1760
1761 =head2 pager
1762
1763 =over 4
1764
1765 =item Arguments: none
1766
1767 =item Return Value: $pager
1768
1769 =back
1770
1771 Return Value a L<Data::Page> object for the current resultset. Only makes
1772 sense for queries with a C<page> attribute.
1773
1774 To get the full count of entries for a paged resultset, call
1775 C<total_entries> on the L<Data::Page> object.
1776
1777 =cut
1778
1779 sub pager {
1780   my ($self) = @_;
1781
1782   return $self->{pager} if $self->{pager};
1783
1784   my $attrs = $self->{attrs};
1785   $self->throw_exception("Can't create pager for non-paged rs")
1786     unless $self->{attrs}{page};
1787   $attrs->{rows} ||= 10;
1788
1789   # throw away the paging flags and re-run the count (possibly
1790   # with a subselect) to get the real total count
1791   my $count_attrs = { %$attrs };
1792   delete $count_attrs->{$_} for qw/rows offset page pager/;
1793   my $total_count = (ref $self)->new($self->result_source, $count_attrs)->count;
1794
1795   return $self->{pager} = Data::Page->new(
1796     $total_count,
1797     $attrs->{rows},
1798     $self->{attrs}{page}
1799   );
1800 }
1801
1802 =head2 page
1803
1804 =over 4
1805
1806 =item Arguments: $page_number
1807
1808 =item Return Value: $rs
1809
1810 =back
1811
1812 Returns a resultset for the $page_number page of the resultset on which page
1813 is called, where each page contains a number of rows equal to the 'rows'
1814 attribute set on the resultset (10 by default).
1815
1816 =cut
1817
1818 sub page {
1819   my ($self, $page) = @_;
1820   return (ref $self)->new($self->result_source, { %{$self->{attrs}}, page => $page });
1821 }
1822
1823 =head2 new_result
1824
1825 =over 4
1826
1827 =item Arguments: \%vals
1828
1829 =item Return Value: $rowobject
1830
1831 =back
1832
1833 Creates a new row object in the resultset's result class and returns
1834 it. The row is not inserted into the database at this point, call
1835 L<DBIx::Class::Row/insert> to do that. Calling L<DBIx::Class::Row/in_storage>
1836 will tell you whether the row object has been inserted or not.
1837
1838 Passes the hashref of input on to L<DBIx::Class::Row/new>.
1839
1840 =cut
1841
1842 sub new_result {
1843   my ($self, $values) = @_;
1844   $self->throw_exception( "new_result needs a hash" )
1845     unless (ref $values eq 'HASH');
1846
1847   my ($merged_cond, $cols_from_relations) = $self->_merge_cond_with_data($values);
1848
1849   my %new = (
1850     %$merged_cond,
1851     @$cols_from_relations
1852       ? (-cols_from_relations => $cols_from_relations)
1853       : (),
1854     -source_handle => $self->_source_handle,
1855     -result_source => $self->result_source, # DO NOT REMOVE THIS, REQUIRED
1856   );
1857
1858   return $self->result_class->new(\%new);
1859 }
1860
1861 # _merge_cond_with_data
1862 #
1863 # Takes a simple hash of K/V data and returns its copy merged with the
1864 # condition already present on the resultset. Additionally returns an
1865 # arrayref of value/condition names, which were inferred from related
1866 # objects (this is needed for in-memory related objects)
1867 sub _merge_cond_with_data {
1868   my ($self, $data) = @_;
1869
1870   my (%new_data, @cols_from_relations);
1871
1872   my $alias = $self->{attrs}{alias};
1873
1874   if (! defined $self->{cond}) {
1875     # just massage $data below
1876   }
1877   elsif ($self->{cond} eq $DBIx::Class::ResultSource::UNRESOLVABLE_CONDITION) {
1878     %new_data = %{ $self->{attrs}{related_objects} || {} };  # nothing might have been inserted yet
1879     @cols_from_relations = keys %new_data;
1880   }
1881   elsif (ref $self->{cond} ne 'HASH') {
1882     $self->throw_exception(
1883       "Can't abstract implicit construct, resultset condition not a hash"
1884     );
1885   }
1886   else {
1887     # precendence must be given to passed values over values inherited from
1888     # the cond, so the order here is important.
1889     my $collapsed_cond = $self->_collapse_cond($self->{cond});
1890     my %implied = %{$self->_remove_alias($collapsed_cond, $alias)};
1891
1892     while ( my($col, $value) = each %implied ) {
1893       if (ref($value) eq 'HASH' && keys(%$value) && (keys %$value)[0] eq '=') {
1894         $new_data{$col} = $value->{'='};
1895         next;
1896       }
1897       $new_data{$col} = $value if $self->_is_deterministic_value($value);
1898     }
1899   }
1900
1901   %new_data = (
1902     %new_data,
1903     %{ $self->_remove_alias($data, $alias) },
1904   );
1905
1906   return (\%new_data, \@cols_from_relations);
1907 }
1908
1909 # _is_deterministic_value
1910 #
1911 # Make an effor to strip non-deterministic values from the condition,
1912 # to make sure new_result chokes less
1913
1914 sub _is_deterministic_value {
1915   my $self = shift;
1916   my $value = shift;
1917   my $ref_type = ref $value;
1918   return 1 if $ref_type eq '' || $ref_type eq 'SCALAR';
1919   return 1 if Scalar::Util::blessed($value);
1920   return 0;
1921 }
1922
1923 # _has_resolved_attr
1924 #
1925 # determines if the resultset defines at least one
1926 # of the attributes supplied
1927 #
1928 # used to determine if a subquery is neccessary
1929 #
1930 # supports some virtual attributes:
1931 #   -join
1932 #     This will scan for any joins being present on the resultset.
1933 #     It is not a mere key-search but a deep inspection of {from}
1934 #
1935
1936 sub _has_resolved_attr {
1937   my ($self, @attr_names) = @_;
1938
1939   my $attrs = $self->_resolved_attrs;
1940
1941   my %extra_checks;
1942
1943   for my $n (@attr_names) {
1944     if (grep { $n eq $_ } (qw/-join/) ) {
1945       $extra_checks{$n}++;
1946       next;
1947     }
1948
1949     my $attr =  $attrs->{$n};
1950
1951     next if not defined $attr;
1952
1953     if (ref $attr eq 'HASH') {
1954       return 1 if keys %$attr;
1955     }
1956     elsif (ref $attr eq 'ARRAY') {
1957       return 1 if @$attr;
1958     }
1959     else {
1960       return 1 if $attr;
1961     }
1962   }
1963
1964   # a resolved join is expressed as a multi-level from
1965   return 1 if (
1966     $extra_checks{-join}
1967       and
1968     ref $attrs->{from} eq 'ARRAY'
1969       and
1970     @{$attrs->{from}} > 1
1971   );
1972
1973   return 0;
1974 }
1975
1976 # _collapse_cond
1977 #
1978 # Recursively collapse the condition.
1979
1980 sub _collapse_cond {
1981   my ($self, $cond, $collapsed) = @_;
1982
1983   $collapsed ||= {};
1984
1985   if (ref $cond eq 'ARRAY') {
1986     foreach my $subcond (@$cond) {
1987       next unless ref $subcond;  # -or
1988       $collapsed = $self->_collapse_cond($subcond, $collapsed);
1989     }
1990   }
1991   elsif (ref $cond eq 'HASH') {
1992     if (keys %$cond and (keys %$cond)[0] eq '-and') {
1993       foreach my $subcond (@{$cond->{-and}}) {
1994         $collapsed = $self->_collapse_cond($subcond, $collapsed);
1995       }
1996     }
1997     else {
1998       foreach my $col (keys %$cond) {
1999         my $value = $cond->{$col};
2000         $collapsed->{$col} = $value;
2001       }
2002     }
2003   }
2004
2005   return $collapsed;
2006 }
2007
2008 # _remove_alias
2009 #
2010 # Remove the specified alias from the specified query hash. A copy is made so
2011 # the original query is not modified.
2012
2013 sub _remove_alias {
2014   my ($self, $query, $alias) = @_;
2015
2016   my %orig = %{ $query || {} };
2017   my %unaliased;
2018
2019   foreach my $key (keys %orig) {
2020     if ($key !~ /\./) {
2021       $unaliased{$key} = $orig{$key};
2022       next;
2023     }
2024     $unaliased{$1} = $orig{$key}
2025       if $key =~ m/^(?:\Q$alias\E\.)?([^.]+)$/;
2026   }
2027
2028   return \%unaliased;
2029 }
2030
2031 =head2 as_query
2032
2033 =over 4
2034
2035 =item Arguments: none
2036
2037 =item Return Value: \[ $sql, @bind ]
2038
2039 =back
2040
2041 Returns the SQL query and bind vars associated with the invocant.
2042
2043 This is generally used as the RHS for a subquery.
2044
2045 =cut
2046
2047 sub as_query {
2048   my $self = shift;
2049
2050   my $attrs = $self->_resolved_attrs_copy;
2051
2052   # For future use:
2053   #
2054   # in list ctx:
2055   # my ($sql, \@bind, \%dbi_bind_attrs) = _select_args_to_query (...)
2056   # $sql also has no wrapping parenthesis in list ctx
2057   #
2058   my $sqlbind = $self->result_source->storage
2059     ->_select_args_to_query ($attrs->{from}, $attrs->{select}, $attrs->{where}, $attrs);
2060
2061   return $sqlbind;
2062 }
2063
2064 =head2 find_or_new
2065
2066 =over 4
2067
2068 =item Arguments: \%vals, \%attrs?
2069
2070 =item Return Value: $rowobject
2071
2072 =back
2073
2074   my $artist = $schema->resultset('Artist')->find_or_new(
2075     { artist => 'fred' }, { key => 'artists' });
2076
2077   $cd->cd_to_producer->find_or_new({ producer => $producer },
2078                                    { key => 'primary });
2079
2080 Find an existing record from this resultset, based on its primary
2081 key, or a unique constraint. If none exists, instantiate a new result
2082 object and return it. The object will not be saved into your storage
2083 until you call L<DBIx::Class::Row/insert> on it.
2084
2085 You most likely want this method when looking for existing rows using
2086 a unique constraint that is not the primary key, or looking for
2087 related rows.
2088
2089 If you want objects to be saved immediately, use L</find_or_create>
2090 instead.
2091
2092 B<Note>: Take care when using C<find_or_new> with a table having
2093 columns with default values that you intend to be automatically
2094 supplied by the database (e.g. an auto_increment primary key column).
2095 In normal usage, the value of such columns should NOT be included at
2096 all in the call to C<find_or_new>, even when set to C<undef>.
2097
2098 =cut
2099
2100 sub find_or_new {
2101   my $self     = shift;
2102   my $attrs    = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
2103   my $hash     = ref $_[0] eq 'HASH' ? shift : {@_};
2104   if (keys %$hash and my $row = $self->find($hash, $attrs) ) {
2105     return $row;
2106   }
2107   return $self->new_result($hash);
2108 }
2109
2110 =head2 create
2111
2112 =over 4
2113
2114 =item Arguments: \%vals
2115
2116 =item Return Value: a L<DBIx::Class::Row> $object
2117
2118 =back
2119
2120 Attempt to create a single new row or a row with multiple related rows
2121 in the table represented by the resultset (and related tables). This
2122 will not check for duplicate rows before inserting, use
2123 L</find_or_create> to do that.
2124
2125 To create one row for this resultset, pass a hashref of key/value
2126 pairs representing the columns of the table and the values you wish to
2127 store. If the appropriate relationships are set up, foreign key fields
2128 can also be passed an object representing the foreign row, and the
2129 value will be set to its primary key.
2130
2131 To create related objects, pass a hashref of related-object column values
2132 B<keyed on the relationship name>. If the relationship is of type C<multi>
2133 (L<DBIx::Class::Relationship/has_many>) - pass an arrayref of hashrefs.
2134 The process will correctly identify columns holding foreign keys, and will
2135 transparrently populate them from the keys of the corresponding relation.
2136 This can be applied recursively, and will work correctly for a structure
2137 with an arbitrary depth and width, as long as the relationships actually
2138 exists and the correct column data has been supplied.
2139
2140
2141 Instead of hashrefs of plain related data (key/value pairs), you may
2142 also pass new or inserted objects. New objects (not inserted yet, see
2143 L</new>), will be inserted into their appropriate tables.
2144
2145 Effectively a shortcut for C<< ->new_result(\%vals)->insert >>.
2146
2147 Example of creating a new row.
2148
2149   $person_rs->create({
2150     name=>"Some Person",
2151     email=>"somebody@someplace.com"
2152   });
2153
2154 Example of creating a new row and also creating rows in a related C<has_many>
2155 or C<has_one> resultset.  Note Arrayref.
2156
2157   $artist_rs->create(
2158      { artistid => 4, name => 'Manufactured Crap', cds => [
2159         { title => 'My First CD', year => 2006 },
2160         { title => 'Yet More Tweeny-Pop crap', year => 2007 },
2161       ],
2162      },
2163   );
2164
2165 Example of creating a new row and also creating a row in a related
2166 C<belongs_to>resultset. Note Hashref.
2167
2168   $cd_rs->create({
2169     title=>"Music for Silly Walks",
2170     year=>2000,
2171     artist => {
2172       name=>"Silly Musician",
2173     }
2174   });
2175
2176 =over
2177
2178 =item WARNING
2179
2180 When subclassing ResultSet never attempt to override this method. Since
2181 it is a simple shortcut for C<< $self->new_result($attrs)->insert >>, a
2182 lot of the internals simply never call it, so your override will be
2183 bypassed more often than not. Override either L<new|DBIx::Class::Row/new>
2184 or L<insert|DBIx::Class::Row/insert> depending on how early in the
2185 L</create> process you need to intervene.
2186
2187 =back
2188
2189 =cut
2190
2191 sub create {
2192   my ($self, $attrs) = @_;
2193   $self->throw_exception( "create needs a hashref" )
2194     unless ref $attrs eq 'HASH';
2195   return $self->new_result($attrs)->insert;
2196 }
2197
2198 =head2 find_or_create
2199
2200 =over 4
2201
2202 =item Arguments: \%vals, \%attrs?
2203
2204 =item Return Value: $rowobject
2205
2206 =back
2207
2208   $cd->cd_to_producer->find_or_create({ producer => $producer },
2209                                       { key => 'primary' });
2210
2211 Tries to find a record based on its primary key or unique constraints; if none
2212 is found, creates one and returns that instead.
2213
2214   my $cd = $schema->resultset('CD')->find_or_create({
2215     cdid   => 5,
2216     artist => 'Massive Attack',
2217     title  => 'Mezzanine',
2218     year   => 2005,
2219   });
2220
2221 Also takes an optional C<key> attribute, to search by a specific key or unique
2222 constraint. For example:
2223
2224   my $cd = $schema->resultset('CD')->find_or_create(
2225     {
2226       artist => 'Massive Attack',
2227       title  => 'Mezzanine',
2228     },
2229     { key => 'cd_artist_title' }
2230   );
2231
2232 B<Note>: Because find_or_create() reads from the database and then
2233 possibly inserts based on the result, this method is subject to a race
2234 condition. Another process could create a record in the table after
2235 the find has completed and before the create has started. To avoid
2236 this problem, use find_or_create() inside a transaction.
2237
2238 B<Note>: Take care when using C<find_or_create> with a table having
2239 columns with default values that you intend to be automatically
2240 supplied by the database (e.g. an auto_increment primary key column).
2241 In normal usage, the value of such columns should NOT be included at
2242 all in the call to C<find_or_create>, even when set to C<undef>.
2243
2244 See also L</find> and L</update_or_create>. For information on how to declare
2245 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
2246
2247 =cut
2248
2249 sub find_or_create {
2250   my $self     = shift;
2251   my $attrs    = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
2252   my $hash     = ref $_[0] eq 'HASH' ? shift : {@_};
2253   if (keys %$hash and my $row = $self->find($hash, $attrs) ) {
2254     return $row;
2255   }
2256   return $self->create($hash);
2257 }
2258
2259 =head2 update_or_create
2260
2261 =over 4
2262
2263 =item Arguments: \%col_values, { key => $unique_constraint }?
2264
2265 =item Return Value: $rowobject
2266
2267 =back
2268
2269   $resultset->update_or_create({ col => $val, ... });
2270
2271 First, searches for an existing row matching one of the unique constraints
2272 (including the primary key) on the source of this resultset. If a row is
2273 found, updates it with the other given column values. Otherwise, creates a new
2274 row.
2275
2276 Takes an optional C<key> attribute to search on a specific unique constraint.
2277 For example:
2278
2279   # In your application
2280   my $cd = $schema->resultset('CD')->update_or_create(
2281     {
2282       artist => 'Massive Attack',
2283       title  => 'Mezzanine',
2284       year   => 1998,
2285     },
2286     { key => 'cd_artist_title' }
2287   );
2288
2289   $cd->cd_to_producer->update_or_create({
2290     producer => $producer,
2291     name => 'harry',
2292   }, {
2293     key => 'primary,
2294   });
2295
2296
2297 If no C<key> is specified, it searches on all unique constraints defined on the
2298 source, including the primary key.
2299
2300 If the C<key> is specified as C<primary>, it searches only on the primary key.
2301
2302 See also L</find> and L</find_or_create>. For information on how to declare
2303 unique constraints, see L<DBIx::Class::ResultSource/add_unique_constraint>.
2304
2305 B<Note>: Take care when using C<update_or_create> with a table having
2306 columns with default values that you intend to be automatically
2307 supplied by the database (e.g. an auto_increment primary key column).
2308 In normal usage, the value of such columns should NOT be included at
2309 all in the call to C<update_or_create>, even when set to C<undef>.
2310
2311 =cut
2312
2313 sub update_or_create {
2314   my $self = shift;
2315   my $attrs = (@_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {});
2316   my $cond = ref $_[0] eq 'HASH' ? shift : {@_};
2317
2318   my $row = $self->find($cond, $attrs);
2319   if (defined $row) {
2320     $row->update($cond);
2321     return $row;
2322   }
2323
2324   return $self->create($cond);
2325 }
2326
2327 =head2 update_or_new
2328
2329 =over 4
2330
2331 =item Arguments: \%col_values, { key => $unique_constraint }?
2332
2333 =item Return Value: $rowobject
2334
2335 =back
2336
2337   $resultset->update_or_new({ col => $val, ... });
2338
2339 First, searches for an existing row matching one of the unique constraints
2340 (including the primary key) on the source of this resultset. If a row is
2341 found, updates it with the other given column values. Otherwise, instantiate
2342 a new result object and return it. The object will not be saved into your storage
2343 until you call L<DBIx::Class::Row/insert> on it.
2344
2345 Takes an optional C<key> attribute to search on a specific unique constraint.
2346 For example:
2347
2348   # In your application
2349   my $cd = $schema->resultset('CD')->update_or_new(
2350     {
2351       artist => 'Massive Attack',
2352       title  => 'Mezzanine',
2353       year   => 1998,
2354     },
2355     { key => 'cd_artist_title' }
2356   );
2357
2358   if ($cd->in_storage) {
2359       # the cd was updated
2360   }
2361   else {
2362       # the cd is not yet in the database, let's insert it
2363       $cd->insert;
2364   }
2365
2366 B<Note>: Take care when using C<update_or_new> with a table having
2367 columns with default values that you intend to be automatically
2368 supplied by the database (e.g. an auto_increment primary key column).
2369 In normal usage, the value of such columns should NOT be included at
2370 all in the call to C<update_or_new>, even when set to C<undef>.
2371
2372 See also L</find>, L</find_or_create> and L</find_or_new>.
2373
2374 =cut
2375
2376 sub update_or_new {
2377     my $self  = shift;
2378     my $attrs = ( @_ > 1 && ref $_[$#_] eq 'HASH' ? pop(@_) : {} );
2379     my $cond  = ref $_[0] eq 'HASH' ? shift : {@_};
2380
2381     my $row = $self->find( $cond, $attrs );
2382     if ( defined $row ) {
2383         $row->update($cond);
2384         return $row;
2385     }
2386
2387     return $self->new_result($cond);
2388 }
2389
2390 =head2 get_cache
2391
2392 =over 4
2393
2394 =item Arguments: none
2395
2396 =item Return Value: \@cache_objects?
2397
2398 =back
2399
2400 Gets the contents of the cache for the resultset, if the cache is set.
2401
2402 The cache is populated either by using the L</prefetch> attribute to
2403 L</search> or by calling L</set_cache>.
2404
2405 =cut
2406
2407 sub get_cache {
2408   shift->{all_cache};
2409 }
2410
2411 =head2 set_cache
2412
2413 =over 4
2414
2415 =item Arguments: \@cache_objects
2416
2417 =item Return Value: \@cache_objects
2418
2419 =back
2420
2421 Sets the contents of the cache for the resultset. Expects an arrayref
2422 of objects of the same class as those produced by the resultset. Note that
2423 if the cache is set the resultset will return the cached objects rather
2424 than re-querying the database even if the cache attr is not set.
2425
2426 The contents of the cache can also be populated by using the
2427 L</prefetch> attribute to L</search>.
2428
2429 =cut
2430
2431 sub set_cache {
2432   my ( $self, $data ) = @_;
2433   $self->throw_exception("set_cache requires an arrayref")
2434       if defined($data) && (ref $data ne 'ARRAY');
2435   $self->{all_cache} = $data;
2436 }
2437
2438 =head2 clear_cache
2439
2440 =over 4
2441
2442 =item Arguments: none
2443
2444 =item Return Value: []
2445
2446 =back
2447
2448 Clears the cache for the resultset.
2449
2450 =cut
2451
2452 sub clear_cache {
2453   shift->set_cache(undef);
2454 }
2455
2456 =head2 is_paged
2457
2458 =over 4
2459
2460 =item Arguments: none
2461
2462 =item Return Value: true, if the resultset has been paginated
2463
2464 =back
2465
2466 =cut
2467
2468 sub is_paged {
2469   my ($self) = @_;
2470   return !!$self->{attrs}{page};
2471 }
2472
2473 =head2 related_resultset
2474
2475 =over 4
2476
2477 =item Arguments: $relationship_name
2478
2479 =item Return Value: $resultset
2480
2481 =back
2482
2483 Returns a related resultset for the supplied relationship name.
2484
2485   $artist_rs = $schema->resultset('CD')->related_resultset('Artist');
2486
2487 =cut
2488
2489 sub related_resultset {
2490   my ($self, $rel) = @_;
2491
2492   $self->{related_resultsets} ||= {};
2493   return $self->{related_resultsets}{$rel} ||= do {
2494     my $rsrc = $self->result_source;
2495     my $rel_info = $rsrc->relationship_info($rel);
2496
2497     $self->throw_exception(
2498       "search_related: result source '" . $rsrc->source_name .
2499         "' has no such relationship $rel")
2500       unless $rel_info;
2501
2502     my $attrs = $self->_chain_relationship($rel);
2503
2504     my $join_count = $attrs->{seen_join}{$rel};
2505
2506     my $alias = $self->result_source->storage
2507         ->relname_to_table_alias($rel, $join_count);
2508
2509     # since this is search_related, and we already slid the select window inwards
2510     # (the select/as attrs were deleted in the beginning), we need to flip all
2511     # left joins to inner, so we get the expected results
2512     # read the comment on top of the actual function to see what this does
2513     $attrs->{from} = $rsrc->schema->storage->_straight_join_to_node ($attrs->{from}, $alias);
2514
2515
2516     #XXX - temp fix for result_class bug. There likely is a more elegant fix -groditi
2517     delete @{$attrs}{qw(result_class alias)};
2518
2519     my $new_cache;
2520
2521     if (my $cache = $self->get_cache) {
2522       if ($cache->[0] && $cache->[0]->related_resultset($rel)->get_cache) {
2523         $new_cache = [ map { @{$_->related_resultset($rel)->get_cache} }
2524                         @$cache ];
2525       }
2526     }
2527
2528     my $rel_source = $rsrc->related_source($rel);
2529
2530     my $new = do {
2531
2532       # The reason we do this now instead of passing the alias to the
2533       # search_rs below is that if you wrap/overload resultset on the
2534       # source you need to know what alias it's -going- to have for things
2535       # to work sanely (e.g. RestrictWithObject wants to be able to add
2536       # extra query restrictions, and these may need to be $alias.)
2537
2538       my $rel_attrs = $rel_source->resultset_attributes;
2539       local $rel_attrs->{alias} = $alias;
2540
2541       $rel_source->resultset
2542                  ->search_rs(
2543                      undef, {
2544                        %$attrs,
2545                        where => $attrs->{where},
2546                    });
2547     };
2548     $new->set_cache($new_cache) if $new_cache;
2549     $new;
2550   };
2551 }
2552
2553 =head2 current_source_alias
2554
2555 =over 4
2556
2557 =item Arguments: none
2558
2559 =item Return Value: $source_alias
2560
2561 =back
2562
2563 Returns the current table alias for the result source this resultset is built
2564 on, that will be used in the SQL query. Usually it is C<me>.
2565
2566 Currently the source alias that refers to the result set returned by a
2567 L</search>/L</find> family method depends on how you got to the resultset: it's
2568 C<me> by default, but eg. L</search_related> aliases it to the related result
2569 source name (and keeps C<me> referring to the original result set). The long
2570 term goal is to make L<DBIx::Class> always alias the current resultset as C<me>
2571 (and make this method unnecessary).
2572
2573 Thus it's currently necessary to use this method in predefined queries (see
2574 L<DBIx::Class::Manual::Cookbook/Predefined searches>) when referring to the
2575 source alias of the current result set:
2576
2577   # in a result set class
2578   sub modified_by {
2579     my ($self, $user) = @_;
2580
2581     my $me = $self->current_source_alias;
2582
2583     return $self->search(
2584       "$me.modified" => $user->id,
2585     );
2586   }
2587
2588 =cut
2589
2590 sub current_source_alias {
2591   my ($self) = @_;
2592
2593   return ($self->{attrs} || {})->{alias} || 'me';
2594 }
2595
2596 # This code is called by search_related, and makes sure there
2597 # is clear separation between the joins before, during, and
2598 # after the relationship. This information is needed later
2599 # in order to properly resolve prefetch aliases (any alias
2600 # with a relation_chain_depth less than the depth of the
2601 # current prefetch is not considered)
2602 #
2603 # The increments happen twice per join. An even number means a
2604 # relationship specified via a search_related, whereas an odd
2605 # number indicates a join/prefetch added via attributes
2606 #
2607 # Also this code will wrap the current resultset (the one we
2608 # chain to) in a subselect IFF it contains limiting attributes
2609 sub _chain_relationship {
2610   my ($self, $rel) = @_;
2611   my $source = $self->result_source;
2612   my $attrs = { %{$self->{attrs}||{}} };
2613
2614   # we need to take the prefetch the attrs into account before we
2615   # ->_resolve_join as otherwise they get lost - captainL
2616   my $join = $self->_merge_attr( $attrs->{join}, $attrs->{prefetch} );
2617
2618   delete @{$attrs}{qw/join prefetch collapse distinct select as columns +select +as +columns/};
2619
2620   my $seen = { %{ (delete $attrs->{seen_join}) || {} } };
2621
2622   my $from;
2623   my @force_subq_attrs = qw/offset rows group_by having/;
2624
2625   if (
2626     ($attrs->{from} && ref $attrs->{from} ne 'ARRAY')
2627       ||
2628     $self->_has_resolved_attr (@force_subq_attrs)
2629   ) {
2630     # Nuke the prefetch (if any) before the new $rs attrs
2631     # are resolved (prefetch is useless - we are wrapping
2632     # a subquery anyway).
2633     my $rs_copy = $self->search;
2634     $rs_copy->{attrs}{join} = $self->_merge_attr (
2635       $rs_copy->{attrs}{join},
2636       delete $rs_copy->{attrs}{prefetch},
2637     );
2638
2639     $from = [{
2640       -source_handle => $source->handle,
2641       -alias => $attrs->{alias},
2642       $attrs->{alias} => $rs_copy->as_query,
2643     }];
2644     delete @{$attrs}{@force_subq_attrs, 'where'};
2645     $seen->{-relation_chain_depth} = 0;
2646   }
2647   elsif ($attrs->{from}) {  #shallow copy suffices
2648     $from = [ @{$attrs->{from}} ];
2649   }
2650   else {
2651     $from = [{
2652       -source_handle => $source->handle,
2653       -alias => $attrs->{alias},
2654       $attrs->{alias} => $source->from,
2655     }];
2656   }
2657
2658   my $jpath = ($seen->{-relation_chain_depth})
2659     ? $from->[-1][0]{-join_path}
2660     : [];
2661
2662   my @requested_joins = $source->_resolve_join(
2663     $join,
2664     $attrs->{alias},
2665     $seen,
2666     $jpath,
2667   );
2668
2669   push @$from, @requested_joins;
2670
2671   $seen->{-relation_chain_depth}++;
2672
2673   # if $self already had a join/prefetch specified on it, the requested
2674   # $rel might very well be already included. What we do in this case
2675   # is effectively a no-op (except that we bump up the chain_depth on
2676   # the join in question so we could tell it *is* the search_related)
2677   my $already_joined;
2678
2679   # we consider the last one thus reverse
2680   for my $j (reverse @requested_joins) {
2681     if ($rel eq $j->[0]{-join_path}[-1]) {
2682       $j->[0]{-relation_chain_depth}++;
2683       $already_joined++;
2684       last;
2685     }
2686   }
2687 # alternative way to scan the entire chain - not backwards compatible
2688 #  for my $j (reverse @$from) {
2689 #    next unless ref $j eq 'ARRAY';
2690 #    if ($j->[0]{-join_path} && $j->[0]{-join_path}[-1] eq $rel) {
2691 #      $j->[0]{-relation_chain_depth}++;
2692 #      $already_joined++;
2693 #      last;
2694 #    }
2695 #  }
2696
2697   unless ($already_joined) {
2698     push @$from, $source->_resolve_join(
2699       $rel,
2700       $attrs->{alias},
2701       $seen,
2702       $jpath,
2703     );
2704   }
2705
2706   $seen->{-relation_chain_depth}++;
2707
2708   return {%$attrs, from => $from, seen_join => $seen};
2709 }
2710
2711 # too many times we have to do $attrs = { %{$self->_resolved_attrs} }
2712 sub _resolved_attrs_copy {
2713   my $self = shift;
2714   return { %{$self->_resolved_attrs (@_)} };
2715 }
2716
2717 sub _resolved_attrs {
2718   my $self = shift;
2719   return $self->{_attrs} if $self->{_attrs};
2720
2721   my $attrs  = { %{ $self->{attrs} || {} } };
2722   my $source = $self->result_source;
2723   my $alias  = $attrs->{alias};
2724
2725   $attrs->{columns} ||= delete $attrs->{cols} if exists $attrs->{cols};
2726   my @colbits;
2727
2728   # build columns (as long as select isn't set) into a set of as/select hashes
2729   unless ( $attrs->{select} ) {
2730
2731     my @cols = ( ref($attrs->{columns}) eq 'ARRAY' )
2732       ? @{ delete $attrs->{columns}}
2733       : (
2734           ( delete $attrs->{columns} )
2735             ||
2736           $source->columns
2737         )
2738     ;
2739
2740     @colbits = map {
2741       ( ref($_) eq 'HASH' )
2742       ? $_
2743       : {
2744           (
2745             /^\Q${alias}.\E(.+)$/
2746               ? "$1"
2747               : "$_"
2748           )
2749             =>
2750           (
2751             /\./
2752               ? "$_"
2753               : "${alias}.$_"
2754           )
2755         }
2756     } @cols;
2757   }
2758
2759   # add the additional columns on
2760   foreach (qw{include_columns +columns}) {
2761       push @colbits, map {
2762           ( ref($_) eq 'HASH' )
2763             ? $_
2764             : { ( split( /\./, $_ ) )[-1] => ( /\./ ? $_ : "${alias}.$_" ) }
2765       } ( ref($attrs->{$_}) eq 'ARRAY' )
2766          ? @{ delete $attrs->{$_} }
2767          : delete $attrs->{$_} if ( $attrs->{$_} );
2768   }
2769
2770   # start with initial select items
2771   if ( $attrs->{select} ) {
2772     $attrs->{select} =
2773         ( ref $attrs->{select} eq 'ARRAY' )
2774       ? [ @{ $attrs->{select} } ]
2775       : [ $attrs->{select} ];
2776     $attrs->{as} = (
2777       $attrs->{as}
2778       ? (
2779         ref $attrs->{as} eq 'ARRAY'
2780         ? [ @{ $attrs->{as} } ]
2781         : [ $attrs->{as} ]
2782         )
2783       : [ map { m/^\Q${alias}.\E(.+)$/ ? $1 : $_ } @{ $attrs->{select} } ]
2784     );
2785   }
2786   else {
2787
2788     # otherwise we intialise select & as to empty
2789     $attrs->{select} = [];
2790     $attrs->{as}     = [];
2791   }
2792
2793   # now add colbits to select/as
2794   push @{ $attrs->{select} }, map values %{$_}, @colbits;
2795   push @{ $attrs->{as}     }, map keys   %{$_}, @colbits;
2796
2797   if ( my $adds = delete $attrs->{'+select'} ) {
2798     $adds = [$adds] unless ref $adds eq 'ARRAY';
2799     push @{ $attrs->{select} },
2800       map { /\./ || ref $_ ? $_ : "${alias}.$_" } @$adds;
2801   }
2802   if ( my $adds = delete $attrs->{'+as'} ) {
2803     $adds = [$adds] unless ref $adds eq 'ARRAY';
2804     push @{ $attrs->{as} }, @$adds;
2805   }
2806
2807   $attrs->{from} ||= [ {
2808     -source_handle => $source->handle,
2809     -alias => $self->{attrs}{alias},
2810     $self->{attrs}{alias} => $source->from,
2811   } ];
2812
2813   if ( $attrs->{join} || $attrs->{prefetch} ) {
2814
2815     $self->throw_exception ('join/prefetch can not be used with a custom {from}')
2816       if ref $attrs->{from} ne 'ARRAY';
2817
2818     my $join = delete $attrs->{join} || {};
2819
2820     if ( defined $attrs->{prefetch} ) {
2821       $join = $self->_merge_attr( $join, $attrs->{prefetch} );
2822     }
2823
2824     $attrs->{from} =    # have to copy here to avoid corrupting the original
2825       [
2826         @{ $attrs->{from} },
2827         $source->_resolve_join(
2828           $join,
2829           $alias,
2830           { %{ $attrs->{seen_join} || {} } },
2831           ($attrs->{seen_join} && keys %{$attrs->{seen_join}})
2832             ? $attrs->{from}[-1][0]{-join_path}
2833             : []
2834           ,
2835         )
2836       ];
2837   }
2838
2839   if ( defined $attrs->{order_by} ) {
2840     $attrs->{order_by} = (
2841       ref( $attrs->{order_by} ) eq 'ARRAY'
2842       ? [ @{ $attrs->{order_by} } ]
2843       : [ $attrs->{order_by} || () ]
2844     );
2845   }
2846
2847   if ($attrs->{group_by} and ref $attrs->{group_by} ne 'ARRAY') {
2848     $attrs->{group_by} = [ $attrs->{group_by} ];
2849   }
2850
2851   # generate the distinct induced group_by early, as prefetch will be carried via a
2852   # subquery (since a group_by is present)
2853   if (delete $attrs->{distinct}) {
2854     if ($attrs->{group_by}) {
2855       carp ("Useless use of distinct on a grouped resultset ('distinct' is ignored when a 'group_by' is present)");
2856     }
2857     else {
2858       $attrs->{group_by} = [ grep { !ref($_) || (ref($_) ne 'HASH') } @{$attrs->{select}} ];
2859
2860       # add any order_by parts that are not already present in the group_by
2861       # we need to be careful not to add any named functions/aggregates
2862       # i.e. select => [ ... { count => 'foo', -as 'foocount' } ... ]
2863       my %already_grouped = map { $_ => 1 } (@{$attrs->{group_by}});
2864
2865       my $storage = $self->result_source->schema->storage;
2866       my $rs_column_list = $storage->_resolve_column_info ($attrs->{from});
2867       my @chunks = $storage->sql_maker->_order_by_chunks ($attrs->{order_by});
2868
2869       for my $chunk (map { ref $_ ? @$_ : $_ } (@chunks) ) {
2870         $chunk =~ s/\s+ (?: ASC|DESC ) \s* $//ix;
2871         if ($rs_column_list->{$chunk} && not $already_grouped{$chunk}++) {
2872           push @{$attrs->{group_by}}, $chunk;
2873         }
2874       }
2875     }
2876   }
2877
2878   $attrs->{collapse} ||= {};
2879   if ( my $prefetch = delete $attrs->{prefetch} ) {
2880     $prefetch = $self->_merge_attr( {}, $prefetch );
2881
2882     my $prefetch_ordering = [];
2883
2884     my $join_map = $self->_joinpath_aliases ($attrs->{from}, $attrs->{seen_join});
2885
2886     my @prefetch =
2887       $source->_resolve_prefetch( $prefetch, $alias, $join_map, $prefetch_ordering, $attrs->{collapse} );
2888
2889     # we need to somehow mark which columns came from prefetch
2890     $attrs->{_prefetch_select} = [ map { $_->[0] } @prefetch ];
2891
2892     push @{ $attrs->{select} }, @{$attrs->{_prefetch_select}};
2893     push @{ $attrs->{as} }, (map { $_->[1] } @prefetch);
2894
2895     push( @{$attrs->{order_by}}, @$prefetch_ordering );
2896     $attrs->{_collapse_order_by} = \@$prefetch_ordering;
2897   }
2898
2899   # if both page and offset are specified, produce a combined offset
2900   # even though it doesn't make much sense, this is what pre 081xx has
2901   # been doing
2902   if (my $page = delete $attrs->{page}) {
2903     $attrs->{offset} =
2904       ($attrs->{rows} * ($page - 1))
2905             +
2906       ($attrs->{offset} || 0)
2907     ;
2908   }
2909
2910   return $self->{_attrs} = $attrs;
2911 }
2912
2913 sub _joinpath_aliases {
2914   my ($self, $fromspec, $seen) = @_;
2915
2916   my $paths = {};
2917   return $paths unless ref $fromspec eq 'ARRAY';
2918
2919   my $cur_depth = $seen->{-relation_chain_depth} || 0;
2920
2921   if ($cur_depth % 2) {
2922     $self->throw_exception ("-relation_chain_depth is not even, something went horribly wrong ($cur_depth)");
2923   }
2924
2925   for my $j (@$fromspec) {
2926
2927     next if ref $j ne 'ARRAY';
2928     next if ($j->[0]{-relation_chain_depth} || 0) < $cur_depth;
2929
2930     my $jpath = $j->[0]{-join_path};
2931
2932     my $p = $paths;
2933     $p = $p->{$_} ||= {} for @{$jpath}[$cur_depth/2 .. $#$jpath]; #only even depths are actual jpath boundaries
2934     push @{$p->{-join_aliases} }, $j->[0]{-alias};
2935   }
2936
2937   return $paths;
2938 }
2939
2940 sub _rollout_attr {
2941   my ($self, $attr) = @_;
2942
2943   if (ref $attr eq 'HASH') {
2944     return $self->_rollout_hash($attr);
2945   } elsif (ref $attr eq 'ARRAY') {
2946     return $self->_rollout_array($attr);
2947   } else {
2948     return [$attr];
2949   }
2950 }
2951
2952 sub _rollout_array {
2953   my ($self, $attr) = @_;
2954
2955   my @rolled_array;
2956   foreach my $element (@{$attr}) {
2957     if (ref $element eq 'HASH') {
2958       push( @rolled_array, @{ $self->_rollout_hash( $element ) } );
2959     } elsif (ref $element eq 'ARRAY') {
2960       #  XXX - should probably recurse here
2961       push( @rolled_array, @{$self->_rollout_array($element)} );
2962     } else {
2963       push( @rolled_array, $element );
2964     }
2965   }
2966   return \@rolled_array;
2967 }
2968
2969 sub _rollout_hash {
2970   my ($self, $attr) = @_;
2971
2972   my @rolled_array;
2973   foreach my $key (keys %{$attr}) {
2974     push( @rolled_array, { $key => $attr->{$key} } );
2975   }
2976   return \@rolled_array;
2977 }
2978
2979 sub _calculate_score {
2980   my ($self, $a, $b) = @_;
2981
2982   if (defined $a xor defined $b) {
2983     return 0;
2984   }
2985   elsif (not defined $a) {
2986     return 1;
2987   }
2988
2989   if (ref $b eq 'HASH') {
2990     my ($b_key) = keys %{$b};
2991     if (ref $a eq 'HASH') {
2992       my ($a_key) = keys %{$a};
2993       if ($a_key eq $b_key) {
2994         return (1 + $self->_calculate_score( $a->{$a_key}, $b->{$b_key} ));
2995       } else {
2996         return 0;
2997       }
2998     } else {
2999       return ($a eq $b_key) ? 1 : 0;
3000     }
3001   } else {
3002     if (ref $a eq 'HASH') {
3003       my ($a_key) = keys %{$a};
3004       return ($b eq $a_key) ? 1 : 0;
3005     } else {
3006       return ($b eq $a) ? 1 : 0;
3007     }
3008   }
3009 }
3010
3011 sub _merge_attr {
3012   my ($self, $orig, $import) = @_;
3013
3014   return $import unless defined($orig);
3015   return $orig unless defined($import);
3016
3017   $orig = $self->_rollout_attr($orig);
3018   $import = $self->_rollout_attr($import);
3019
3020   my $seen_keys;
3021   foreach my $import_element ( @{$import} ) {
3022     # find best candidate from $orig to merge $b_element into
3023     my $best_candidate = { position => undef, score => 0 }; my $position = 0;
3024     foreach my $orig_element ( @{$orig} ) {
3025       my $score = $self->_calculate_score( $orig_element, $import_element );
3026       if ($score > $best_candidate->{score}) {
3027         $best_candidate->{position} = $position;
3028         $best_candidate->{score} = $score;
3029       }
3030       $position++;
3031     }
3032     my ($import_key) = ( ref $import_element eq 'HASH' ) ? keys %{$import_element} : ($import_element);
3033
3034     if ($best_candidate->{score} == 0 || exists $seen_keys->{$import_key}) {
3035       push( @{$orig}, $import_element );
3036     } else {
3037       my $orig_best = $orig->[$best_candidate->{position}];
3038       # merge orig_best and b_element together and replace original with merged
3039       if (ref $orig_best ne 'HASH') {
3040         $orig->[$best_candidate->{position}] = $import_element;
3041       } elsif (ref $import_element eq 'HASH') {
3042         my ($key) = keys %{$orig_best};
3043         $orig->[$best_candidate->{position}] = { $key => $self->_merge_attr($orig_best->{$key}, $import_element->{$key}) };
3044       }
3045     }
3046     $seen_keys->{$import_key} = 1; # don't merge the same key twice
3047   }
3048
3049   return $orig;
3050 }
3051
3052 sub result_source {
3053     my $self = shift;
3054
3055     if (@_) {
3056         $self->_source_handle($_[0]->handle);
3057     } else {
3058         $self->_source_handle->resolve;
3059     }
3060 }
3061
3062 =head2 throw_exception
3063
3064 See L<DBIx::Class::Schema/throw_exception> for details.
3065
3066 =cut
3067
3068 sub throw_exception {
3069   my $self=shift;
3070
3071   if (ref $self && $self->_source_handle->schema) {
3072     $self->_source_handle->schema->throw_exception(@_)
3073   }
3074   else {
3075     DBIx::Class::Exception->throw(@_);
3076   }
3077 }
3078
3079 # XXX: FIXME: Attributes docs need clearing up
3080
3081 =head1 ATTRIBUTES
3082
3083 Attributes are used to refine a ResultSet in various ways when
3084 searching for data. They can be passed to any method which takes an
3085 C<\%attrs> argument. See L</search>, L</search_rs>, L</find>,
3086 L</count>.
3087
3088 These are in no particular order:
3089
3090 =head2 order_by
3091
3092 =over 4
3093
3094 =item Value: ( $order_by | \@order_by | \%order_by )
3095
3096 =back
3097
3098 Which column(s) to order the results by.
3099
3100 [The full list of suitable values is documented in
3101 L<SQL::Abstract/"ORDER BY CLAUSES">; the following is a summary of
3102 common options.]
3103
3104 If a single column name, or an arrayref of names is supplied, the
3105 argument is passed through directly to SQL. The hashref syntax allows
3106 for connection-agnostic specification of ordering direction:
3107
3108  For descending order:
3109
3110   order_by => { -desc => [qw/col1 col2 col3/] }
3111
3112  For explicit ascending order:
3113
3114   order_by => { -asc => 'col' }
3115
3116 The old scalarref syntax (i.e. order_by => \'year DESC') is still
3117 supported, although you are strongly encouraged to use the hashref
3118 syntax as outlined above.
3119
3120 =head2 columns
3121
3122 =over 4
3123
3124 =item Value: \@columns
3125
3126 =back
3127
3128 Shortcut to request a particular set of columns to be retrieved. Each
3129 column spec may be a string (a table column name), or a hash (in which
3130 case the key is the C<as> value, and the value is used as the C<select>
3131 expression). Adds C<me.> onto the start of any column without a C<.> in
3132 it and sets C<select> from that, then auto-populates C<as> from
3133 C<select> as normal. (You may also use the C<cols> attribute, as in
3134 earlier versions of DBIC.)
3135
3136 =head2 +columns
3137
3138 =over 4
3139
3140 =item Value: \@columns
3141
3142 =back
3143
3144 Indicates additional columns to be selected from storage. Works the same
3145 as L</columns> but adds columns to the selection. (You may also use the
3146 C<include_columns> attribute, as in earlier versions of DBIC). For
3147 example:-
3148
3149   $schema->resultset('CD')->search(undef, {
3150     '+columns' => ['artist.name'],
3151     join => ['artist']
3152   });
3153
3154 would return all CDs and include a 'name' column to the information
3155 passed to object inflation. Note that the 'artist' is the name of the
3156 column (or relationship) accessor, and 'name' is the name of the column
3157 accessor in the related table.
3158
3159 =head2 include_columns
3160
3161 =over 4
3162
3163 =item Value: \@columns
3164
3165 =back
3166
3167 Deprecated.  Acts as a synonym for L</+columns> for backward compatibility.
3168
3169 =head2 select
3170
3171 =over 4
3172
3173 =item Value: \@select_columns
3174
3175 =back
3176
3177 Indicates which columns should be selected from the storage. You can use
3178 column names, or in the case of RDBMS back ends, function or stored procedure
3179 names:
3180
3181   $rs = $schema->resultset('Employee')->search(undef, {
3182     select => [
3183       'name',
3184       { count => 'employeeid' },
3185       { sum => 'salary' }
3186     ]
3187   });
3188
3189 When you use function/stored procedure names and do not supply an C<as>
3190 attribute, the column names returned are storage-dependent. E.g. MySQL would
3191 return a column named C<count(employeeid)> in the above example.
3192
3193 B<NOTE:> You will almost always need a corresponding 'as' entry when you use
3194 'select'.
3195
3196 =head2 +select
3197
3198 =over 4
3199
3200 Indicates additional columns to be selected from storage.  Works the same as
3201 L</select> but adds columns to the selection.
3202
3203 =back
3204
3205 =head2 +as
3206
3207 =over 4
3208
3209 Indicates additional column names for those added via L</+select>. See L</as>.
3210
3211 =back
3212
3213 =head2 as
3214
3215 =over 4
3216
3217 =item Value: \@inflation_names
3218
3219 =back
3220
3221 Indicates column names for object inflation. That is, C<as>
3222 indicates the name that the column can be accessed as via the
3223 C<get_column> method (or via the object accessor, B<if one already
3224 exists>).  It has nothing to do with the SQL code C<SELECT foo AS bar>.
3225
3226 The C<as> attribute is used in conjunction with C<select>,
3227 usually when C<select> contains one or more function or stored
3228 procedure names:
3229
3230   $rs = $schema->resultset('Employee')->search(undef, {
3231     select => [
3232       'name',
3233       { count => 'employeeid' }
3234     ],
3235     as => ['name', 'employee_count'],
3236   });
3237
3238   my $employee = $rs->first(); # get the first Employee
3239
3240 If the object against which the search is performed already has an accessor
3241 matching a column name specified in C<as>, the value can be retrieved using
3242 the accessor as normal:
3243
3244   my $name = $employee->name();
3245
3246 If on the other hand an accessor does not exist in the object, you need to
3247 use C<get_column> instead:
3248
3249   my $employee_count = $employee->get_column('employee_count');
3250
3251 You can create your own accessors if required - see
3252 L<DBIx::Class::Manual::Cookbook> for details.
3253
3254 Please note: This will NOT insert an C<AS employee_count> into the SQL
3255 statement produced, it is used for internal access only. Thus
3256 attempting to use the accessor in an C<order_by> clause or similar
3257 will fail miserably.
3258
3259 To get around this limitation, you can supply literal SQL to your
3260 C<select> attibute that contains the C<AS alias> text, eg:
3261
3262   select => [\'myfield AS alias']
3263
3264 =head2 join
3265
3266 =over 4
3267
3268 =item Value: ($rel_name | \@rel_names | \%rel_names)
3269
3270 =back
3271
3272 Contains a list of relationships that should be joined for this query.  For
3273 example:
3274
3275   # Get CDs by Nine Inch Nails
3276   my $rs = $schema->resultset('CD')->search(
3277     { 'artist.name' => 'Nine Inch Nails' },
3278     { join => 'artist' }
3279   );
3280
3281 Can also contain a hash reference to refer to the other relation's relations.
3282 For example:
3283
3284   package MyApp::Schema::Track;
3285   use base qw/DBIx::Class/;
3286   __PACKAGE__->table('track');
3287   __PACKAGE__->add_columns(qw/trackid cd position title/);
3288   __PACKAGE__->set_primary_key('trackid');
3289   __PACKAGE__->belongs_to(cd => 'MyApp::Schema::CD');
3290   1;
3291
3292   # In your application
3293   my $rs = $schema->resultset('Artist')->search(
3294     { 'track.title' => 'Teardrop' },
3295     {
3296       join     => { cd => 'track' },
3297       order_by => 'artist.name',
3298     }
3299   );
3300
3301 You need to use the relationship (not the table) name in  conditions,
3302 because they are aliased as such. The current table is aliased as "me", so
3303 you need to use me.column_name in order to avoid ambiguity. For example:
3304
3305   # Get CDs from 1984 with a 'Foo' track
3306   my $rs = $schema->resultset('CD')->search(
3307     {
3308       'me.year' => 1984,
3309       'tracks.name' => 'Foo'
3310     },
3311     { join => 'tracks' }
3312   );
3313
3314 If the same join is supplied twice, it will be aliased to <rel>_2 (and
3315 similarly for a third time). For e.g.
3316
3317   my $rs = $schema->resultset('Artist')->search({
3318     'cds.title'   => 'Down to Earth',
3319     'cds_2.title' => 'Popular',
3320   }, {
3321     join => [ qw/cds cds/ ],
3322   });
3323
3324 will return a set of all artists that have both a cd with title 'Down
3325 to Earth' and a cd with title 'Popular'.
3326
3327 If you want to fetch related objects from other tables as well, see C<prefetch>
3328 below.
3329
3330 For more help on using joins with search, see L<DBIx::Class::Manual::Joining>.
3331
3332 =head2 prefetch
3333
3334 =over 4
3335
3336 =item Value: ($rel_name | \@rel_names | \%rel_names)
3337
3338 =back
3339
3340 Contains one or more relationships that should be fetched along with
3341 the main query (when they are accessed afterwards the data will
3342 already be available, without extra queries to the database).  This is
3343 useful for when you know you will need the related objects, because it
3344 saves at least one query:
3345
3346   my $rs = $schema->resultset('Tag')->search(
3347     undef,
3348     {
3349       prefetch => {
3350         cd => 'artist'
3351       }
3352     }
3353   );
3354
3355 The initial search results in SQL like the following:
3356
3357   SELECT tag.*, cd.*, artist.* FROM tag
3358   JOIN cd ON tag.cd = cd.cdid
3359   JOIN artist ON cd.artist = artist.artistid
3360
3361 L<DBIx::Class> has no need to go back to the database when we access the
3362 C<cd> or C<artist> relationships, which saves us two SQL statements in this
3363 case.
3364
3365 Simple prefetches will be joined automatically, so there is no need
3366 for a C<join> attribute in the above search.
3367
3368 C<prefetch> can be used with the following relationship types: C<belongs_to>,
3369 C<has_one> (or if you're using C<add_relationship>, any relationship declared
3370 with an accessor type of 'single' or 'filter'). A more complex example that
3371 prefetches an artists cds, the tracks on those cds, and the tags associted
3372 with that artist is given below (assuming many-to-many from artists to tags):
3373
3374  my $rs = $schema->resultset('Artist')->search(
3375    undef,
3376    {
3377      prefetch => [
3378        { cds => 'tracks' },
3379        { artist_tags => 'tags' }
3380      ]
3381    }
3382  );
3383
3384
3385 B<NOTE:> If you specify a C<prefetch> attribute, the C<join> and C<select>
3386 attributes will be ignored.
3387
3388 B<CAVEATs>: Prefetch does a lot of deep magic. As such, it may not behave
3389 exactly as you might expect.
3390
3391 =over 4
3392
3393 =item *
3394
3395 Prefetch uses the L</cache> to populate the prefetched relationships. This
3396 may or may not be what you want.
3397
3398 =item *
3399
3400 If you specify a condition on a prefetched relationship, ONLY those
3401 rows that match the prefetched condition will be fetched into that relationship.
3402 This means that adding prefetch to a search() B<may alter> what is returned by
3403 traversing a relationship. So, if you have C<< Artist->has_many(CDs) >> and you do
3404
3405   my $artist_rs = $schema->resultset('Artist')->search({
3406       'cds.year' => 2008,
3407   }, {
3408       join => 'cds',
3409   });
3410
3411   my $count = $artist_rs->first->cds->count;
3412
3413   my $artist_rs_prefetch = $artist_rs->search( {}, { prefetch => 'cds' } );
3414
3415   my $prefetch_count = $artist_rs_prefetch->first->cds->count;
3416
3417   cmp_ok( $count, '==', $prefetch_count, "Counts should be the same" );
3418
3419 that cmp_ok() may or may not pass depending on the datasets involved. This
3420 behavior may or may not survive the 0.09 transition.
3421
3422 =back
3423
3424 =head2 page
3425
3426 =over 4
3427
3428 =item Value: $page
3429
3430 =back
3431
3432 Makes the resultset paged and specifies the page to retrieve. Effectively
3433 identical to creating a non-pages resultset and then calling ->page($page)
3434 on it.
3435
3436 If L<rows> attribute is not specified it defaults to 10 rows per page.
3437
3438 When you have a paged resultset, L</count> will only return the number
3439 of rows in the page. To get the total, use the L</pager> and call
3440 C<total_entries> on it.
3441
3442 =head2 rows
3443
3444 =over 4
3445
3446 =item Value: $rows
3447
3448 =back
3449
3450 Specifes the maximum number of rows for direct retrieval or the number of
3451 rows per page if the page attribute or method is used.
3452
3453 =head2 offset
3454
3455 =over 4
3456
3457 =item Value: $offset
3458
3459 =back
3460
3461 Specifies the (zero-based) row number for the  first row to be returned, or the
3462 of the first row of the first page if paging is used.
3463
3464 =head2 group_by
3465
3466 =over 4
3467
3468 =item Value: \@columns
3469
3470 =back
3471
3472 A arrayref of columns to group by. Can include columns of joined tables.
3473
3474   group_by => [qw/ column1 column2 ... /]
3475
3476 =head2 having
3477
3478 =over 4
3479
3480 =item Value: $condition
3481
3482 =back
3483
3484 HAVING is a select statement attribute that is applied between GROUP BY and
3485 ORDER BY. It is applied to the after the grouping calculations have been
3486 done.
3487
3488   having => { 'count(employee)' => { '>=', 100 } }
3489
3490 =head2 distinct
3491
3492 =over 4
3493
3494 =item Value: (0 | 1)
3495
3496 =back
3497
3498 Set to 1 to group by all columns. If the resultset already has a group_by
3499 attribute, this setting is ignored and an appropriate warning is issued.
3500
3501 =head2 where
3502
3503 =over 4
3504
3505 Adds to the WHERE clause.
3506
3507   # only return rows WHERE deleted IS NULL for all searches
3508   __PACKAGE__->resultset_attributes({ where => { deleted => undef } }); )
3509
3510 Can be overridden by passing C<< { where => undef } >> as an attribute
3511 to a resultset.
3512
3513 =back
3514
3515 =head2 cache
3516
3517 Set to 1 to cache search results. This prevents extra SQL queries if you
3518 revisit rows in your ResultSet:
3519
3520   my $resultset = $schema->resultset('Artist')->search( undef, { cache => 1 } );
3521
3522   while( my $artist = $resultset->next ) {
3523     ... do stuff ...
3524   }
3525
3526   $rs->first; # without cache, this would issue a query
3527
3528 By default, searches are not cached.
3529
3530 For more examples of using these attributes, see
3531 L<DBIx::Class::Manual::Cookbook>.
3532
3533 =head2 for
3534
3535 =over 4
3536
3537 =item Value: ( 'update' | 'shared' )
3538
3539 =back
3540
3541 Set to 'update' for a SELECT ... FOR UPDATE or 'shared' for a SELECT
3542 ... FOR SHARED.
3543
3544 =cut
3545
3546 1;