Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultClass / HashRefInflator.pm
CommitLineData
b0930c1e 1package DBIx::Class::ResultClass::HashRefInflator;
2
83304545 3use strict;
4use warnings;
5
137c657c 6=head1 NAME
7
b24d86a1 8DBIx::Class::ResultClass::HashRefInflator - Get raw hashrefs from a resultset
137c657c 9
10=head1 SYNOPSIS
11
a5b29361 12 use DBIx::Class::ResultClass::HashRefInflator;
13
137c657c 14 my $rs = $schema->resultset('CD');
137c657c 15 $rs->result_class('DBIx::Class::ResultClass::HashRefInflator');
a5b29361 16 while (my $hashref = $rs->next) {
630ba6e5 17 ...
18 }
19
20 OR as an attribute:
21
22 my $rs = $schema->resultset('CD')->search({}, {
23 result_class => 'DBIx::Class::ResultClass::HashRefInflator',
24 });
25 while (my $hashref = $rs->next) {
26 ...
a5b29361 27 }
137c657c 28
29=head1 DESCRIPTION
30
8273e845 31DBIx::Class is faster than older ORMs like Class::DBI but it still isn't
a5b29361 32designed primarily for speed. Sometimes you need to quickly retrieve the data
33from a massive resultset, while skipping the creation of fancy row objects.
34Specifying this class as a C<result_class> for a resultset will change C<< $rs->next >>
35to return a plain data hash-ref (or a list of such hash-refs if C<< $rs->all >> is used).
137c657c 36
a5b29361 37There are two ways of applying this class to a resultset:
2328814a 38
a5b29361 39=over
137c657c 40
a5b29361 41=item *
137c657c 42
a5b29361 43Specify C<< $rs->result_class >> on a specific resultset to affect only that
44resultset (and any chained off of it); or
137c657c 45
a5b29361 46=item *
137c657c 47
a5b29361 48Specify C<< __PACKAGE__->result_class >> on your source object to force all
49uses of that result source to be inflated to hash-refs - this approach is not
50recommended.
137c657c 51
a5b29361 52=back
137c657c 53
54=cut
b0930c1e 55
2328814a 56##############
57# NOTE
58#
a5b29361 59# Generally people use this to gain as much speed as possible. If a new &mk_hash is
2328814a 60# implemented, it should be benchmarked using the maint/benchmark_hashrefinflator.pl
9839286b 61# script (in addition to passing all tests of course :)
2328814a 62
a5b29361 63# This coderef is a simple recursive function
fd4b0742 64# Arguments: ($me, $prefetch, $is_root) from inflate_result() below
a5b29361 65my $mk_hash;
66$mk_hash = sub {
7f7f54cd 67
68 my $hash = {
69 # the main hash could be an undef if we are processing a skipped-over join
70 $_[0] ? %{$_[0]} : (),
71
72 # the second arg is a hash of arrays for each prefetched relation
73 map {
74 ref $_[1]->{$_}[0] eq 'ARRAY' # multi rel or not?
75 ? ( $_ => [ map
76 { $mk_hash->(@$_) || () }
77 @{$_[1]->{$_}}
78 ] )
79 : ( $_ => $mk_hash->( @{$_[1]->{$_}} ) )
80
81 } ( $_[1] ? ( keys %{$_[1]} ) : () )
82 };
83
84 # if there is at least one defined column *OR* we are at the root of
85 # the resultset - consider the result real (and not an emtpy has_many
86 # rel containing one empty hashref)
87 # an empty arrayref is an empty multi-sub-prefetch - don't consider
88 # those either
89 return $hash if $_[2];
90
91 for (values %$hash) {
92 return $hash if (
93 defined $_
94 and
95 (ref $_ ne 'ARRAY' or scalar @$_)
96 );
97 }
98
99 return undef;
a5b29361 100};
101
a5b29361 102=head1 METHODS
103
a5b29361 104=head2 inflate_result
105
106Inflates the result and prefetched data into a hash-ref (invoked by L<DBIx::Class::ResultSet>)
107
108=cut
109
e1540ee0 110##################################################################################
111# inflate_result is invoked as:
112# HRI->inflate_result ($resultsource_instance, $main_data_hashref, $prefetch_data_hashref)
a5b29361 113sub inflate_result {
7f7f54cd 114 return $mk_hash->($_[2], $_[3], 'is_root');
2328814a 115}
116
a5b29361 117
118=head1 CAVEATS
119
120=over
121
122=item *
419ff184 123
124This will not work for relationships that have been prefetched. Consider the
125following:
126
127 my $artist = $artitsts_rs->search({}, {prefetch => 'cds' })->first;
128
129 my $cds = $artist->cds;
130 $cds->result_class('DBIx::Class::ResultClass::HashRefInflator');
8273e845 131 my $first = $cds->first;
419ff184 132
8273e845 133C<$first> will B<not> be a hashref, it will be a normal CD row since
419ff184 134HashRefInflator only affects resultsets at inflation time, and prefetch causes
135relations to be inflated when the master C<$artist> row is inflated.
136
088476d4 137=item *
138
139Column value inflation, e.g., using modules like
140L<DBIx::Class::InflateColumn::DateTime>, is not performed.
141The returned hash contains the raw database values.
142
a5b29361 143=back
144
419ff184 145=cut
146
b0930c1e 1471;