File Coverage

/tmp/RqOF_Xl1Dt.mite.pm
Criterion Covered Total %
statement 37 96 38.5
branch 0 36 0.0
condition 0 27 0.0
subroutine 8 23 34.7
pod n/a
total 45 182 24.7


line stmt bran cond sub pod time code
1             {
2             use strict;
3 2     2   14 use warnings;
  2         4  
  2         60  
4 2     2   10 no warnings qw( once void );
  2         4  
  2         56  
5 2     2   10  
  2         4  
  2         336  
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", "MyTestAll" );
12 2     2   8 ( *after, *around, *before, *extends, *field, *has, *param, *signature_for, *with ) = do {
13 2         4 no warnings 'redefine';
14             (
15 2     2   12 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  2         4  
  2         436  
16             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
17 0     0   0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
18 0     0   0 sub {},
19 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
20       0     sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
21 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
22 0     0   0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
23 0     0   0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
24 0     0   0 );
25 0     0   0 };
26 2         382  
27             # Mite imports
28             BEGIN {
29             require Scalar::Util;
30             *STRICT = \&Mite::Shim::STRICT;
31             *bare = \&Mite::Shim::bare;
32 2     2   12 *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         2 *false = \&Mite::Shim::false;
37 2         24 *guard = \&Mite::Shim::guard;
38 2         4 *lazy = \&Mite::Shim::lazy;
39 2         4 *lock = \&Mite::Shim::lock;
40 2         2 *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         4 *unlock = \&Mite::Shim::unlock;
45 2         2 };
46 2         4  
47 2         56 # 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   12 BUILD => [
  2         4  
  2         1254  
53 0   0 0     map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0            
54 0           map { "$_\::BUILD" } reverse @$linear_isa
55             ],
56             DEMOLISH => [
57 0 0         map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0            
  0            
58 0           map { "$_\::DEMOLISH" } @$linear_isa
59             ],
60             HAS_BUILDARGS => $class->can('BUILDARGS'),
61 0 0         HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  0            
  0            
62 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      
73 0   0        
74 0            
75 0 0         # Call BUILD methods
  0 0          
76 0           $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
77              
78             # Unrecognized parameters
79              
80             return $self;
81 0 0 0       }
  0 0          
82              
83             # Used by constructor to call BUILD methods
84 0 0         my $class = ref( $_[0] );
  0 0          
  0 0          
  0            
  0            
85             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 0           $_->( @_ ) for @{ $meta->{BUILD} || [] };
87             }
88              
89             # Destructor should call DEMOLISH methods
90             my $self = shift;
91 0     0     my $class = ref( $self ) || $self;
92 0   0       my $meta = ( $Mite::META{$class} ||= $class->__META__ );
93 0 0         my $in_global_destruction = defined ${^GLOBAL_PHASE}
  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     local ( $?, $@ );
99 0   0       eval { $demolisher->( $self, $in_global_destruction ) };
100 0   0       $@;
101 0 0         };
102             no warnings 'misc'; # avoid (in cleanup) warnings
103             die $e if $e; # rethrow
104 0 0         }
  0            
105 0           return;
106 0           }
107 0            
  0            
108 0            
109             # See UNIVERSAL
110 2     2   12 my ( $self, $role ) = @_;
  2         4  
  2         492  
111 0 0         our %DOES;
112             return $DOES{$role} if exists $DOES{$role};
113 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 0     0      
120 0           # Alias for Moose/Moo-compatibility
121 0 0         shift->DOES( @_ );
122 0 0         }
123 0 0 0        
      0        
124 0 0 0       1;