1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
package DBIx::Class::ResultSetColumn;
use strict;
use warnings;
use base 'DBIx::Class';
=head1 NAME
DBIx::Class::ResultSetColumn - helpful methods for messing
with a single column of the resultset
=head1 SYNOPSIS
$rs = $schema->resultset('CD')->search({ artist => 'Tool' });
$rs_column = $rs->get_column('year');
$max_year = $rs_column->max; #returns latest year
=head1 DESCRIPTION
A convenience class used to perform operations on a specific column of
a resultset.
=cut
=head1 METHODS
=head2 new
my $obj = DBIx::Class::ResultSetColumn->new($rs, $column);
Creates a new resultset column object from the resultset and column
passed as params. Used internally by L<DBIx::Class::ResultSet/get_column>.
=cut
sub new {
my ($class, $rs, $column) = @_;
$class = ref $class if ref $class;
my $object_ref = { _column => $column,
_parent_resultset => $rs };
my $new = bless $object_ref, $class;
$new->throw_exception("column must be supplied") unless ($column);
return $new;
}
=head2 next
=over 4
=item Arguments: none
=item Return Value: $value
=back
Returns the next value of the column in the resultset (or C<undef> if
there is none).
Much like L<DBIx::Class::ResultSet/next> but just returning the
one value.
=cut
sub next {
my $self = shift;
$self->{_resultset} = $self->{_parent_resultset}->search(undef, {select => [$self->{_column}], as => [$self->{_column}]}) unless ($self->{_resultset});
my ($row) = $self->{_resultset}->cursor->next;
return $row;
}
=head2 all
=over 4
=item Arguments: none
=item Return Value: @values
=back
Returns all values of the column in the resultset (or C<undef> if
there are none).
Much like L<DBIx::Class::ResultSet/all> but returns values rather
than row objects.
=cut
sub all {
my $self = shift;
return map {$_->[0]} $self->{_parent_resultset}->search(undef, {select => [$self->{_column}], as => [$self->{_column}]})->cursor->all;
}
=head2 min
=over 4
=item Arguments: none
=item Return Value: $lowest_value
=back
my $first_year = $year_col->min();
Wrapper for ->func. Returns the lowest value of the column in the
resultset (or C<undef> if there are none).
=cut
sub min {
my $self = shift;
return $self->func('MIN');
}
=head2 max
=over 4
=item Arguments: none
=item Return Value: $highest_value
=back
my $last_year = $year_col->max();
Wrapper for ->func. Returns the highest value of the column in the
resultset (or C<undef> if there are none).
=cut
sub max {
my $self = shift;
return $self->func('MAX');
}
=head2 sum
=over 4
=item Arguments: none
=item Return Value: $sum_of_values
=back
my $total = $prices_col->sum();
Wrapper for ->func. Returns the sum of all the values in the column of
the resultset. Use on varchar-like columns at your own risk.
=cut
sub sum {
my $self = shift;
return $self->func('SUM');
}
=head2 func
=over 4
=item Arguments: $function
=item Return Value: $function_return_value
=back
$rs = $schema->resultset("CD")->search({});
$length = $rs->get_column('title')->func('LENGTH');
Runs a query using the function on the column and returns the
value. Produces the following SQL:
SELECT LENGTH( title ) FROM cd me
=cut
sub func {
my $self = shift;
my $function = shift;
my ($row) = $self->{_parent_resultset}->search(undef, {select => {$function => $self->{_column}}, as => [$self->{_column}]})->cursor->next;
return $row;
}
1;
=head1 AUTHORS
Luke Saunders <luke.saunders@gmail.com>
Jess Robinson
=head1 LICENSE
You may distribute this code under the same terms as Perl itself.
=cut
|