07b45206d5d56ef87dc5e356ebae19c7c75100b3
[gitmo/Mouse.git] / lib / Mouse / PurePerl.pm
1 package
2     Mouse::Util;
3
4 use strict;
5 use warnings;
6
7 use warnings FATAL => 'redefine'; # to avoid to load Mouse::PurePerl
8
9 use B ();
10
11 sub is_class_loaded {
12     my $class = shift;
13
14     return 0 if ref($class) || !defined($class) || !length($class);
15
16     # walk the symbol table tree to avoid autovififying
17     # \*{${main::}{"Foo::"}} == \*main::Foo::
18
19     my $pack = \%::;
20     foreach my $part (split('::', $class)) {
21         my $entry = \$pack->{$part . '::'};
22         return 0 if ref($entry) ne 'GLOB';
23         $pack = *{$entry}{HASH} or return 0;
24     }
25
26     # check for $VERSION or @ISA
27     return 1 if exists $pack->{VERSION}
28              && defined *{$pack->{VERSION}}{SCALAR} && defined ${ $pack->{VERSION} };
29     return 1 if exists $pack->{ISA}
30              && defined *{$pack->{ISA}}{ARRAY} && @{ $pack->{ISA} } != 0;
31
32     # check for any method
33     foreach my $name( keys %{$pack} ) {
34         my $entry = \$pack->{$name};
35         return 1 if ref($entry) ne 'GLOB' || defined *{$entry}{CODE};
36     }
37
38     # fail
39     return 0;
40 }
41
42
43 # taken from Sub::Identify
44 sub get_code_info {
45     my ($coderef) = @_;
46     ref($coderef) or return;
47
48     my $cv = B::svref_2object($coderef);
49     $cv->isa('B::CV') or return;
50
51     my $gv = $cv->GV;
52     $gv->isa('B::GV') or return;
53
54     return ($gv->STASH->NAME, $gv->NAME);
55 }
56
57 sub get_code_package{
58     my($coderef) = @_;
59
60     my $cv = B::svref_2object($coderef);
61     $cv->isa('B::CV') or return '';
62
63     my $gv = $cv->GV;
64     $gv->isa('B::GV') or return '';
65
66     return $gv->STASH->NAME;
67 }
68
69 package
70     Mouse::Meta::Module;
71
72 sub name { $_[0]->{package} }
73
74 sub namespace{
75     my $name = $_[0]->{package};
76     no strict 'refs';
77     return \%{ $name . '::' };
78 }
79
80 package
81     Mouse::Meta::Class;
82
83 sub is_anon_class{
84     return exists $_[0]->{anon_serial_id};
85 }
86
87 sub roles { $_[0]->{roles} }
88
89 sub linearized_isa { @{ get_linear_isa($_[0]->{package}) } }
90
91 package
92     Mouse::Meta::Role;
93
94 sub is_anon_role{
95     return exists $_[0]->{anon_serial_id};
96 }
97
98 sub get_roles { $_[0]->{roles} }
99
100 package
101     Mouse::Meta::Attribute;
102
103
104 # readers
105
106 sub name                 { $_[0]->{name}                   }
107 sub associated_class     { $_[0]->{associated_class}       }
108
109 sub accessor             { $_[0]->{accessor}               }
110 sub reader               { $_[0]->{reader}                 }
111 sub writer               { $_[0]->{writer}                 }
112 sub predicate            { $_[0]->{predicate}              }
113 sub clearer              { $_[0]->{clearer}                }
114 sub handles              { $_[0]->{handles}                }
115
116 sub _is_metadata         { $_[0]->{is}                     }
117 sub is_required          { $_[0]->{required}               }
118 sub default              { $_[0]->{default}                }
119 sub is_lazy              { $_[0]->{lazy}                   }
120 sub is_lazy_build        { $_[0]->{lazy_build}             }
121 sub is_weak_ref          { $_[0]->{weak_ref}               }
122 sub init_arg             { $_[0]->{init_arg}               }
123 sub type_constraint      { $_[0]->{type_constraint}        }
124
125 sub trigger              { $_[0]->{trigger}                }
126 sub builder              { $_[0]->{builder}                }
127 sub should_auto_deref    { $_[0]->{auto_deref}             }
128 sub should_coerce        { $_[0]->{coerce}                 }
129
130 # predicates
131
132 sub has_accessor         { exists $_[0]->{accessor}        }
133 sub has_reader           { exists $_[0]->{reader}          }
134 sub has_writer           { exists $_[0]->{writer}          }
135 sub has_predicate        { exists $_[0]->{predicate}       }
136 sub has_clearer          { exists $_[0]->{clearer}         }
137 sub has_handles          { exists $_[0]->{handles}         }
138
139 sub has_default          { exists $_[0]->{default}         }
140 sub has_type_constraint  { exists $_[0]->{type_constraint} }
141 sub has_trigger          { exists $_[0]->{trigger}         }
142 sub has_builder          { exists $_[0]->{builder}         }
143
144 package
145     Mouse::Meta::TypeConstraint;
146
147 sub name    { $_[0]->{name}    }
148 sub parent  { $_[0]->{parent}  }
149 sub message { $_[0]->{message} }
150
151 sub _compiled_type_constraint{ $_[0]->{compiled_type_constraint} }
152
153 sub has_coercion{ exists $_[0]->{_compiled_type_coercion} }
154
155 package
156     Mouse::Meta::Method::Accessor;
157
158 1;
159 __END__