X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FResultClass%2FHashRefInflator.pm;h=4d002abeeee030e9d03a3d840c38db1abdecde6b;hb=3440100bc0455cf0e7ccbba03754a29ad26ec6d1;hp=ab7fbc7feb8ac81e6ff75cd18db9b094e1aa03b3;hpb=7f7f54cd3c38aa2fe9a3687daa3ad296b6abe7e4;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/ResultClass/HashRefInflator.pm b/lib/DBIx/Class/ResultClass/HashRefInflator.pm index ab7fbc7..4d002ab 100644 --- a/lib/DBIx/Class/ResultClass/HashRefInflator.pm +++ b/lib/DBIx/Class/ResultClass/HashRefInflator.pm @@ -28,9 +28,9 @@ DBIx::Class::ResultClass::HashRefInflator - Get raw hashrefs from a resultset =head1 DESCRIPTION -DBIx::Class is faster than older ORMs like Class::DBI but it still isn't +DBIx::Class is faster than older ORMs like Class::DBI but it still isn't designed primarily for speed. Sometimes you need to quickly retrieve the data -from a massive resultset, while skipping the creation of fancy row objects. +from a massive resultset, while skipping the creation of fancy result objects. Specifying this class as a C for a resultset will change C<< $rs->next >> to return a plain data hash-ref (or a list of such hash-refs if C<< $rs->all >> is used). @@ -66,37 +66,26 @@ my $mk_hash; $mk_hash = sub { my $hash = { + # the main hash could be an undef if we are processing a skipped-over join $_[0] ? %{$_[0]} : (), # the second arg is a hash of arrays for each prefetched relation - map { - ref $_[1]->{$_}[0] eq 'ARRAY' # multi rel or not? - ? ( $_ => [ map - { $mk_hash->(@$_) || () } - @{$_[1]->{$_}} - ] ) - : ( $_ => $mk_hash->( @{$_[1]->{$_}} ) ) - - } ( $_[1] ? ( keys %{$_[1]} ) : () ) + map { $_ => ( + + # null-branch or not + ref $_[1]->{$_} eq $DBIx::Class::ResultSource::RowParser::Util::null_branch_class + + ? ref $_[1]->{$_}[0] eq 'ARRAY' ? [] : undef + + : ref $_[1]->{$_}[0] eq 'ARRAY' + ? [ map { $mk_hash->( @$_ ) || () } @{$_[1]->{$_}} ] + : $mk_hash->( @{$_[1]->{$_}} ) + + ) } ($_[1] ? keys %{$_[1]} : ()) }; - # if there is at least one defined column *OR* we are at the root of - # the resultset - consider the result real (and not an emtpy has_many - # rel containing one empty hashref) - # an empty arrayref is an empty multi-sub-prefetch - don't consider - # those either - return $hash if $_[2]; - - for (values %$hash) { - return $hash if ( - defined $_ - and - (ref $_ ne 'ARRAY' or scalar @$_) - ); - } - - return undef; + ($_[2] || keys %$hash) ? $hash : undef; }; =head1 METHODS @@ -128,9 +117,9 @@ following: my $cds = $artist->cds; $cds->result_class('DBIx::Class::ResultClass::HashRefInflator'); - my $first = $cds->first; + my $first = $cds->first; -C<$first> will B be a hashref, it will be a normal CD row since +C<$first> will B be a hashref, it will be a normal CD row since HashRefInflator only affects resultsets at inflation time, and prefetch causes relations to be inflated when the master C<$artist> row is inflated.