File Coverage

/tmp/NBoLMBZGxX.mite.pm
Criterion Covered Total %
statement 45 96 46.8
branch 3 36 8.3
condition 1 27 3.7
subroutine 10 14 71.4
pod n/a
total 59 173 34.1


line stmt bran cond sub pod time code
1             {
2             package MyTest3;
3 2     2   38 use strict;
  2         10  
  2         142  
4 2     2   40 use warnings;
  2         22  
  2         228  
5 2     2   22 no warnings qw( once void );
  2         8  
  2         690  
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 2     2   12 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest3" );
13 2         18 ( *after, *around, *before, *extends, *field, *has, *param, *signature_for, *with ) = do {
14             package Mite::Shim;
15 2     2   30 no warnings 'redefine';
  2         6  
  2         738  
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 2         28 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
25 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
26 2         690 );
27             };
28             };
29              
30             # Mite imports
31             BEGIN {
32 2     2   26 require Scalar::Util;
33 2         18 *STRICT = \&Mite::Shim::STRICT;
34 2         14 *bare = \&Mite::Shim::bare;
35 2         18 *blessed = \&Scalar::Util::blessed;
36 2         14 *carp = \&Mite::Shim::carp;
37 2         8 *confess = \&Mite::Shim::confess;
38 2         12 *croak = \&Mite::Shim::croak;
39 2         12 *false = \&Mite::Shim::false;
40 2         6 *guard = \&Mite::Shim::guard;
41 2         14 *lazy = \&Mite::Shim::lazy;
42 2         16 *lock = \&Mite::Shim::lock;
43 2         4 *ro = \&Mite::Shim::ro;
44 2         6 *rw = \&Mite::Shim::rw;
45 2         4 *rwp = \&Mite::Shim::rwp;
46 2         4 *true = \&Mite::Shim::true;
47 2         84 *unlock = \&Mite::Shim::unlock;
48             };
49              
50             # Gather metadata for constructor and destructor
51             sub __META__ {
52 2     2   12 no strict 'refs';
  2         12  
  2         1688  
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 MyTest3::__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 2     2   14 no warnings 'misc'; # avoid (in cleanup) warnings
  2         4  
  2         1864  
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   74 my ( $self, $role ) = @_;
120 48         44 our %DOES;
121 48 50       94 return $DOES{$role} if exists $DOES{$role};
122 48 50       74 return 1 if $role eq __PACKAGE__;
123 48 50 0     86 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         220 return $self->SUPER::DOES( $role );
127             }
128              
129             # Alias for Moose/Moo-compatibility
130             sub does {
131 48     48   2600 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, $out{"xxx"}, $out{"yyy"} ); goto $__NEXT__ };
175             };
176              
177              
178             1;
179             }