File Coverage

/tmp/bf0GS1B6sl.mite.pm
Criterion Covered Total %
statement 97 156 62.1
branch 6 44 13.6
condition 2 36 5.5
subroutine 24 28 85.7
pod n/a
total 129 264 48.8


line stmt bran cond sub pod time code
1             {
2             package MyTest1;
3 1     1   17 use strict;
  1         12  
  1         73  
4 1     1   12 use warnings;
  1         6  
  1         105  
5 1     1   11 no warnings qw( once void );
  1         5  
  1         297  
6              
7             our $USES_MITE = "Mite::Class";
8             our $MITE_SHIM = "Mite::Shim";
9             our $MITE_VERSION = "0.012000";
10             # Mite keywords
11             BEGIN {
12 1     1   5 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest1" );
13 1         2 ( *after, *around, *before, *extends, *field, *has, *param, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   7 no warnings 'redefine';
  1         2  
  1         318  
16             (
17 0         0 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
18 0         0 sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
19 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
20             sub {},
21 0         0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
22 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
23 0         0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
24 1         17 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
25 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
26 1         306 );
27             };
28             };
29              
30             # Mite imports
31             BEGIN {
32 1     1   16 require Scalar::Util;
33 1         6 *STRICT = \&Mite::Shim::STRICT;
34 1         2 *bare = \&Mite::Shim::bare;
35 1         3 *blessed = \&Scalar::Util::blessed;
36 1         17 *carp = \&Mite::Shim::carp;
37 1         2 *confess = \&Mite::Shim::confess;
38 1         7 *croak = \&Mite::Shim::croak;
39 1         3 *false = \&Mite::Shim::false;
40 1         2 *guard = \&Mite::Shim::guard;
41 1         3 *lazy = \&Mite::Shim::lazy;
42 1         15 *lock = \&Mite::Shim::lock;
43 1         3 *ro = \&Mite::Shim::ro;
44 1         6 *rw = \&Mite::Shim::rw;
45 1         3 *rwp = \&Mite::Shim::rwp;
46 1         8 *true = \&Mite::Shim::true;
47 1         38 *unlock = \&Mite::Shim::unlock;
48             };
49              
50             # Gather metadata for constructor and destructor
51             sub __META__ {
52 1     1   12 no strict 'refs';
  1         12  
  1         839  
53 0   0 0   0 my $class = shift; $class = ref($class) || $class;
  0         0  
54 0         0 my $linear_isa = mro::get_linear_isa( $class );
55             return {
56             BUILD => [
57 0 0       0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
  0         0  
58 0         0 map { "$_\::BUILD" } reverse @$linear_isa
59             ],
60             DEMOLISH => [
61 0 0       0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
  0         0  
62 0         0 map { "$_\::DEMOLISH" } @$linear_isa
  0         0  
63             ],
64             HAS_BUILDARGS => $class->can('BUILDARGS'),
65             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
66             };
67             }
68              
69              
70             # Standard Moose/Moo-style constructor
71             sub new {
72 0 0   0   0 my $class = ref($_[0]) ? ref(shift) : shift;
73 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
74 0         0 my $self = bless {}, $class;
75 0 0       0 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 0       0  
76 0         0 my $no_build = delete $args->{__no_BUILD__};
77              
78              
79              
80             # Call BUILD methods
81 0 0 0     0 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  0 0       0  
82              
83             # Unrecognized parameters
84 0 0       0 my @unknown = grep not( do { package MyTest1::__SAFE_NAMESPACE__; defined($_) and do { ref(\$_) eq 'SCALAR' or ref(\(my $val = $_)) eq 'SCALAR' } } ), keys %{$args}; @unknown and croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  0 0       0  
  0 0       0  
  0         0  
  0         0  
85              
86 0         0 return $self;
87             }
88              
89             # Used by constructor to call BUILD methods
90             sub BUILDALL {
91 0     0   0 my $class = ref( $_[0] );
92 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
93 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
94             }
95              
96             # Destructor should call DEMOLISH methods
97             sub DESTROY {
98 0     0   0 my $self = shift;
99 0   0     0 my $class = ref( $self ) || $self;
100 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
101 0 0       0 my $in_global_destruction = defined ${^GLOBAL_PHASE}
102             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
103             : Devel::GlobalDestruction::in_global_destruction();
104 0 0       0 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  0         0  
105 0         0 my $e = do {
106 0         0 local ( $?, $@ );
107 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
108 0         0 $@;
109             };
110 1     1   7 no warnings 'misc'; # avoid (in cleanup) warnings
  1         2  
  1         992  
111 0 0       0 die $e if $e; # rethrow
112             }
113 0         0 return;
114             }
115              
116              
117             # See UNIVERSAL
118             sub DOES {
119 48     48   60 my ( $self, $role ) = @_;
120 48         53 our %DOES;
121 48 50       72 return $DOES{$role} if exists $DOES{$role};
122 48 50       65 return 1 if $role eq __PACKAGE__;
123 48 50 0     72 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
124 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
125             }
126 48         199 return $self->SUPER::DOES( $role );
127             }
128              
129             # Alias for Moose/Moo-compatibility
130             sub does {
131 24     24   1269 shift->DOES( @_ );
132             }
133              
134             # Method signatures
135             our %SIGNATURE_FOR;
136              
137             $SIGNATURE_FOR{"foo"} = sub {
138             my $__NEXT__ = shift;
139              
140             my ( %out, %in, %tmp, $tmp, $dtmp, @head );
141              
142             @_ == 2 && (ref($_[1]) eq 'HASH')
143             or @_ % 2 == 1 && @_ == 5
144             or croak( "Wrong number of parameters in signature for %s: got %d, %s", "foo", scalar( @_ ), "that does not seem right" );
145              
146             @head = splice( @_, 0, 1 );
147              
148             # Parameter invocant (type: Defined)
149             (defined($head[0]))
150             or croak( "Type check failed in signature for foo: %s should be %s", "\$_[0]", "Defined" );
151              
152             %in = ( @_ == 1 and (ref($_[0]) eq 'HASH') ) ? %{ $_[0] } : @_;
153              
154             # Parameter xxx (type: Int)
155             exists( $in{"xxx"} )
156             or croak( "Failure in signature for foo: " . 'Missing required parameter: xxx' );
157             (do { my $tmp = $in{"xxx"}; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ })
158             or croak( "Type check failed in signature for foo: %s should be %s", "\$_{\"xxx\"}", "Int" );
159             $out{"xxx"} = $in{"xxx"} if exists( $in{"xxx"} );
160             delete( $in{"xxx"} );
161              
162             # Parameter yyy (type: Bool)
163             exists( $in{"yyy"} )
164             or croak( "Failure in signature for foo: " . 'Missing required parameter: yyy' );
165             $tmp = (do { package Mite::Shim; !ref $in{"yyy"} and (!defined $in{"yyy"} or $in{"yyy"} eq q() or $in{"yyy"} eq '0' or $in{"yyy"} eq '1') }) ? $in{"yyy"} : ((!!1)) ? scalar(do { local $_ = $in{"yyy"}; !!$_ }) : $in{"yyy"};
166             (!ref $tmp and (!defined $tmp or $tmp eq q() or $tmp eq '0' or $tmp eq '1'))
167             or croak( "Type check failed in signature for foo: %s should be %s", "\$_{\"yyy\"}", "Bool" );
168             $out{"yyy"} = $tmp;
169             delete( $in{"yyy"} );
170              
171             # Unrecognized parameters
172             croak( "Failure in signature for foo: " . sprintf( q{Unrecognized parameter%s: %s}, keys( %in ) > 1 ? q{s} : q{}, join( q{, }, sort keys %in ) ) ) if keys %in;
173              
174             do { @_ = ( @head, bless( \%out, "MyTest1::__NAMED_ARGUMENTS__::foo" ) ); goto $__NEXT__ };
175             };
176              
177             {
178             package MyTest1::__NAMED_ARGUMENTS__::foo;
179 1     1   8 use strict;
  1         2  
  1         50  
180 1     1   6 no warnings;
  1         3  
  1         148  
181 2     2   10 sub xxx { $_[0]{"xxx"} }
182 2     2   26 sub yyy { $_[0]{"yyy"} }
183             1;
184             }
185              
186              
187             1;
188             }{
189             package MyTest2;
190 1     1   8 use strict;
  1         3  
  1         40  
191 1     1   6 use warnings;
  1         7  
  1         37  
192 1     1   8 no warnings qw( once void );
  1         7  
  1         139  
193              
194             our $USES_MITE = "Mite::Class";
195             our $MITE_SHIM = "Mite::Shim";
196             our $MITE_VERSION = "0.012000";
197             # Mite keywords
198             BEGIN {
199 1     1   4 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest2" );
200 1         2 ( *after, *around, *before, *extends, *field, *has, *param, *signature_for, *with ) = do {
201             package Mite::Shim;
202 1     1   24 no warnings 'redefine';
  1         2  
  1         253  
203             (
204 0         0 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
205 0         0 sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
206 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
207             sub {},
208 0         0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
209 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
210 0         0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
211 1         7 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
212 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
213 1         231 );
214             };
215             };
216              
217             # Mite imports
218             BEGIN {
219 1     1   27 require Scalar::Util;
220 1         10 *STRICT = \&Mite::Shim::STRICT;
221 1         4 *bare = \&Mite::Shim::bare;
222 1         2 *blessed = \&Scalar::Util::blessed;
223 1         2 *carp = \&Mite::Shim::carp;
224 1         2 *confess = \&Mite::Shim::confess;
225 1         2 *croak = \&Mite::Shim::croak;
226 1         1 *false = \&Mite::Shim::false;
227 1         7 *guard = \&Mite::Shim::guard;
228 1         3 *lazy = \&Mite::Shim::lazy;
229 1         1 *lock = \&Mite::Shim::lock;
230 1         12 *ro = \&Mite::Shim::ro;
231 1         2 *rw = \&Mite::Shim::rw;
232 1         3 *rwp = \&Mite::Shim::rwp;
233 1         2 *true = \&Mite::Shim::true;
234 1         62 *unlock = \&Mite::Shim::unlock;
235             };
236              
237              
238             BEGIN {
239            
240            
241 1     1   13 use mro 'c3';
  1         10  
  1         26  
242 1     1   61 our @ISA;
243 1         284 push @ISA, "MyTest1";
244             }
245              
246              
247             # See UNIVERSAL
248             sub DOES {
249 24     24   34 my ( $self, $role ) = @_;
250 24         21 our %DOES;
251 24 50       42 return $DOES{$role} if exists $DOES{$role};
252 24 50       34 return 1 if $role eq __PACKAGE__;
253 24 50 0     48 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
254 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
255             }
256 24         39 return $self->SUPER::DOES( $role );
257             }
258              
259             # Alias for Moose/Moo-compatibility
260             sub does {
261 24     24   1739 shift->DOES( @_ );
262             }
263              
264             # Method signatures
265             our %SIGNATURE_FOR;
266              
267             $SIGNATURE_FOR{"foo"} = $MyTest1::SIGNATURE_FOR{"foo"};
268              
269              
270             1;
271             }