File Coverage

/tmp/_Xl1DtZ6en.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             use strict;
3 2     2   30 use warnings;
  2         14  
  2         126  
4 2     2   14 no warnings qw( once void );
  2         14  
  2         176  
5 2     2   10  
  2         24  
  2         522  
6             our $USES_MITE = "Mite::Class";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.011000";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest3" );
12 2     2   32 ( *after, *around, *before, *extends, *field, *has, *param, *signature_for, *with ) = do {
13 2         12 no warnings 'redefine';
14             (
15 2     2   22 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  2         12  
  2         688  
16             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
17 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
18 0         0 sub {},
19 0         0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
20             sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
21 0         0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
22 0         0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
23 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
24 2         32 );
25 0         0 };
26 2         588  
27             # Mite imports
28             BEGIN {
29             require Scalar::Util;
30             *STRICT = \&Mite::Shim::STRICT;
31             *bare = \&Mite::Shim::bare;
32 2     2   18 *blessed = \&Scalar::Util::blessed;
33 2         6 *carp = \&Mite::Shim::carp;
34 2         6 *confess = \&Mite::Shim::confess;
35 2         4 *croak = \&Mite::Shim::croak;
36 2         4 *false = \&Mite::Shim::false;
37 2         8 *guard = \&Mite::Shim::guard;
38 2         14 *lazy = \&Mite::Shim::lazy;
39 2         6 *lock = \&Mite::Shim::lock;
40 2         4 *ro = \&Mite::Shim::ro;
41 2         4 *rw = \&Mite::Shim::rw;
42 2         4 *rwp = \&Mite::Shim::rwp;
43 2         4 *true = \&Mite::Shim::true;
44 2         12 *unlock = \&Mite::Shim::unlock;
45 2         6 };
46 2         4  
47 2         86 # Gather metadata for constructor and destructor
48             no strict 'refs';
49             my $class = shift; $class = ref($class) || $class;
50             my $linear_isa = mro::get_linear_isa( $class );
51             return {
52 2     2   14 BUILD => [
  2         4  
  2         1574  
53 0   0 0   0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
54 0         0 map { "$_\::BUILD" } reverse @$linear_isa
55             ],
56             DEMOLISH => [
57 0 0       0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
  0         0  
58 0         0 map { "$_\::DEMOLISH" } @$linear_isa
59             ],
60             HAS_BUILDARGS => $class->can('BUILDARGS'),
61 0 0       0 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  0         0  
  0         0  
62 0         0 };
  0         0  
63             }
64              
65              
66             # Standard Moose/Moo-style constructor
67             my $class = ref($_[0]) ? ref(shift) : shift;
68             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
69             my $self = bless {}, $class;
70             my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
71             my $no_build = delete $args->{__no_BUILD__};
72 0 0   0   0  
73 0   0     0  
74 0         0  
75 0 0       0 # Call BUILD methods
  0 0       0  
76 0         0 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
77              
78             # Unrecognized parameters
79              
80             return $self;
81 0 0 0     0 }
  0 0       0  
82              
83             # Used by constructor to call BUILD methods
84 0 0       0 my $class = ref( $_[0] );
  0 0       0  
  0 0       0  
  0         0  
  0         0  
85             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 0         0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
87             }
88              
89             # Destructor should call DEMOLISH methods
90             my $self = shift;
91 0     0   0 my $class = ref( $self ) || $self;
92 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
93 0 0       0 my $in_global_destruction = defined ${^GLOBAL_PHASE}
  0         0  
94             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
95             : Devel::GlobalDestruction::in_global_destruction();
96             for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
97             my $e = do {
98 0     0   0 local ( $?, $@ );
99 0   0     0 eval { $demolisher->( $self, $in_global_destruction ) };
100 0   0     0 $@;
101 0 0       0 };
102             no warnings 'misc'; # avoid (in cleanup) warnings
103             die $e if $e; # rethrow
104 0 0       0 }
  0         0  
105 0         0 return;
106 0         0 }
107 0         0  
  0         0  
108 0         0  
109             # See UNIVERSAL
110 2     2   14 my ( $self, $role ) = @_;
  2         14  
  2         1736  
111 0 0       0 our %DOES;
112             return $DOES{$role} if exists $DOES{$role};
113 0         0 return 1 if $role eq __PACKAGE__;
114             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
115             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
116             }
117             return $self->SUPER::DOES( $role );
118             }
119 48     48   80  
120 48         46 # Alias for Moose/Moo-compatibility
121 48 50       76 shift->DOES( @_ );
122 48 50       70 }
123 48 50 0     84  
      33        
124 0 0 0     0 # Method signatures
125             our %SIGNATURE_FOR;
126 48         198  
127             $SIGNATURE_FOR{"foo"} = sub {
128             my $__NEXT__ = shift;
129              
130             my ( %out, %in, %tmp, $tmp, $dtmp, @head );
131 48     48   2754  
132             @_ == 2 && (ref($_[1]) eq 'HASH')
133             or @_ % 2 == 1 && @_ == 5
134             or croak( "Wrong number of parameters in signature for %s: got %d, %s", "foo", scalar( @_ ), "that does not seem right" );
135              
136             @head = splice( @_, 0, 1 );
137              
138             # Parameter invocant (type: Defined)
139             (defined($head[0]))
140             or croak( "Type check failed in signature for foo: %s should be %s", "\$_[0]", "Defined" );
141              
142             %in = ( @_ == 1 and (ref($_[0]) eq 'HASH') ) ? %{ $_[0] } : @_;
143              
144             # Parameter xxx (type: Int)
145             exists( $in{"xxx"} )
146             or croak( "Failure in signature for foo: " . 'Missing required parameter: xxx' );
147             (do { my $tmp = $in{"xxx"}; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ })
148             or croak( "Type check failed in signature for foo: %s should be %s", "\$_{\"xxx\"}", "Int" );
149             $out{"xxx"} = $in{"xxx"} if exists( $in{"xxx"} );
150             delete( $in{"xxx"} );
151              
152             # Parameter yyy (type: Bool)
153             exists( $in{"yyy"} )
154             or croak( "Failure in signature for foo: " . 'Missing required parameter: yyy' );
155             (!ref $tmp and (!defined $tmp or $tmp eq q() or $tmp eq '0' or $tmp eq '1'))
156             or croak( "Type check failed in signature for foo: %s should be %s", "\$_{\"yyy\"}", "Bool" );
157             $out{"yyy"} = $tmp;
158             delete( $in{"yyy"} );
159              
160             # Unrecognized parameters
161             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;
162              
163             do { @_ = ( @head, $out{"xxx"}, $out{"yyy"} ); goto $__NEXT__ };
164             };
165              
166              
167             1;