File Coverage

blib/lib/Mite/Trait/HasMOP.pm.mite.pm
Criterion Covered Total %
statement 54 85 63.5
branch 5 18 27.7
condition 1 5 20.0
subroutine 10 21 47.6
pod 0 2 0.0
total 70 131 53.4


line stmt bran cond sub pod time code
1             {
2              
3             use strict;
4 108     108   708 use warnings;
  108         236  
  108         3114  
5 108     108   589 no warnings qw( once void );
  108         217  
  108         3181  
6 108     108   530  
  108         226  
  108         11564  
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   550 ( "Mite::Shim", "Mite::Trait::HasMOP" );
15             (
16             *after, *around, *before,
17             *field, *has, *param,
18             *requires, *signature_for, *with
19             )
20             = do {
21 108         257  
22             no warnings 'redefine';
23             (
24 108     108   754 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
  108         246  
  108         22554  
25             sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) },
26 0     0   0 sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) },
27 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
28 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
29 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
30 0     0   0 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         16524  
36             # Mite imports
37             BEGIN {
38             require Scalar::Util;
39             *STRICT = \&Mite::Shim::STRICT;
40             *bare = \&Mite::Shim::bare;
41 108     108   698 *blessed = \&Scalar::Util::blessed;
42 108         363 *carp = \&Mite::Shim::carp;
43 108         235 *confess = \&Mite::Shim::confess;
44 108         250 *croak = \&Mite::Shim::croak;
45 108         210 *false = \&Mite::Shim::false;
46 108         209 *guard = \&Mite::Shim::guard;
47 108         287 *lazy = \&Mite::Shim::lazy;
48 108         221 *ro = \&Mite::Shim::ro;
49 108         247 *rw = \&Mite::Shim::rw;
50 108         229 *rwp = \&Mite::Shim::rwp;
51 108         210 *true = \&Mite::Shim::true;
52 108         213 }
53 108         226  
54 108         3507 # 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   675 return {
  108         219  
  108         34630  
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   407 $CONSUMERS{$target} = 1;
94 123         214  
95             my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
96             return if $type ne 'Mite::Class';
97 123 50       441  
98 0         0 my @missing_methods;
99             @missing_methods = grep( !$target->can($_),
100 123         300 "_mop_attribute_metaclass", "_mop_metaclass" )
101             and croak( "$me requires $target to implement methods: " . join q[, ],
102 108     108   766 @missing_methods );
  108         240  
  108         26485  
  123         231  
  123         187  
  123         500  
103 123 50       434  
104             my @roles = ();
105 123         229 my %nextargs = %{ $args || {} };
106 123 50       989 ( $nextargs{-indirect} ||= 0 )++;
107             croak("PANIC!") if $nextargs{-indirect} > 100;
108             for my $role (@roles) {
109             $role->__FINALIZE_APPLICATION__( $target, {%nextargs} );
110             }
111 123         290  
112 123 50       224 my $shim = "Mite::Shim";
  123         822  
113 123   50     775 for my $modifier_rule (@METHOD_MODIFIERS) {
114 123 50       493 my ( $modification, $names, $coderef ) = @$modifier_rule;
115 123         303 my $handler = "HANDLE_$modification";
116 0         0 $shim->$handler( $target, "class", $names, $coderef );
117             }
118              
119 123         328 return;
120 123         311 }
121 0         0  
122 0         0 1;
123 0         0