File Coverage

blib/lib/Test2/Util/HashBase.pm
Criterion Covered Total %
statement 79 87 90.8
branch 29 34 85.2
condition 8 17 47.0
subroutine 15 16 93.7
pod 1 1 100.0
total 132 155 85.1


line stmt bran cond sub pod time code
1             package Test2::Util::HashBase;
2 246     246   1612 use strict;
  246         462  
  246         6913  
3 246     246   1172 use warnings;
  246         424  
  246         11159  
4              
5             our $VERSION = '1.302180';
6              
7             #################################################################
8             # #
9             # This is a generated file! Do not modify this file directly! #
10             # Use hashbase_inc.pl script to regenerate this file. #
11             # The script is part of the Object::HashBase distribution. #
12             # Note: You can modify the version number above this comment #
13             # if needed, that is fine. #
14             # #
15             #################################################################
16              
17             {
18 246     246   1444 no warnings 'once';
  246         507  
  246         28577  
19             $Test2::Util::HashBase::HB_VERSION = '0.009';
20             *Test2::Util::HashBase::ATTR_SUBS = \%Object::HashBase::ATTR_SUBS;
21             *Test2::Util::HashBase::ATTR_LIST = \%Object::HashBase::ATTR_LIST;
22             *Test2::Util::HashBase::VERSION = \%Object::HashBase::VERSION;
23             *Test2::Util::HashBase::CAN_CACHE = \%Object::HashBase::CAN_CACHE;
24             }
25              
26              
27             require Carp;
28             {
29 246     246   1768 no warnings 'once';
  246         551  
  246         24384  
30             $Carp::Internal{+__PACKAGE__} = 1;
31             }
32              
33             BEGIN {
34             # these are not strictly equivalent, but for out use we don't care
35             # about order
36             *_isa = ($] >= 5.010 && require mro) ? \&mro::get_linear_isa : sub {
37 246     246   1748 no strict 'refs';
  246         526  
  246         32366  
38 0         0 my @packages = ($_[0]);
39 0         0 my %seen;
40 0         0 for my $package (@packages) {
41 0         0 push @packages, grep !$seen{$_}++, @{"$package\::ISA"};
  0         0  
42             }
43 0         0 return \@packages;
44             }
45 246 50 33 246   120586 }
46              
47             my %SPEC = (
48             '^' => {reader => 1, writer => 0, dep_writer => 1, read_only => 0, strip => 1},
49             '-' => {reader => 1, writer => 0, dep_writer => 0, read_only => 1, strip => 1},
50             '>' => {reader => 0, writer => 1, dep_writer => 0, read_only => 0, strip => 1},
51             '<' => {reader => 1, writer => 0, dep_writer => 0, read_only => 0, strip => 1},
52             '+' => {reader => 0, writer => 0, dep_writer => 0, read_only => 0, strip => 1},
53             );
54              
55             sub import {
56 7728     7728   20749 my $class = shift;
57 7728         16641 my $into = caller;
58              
59             # Make sure we list the OLDEST version used to create this class.
60 7728   33     22185 my $ver = $Test2::Util::HashBase::HB_VERSION || $Test2::Util::HashBase::VERSION;
61 7728 50 33     29572 $Test2::Util::HashBase::VERSION{$into} = $ver if !$Test2::Util::HashBase::VERSION{$into} || $Test2::Util::HashBase::VERSION{$into} > $ver;
62              
63 7728         48806 my $isa = _isa($into);
64 7728   50     39534 my $attr_list = $Test2::Util::HashBase::ATTR_LIST{$into} ||= [];
65 7728   50     30192 my $attr_subs = $Test2::Util::HashBase::ATTR_SUBS{$into} ||= {};
66              
67             my %subs = (
68             ($into->can('new') ? () : (new => \&_new)),
69 6798 100       44223 (map %{$Test2::Util::HashBase::ATTR_SUBS{$_} || {}}, @{$isa}[1 .. $#$isa]),
  7728         21764  
70             (
71             map {
72 7728 100       87573 my $p = substr($_, 0, 1);
  35144         69218  
73 35144         47346 my $x = $_;
74              
75 35144   100     106303 my $spec = $SPEC{$p} || {reader => 1, writer => 1};
76              
77 35144 100       74180 substr($x, 0, 1) = '' if $spec->{strip};
78 35144         69291 push @$attr_list => $x;
79 35144         77855 my ($sub, $attr) = (uc $x, $x);
80              
81 35144     0   232781 $attr_subs->{$sub} = sub() { $attr };
  0         0  
82 35144         88407 my %out = ($sub => $attr_subs->{$sub});
83              
84 35144 100   45423   140789 $out{$attr} = sub { $_[0]->{$attr} } if $spec->{reader};
  45423     45156   156903  
85 35144 100   2097   131553 $out{"set_$attr"} = sub { $_[0]->{$attr} = $_[1] } if $spec->{writer};
  2097         6230  
86 35144 100   1   112102 $out{"set_$attr"} = sub { Carp::croak("'$attr' is read-only") } if $spec->{read_only};
  1         167  
87 35144 100   1   68624 $out{"set_$attr"} = sub { Carp::carp("set_$attr() is deprecated"); $_[0]->{$attr} = $_[1] } if $spec->{dep_writer};
  1         88  
  1         38  
88              
89 35144         164285 %out;
90             } @_
91             ),
92             );
93              
94 246     246   303181 no strict 'refs';
  246         596  
  246         124964  
95 7728         43947 *{"$into\::$_"} = $subs{$_} for keys %subs;
  138502         2512861  
96             }
97              
98             sub attr_list {
99 3     3 1 12 my $class = shift;
100              
101 3         13 my $isa = _isa($class);
102              
103 3         4 my %seen;
104 15         34 my @list = grep { !$seen{$_}++ } map {
105 3         8 my @out;
  6         8  
106              
107 6 50 50     20 if (0.004 > ($Test2::Util::HashBase::VERSION{$_} || 0)) {
108 0         0 Carp::carp("$_ uses an inlined version of Test2::Util::HashBase too old to support attr_list()");
109             }
110             else {
111 6         9 my $list = $Test2::Util::HashBase::ATTR_LIST{$_};
112 6 50       17 @out = $list ? @$list : ()
113             }
114              
115 6         16 @out;
116             } reverse @$isa;
117              
118 3         15 return @list;
119             }
120              
121             sub _new {
122 6131     6131   19870 my $class = shift;
123              
124 6131         9171 my $self;
125              
126 6131 100       14632 if (@_ == 1) {
127 469         723 my $arg = shift;
128 469         762 my $type = ref($arg);
129              
130 469 100       967 if ($type eq 'HASH') {
131 467         1743 $self = bless({%$arg}, $class)
132             }
133             else {
134 2 50       4 Carp::croak("Not sure what to do with '$type' in $class constructor")
135             unless $type eq 'ARRAY';
136              
137 2         4 my %proto;
138 2         4 my @attributes = attr_list($class);
139 2         6 while (@$arg) {
140 9         13 my $val = shift @$arg;
141 9 100       152 my $key = shift @attributes or Carp::croak("Too many arguments for $class constructor");
142 8         17 $proto{$key} = $val;
143             }
144              
145 1         3 $self = bless(\%proto, $class);
146             }
147             }
148             else {
149 5662         16839 $self = bless({@_}, $class);
150             }
151              
152             $Test2::Util::HashBase::CAN_CACHE{$class} = $self->can('init')
153 6130 100       26009 unless exists $Test2::Util::HashBase::CAN_CACHE{$class};
154              
155 6130 100       27030 $self->init if $Test2::Util::HashBase::CAN_CACHE{$class};
156              
157 6115         47634 $self;
158             }
159              
160             1;
161              
162             __END__