File Coverage

/tmp/6jwaXCOqF6.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 3     3   21 use warnings;
  3         6  
  3         114  
4 3     3   24 no warnings qw( once void );
  3         6  
  3         180  
5 3     3   21  
  3         6  
  3         474  
6             our $USES_MITE = "Mite::Role";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.011000";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest1" );
12 3     3   15 ( *after, *around, *before, *has, *requires, *signature_for, *with ) = do {
13 3         9 no warnings 'redefine';
14             (
15 3     3   21 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
  3         6  
  3         660  
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 3         15 sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) },
21             sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 3         141  
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 3     3   18 BUILD => [
  3         6  
  3         1305  
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 21     21   69 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
50 21         24 }
51 21 50       36 return $self->SUPER::DOES( $role );
52 21 50       36 }
53 21 50 0     42  
      33        
54 0 0 0     0 # Alias for Moose/Moo-compatibility
55             shift->DOES( @_ );
56 21         129 }
57              
58             # Callback which classes consuming this role will call
59             my ( $me, $target, $args ) = @_;
60             our ( %CONSUMERS, @METHOD_MODIFIERS );
61 21     21   5970  
62             # Ensure a given target only consumes this role once.
63             if ( exists $CONSUMERS{$target} ) {
64             return;
65             }
66 3     3   6 $CONSUMERS{$target} = 1;
67 3         3  
68             my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
69             return if $type ne 'Mite::Class';
70 3 50       12  
71 0         0 my @missing_methods;
72             @missing_methods = grep( !$target->can($_), "bar" )
73 3         6 and Mite::Shim::croak( "$me requires $target to implement methods: " . join q[, ], @missing_methods );
74              
75 3     3   24 my @roles = ( );
  3         6  
  3         822  
  3         9  
  3         6  
  3         12  
76 3 50       12 my %nextargs = %{ $args || {} };
77             ( $nextargs{-indirect} ||= 0 )++;
78 3         3 Mite::Shim::croak( "PANIC!" ) if $nextargs{-indirect} > 100;
79 3 50       45 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.011000";
101             # Mite keywords
102             BEGIN {
103 3     3   24 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest2" );
  3         3  
  3         114  
104 3     3   45 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
  3         6  
  3         135  
105 3     3   21 no warnings 'redefine';
  3         3  
  3         345  
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 3     3   12 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
113 3         6 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
114             );
115 3     3   24 };
  3         3  
  3         528  
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 3         9 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
124 3         138 map { "$_\::BUILD" } reverse @$linear_isa
125             ],
126             DEMOLISH => [
127             map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
128             map { "$_\::DEMOLISH" } @$linear_isa
129             ],
130 3     3   18 HAS_BUILDARGS => $class->can('BUILDARGS'),
  3         6  
  3         1890  
131 3   33 3   6 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  3         12  
132 3         15 };
133             }
134              
135 3 50       6  
  3         21  
  0         0  
136 3         12 # Standard Moose/Moo-style constructor
137             my $class = ref($_[0]) ? ref(shift) : shift;
138             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
139 3 50       6 my $self = bless {}, $class;
  3         72  
  0         0  
140 3         6 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  3         6  
141             my $no_build = delete $args->{__no_BUILD__};
142              
143             # Attribute foo
144             # has declaration, file ../../../../tmp/6jwaXCOqF6, 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 3 50   3   7242  
151 3   33     21 # Unrecognized parameters
152 3         9 my @unknown = grep not( /\Afoo\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
153 3 50       12  
  0 50       0  
154 3         9 return $self;
155             }
156              
157             # Used by constructor to call BUILD methods
158 3 50       9 my $class = ref( $_[0] );
  3         9  
159             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
160             $_->( @_ ) for @{ $meta->{BUILD} || [] };
161             }
162 3 50 33     12  
  3 50       15  
163             # Destructor should call DEMOLISH methods
164             my $self = shift;
165 3 50       3 my $class = ref( $self ) || $self;
  3         18  
  3         9  
166             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
167 3         15 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 3     3   1836 return;
180 3   33     15 }
181 3   33     9  
182 3 50       12 my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
183              
184             # Accessors for foo
185 3 50       6 # has declaration, file ../../../../tmp/6jwaXCOqF6, line 4
  3         12  
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 3     3   24 }
  3         6  
  3         597  
192 0 0       0 else {
193             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
194 3         30 }
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 3     3   567 shift->DOES( @_ );
216             }
217              
218             1;