File Coverage

blib/lib/DBIx/QuickDB/Util/HashBase.pm
Criterion Covered Total %
statement 79 87 90.8
branch 28 34 82.3
condition 8 17 47.0
subroutine 14 17 82.3
pod 1 1 100.0
total 130 156 83.3


line stmt bran cond sub pod time code
1             package DBIx::QuickDB::Util::HashBase;
2 24     24   81850 use strict;
  24         56  
  24         660  
3 24     24   77 use warnings;
  24         33  
  24         1378  
4              
5             our $VERSION = '0.000045';
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 24     24   96 no warnings 'once';
  24         54  
  24         2257  
19             $DBIx::QuickDB::Util::HashBase::HB_VERSION = '0.009';
20             *DBIx::QuickDB::Util::HashBase::ATTR_SUBS = \%Object::HashBase::ATTR_SUBS;
21             *DBIx::QuickDB::Util::HashBase::ATTR_LIST = \%Object::HashBase::ATTR_LIST;
22             *DBIx::QuickDB::Util::HashBase::VERSION = \%Object::HashBase::VERSION;
23             *DBIx::QuickDB::Util::HashBase::CAN_CACHE = \%Object::HashBase::CAN_CACHE;
24             }
25              
26              
27             require Carp;
28             {
29 24     24   106 no warnings 'once';
  24         39  
  24         2051  
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 24     24   116 no strict 'refs';
  24         51  
  24         2507  
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 24 50 33 24   10786 }
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 108     108   9900 my $class = shift;
57 108         205 my $into = caller;
58              
59             # Make sure we list the OLDEST version used to create this class.
60 108   33     292 my $ver = $DBIx::QuickDB::Util::HashBase::HB_VERSION || $DBIx::QuickDB::Util::HashBase::VERSION;
61 108 50 33     402 $DBIx::QuickDB::Util::HashBase::VERSION{$into} = $ver if !$DBIx::QuickDB::Util::HashBase::VERSION{$into} || $DBIx::QuickDB::Util::HashBase::VERSION{$into} > $ver;
62              
63 108         490 my $isa = _isa($into);
64 108   50     454 my $attr_list = $DBIx::QuickDB::Util::HashBase::ATTR_LIST{$into} ||= [];
65 108   50     356 my $attr_subs = $DBIx::QuickDB::Util::HashBase::ATTR_SUBS{$into} ||= {};
66              
67             my %subs = (
68             ($into->can('new') ? () : (new => \&_new)),
69 89 50       637 (map %{$DBIx::QuickDB::Util::HashBase::ATTR_SUBS{$_} || {}}, @{$isa}[1 .. $#$isa]),
  108         266  
70             (
71             map {
72 108 100       1108 my $p = substr($_, 0, 1);
  729         977  
73 729         758 my $x = $_;
74              
75 729   100     2635 my $spec = $SPEC{$p} || {reader => 1, writer => 1};
76              
77 729 100       1179 substr($x, 0, 1) = '' if $spec->{strip};
78 729         1001 push @$attr_list => $x;
79 729         1243 my ($sub, $attr) = (uc $x, $x);
80              
81 729     0   4446 $attr_subs->{$sub} = sub() { $attr };
  0         0  
82 729         1170 my %out = ($sub => $attr_subs->{$sub});
83              
84 729 100   17   6657 $out{$attr} = sub { $_[0]->{$attr} } if $spec->{reader};
  17     0   83  
85 729 100   8   1203 $out{"set_$attr"} = sub { $_[0]->{$attr} = $_[1] } if $spec->{writer};
  8     0   40  
86 729 100   1   1408 $out{"set_$attr"} = sub { Carp::croak("'$attr' is read-only") } if $spec->{read_only};
  1         160  
87 729 100   1   1028 $out{"set_$attr"} = sub { Carp::carp("set_$attr() is deprecated"); $_[0]->{$attr} = $_[1] } if $spec->{dep_writer};
  1         612  
  1         8  
88              
89 729         2210 %out;
90             } @_
91             ),
92             );
93              
94 24     24   143 no strict 'refs';
  24         43  
  24         11300  
95 108         635 *{"$into\::$_"} = $subs{$_} for keys %subs;
  2730         143456  
96             }
97              
98             sub attr_list {
99 3     3 1 1010 my $class = shift;
100              
101 3         10 my $isa = _isa($class);
102              
103 3         5 my %seen;
104 15         29 my @list = grep { !$seen{$_}++ } map {
105 3         6 my @out;
  6         5  
106              
107 6 50 50     23 if (0.004 > ($DBIx::QuickDB::Util::HashBase::VERSION{$_} || 0)) {
108 0         0 Carp::carp("$_ uses an inlined version of DBIx::QuickDB::Util::HashBase too old to support attr_list()");
109             }
110             else {
111 6         7 my $list = $DBIx::QuickDB::Util::HashBase::ATTR_LIST{$_};
112 6 50       12 @out = $list ? @$list : ()
113             }
114              
115 6         14 @out;
116             } reverse @$isa;
117              
118 3         14 return @list;
119             }
120              
121             sub _new {
122 11     11   142875 my $class = shift;
123              
124 11         15 my $self;
125              
126 11 100       27 if (@_ == 1) {
127 3         4 my $arg = shift;
128 3         6 my $type = ref($arg);
129              
130 3 100       8 if ($type eq 'HASH') {
131 1         3 $self = bless({%$arg}, $class)
132             }
133             else {
134 2 50       5 Carp::croak("Not sure what to do with '$type' in $class constructor")
135             unless $type eq 'ARRAY';
136              
137 2         3 my %proto;
138 2         5 my @attributes = attr_list($class);
139 2         6 while (@$arg) {
140 9         20 my $val = shift @$arg;
141 9 100       102 my $key = shift @attributes or Carp::croak("Too many arguments for $class constructor");
142 8         14 $proto{$key} = $val;
143             }
144              
145 1         2 $self = bless(\%proto, $class);
146             }
147             }
148             else {
149 8         21 $self = bless({@_}, $class);
150             }
151              
152             $DBIx::QuickDB::Util::HashBase::CAN_CACHE{$class} = $self->can('init')
153 10 100       46 unless exists $DBIx::QuickDB::Util::HashBase::CAN_CACHE{$class};
154              
155 10 100       35 $self->init if $DBIx::QuickDB::Util::HashBase::CAN_CACHE{$class};
156              
157 10         28 $self;
158             }
159              
160             1;
161              
162             __END__