File Coverage

blib/lib/Mite/Trait/HasMethods.pm.mite.pm
Criterion Covered Total %
statement 62 89 69.6
branch 5 22 22.7
condition 1 14 7.1
subroutine 13 21 61.9
pod 0 2 0.0
total 81 148 54.7


line stmt bran cond sub pod time code
1             {
2              
3             package Mite::Trait::HasMethods;
4 109     109   1011 use strict;
  109         404  
  109         3775  
5 109     109   724 use warnings;
  109         323  
  109         3537  
6 109     109   617 no warnings qw( once void );
  109         335  
  109         14416  
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   1017 my ( $SHIM, $CALLER ) =
15             ( "Mite::Shim", "Mite::Trait::HasMethods" );
16             (
17             *after, *around, *before,
18             *field, *has, *param,
19             *requires, *signature_for, *with
20             )
21 109         273 = do {
22              
23             package Mite::Shim;
24 109     109   1596 no warnings 'redefine';
  109         306  
  109         27882  
25             (
26 0     0   0 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
27 109     109   577 sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) },
28 109     109   578 sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) },
29 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
30 109     109   75300 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         21403 );
36             };
37             }
38              
39             # Mite imports
40             BEGIN {
41 109     109   862 require Scalar::Util;
42 109         1499 *STRICT = \&Mite::Shim::STRICT;
43 109         359 *bare = \&Mite::Shim::bare;
44 109         298 *blessed = \&Scalar::Util::blessed;
45 109         299 *carp = \&Mite::Shim::carp;
46 109         301 *confess = \&Mite::Shim::confess;
47 109         281 *croak = \&Mite::Shim::croak;
48 109         303 *false = \&Mite::Shim::false;
49 109         330 *guard = \&Mite::Shim::guard;
50 109         254 *lazy = \&Mite::Shim::lazy;
51 109         299 *lock = \&Mite::Shim::lock;
52 109         250 *ro = \&Mite::Shim::ro;
53 109         269 *rw = \&Mite::Shim::rw;
54 109         232 *rwp = \&Mite::Shim::rwp;
55 109         241 *true = \&Mite::Shim::true;
56 109         4271 *unlock = \&Mite::Shim::unlock;
57             }
58              
59             # Gather metadata for constructor and destructor
60             sub __META__ {
61 109     109   806 no strict 'refs';
  109         333  
  109         48140  
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 124     124   553 my ( $me, $target, $args ) = @_;
101 124         314 our ( %CONSUMERS, @METHOD_MODIFIERS );
102              
103             # Ensure a given target only consumes this role once.
104 124 50       656 if ( exists $CONSUMERS{$target} ) {
105 0         0 return;
106             }
107 124         404 $CONSUMERS{$target} = 1;
108              
109 109     109   1009 my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
  109         330  
  109         31906  
  124         317  
  124         266  
  124         644  
110 124 50       532 return if $type ne 'Mite::Class';
111              
112 124         304 my @missing_methods;
113 124 50       1370 @missing_methods = grep( !$target->can($_),
114             "_function_for_croak", "compilation_stages",
115             "inject_mite_functions" )
116             and croak( "$me requires $target to implement methods: " . join q[, ],
117             @missing_methods );
118              
119 124         347 my @roles = ();
120 124 50       289 my %nextargs = %{ $args || {} };
  124         1300  
121 124   50     901 ( $nextargs{-indirect} ||= 0 )++;
122 124 50       573 croak("PANIC!") if $nextargs{-indirect} > 100;
123 124         384 for my $role (@roles) {
124 0         0 $role->__FINALIZE_APPLICATION__( $target, {%nextargs} );
125             }
126              
127 124         332 my $shim = "Mite::Shim";
128 124         356 for my $modifier_rule (@METHOD_MODIFIERS) {
129 248         814 my ( $modification, $names, $coderef ) = @$modifier_rule;
130 248         658 my $handler = "HANDLE_$modification";
131 248         1148 $shim->$handler( $target, "class", $names, $coderef );
132             }
133              
134 124         672 return;
135             }
136              
137             1;
138             }