File Coverage

/tmp/pGq1he3d5V.mite.pm
Criterion Covered Total %
statement 99 150 66.0
branch 20 56 35.7
condition 7 41 17.0
subroutine 23 25 92.0
pod n/a
total 149 272 54.7


line stmt bran cond sub pod time code
1             {
2             use strict;
3 2     2   22 use warnings;
  2         16  
  2         122  
4 2     2   26 no warnings qw( once void );
  2         10  
  2         442  
5 2     2   22  
  2         8  
  2         448  
6             our $USES_MITE = "Mite::Role";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.010008";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest1" );
12 2     2   16 ( *after, *around, *before, *has, *requires, *signature_for, *with ) = do {
13 2         6 no warnings 'redefine';
14             (
15 2     2   12 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
  2         4  
  2         476  
16             sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) },
17 0         0 sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) },
18 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
19 0         0 sub {},
20 2         20 sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) },
21             sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 2         160  
25             # Gather metadata for constructor and destructor
26             no strict 'refs';
27             my $class = shift; $class = ref($class) || $class;
28             my $linear_isa = mro::get_linear_isa( $class );
29             return {
30 2     2   18 BUILD => [
  2         14  
  2         938  
31 0   0 0   0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
32 0         0 map { "$_\::BUILD" } reverse @$linear_isa
33             ],
34             DEMOLISH => [
35 0 0       0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
  0         0  
36 0         0 map { "$_\::DEMOLISH" } @$linear_isa
37             ],
38             HAS_BUILDARGS => $class->can('BUILDARGS'),
39 0 0       0 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  0         0  
  0         0  
40 0         0 };
  0         0  
41             }
42              
43             # See UNIVERSAL
44             my ( $self, $role ) = @_;
45             our %DOES;
46             return $DOES{$role} if exists $DOES{$role};
47             return 1 if $role eq __PACKAGE__;
48             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
49 14     14   24 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
50 14         12 }
51 14 50       24 return $self->SUPER::DOES( $role );
52 14 50       22 }
53 14 50 0     20  
      33        
54 0 0 0     0 # Alias for Moose/Moo-compatibility
55             shift->DOES( @_ );
56 14         72 }
57              
58             # Callback which classes consuming this role will call
59             my ( $me, $target, $args ) = @_;
60             our ( %CONSUMERS, @METHOD_MODIFIERS );
61 14     14   1248  
62             # Ensure a given target only consumes this role once.
63             if ( exists $CONSUMERS{$target} ) {
64             return;
65             }
66 2     2   4 $CONSUMERS{$target} = 1;
67 2         6  
68             my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
69             return if $type ne 'Mite::Class';
70 2 50       6  
71 0         0 my @missing_methods;
72             @missing_methods = grep( !$target->can($_), "bar" )
73 2         4 and Mite::Shim::croak( "$me requires $target to implement methods: " . join q[, ], @missing_methods );
74              
75 2     2   22 my @roles = ( );
  2         22  
  2         588  
  2         2  
  2         4  
  2         18  
76 2 50       6 my %nextargs = %{ $args || {} };
77             ( $nextargs{-indirect} ||= 0 )++;
78 2         2 Mite::Shim::croak( "PANIC!" ) if $nextargs{-indirect} > 100;
79 2 50       46 for my $role ( @roles ) {
80             $role->__FINALIZE_APPLICATION__( $target, { %nextargs } );
81             }
82 0         0  
83 0 0       0 my $shim = "Mite::Shim";
  0         0  
84 0   0     0 for my $modifier_rule ( @METHOD_MODIFIERS ) {
85 0 0       0 my ( $modification, $names, $coderef ) = @$modifier_rule;
86 0         0 my $handler = "HANDLE_$modification";
87 0         0 $shim->$handler( $target, "class", $names, $coderef );
88             }
89              
90 0         0 return;
91 0         0 }
92 0         0  
93 0         0 1;
94 0         0 use strict;
95             use warnings;
96             no warnings qw( once void );
97 0         0  
98             our $USES_MITE = "Mite::Class";
99             our $MITE_SHIM = "Mite::Shim";
100             our $MITE_VERSION = "0.010008";
101             # Mite keywords
102             BEGIN {
103 2     2   28 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest2" );
  2         14  
  2         84  
104 2     2   14 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
  2         10  
  2         78  
105 2     2   10 no warnings 'redefine';
  2         10  
  2         252  
106             (
107             sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
108             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
109             sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
110             sub {},
111             sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
112 2     2   8 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
113 2         12 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
114             );
115 2     2   14 };
  2         10  
  2         324  
116              
117 0         0 # Gather metadata for constructor and destructor
118 0         0 no strict 'refs';
119 0         0 my $class = shift; $class = ref($class) || $class;
120             my $linear_isa = mro::get_linear_isa( $class );
121 0         0 return {
122 0         0 BUILD => [
123 2         20 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
124 2         128 map { "$_\::BUILD" } reverse @$linear_isa
125             ],
126             DEMOLISH => [
127             map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
128             map { "$_\::DEMOLISH" } @$linear_isa
129             ],
130 2     2   14 HAS_BUILDARGS => $class->can('BUILDARGS'),
  2         4  
  2         1260  
131 2   33 2   4 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  2         8  
132 2         10 };
133             }
134              
135 2 50       2  
  2         10  
  0         0  
136 2         6 # Standard Moose/Moo-style constructor
137             my $class = ref($_[0]) ? ref(shift) : shift;
138             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
139 2 50       2 my $self = bless {}, $class;
  2         28  
  0         0  
140 2         6 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  2         4  
141             my $no_build = delete $args->{__no_BUILD__};
142              
143             # Attribute foo
144             # has declaration, file ../../../../tmp/pGq1he3d5V, line 4
145             if ( exists $args->{"foo"} ) { $self->{"foo"} = $args->{"foo"}; } ;
146              
147              
148             # Call BUILD methods
149             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
150 2 50   2   3892  
151 2   33     14 # Unrecognized parameters
152 2         4 my @unknown = grep not( /\Afoo\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
153 2 50       26  
  0 50       0  
154 2         8 return $self;
155             }
156              
157             # Used by constructor to call BUILD methods
158 2 50       6 my $class = ref( $_[0] );
  2         10  
159             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
160             $_->( @_ ) for @{ $meta->{BUILD} || [] };
161             }
162 2 50 33     8  
  2 50       8  
163             # Destructor should call DEMOLISH methods
164             my $self = shift;
165 2 50       2 my $class = ref( $self ) || $self;
  2         14  
  2         6  
166             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
167 2         8 my $in_global_destruction = defined ${^GLOBAL_PHASE}
168             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
169             : Devel::GlobalDestruction::in_global_destruction();
170             for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
171             my $e = do {
172 0     0   0 local ( $?, $@ );
173 0   0     0 eval { $demolisher->( $self, $in_global_destruction ) };
174 0 0       0 $@;
  0         0  
175             };
176             no warnings 'misc'; # avoid (in cleanup) warnings
177             die $e if $e; # rethrow
178             }
179 2     2   1114 return;
180 2   33     8 }
181 2   33     6  
182 2 50       8 my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
183              
184             # Accessors for foo
185 2 50       2 # has declaration, file ../../../../tmp/pGq1he3d5V, line 4
  2         6  
186 0         0 if ( $__XS ) {
187 0         0 Class::XSAccessor->import(
188 0         0 chained => 1,
  0         0  
189 0         0 "getters" => { "foo" => "foo" },
190             );
191 2     2   14 }
  2         2  
  2         400  
192 0 0       0 else {
193             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
194 2         10 }
195              
196              
197             BEGIN {
198            
199            
200             our %DOES = ( "MyTest2" => 1, "MyTest1" => 1 );
201             }
202              
203             # See UNIVERSAL
204             my ( $self, $role ) = @_;
205             our %DOES;
206             return $DOES{$role} if exists $DOES{$role};
207             return 1 if $role eq __PACKAGE__;
208             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
209             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
210             }
211             return $self->SUPER::DOES( $role );
212             }
213              
214             # Alias for Moose/Moo-compatibility
215 2     2   356 shift->DOES( @_ );
216             }
217              
218             1;