| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
{ |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Mite::Trait::HasDestructor; |
|
4
|
109
|
|
|
109
|
|
984
|
use strict; |
|
|
109
|
|
|
|
|
446
|
|
|
|
109
|
|
|
|
|
3737
|
|
|
5
|
109
|
|
|
109
|
|
711
|
use warnings; |
|
|
109
|
|
|
|
|
335
|
|
|
|
109
|
|
|
|
|
3479
|
|
|
6
|
109
|
|
|
109
|
|
1109
|
no warnings qw( once void ); |
|
|
109
|
|
|
|
|
340
|
|
|
|
109
|
|
|
|
|
13442
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $USES_MITE = "Mite::Role"; |
|
9
|
|
|
|
|
|
|
our $MITE_SHIM = "Mite::Shim"; |
|
10
|
|
|
|
|
|
|
our $MITE_VERSION = "0.011000"; |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
# Mite keywords |
|
13
|
|
|
|
|
|
|
BEGIN { |
|
14
|
109
|
|
|
109
|
|
670
|
my ( $SHIM, $CALLER ) = |
|
15
|
|
|
|
|
|
|
( "Mite::Shim", "Mite::Trait::HasDestructor" ); |
|
16
|
|
|
|
|
|
|
( |
|
17
|
|
|
|
|
|
|
*after, *around, *before, |
|
18
|
|
|
|
|
|
|
*field, *has, *param, |
|
19
|
|
|
|
|
|
|
*requires, *signature_for, *with |
|
20
|
|
|
|
|
|
|
) |
|
21
|
109
|
|
|
|
|
281
|
= do { |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
package Mite::Shim; |
|
24
|
109
|
|
|
109
|
|
845
|
no warnings 'redefine'; |
|
|
109
|
|
|
|
|
333
|
|
|
|
109
|
|
|
|
|
26308
|
|
|
25
|
|
|
|
|
|
|
( |
|
26
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) }, |
|
27
|
109
|
|
|
109
|
|
733
|
sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) }, |
|
28
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) }, |
|
29
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) }, |
|
30
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) }, |
|
31
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) }, |
|
32
|
|
|
|
109
|
|
|
sub { }, |
|
33
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) }, |
|
34
|
0
|
|
|
0
|
|
0
|
sub { $SHIM->HANDLE_with( $CALLER, @_ ) }, |
|
35
|
109
|
|
|
|
|
22150
|
); |
|
36
|
|
|
|
|
|
|
}; |
|
37
|
|
|
|
|
|
|
} |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
# Mite imports |
|
40
|
|
|
|
|
|
|
BEGIN { |
|
41
|
109
|
|
|
109
|
|
1013
|
require Scalar::Util; |
|
42
|
109
|
|
|
|
|
624
|
*STRICT = \&Mite::Shim::STRICT; |
|
43
|
109
|
|
|
|
|
402
|
*bare = \&Mite::Shim::bare; |
|
44
|
109
|
|
|
|
|
346
|
*blessed = \&Scalar::Util::blessed; |
|
45
|
109
|
|
|
|
|
294
|
*carp = \&Mite::Shim::carp; |
|
46
|
109
|
|
|
|
|
365
|
*confess = \&Mite::Shim::confess; |
|
47
|
109
|
|
|
|
|
470
|
*croak = \&Mite::Shim::croak; |
|
48
|
109
|
|
|
|
|
315
|
*false = \&Mite::Shim::false; |
|
49
|
109
|
|
|
|
|
286
|
*guard = \&Mite::Shim::guard; |
|
50
|
109
|
|
|
|
|
273
|
*lazy = \&Mite::Shim::lazy; |
|
51
|
109
|
|
|
|
|
259
|
*lock = \&Mite::Shim::lock; |
|
52
|
109
|
|
|
|
|
384
|
*ro = \&Mite::Shim::ro; |
|
53
|
109
|
|
|
|
|
263
|
*rw = \&Mite::Shim::rw; |
|
54
|
109
|
|
|
|
|
331
|
*rwp = \&Mite::Shim::rwp; |
|
55
|
109
|
|
|
|
|
260
|
*true = \&Mite::Shim::true; |
|
56
|
109
|
|
|
|
|
4337
|
*unlock = \&Mite::Shim::unlock; |
|
57
|
|
|
|
|
|
|
} |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
# Gather metadata for constructor and destructor |
|
60
|
|
|
|
|
|
|
sub __META__ { |
|
61
|
109
|
|
|
109
|
|
797
|
no strict 'refs'; |
|
|
109
|
|
|
|
|
329
|
|
|
|
109
|
|
|
|
|
47289
|
|
|
62
|
0
|
|
|
0
|
|
0
|
my $class = shift; |
|
63
|
0
|
|
0
|
|
|
0
|
$class = ref($class) || $class; |
|
64
|
0
|
|
|
|
|
0
|
my $linear_isa = mro::get_linear_isa($class); |
|
65
|
|
|
|
|
|
|
return { |
|
66
|
|
|
|
|
|
|
BUILD => [ |
|
67
|
0
|
0
|
|
|
|
0
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
|
0
|
|
|
|
|
0
|
|
|
|
0
|
|
|
|
|
0
|
|
|
68
|
0
|
|
|
|
|
0
|
map { "$_\::BUILD" } reverse @$linear_isa |
|
69
|
|
|
|
|
|
|
], |
|
70
|
|
|
|
|
|
|
DEMOLISH => [ |
|
71
|
0
|
0
|
|
|
|
0
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
|
0
|
|
|
|
|
0
|
|
|
|
0
|
|
|
|
|
0
|
|
|
72
|
0
|
|
|
|
|
0
|
map { "$_\::DEMOLISH" } @$linear_isa |
|
|
0
|
|
|
|
|
0
|
|
|
73
|
|
|
|
|
|
|
], |
|
74
|
|
|
|
|
|
|
HAS_BUILDARGS => $class->can('BUILDARGS'), |
|
75
|
|
|
|
|
|
|
HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'), |
|
76
|
|
|
|
|
|
|
}; |
|
77
|
|
|
|
|
|
|
} |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
# See UNIVERSAL |
|
80
|
|
|
|
|
|
|
sub DOES { |
|
81
|
0
|
|
|
0
|
0
|
0
|
my ( $self, $role ) = @_; |
|
82
|
0
|
|
|
|
|
0
|
our %DOES; |
|
83
|
0
|
0
|
|
|
|
0
|
return $DOES{$role} if exists $DOES{$role}; |
|
84
|
0
|
0
|
|
|
|
0
|
return 1 if $role eq __PACKAGE__; |
|
85
|
0
|
0
|
0
|
|
|
0
|
if ( $INC{'Moose/Util.pm'} |
|
|
|
|
0
|
|
|
|
|
|
86
|
|
|
|
|
|
|
and my $meta = Moose::Util::find_meta( ref $self or $self ) ) |
|
87
|
|
|
|
|
|
|
{ |
|
88
|
0
|
0
|
0
|
|
|
0
|
$meta->can('does_role') and $meta->does_role($role) and return 1; |
|
89
|
|
|
|
|
|
|
} |
|
90
|
0
|
|
|
|
|
0
|
return $self->SUPER::DOES($role); |
|
91
|
|
|
|
|
|
|
} |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
|
94
|
|
|
|
|
|
|
sub does { |
|
95
|
0
|
|
|
0
|
0
|
0
|
shift->DOES(@_); |
|
96
|
|
|
|
|
|
|
} |
|
97
|
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
# Callback which classes consuming this role will call |
|
99
|
|
|
|
|
|
|
sub __FINALIZE_APPLICATION__ { |
|
100
|
109
|
|
|
109
|
|
539
|
my ( $me, $target, $args ) = @_; |
|
101
|
109
|
|
|
|
|
253
|
our ( %CONSUMERS, @METHOD_MODIFIERS ); |
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
# Ensure a given target only consumes this role once. |
|
104
|
109
|
50
|
|
|
|
555
|
if ( exists $CONSUMERS{$target} ) { |
|
105
|
0
|
|
|
|
|
0
|
return; |
|
106
|
|
|
|
|
|
|
} |
|
107
|
109
|
|
|
|
|
429
|
$CONSUMERS{$target} = 1; |
|
108
|
|
|
|
|
|
|
|
|
109
|
109
|
|
|
109
|
|
978
|
my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} }; |
|
|
109
|
|
|
|
|
360
|
|
|
|
109
|
|
|
|
|
32344
|
|
|
|
109
|
|
|
|
|
251
|
|
|
|
109
|
|
|
|
|
232
|
|
|
|
109
|
|
|
|
|
657
|
|
|
110
|
109
|
50
|
|
|
|
524
|
return if $type ne 'Mite::Class'; |
|
111
|
|
|
|
|
|
|
|
|
112
|
109
|
|
|
|
|
323
|
my @missing_methods; |
|
113
|
109
|
50
|
|
|
|
1601
|
@missing_methods = grep( !$target->can($_), |
|
114
|
|
|
|
|
|
|
"_compile_meta", "_get_parent", |
|
115
|
|
|
|
|
|
|
"compilation_stages", "linear_isa" ) |
|
116
|
|
|
|
|
|
|
and croak( "$me requires $target to implement methods: " . join q[, ], |
|
117
|
|
|
|
|
|
|
@missing_methods ); |
|
118
|
|
|
|
|
|
|
|
|
119
|
109
|
|
|
|
|
422
|
my @roles = (); |
|
120
|
109
|
50
|
|
|
|
287
|
my %nextargs = %{ $args || {} }; |
|
|
109
|
|
|
|
|
1016
|
|
|
121
|
109
|
|
50
|
|
|
1037
|
( $nextargs{-indirect} ||= 0 )++; |
|
122
|
109
|
50
|
|
|
|
677
|
croak("PANIC!") if $nextargs{-indirect} > 100; |
|
123
|
109
|
|
|
|
|
427
|
for my $role (@roles) { |
|
124
|
0
|
|
|
|
|
0
|
$role->__FINALIZE_APPLICATION__( $target, {%nextargs} ); |
|
125
|
|
|
|
|
|
|
} |
|
126
|
|
|
|
|
|
|
|
|
127
|
109
|
|
|
|
|
324
|
my $shim = "Mite::Shim"; |
|
128
|
109
|
|
|
|
|
450
|
for my $modifier_rule (@METHOD_MODIFIERS) { |
|
129
|
109
|
|
|
|
|
488
|
my ( $modification, $names, $coderef ) = @$modifier_rule; |
|
130
|
109
|
|
|
|
|
455
|
my $handler = "HANDLE_$modification"; |
|
131
|
109
|
|
|
|
|
698
|
$shim->$handler( $target, "class", $names, $coderef ); |
|
132
|
|
|
|
|
|
|
} |
|
133
|
|
|
|
|
|
|
|
|
134
|
109
|
|
|
|
|
661
|
return; |
|
135
|
|
|
|
|
|
|
} |
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
1; |
|
138
|
|
|
|
|
|
|
} |