File Coverage

/tmp/mwS3ywj8oN.mite.pm
Criterion Covered Total %
statement 64 83 77.1
branch 16 38 42.1
condition 7 30 23.3
subroutine 15 16 93.7
pod n/a
total 102 167 61.0


line stmt bran cond sub pod time code
1             {
2             package Thingy1;
3 1     1   31 use strict;
  1         17  
  1         134  
4 1     1   59 use warnings;
  1         27  
  1         215  
5 1     1   28 no warnings qw( once void );
  1         12  
  1         322  
6              
7             our $USES_MITE = "Mite::Class";
8             our $MITE_SHIM = "Mite::Shim";
9             our $MITE_VERSION = "0.012000";
10             # Mite keywords
11             BEGIN {
12 1     1   6 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "Thingy1" );
13 1         3 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   23 no warnings 'redefine';
  1         4  
  1         407  
16             (
17 0         0 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
18 0         0 sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
19 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
20             sub {},
21 1         22 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
22 0         0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
23 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
24 1         85 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   16 no strict 'refs';
  1         4  
  1         1146  
31 1   33 1   7 my $class = shift; $class = ref($class) || $class;
  1         17  
32 1         10 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 1 50       5 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         19  
  0         0  
36 1         4 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       3 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         29  
  0         0  
40 1         4 map { "$_\::DEMOLISH" } @$linear_isa
  1         4  
41             ],
42             HAS_BUILDARGS => $class->can('BUILDARGS'),
43             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
44             };
45             }
46              
47              
48             # Standard Moose/Moo-style constructor
49             sub new {
50 1 50   1   200 my $class = ref($_[0]) ? ref(shift) : shift;
51 1   33     21 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 1         4 my $self = bless {}, $class;
53 1 50       25 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 1         6 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute xyz (type: Enum["foo","bar","baz"])
57             # has declaration, file ../../../../tmp/mwS3ywj8oN, line 3
58 1 50 33     5 if ( exists $args->{"xyz"} ) { do { package Thingy1::__SAFE_NAMESPACE__; (defined($args->{"xyz"}) and !ref($args->{"xyz"}) and $args->{"xyz"} =~ m{\A(?:(?:ba[rz]|foo))\z}) } or Mite::Shim::croak "Type check failed in constructor: %s should be %s", "xyz", "Enum[\"foo\",\"bar\",\"baz\"]"; $self->{"xyz"} = $args->{"xyz"}; } ;
  1 50       6  
  1 50       32  
  1         14  
59              
60              
61             # Call BUILD methods
62 1 50 33     14 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  1 50       10  
63              
64             # Unrecognized parameters
65 1 50       2 my @unknown = grep not( /\Axyz\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  1         8  
  1         5  
66              
67 1         5 return $self;
68             }
69              
70             # Used by constructor to call BUILD methods
71             sub BUILDALL {
72 0     0   0 my $class = ref( $_[0] );
73 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
74 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
75             }
76              
77             # Destructor should call DEMOLISH methods
78             sub DESTROY {
79 1     1   613 my $self = shift;
80 1   33     6 my $class = ref( $self ) || $self;
81 1   33     5 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
82 1 50       5 my $in_global_destruction = defined ${^GLOBAL_PHASE}
83             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
84             : Devel::GlobalDestruction::in_global_destruction();
85 1 50       3 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  1         5  
86 0         0 my $e = do {
87 0         0 local ( $?, $@ );
88 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
89 0         0 $@;
90             };
91 1     1   86 no warnings 'misc'; # avoid (in cleanup) warnings
  1         3  
  1         601  
92 0 0       0 die $e if $e; # rethrow
93             }
94 1         13 return;
95             }
96              
97             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
98              
99              
100             # Delegated methods for xyz
101             # has declaration, file ../../../../tmp/mwS3ywj8oN, line 3
102 1     1   7 sub is_bar { $_[0]->{"xyz"} eq "bar" }
103 1     1   23 sub is_baz { $_[0]->{"xyz"} eq "baz" }
104 1     1   30 sub is_foo { $_[0]->{"xyz"} eq "foo" }
105              
106              
107             # See UNIVERSAL
108             sub DOES {
109 7     7   14 my ( $self, $role ) = @_;
110 7         14 our %DOES;
111 7 50       16 return $DOES{$role} if exists $DOES{$role};
112 7 50       35 return 1 if $role eq __PACKAGE__;
113 7 50 0     24 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
114 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
115             }
116 7         45 return $self->SUPER::DOES( $role );
117             }
118              
119             # Alias for Moose/Moo-compatibility
120             sub does {
121 7     7   1066 shift->DOES( @_ );
122             }
123              
124             1;
125             }