File Coverage

blib/lib/Mite/Trait/HasMethods.pm.mite.pm
Criterion Covered Total %
statement 60 85 70.5
branch 5 18 27.7
condition 1 5 20.0
subroutine 13 21 61.9
pod 0 2 0.0
total 79 131 60.3


line stmt bran cond sub pod time code
1             {
2              
3             use strict;
4 108     108   762 use warnings;
  108         272  
  108         3162  
5 108     108   4564 no warnings qw( once void );
  108         271  
  108         3658  
6 108     108   505  
  108         222  
  108         14822  
7             our $USES_MITE = "Mite::Role";
8             our $MITE_SHIM = "Mite::Shim";
9             our $MITE_VERSION = "0.010007";
10              
11             # Mite keywords
12             BEGIN {
13             my ( $SHIM, $CALLER ) =
14 108     108   558 ( "Mite::Shim", "Mite::Trait::HasMethods" );
15             (
16             *after, *around, *before,
17             *field, *has, *param,
18             *requires, *signature_for, *with
19             )
20             = do {
21 108         277  
22             no warnings 'redefine';
23             (
24 108     108   815 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
  108         256  
  108         22132  
25             sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) },
26 0     0   0 sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) },
27 108     108   439 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
28 108     108   532 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
29 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
30 108     108   58458 sub { },
31 0     0   0 sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) },
32       108     sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
33 0     0   0 );
34 0     0   0 }
35 108         16784  
36             # Mite imports
37             BEGIN {
38             require Scalar::Util;
39             *STRICT = \&Mite::Shim::STRICT;
40             *bare = \&Mite::Shim::bare;
41 108     108   740 *blessed = \&Scalar::Util::blessed;
42 108         322 *carp = \&Mite::Shim::carp;
43 108         257 *confess = \&Mite::Shim::confess;
44 108         221 *croak = \&Mite::Shim::croak;
45 108         230 *false = \&Mite::Shim::false;
46 108         233 *guard = \&Mite::Shim::guard;
47 108         232 *lazy = \&Mite::Shim::lazy;
48 108         252 *ro = \&Mite::Shim::ro;
49 108         249 *rw = \&Mite::Shim::rw;
50 108         220 *rwp = \&Mite::Shim::rwp;
51 108         225 *true = \&Mite::Shim::true;
52 108         200 }
53 108         219  
54 108         3559 # Gather metadata for constructor and destructor
55             no strict 'refs';
56             my $class = shift;
57             $class = ref($class) || $class;
58             my $linear_isa = mro::get_linear_isa($class);
59 108     108   646 return {
  108         223  
  108         35911  
60 0     0   0 BUILD => [
61 0   0     0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
62 0         0 map { "$_\::BUILD" } reverse @$linear_isa
63             ],
64             DEMOLISH => [
65 0 0       0 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  0         0  
  0         0  
66 0         0 map { "$_\::DEMOLISH" } @$linear_isa
67             ],
68             HAS_BUILDARGS => $class->can('BUILDARGS'),
69 0 0       0 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  0         0  
  0         0  
70 0         0 };
  0         0  
71             }
72              
73             # See UNIVERSAL
74             my ( $self, $role ) = @_;
75             our %DOES;
76             return $DOES{$role} if exists $DOES{$role};
77             return 1 if $role eq __PACKAGE__;
78             return $self->SUPER::DOES($role);
79 0     0 0 0 }
80 0         0  
81 0 0       0 # Alias for Moose/Moo-compatibility
82 0 0       0 shift->DOES(@_);
83 0         0 }
84              
85             # Callback which classes consuming this role will call
86             my ( $me, $target, $args ) = @_;
87             our ( %CONSUMERS, @METHOD_MODIFIERS );
88 0     0 0 0  
89             # Ensure a given target only consumes this role once.
90             if ( exists $CONSUMERS{$target} ) {
91             return;
92             }
93 123     123   389 $CONSUMERS{$target} = 1;
94 123         205  
95             my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
96             return if $type ne 'Mite::Class';
97 123 50       499  
98 0         0 my @missing_methods;
99             @missing_methods = grep( !$target->can($_),
100 123         383 "_function_for_croak", "compilation_stages",
101             "inject_mite_functions" )
102 108     108   773 and croak( "$me requires $target to implement methods: " . join q[, ],
  108         283  
  108         26277  
  123         227  
  123         208  
  123         550  
103 123 50       492 @missing_methods );
104              
105 123         236 my @roles = ();
106 123 50       1191 my %nextargs = %{ $args || {} };
107             ( $nextargs{-indirect} ||= 0 )++;
108             croak("PANIC!") if $nextargs{-indirect} > 100;
109             for my $role (@roles) {
110             $role->__FINALIZE_APPLICATION__( $target, {%nextargs} );
111             }
112 123         316  
113 123 50       237 my $shim = "Mite::Shim";
  123         907  
114 123   50     836 for my $modifier_rule (@METHOD_MODIFIERS) {
115 123 50       493 my ( $modification, $names, $coderef ) = @$modifier_rule;
116 123         359 my $handler = "HANDLE_$modification";
117 0         0 $shim->$handler( $target, "class", $names, $coderef );
118             }
119              
120 123         303 return;
121 123         321 }
122 246         619  
123 246         539 1;
124 246         890