Fix RSC->reset() to no longer return $self, which fixes Cursor::Cached + RSC.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSetColumn.pm
CommitLineData
2bb7b40b 1package DBIx::Class::ResultSetColumn;
2use strict;
3use warnings;
4use base 'DBIx::Class';
66521001 5use List::Util;
2bb7b40b 6
7=head1 NAME
8
9 DBIx::Class::ResultSetColumn - helpful methods for messing
10 with a single column of the resultset
11
12=head1 SYNOPSIS
13
14 $rs = $schema->resultset('CD')->search({ artist => 'Tool' });
15 $rs_column = $rs->get_column('year');
16 $max_year = $rs_column->max; #returns latest year
17
18=head1 DESCRIPTION
19
eb98561c 20A convenience class used to perform operations on a specific column of
21a resultset.
2bb7b40b 22
23=cut
24
25=head1 METHODS
26
27=head2 new
28
29 my $obj = DBIx::Class::ResultSetColumn->new($rs, $column);
30
eb98561c 31Creates a new resultset column object from the resultset and column
32passed as params. Used internally by L<DBIx::Class::ResultSet/get_column>.
2bb7b40b 33
34=cut
35
36sub new {
37 my ($class, $rs, $column) = @_;
38 $class = ref $class if ref $class;
7ae9706c 39
40 $rs->throw_exception("column must be supplied") unless $column;
41
d8dbe471 42 my $orig_attrs = $rs->_resolved_attrs;
43 my $new_parent_rs = $rs->search_rs;
7ae9706c 44
45 # prefetch causes additional columns to be fetched, but we can not just make a new
46 # rs via the _resolved_attrs trick - we need to retain the separation between
bed3a173 47 # +select/+as and select/as. At the same time we want to preserve any joins that the
48 # prefetch would otherwise generate.
d8dbe471 49
50 my $new_attrs = $new_parent_rs->{attrs} ||= {};
51 $new_attrs->{join} = $rs->_merge_attr( delete $new_attrs->{join}, delete $new_attrs->{prefetch} );
b6e85b48 52
152002c4 53 # If $column can be found in the 'as' list of the parent resultset, use the
54 # corresponding element of its 'select' list (to keep any custom column
55 # definition set up with 'select' or '+select' attrs), otherwise use $column
56 # (to create a new column definition on-the-fly).
7ae9706c 57
d8dbe471 58 my $as_list = $orig_attrs->{as} || [];
59 my $select_list = $orig_attrs->{select} || [];
b6e85b48 60 my $as_index = List::Util::first { ($as_list->[$_] || "") eq $column } 0..$#$as_list;
b6e85b48 61 my $select = defined $as_index ? $select_list->[$as_index] : $column;
62
d8dbe471 63 # {collapse} would mean a has_many join was injected, which in turn means
64 # we need to group IF WE CAN (only if the column in question is unique)
65 if (!$new_attrs->{group_by} && keys %{$orig_attrs->{collapse}}) {
66
67 # scan for a constraint that would contain our column only - that'd be proof
68 # enough it is unique
69 my $constraints = { $rs->result_source->unique_constraints };
70 for my $constraint_columns ( values %$constraints ) {
71
72 next unless @$constraint_columns == 1;
73
74 my $col = $constraint_columns->[0];
75 my $fqcol = join ('.', $new_attrs->{alias}, $col);
76
77 if ($col eq $select or $fqcol eq $select) {
78 $new_attrs->{group_by} = [ $select ];
79 last;
80 }
81 }
82 }
83
b6e85b48 84 my $new = bless { _select => $select, _as => $column, _parent_resultset => $new_parent_rs }, $class;
2bb7b40b 85 return $new;
86}
87
70bb942d 88=head2 as_query (EXPERIMENTAL)
658fa250 89
90=over 4
91
428a645e 92=item Arguments: none
658fa250 93
4dc99a01 94=item Return Value: \[ $sql, @bind ]
658fa250 95
96=back
97
98Returns the SQL query and bind vars associated with the invocant.
99
03834f77 100This is generally used as the RHS for a subquery.
c7a9d102 101
6a9530d1 102B<NOTE>: This feature is still experimental.
103
c7a9d102 104=cut
105
0f6fc705 106sub as_query { return shift->_resultset->as_query(@_) }
c7a9d102 107
2bb7b40b 108=head2 next
109
110=over 4
111
112=item Arguments: none
113
114=item Return Value: $value
115
116=back
117
eb98561c 118Returns the next value of the column in the resultset (or C<undef> if
119there is none).
2bb7b40b 120
eb98561c 121Much like L<DBIx::Class::ResultSet/next> but just returning the
122one value.
2bb7b40b 123
124=cut
125
126sub next {
127 my $self = shift;
66521001 128 my ($row) = $self->_resultset->cursor->next;
2bb7b40b 129 return $row;
130}
131
132=head2 all
133
134=over 4
135
136=item Arguments: none
137
138=item Return Value: @values
139
140=back
141
eb98561c 142Returns all values of the column in the resultset (or C<undef> if
143there are none).
2bb7b40b 144
eb98561c 145Much like L<DBIx::Class::ResultSet/all> but returns values rather
146than row objects.
2bb7b40b 147
148=cut
149
150sub all {
151 my $self = shift;
66521001 152 return map { $_->[0] } $self->_resultset->cursor->all;
153}
154
155=head2 reset
156
157=over 4
158
159=item Arguments: none
160
161=item Return Value: $self
162
163=back
164
165Resets the underlying resultset's cursor, so you can iterate through the
166elements of the column again.
167
168Much like L<DBIx::Class::ResultSet/reset>.
169
170=cut
171
172sub reset {
173 my $self = shift;
174 $self->_resultset->cursor->reset;
01dc6781 175 return undef;
66521001 176}
177
178=head2 first
179
180=over 4
181
182=item Arguments: none
183
184=item Return Value: $value
185
186=back
187
188Resets the underlying resultset and returns the next value of the column in the
189resultset (or C<undef> if there is none).
190
191Much like L<DBIx::Class::ResultSet/first> but just returning the one value.
192
193=cut
194
195sub first {
196 my $self = shift;
01dc6781 197 $self->_resultset->reset();
198 my ($row) = $self->_resultset->cursor->next;
66521001 199 return $row;
2bb7b40b 200}
201
202=head2 min
203
204=over 4
205
206=item Arguments: none
207
208=item Return Value: $lowest_value
209
210=back
211
eb98561c 212 my $first_year = $year_col->min();
213
214Wrapper for ->func. Returns the lowest value of the column in the
215resultset (or C<undef> if there are none).
2bb7b40b 216
217=cut
218
219sub min {
6b051e14 220 return shift->func('MIN');
2bb7b40b 221}
222
4fa7bc22 223=head2 min_rs
224
225=over 4
226
227=item Arguments: none
228
229=item Return Value: $resultset
230
231=back
232
233 my $rs = $year_col->min_rs();
234
235Wrapper for ->func_rs for function MIN().
236
237=cut
238
239sub min_rs { return shift->func_rs('MIN') }
240
2bb7b40b 241=head2 max
242
243=over 4
244
245=item Arguments: none
246
247=item Return Value: $highest_value
248
249=back
250
eb98561c 251 my $last_year = $year_col->max();
252
253Wrapper for ->func. Returns the highest value of the column in the
254resultset (or C<undef> if there are none).
2bb7b40b 255
256=cut
257
258sub max {
6b051e14 259 return shift->func('MAX');
2bb7b40b 260}
261
4fa7bc22 262=head2 max_rs
263
264=over 4
265
266=item Arguments: none
267
268=item Return Value: $resultset
269
270=back
271
272 my $rs = $year_col->max_rs();
273
274Wrapper for ->func_rs for function MAX().
275
276=cut
277
278sub max_rs { return shift->func_rs('MAX') }
279
2bb7b40b 280=head2 sum
281
282=over 4
283
284=item Arguments: none
285
286=item Return Value: $sum_of_values
287
288=back
289
eb98561c 290 my $total = $prices_col->sum();
291
292Wrapper for ->func. Returns the sum of all the values in the column of
293the resultset. Use on varchar-like columns at your own risk.
2bb7b40b 294
295=cut
296
297sub sum {
6b051e14 298 return shift->func('SUM');
2bb7b40b 299}
300
4fa7bc22 301=head2 sum_rs
302
303=over 4
304
305=item Arguments: none
306
307=item Return Value: $resultset
308
309=back
310
311 my $rs = $year_col->sum_rs();
312
313Wrapper for ->func_rs for function SUM().
314
315=cut
316
317sub sum_rs { return shift->func_rs('SUM') }
318
2bb7b40b 319=head2 func
320
321=over 4
322
323=item Arguments: $function
324
325=item Return Value: $function_return_value
326
327=back
328
e8419341 329 $rs = $schema->resultset("CD")->search({});
330 $length = $rs->get_column('title')->func('LENGTH');
2bb7b40b 331
eb98561c 332Runs a query using the function on the column and returns the
333value. Produces the following SQL:
334
335 SELECT LENGTH( title ) FROM cd me
2bb7b40b 336
337=cut
338
339sub func {
6b051e14 340 my ($self,$function) = @_;
4fa7bc22 341 my $cursor = $self->func_rs($function)->cursor;
d4daee7b 342
5d62876f 343 if( wantarray ) {
344 return map { $_->[ 0 ] } $cursor->all;
345 }
346
347 return ( $cursor->next )[ 0 ];
2bb7b40b 348}
349
4fa7bc22 350=head2 func_rs
351
352=over 4
353
354=item Arguments: $function
355
356=item Return Value: $resultset
357
358=back
359
360Creates the resultset that C<func()> uses to run its query.
361
362=cut
363
364sub func_rs {
365 my ($self,$function) = @_;
366 return $self->{_parent_resultset}->search(
367 undef, {
368 select => {$function => $self->{_select}},
369 as => [$self->{_as}],
370 },
371 );
372}
373
5d1fc7dc 374=head2 throw_exception
375
376See L<DBIx::Class::Schema/throw_exception> for details.
d4daee7b 377
5d1fc7dc 378=cut
d4daee7b 379
5d1fc7dc 380sub throw_exception {
381 my $self=shift;
382 if (ref $self && $self->{_parent_resultset}) {
383 $self->{_parent_resultset}->throw_exception(@_)
384 } else {
385 croak(@_);
386 }
387}
388
b6e85b48 389# _resultset
390#
391# Arguments: none
392#
393# Return Value: $resultset
394#
395# $year_col->_resultset->next
396#
397# Returns the underlying resultset. Creates it from the parent resultset if
398# necessary.
399#
66521001 400sub _resultset {
401 my $self = shift;
402
403 return $self->{_resultset} ||= $self->{_parent_resultset}->search(undef,
404 {
405 select => [$self->{_select}],
406 as => [$self->{_as}]
407 }
408 );
409}
410
2bb7b40b 4111;
412
413=head1 AUTHORS
414
415Luke Saunders <luke.saunders@gmail.com>
416
eb98561c 417Jess Robinson
418
2bb7b40b 419=head1 LICENSE
420
421You may distribute this code under the same terms as Perl itself.
422
423=cut