File Coverage

/tmp/RkifBmfxoT.mite.pm
Criterion Covered Total %
statement 141 191 73.8
branch 28 72 38.8
condition 9 44 20.4
subroutine 29 32 90.6
pod n/a
total 207 339 61.0


line stmt bran cond sub pod time code
1             {
2             use strict;
3 1     1   6 use warnings;
  1         2  
  1         44  
4 1     1   5 no warnings qw( once void );
  1         2  
  1         42  
5 1     1   4  
  1         1  
  1         139  
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", "MyTest::R" );
12 1     1   4 ( *after, *around, *before, *has, *requires, *signature_for, *with ) = do {
13 1         1 no warnings 'redefine';
14             (
15 1     1   5 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
  1         3  
  1         185  
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 1         20 sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) },
21             sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 1         41  
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 1     1   6 BUILD => [
  1         2  
  1         633  
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             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
44              
45             # Accessors for foo
46             # has declaration, file ../../../../tmp/RkifBmfxoT, line 4
47             if ( $__XS ) {
48             Class::XSAccessor->import(
49             chained => 1,
50             "getters" => { "foo" => "foo" },
51             "setters" => { "_set_foo" => "foo" },
52             );
53             }
54             else {
55             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
56             *_set_foo = sub { @_ == 2 or Mite::Shim::croak( 'Writer "_set_foo" usage: $self->_set_foo( $newvalue )' ); $_[0]{"foo"} = $_[1]; $_[0]; };
57             }
58              
59             # Delegated methods for foo
60             # has declaration, file ../../../../tmp/RkifBmfxoT, line 4
61              
62 1 50 33 1   2  
  1         9  
  1         27  
  0         0  
63             # See UNIVERSAL
64             my ( $self, $role ) = @_;
65             our %DOES;
66 1     1   13 return $DOES{$role} if exists $DOES{$role};
67             return 1 if $role eq __PACKAGE__;
68             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
69             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
70             }
71 7     7   14 return $self->SUPER::DOES( $role );
72 7         5 }
73 7 50       12  
74 7 50       10 # Alias for Moose/Moo-compatibility
75 7 50 0     15 shift->DOES( @_ );
      33        
76 0 0 0     0 }
77              
78 7         36 # Callback which classes consuming this role will call
79             my ( $me, $target, $args ) = @_;
80             our ( %CONSUMERS, @METHOD_MODIFIERS );
81              
82             # Ensure a given target only consumes this role once.
83 7     7   1909 if ( exists $CONSUMERS{$target} ) {
84             return;
85             }
86             $CONSUMERS{$target} = 1;
87              
88 1     1   3 my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
89 1         1 return if $type ne 'Mite::Class';
90              
91             my @missing_methods;
92 1 50       2 @missing_methods = ()
93 0         0 and Mite::Shim::croak( "$me requires $target to implement methods: " . join q[, ], @missing_methods );
94              
95 1         3 my @roles = ( );
96             my %nextargs = %{ $args || {} };
97 1     1   7 ( $nextargs{-indirect} ||= 0 )++;
  1         2  
  1         328  
  1         1  
  1         2  
  1         3  
98 1 50       3 Mite::Shim::croak( "PANIC!" ) if $nextargs{-indirect} > 100;
99             for my $role ( @roles ) {
100 1         2 $role->__FINALIZE_APPLICATION__( $target, { %nextargs } );
101 1 50       7 }
102              
103             my $shim = "Mite::Shim";
104 1         2 for my $modifier_rule ( @METHOD_MODIFIERS ) {
105 1 50       8 my ( $modification, $names, $coderef ) = @$modifier_rule;
  1         12  
106 1   50     10 my $handler = "HANDLE_$modification";
107 1 50       3 $shim->$handler( $target, "class", $names, $coderef );
108 1         2 }
109 0         0  
110             return;
111             }
112 1         2  
113 1         2 {
114 0         0 our ( %METHODS ) = (
115 0         0 "_assert_blessed_foo" => "_assert_blessed_foo",
116 0         0 "_set_foo" => "_set_foo",
117             "foo" => "foo",
118             "foobar" => "foobar",
119 1         2 "quux" => "quux"
120             );
121              
122             my %DONE;
123             my $to = shift;
124             if ( ref $to ) {
125             my $new_class = CREATE_CLASS( ref $to );
126             return bless( $to, $new_class );
127             }
128             return if $DONE{$to};
129             {
130             no strict 'refs';
131             ${"$to\::USES_MITE"} = 'Mite::Class';
132             for my $method ( keys %METHODS ) {
133 2     2   3 $to->can($method) or *{"$to\::$method"} = \&{ $METHODS{$method} };
134 2 100       5 }
135 1         15 for ( "DOES", "does" ) {
136 1         3 $to->can( $_ ) or *{"$to\::$_"} = sub { shift->isa( @_ ) };
137             }
138 1 50       12 }
139             __PACKAGE__->__FINALIZE_APPLICATION__( $to );
140 1     1   6 $MITE_SHIM->HANDLE_around( $to, "class", [ "DOES", "does" ], sub {
  1         2  
  1         301  
  1         3  
141 1         1 my ( $next, $self, $role ) = @_;
  1         6  
142 1         4 return 1 if $role eq __PACKAGE__;
143 5 50       37 return 1 if $role eq $to;
  5         19  
  5         12  
144             return $self->$next( $role );
145 1         5 } );
146 2 50   0   9 $DONE{$to}++;
  0         0  
  0         0  
147             return;
148             }
149 1         5  
150             my $base = shift;
151 2     2   16 my $new_class = "$base\::__WITH__::" . __PACKAGE__;
152 2 50       13 {
153 0 0       0 no strict 'refs';
154 0         0 @{"$new_class\::ISA"} = $base;
155 1         23 }
156 1         3 APPLY_TO( $new_class );
157 1         2 return $new_class;
158             }
159             }
160              
161 1     1   3 1;
162 1         4 use strict;
163             use warnings;
164 1     1   6 no warnings qw( once void );
  1         2  
  1         92  
  1         8  
165 1         8  
  1         27  
166             our $USES_MITE = "Mite::Class";
167 1         14 our $MITE_SHIM = "Mite::Shim";
168 1         2 our $MITE_VERSION = "0.010008";
169             # Mite keywords
170             BEGIN {
171             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest" );
172             ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
173             no warnings 'redefine';
174             (
175 1     1   6 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  1         3  
  1         26  
176 1     1   6 sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
  1         2  
  1         37  
177 1     1   5 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
  1         2  
  1         109  
178             sub {},
179             sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
180             sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
181             sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
182             );
183             };
184 1     1   5  
185 1         8 # Gather metadata for constructor and destructor
186             no strict 'refs';
187 1     1   6 my $class = shift; $class = ref($class) || $class;
  1         2  
  1         257  
188             my $linear_isa = mro::get_linear_isa( $class );
189 0         0 return {
190 0         0 BUILD => [
191 0         0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
192             map { "$_\::BUILD" } reverse @$linear_isa
193 0         0 ],
194 0         0 DEMOLISH => [
195 0         0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
196 1         46 map { "$_\::DEMOLISH" } @$linear_isa
197             ],
198             HAS_BUILDARGS => $class->can('BUILDARGS'),
199             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
200             };
201             }
202 1     1   8  
  1         2  
  1         586  
203 2   33 2   4  
  2         9  
204 2         7 # Standard Moose/Moo-style constructor
205             my $class = ref($_[0]) ? ref(shift) : shift;
206             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
207 3 50       4 my $self = bless {}, $class;
  3         13  
  0         0  
208 3         8 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
209             my $no_build = delete $args->{__no_BUILD__};
210              
211 3 50       4  
  3         59  
  0         0  
212 2         5  
  3         7  
213             # Call BUILD methods
214             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
215              
216             # Unrecognized parameters
217              
218             return $self;
219             }
220              
221             # Used by constructor to call BUILD methods
222 1 50   1   183 my $class = ref( $_[0] );
223 1   33     5 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
224 1         4 $_->( @_ ) for @{ $meta->{BUILD} || [] };
225 1 50       6 }
  0 50       0  
226 1         1  
227             # Destructor should call DEMOLISH methods
228             my $self = shift;
229             my $class = ref( $self ) || $self;
230             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
231 1 50 33     5 my $in_global_destruction = defined ${^GLOBAL_PHASE}
  1 50       22  
232             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
233             : Devel::GlobalDestruction::in_global_destruction();
234 1 0       2 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  0 0       0  
  0 50       0  
  1         2  
  1         3  
235             my $e = do {
236 1         5 local ( $?, $@ );
237             eval { $demolisher->( $self, $in_global_destruction ) };
238             $@;
239             };
240             no warnings 'misc'; # avoid (in cleanup) warnings
241 0     0   0 die $e if $e; # rethrow
242 0   0     0 }
243 0 0       0 return;
  0         0  
244             }
245              
246              
247             # See UNIVERSAL
248 1     1   1184 my ( $self, $role ) = @_;
249 1   33     4 our %DOES;
250 1   33     7 return $DOES{$role} if exists $DOES{$role};
251 1 50       5 return 1 if $role eq __PACKAGE__;
252             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
253             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
254 1 50       1 }
  1         3  
255 0         0 return $self->SUPER::DOES( $role );
256 0         0 }
257 0         0  
  0         0  
258 0         0 # Alias for Moose/Moo-compatibility
259             shift->DOES( @_ );
260 1     1   7 }
  1         1  
  1         226  
261 0 0       0  
262             1;