Start setting the 'c3' mro unambiguously everywhere
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / CDBICompat / Retrieve.pm
CommitLineData
c0e7b4e5 1package # hide from PAUSE
2 DBIx::Class::CDBICompat::Retrieve;
656796f2 3
4use strict;
656796f2 5
9f7d5590 6# even though fatalization has been proven over and over to be a universally
7# bad idea, this line has been part of the code from the beginning
8# leaving the compat layer as-is, something may in fact depend on that
9use warnings FATAL => 'all';
716b3d29 10
9387c904 11sub retrieve {
12 my $self = shift;
13 die "No args to retrieve" unless @_ > 0;
14
15 my @cols = $self->primary_columns;
16
17 my $query;
18 if (ref $_[0] eq 'HASH') {
19 $query = { %{$_[0]} };
20 }
21 elsif (@_ == @cols) {
22 $query = {};
23 @{$query}{@cols} = @_;
24 }
25 else {
26 $query = {@_};
27 }
28
29 $query = $self->_build_query($query);
30 $self->find($query);
31}
32
33sub find_or_create {
34 my $self = shift;
35 my $query = ref $_[0] eq 'HASH' ? shift : {@_};
36
37 $query = $self->_build_query($query);
38 $self->next::method($query);
39}
40
41# _build_query
42#
43# Build a query hash. Defaults to a no-op; ColumnCase overrides.
44
45sub _build_query {
46 my ($self, $query) = @_;
47
48 return $query;
716b3d29 49}
6009260a 50
51sub retrieve_from_sql {
52 my ($class, $cond, @rest) = @_;
e60dc79f 53
6009260a 54 $cond =~ s/^\s*WHERE//i;
e60dc79f 55
7210819b 56 # Need to parse the SQL clauses after WHERE in reverse
57 # order of appearance.
58
59 my %attrs;
60
61 if( $cond =~ s/\bLIMIT\s+(\d+)\s*$//i ) {
62 $attrs{rows} = $1;
63 }
64
65 if ( $cond =~ s/\bORDER\s+BY\s+(.*)\s*$//i ) {
66 $attrs{order_by} = $1;
e60dc79f 67 }
68
7210819b 69 if( $cond =~ s/\bGROUP\s+BY\s+(.*)\s*$//i ) {
70 $attrs{group_by} = $1;
e2bdf485 71 }
72
869e9aac 73 return $class->search_literal($cond, @rest, ( %attrs ? \%attrs : () ) );
e60dc79f 74}
75
76sub construct {
77 my $class = shift;
78 my $obj = $class->resultset_instance->new_result(@_);
79 $obj->in_storage(1);
d4daee7b 80
e60dc79f 81 return $obj;
6009260a 82}
656796f2 83
716b3d29 84sub retrieve_all { shift->search }
3125eb1f 85sub count_all { shift->count }
e60dc79f 86
87sub maximum_value_of {
88 my($class, $col) = @_;
89 return $class->resultset_instance->get_column($col)->max;
90}
91
92sub minimum_value_of {
93 my($class, $col) = @_;
94 return $class->resultset_instance->get_column($col)->min;
95}
cba994a1 96
656796f2 971;