File Coverage

blib/lib/Mite/Trait/HasSuperclasses.pm.mite.pm
Criterion Covered Total %
statement 62 89 69.6
branch 5 22 22.7
condition 1 14 7.1
subroutine 12 21 57.1
pod 0 2 0.0
total 80 148 54.0


line stmt bran cond sub pod time code
1             {
2              
3             package Mite::Trait::HasSuperclasses;
4 109     109   974 use strict;
  109         369  
  109         17540  
5 109     109   694 use warnings;
  109         303  
  109         3823  
6 109     109   594 no warnings qw( once void );
  109         287  
  109         14503  
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   13473 my ( $SHIM, $CALLER ) =
15             ( "Mite::Shim", "Mite::Trait::HasSuperclasses" );
16             (
17             *after, *around, *before,
18             *field, *has, *param,
19             *requires, *signature_for, *with
20             )
21 109         382 = do {
22              
23             package Mite::Shim;
24 109     109   793 no warnings 'redefine';
  109         321  
  109         28340  
25             (
26 0     0   0 sub { $SHIM->HANDLE_after( $CALLER, "role", @_ ) },
27 327     327   1402 sub { $SHIM->HANDLE_around( $CALLER, "role", @_ ) },
28 109     109   950 sub { $SHIM->HANDLE_before( $CALLER, "role", @_ ) },
29 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
30 327     327   574981 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
31 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
32       0     sub { },
33 0     0   0 sub { $SHIM->HANDLE_signature_for( $CALLER, "role", @_ ) },
34 0     0   0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
35 109         22192 );
36             };
37             }
38              
39             # Mite imports
40             BEGIN {
41 109     109   884 require Scalar::Util;
42 109         476 *STRICT = \&Mite::Shim::STRICT;
43 109         383 *bare = \&Mite::Shim::bare;
44 109         320 *blessed = \&Scalar::Util::blessed;
45 109         303 *carp = \&Mite::Shim::carp;
46 109         302 *confess = \&Mite::Shim::confess;
47 109         570 *croak = \&Mite::Shim::croak;
48 109         284 *false = \&Mite::Shim::false;
49 109         284 *guard = \&Mite::Shim::guard;
50 109         355 *lazy = \&Mite::Shim::lazy;
51 109         330 *lock = \&Mite::Shim::lock;
52 109         270 *ro = \&Mite::Shim::ro;
53 109         470 *rw = \&Mite::Shim::rw;
54 109         287 *rwp = \&Mite::Shim::rwp;
55 109         271 *true = \&Mite::Shim::true;
56 109         4320 *unlock = \&Mite::Shim::unlock;
57             }
58              
59             # Gather metadata for constructor and destructor
60             sub __META__ {
61 109     109   838 no strict 'refs';
  109         296  
  109         49171  
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   452 my ( $me, $target, $args ) = @_;
101 109         258 our ( %CONSUMERS, @METHOD_MODIFIERS );
102              
103             # Ensure a given target only consumes this role once.
104 109 50       629 if ( exists $CONSUMERS{$target} ) {
105 0         0 return;
106             }
107 109         453 $CONSUMERS{$target} = 1;
108              
109 109     109   932 my $type = do { no strict 'refs'; ${"$target\::USES_MITE"} };
  109         355  
  109         32785  
  109         290  
  109         244  
  109         723  
110 109 50       615 return if $type ne 'Mite::Class';
111              
112 109         306 my @missing_methods;
113 109 50       3812 @missing_methods = grep( !$target->can($_),
114             "_compile_meta_method", "_compile_mop_postamble",
115             "compilation_stages", "inject_mite_functions" )
116             and croak( "$me requires $target to implement methods: " . join q[, ],
117             @missing_methods );
118              
119 109         424 my @roles = ();
120 109 50       299 my %nextargs = %{ $args || {} };
  109         1019  
121 109   50     1002 ( $nextargs{-indirect} ||= 0 )++;
122 109 50       601 croak("PANIC!") if $nextargs{-indirect} > 100;
123 109         436 for my $role (@roles) {
124 0         0 $role->__FINALIZE_APPLICATION__( $target, {%nextargs} );
125             }
126              
127 109         342 my $shim = "Mite::Shim";
128 109         467 for my $modifier_rule (@METHOD_MODIFIERS) {
129 436         1784 my ( $modification, $names, $coderef ) = @$modifier_rule;
130 436         1236 my $handler = "HANDLE_$modification";
131 436         1986 $shim->$handler( $target, "class", $names, $coderef );
132             }
133              
134 109         714 return;
135             }
136              
137             1;
138             }