File Coverage

blib/lib/MetaCPAN/Client/ResultSet.pm
Criterion Covered Total %
statement 33 35 94.2
branch 9 14 64.2
condition 10 15 66.6
subroutine 10 11 90.9
pod 4 4 100.0
total 66 79 83.5


line stmt bran cond sub pod time code
1 20     20   75745 use strict;
  20         57  
  20         625  
2 20     20   113 use warnings;
  20         46  
  20         948  
3             package MetaCPAN::Client::ResultSet;
4             # ABSTRACT: A Result Set
5             $MetaCPAN::Client::ResultSet::VERSION = '2.028000';
6 20     20   688 use Moo;
  20         10863  
  20         109  
7 20     20   7920 use Carp;
  20         87  
  20         1590  
8              
9 20     20   607 use MetaCPAN::Client::Types qw< ArrayRef >;
  20         52  
  20         2974  
10              
11             has type => (
12             is => 'ro',
13             isa => sub {
14             croak 'Invalid type' unless
15             grep { $_ eq $_[0] } qw
16             file module rating release mirror package>;
17             },
18             lazy => 1,
19             );
20              
21             # in case we're returning from a scrolled search
22             has scroller => (
23             is => 'ro',
24             isa => sub {
25 20     20   10567 use Safe::Isa;
  20         10526  
  20         11812  
26             $_[0]->$_isa('MetaCPAN::Client::Scroll')
27             or croak 'scroller must be an MetaCPAN::Client::Scroll object';
28             },
29             predicate => 'has_scroller',
30             );
31              
32             # in case we're returning from a fetch
33             has items => (
34             is => 'ro',
35             isa => ArrayRef,
36             );
37              
38             has total => (
39             is => 'ro',
40             default => sub {
41             my $self = shift;
42              
43             return $self->has_scroller ? $self->scroller->total
44             : scalar @{ $self->items };
45             },
46             );
47              
48             has 'class' => (
49             is => 'ro',
50             lazy => 1,
51             builder => '_build_class',
52             );
53              
54             sub BUILDARGS {
55 14     14 1 34222 my ( $class, %args ) = @_;
56              
57             exists $args{scroller} or exists $args{items}
58 14 50 66     92 or croak 'ResultSet must get either scroller or items';
59              
60             exists $args{scroller} and exists $args{items}
61 14 50 66     125 and croak 'ResultSet must get either scroller or items, not both';
62              
63             exists $args{type} or exists $args{class}
64 14 100 100     265 or croak 'Must pass either type or target class to ResultSet';
65              
66             exists $args{type} and exists $args{class}
67 13 50 66     99 and croak 'Must pass either type or target class to ResultSet, not both';
68              
69 13         296 return \%args;
70             }
71             sub BUILD {
72 12     12 1 168 my ( $self ) = @_;
73 12         244 $self->class; # vifify and validate
74             }
75              
76             sub next {
77 60     60 1 31690 my $self = shift;
78             my $result = $self->has_scroller ? $self->scroller->next
79 60 100       302 : shift @{ $self->items };
  27         73  
80              
81 60 100       171 defined $result or return;
82              
83 57   33     1021 return $self->class->new_from_request( $result->{'_source'} || $result->{'fields'} || $result );
84             }
85              
86             sub aggregations {
87 0     0 1 0 my $self = shift;
88              
89 0 0       0 return $self->has_scroller ? $self->scroller->aggregations : {};
90             }
91              
92             sub _build_class {
93 11     11   153 my $self = shift;
94 11         233 return 'MetaCPAN::Client::' . ucfirst $self->type;
95             }
96              
97             1;
98              
99             __END__