Refactor create() and DESTORY() in Mouse::Meta::Module
[gitmo/Mouse.git] / lib / Mouse / Meta / Module.pm
CommitLineData
3a63a2e7 1package Mouse::Meta::Module;
2use strict;
3use warnings;
4
6d28c5cf 5use Carp ();
ad022aac 6use Scalar::Util qw/blessed weaken/;
fce211ae 7
01afd8ff 8use Mouse::Util qw/:meta get_code_package not_supported load_class/;
6d28c5cf 9
8536d351 10
fe1221ad 11my %METAS;
8536d351 12
739525d0 13# because Mouse doesn't introspect existing classes, we're forced to
14# only pay attention to other Mouse classes
15sub _metaclass_cache {
16 my($class, $name) = @_;
fe1221ad 17 return $METAS{$name};
739525d0 18}
8536d351 19
739525d0 20sub initialize {
21 my($class, $package_name, @args) = @_;
8536d351 22
739525d0 23 ($package_name && !ref($package_name))
24 || $class->throw_error("You must pass a package name and it cannot be blessed");
8536d351 25
fe1221ad 26 return $METAS{$package_name}
739525d0 27 ||= $class->_construct_meta(package => $package_name, @args);
28}
8536d351 29
739525d0 30sub class_of{
31 my($class_or_instance) = @_;
32 return undef unless defined $class_or_instance;
23274b88 33 return $METAS{ ref($class_or_instance) || $class_or_instance };
8536d351 34}
35
739525d0 36# Means of accessing all the metaclasses that have
37# been initialized thus far
fe1221ad 38#sub get_all_metaclasses { %METAS }
39sub get_all_metaclass_instances { values %METAS }
40sub get_all_metaclass_names { keys %METAS }
41sub get_metaclass_by_name { $METAS{$_[0]} }
42#sub store_metaclass_by_name { $METAS{$_[0]} = $_[1] }
43#sub weaken_metaclass { weaken($METAS{$_[0]}) }
44#sub does_metaclass_exist { defined $METAS{$_[0]} }
45#sub remove_metaclass_by_name { delete $METAS{$_[0]} }
739525d0 46
47
48
3a63a2e7 49sub name { $_[0]->{package} }
3a63a2e7 50
739525d0 51# The followings are Class::MOP specific methods
52
53#sub version { no strict 'refs'; ${shift->name.'::VERSION'} }
54#sub authority { no strict 'refs'; ${shift->name.'::AUTHORITY'} }
55#sub identifier {
56# my $self = shift;
57# return join '-' => (
58# $self->name,
59# ($self->version || ()),
60# ($self->authority || ()),
61# );
62#}
23264b5b 63
8536d351 64# add_attribute is an abstract method
65
3a683350 66sub get_attribute_map {
67 Carp::cluck('get_attribute_map() has been deprecated');
68 return $_[0]->{attributes};
69}
70
8536d351 71sub has_attribute { exists $_[0]->{attributes}->{$_[1]} }
72sub get_attribute { $_[0]->{attributes}->{$_[1]} }
73sub get_attribute_list{ keys %{$_[0]->{attributes}} }
6cfa1e5e 74sub remove_attribute { delete $_[0]->{attributes}->{$_[1]} }
23264b5b 75
3a63a2e7 76sub namespace{
77 my $name = $_[0]->{package};
78 no strict 'refs';
79 return \%{ $name . '::' };
80}
81
82sub add_method {
83 my($self, $name, $code) = @_;
84
85 if(!defined $name){
1b9e472d 86 $self->throw_error('You must pass a defined name');
3a63a2e7 87 }
1b9e472d 88 if(!defined $code){
89 $self->throw_error('You must pass a defined code');
90 }
91
3a63a2e7 92 if(ref($code) ne 'CODE'){
fce211ae 93 not_supported 'add_method for a method object';
3a63a2e7 94 }
95
8e64d0fa 96 $self->{methods}->{$name}++; # Moose stores meta object here.
3a63a2e7 97
98 my $pkg = $self->name;
99 no strict 'refs';
100 no warnings 'redefine';
101 *{ $pkg . '::' . $name } = $code;
102}
103
01afd8ff 104# XXX: for backward compatibility
105my %foreign = map{ $_ => undef } qw(
106 Mouse Mouse::Role Mouse::Util Mouse::Util::TypeConstraints
107 Carp Scalar::Util
108);
109sub _code_is_mine{
110 my($self, $code) = @_;
8e64d0fa 111
01afd8ff 112 my $package = get_code_package($code);
8e64d0fa 113
01afd8ff 114 return !exists $foreign{$package};
3a63a2e7 115}
116
117sub has_method {
118 my($self, $method_name) = @_;
119
8e64d0fa 120 return 1 if $self->{methods}->{$method_name};
5fd0bdcf 121
01afd8ff 122 my $code = do{ no strict 'refs'; *{$self->{package} . '::' . $method_name}{CODE} };
3a63a2e7 123
124 return $code && $self->_code_is_mine($code);
125}
126
8536d351 127sub get_method{
6cfa1e5e 128 my($self, $method_name) = @_;
129
130 if($self->has_method($method_name)){
131 my $method_metaclass = $self->method_metaclass;
132 load_class($method_metaclass);
133
134 my $package = $self->name;
135 return $method_metaclass->new(
136 body => $package->can($method_name),
137 name => $method_name,
138 package => $package,
139 );
140 }
141
142 return undef;
8536d351 143}
3a63a2e7 144
8e64d0fa 145sub get_method_list {
3a63a2e7 146 my($self) = @_;
8e64d0fa 147
148 return grep { $self->has_method($_) } keys %{ $self->namespace };
3a63a2e7 149}
150
7a50b450 151{
152 my $ANON_SERIAL = 0;
7a50b450 153
154 my %IMMORTALS;
155
156 sub create {
8f40866c 157 my($class, $package_name, %options) = @_;
7a50b450 158
8f40866c 159 $class->throw_error('You must pass a package name') if @_ < 2;
7a50b450 160
8f40866c 161 my $superclasses;
7a50b450 162 if(exists $options{superclasses}){
8f40866c 163 if($class->isa('Mouse::Meta::Role')){
7a50b450 164 delete $options{superclasses};
165 }
8f40866c 166 else{
167 $superclasses = delete $options{superclasses};
168 (ref $superclasses eq 'ARRAY')
169 || $class->throw_error("You must pass an ARRAY ref of superclasses");
170 }
7a50b450 171 }
172
8f40866c 173 my $attributes = delete $options{attributes};
174 if(defined $attributes){
175 (ref $attributes eq 'ARRAY' || ref $attributes eq 'HASH')
176 || $class->throw_error("You must pass an ARRAY ref of attributes");
177 }
178 my $methods = delete $options{methods};
179 if(defined $methods){
180 (ref $methods eq 'HASH')
181 || $class->throw_error("You must pass a HASH ref of methods");
182 }
183 my $roles = delete $options{roles};
184 if(defined $roles){
185 (ref $roles eq 'ARRAY')
186 || $class->throw_error("You must pass an ARRAY ref of roles");
187 }
7a50b450 188 my $mortal;
189 my $cache_key;
190
191 if(!defined $package_name){ # anonymous
192 $mortal = !$options{cache};
193
194 # anonymous but immortal
195 if(!$mortal){
8e64d0fa 196 # something like Super::Class|Super::Class::2=Role|Role::1
197 $cache_key = join '=' => (
8f40866c 198 join('|', @{$superclasses || []}),
199 join('|', sort @{$roles || []}),
7a50b450 200 );
201 return $IMMORTALS{$cache_key} if exists $IMMORTALS{$cache_key};
202 }
8f40866c 203 $options{anon_serial_id} = ++$ANON_SERIAL;
204 $package_name = $class . '::__ANON__::' . $ANON_SERIAL;
7a50b450 205 }
206
207 # instantiate a module
208 {
209 no strict 'refs';
210 ${ $package_name . '::VERSION' } = delete $options{version} if exists $options{version};
211 ${ $package_name . '::AUTHORITY' } = delete $options{authority} if exists $options{authority};
212 }
213
8f40866c 214 my $meta = $class->initialize( $package_name, %options);
7a50b450 215
fe1221ad 216 weaken $METAS{$package_name}
7a50b450 217 if $mortal;
218
219 # FIXME totally lame
220 $meta->add_method('meta' => sub {
221 $class->initialize(ref($_[0]) || $_[0]);
222 });
223
8f40866c 224 $meta->superclasses(@{$superclasses})
225 if defined $superclasses;
7a50b450 226
227 # NOTE:
228 # process attributes first, so that they can
229 # install accessors, but locally defined methods
230 # can then overwrite them. It is maybe a little odd, but
231 # I think this should be the order of things.
232 if (defined $attributes) {
233 if(ref($attributes) eq 'ARRAY'){
8f40866c 234 # array of Mouse::Meta::Attribute
7a50b450 235 foreach my $attr (@{$attributes}) {
8f40866c 236 $meta->add_attribute($attr);
7a50b450 237 }
238 }
239 else{
8f40866c 240 # hash map of name and attribute spec pairs
7a50b450 241 while(my($name, $attr) = each %{$attributes}){
242 $meta->add_attribute($name => $attr);
243 }
244 }
245 }
8f40866c 246 if (defined $methods) {
247 while(my($method_name, $method_body) = each %{$methods}){
248 $meta->add_method($method_name, $method_body);
7a50b450 249 }
250 }
8f40866c 251 if (defined $roles){
252 Mouse::Util::apply_all_roles($package_name, @{$roles});
7a50b450 253 }
254
8f40866c 255 if($cache_key){
7a50b450 256 $IMMORTALS{$cache_key} = $meta;
257 }
258
259 return $meta;
260 }
261
262 sub DESTROY{
263 my($self) = @_;
264
265 my $serial_id = $self->{anon_serial_id};
266
267 return if !$serial_id;
268
8f40866c 269 @{$self->{superclasses}} = (); # clear @ISA
270 %{$self->namespace} = (); # clear the stash
7a50b450 271
8f40866c 272 my $name = $self->name;
273 delete $METAS{$name};
274
275 $name =~ s/::\d+$//;
7a50b450 276
277 no strict 'refs';
8f40866c 278
279 delete ${$name}{ $serial_id . '::' };
7a50b450 280
281 return;
282 }
283}
284
8536d351 285sub throw_error{
286 my($class, $message, %args) = @_;
287
fce211ae 288 local $Carp::CarpLevel = $Carp::CarpLevel + 1 + ($args{depth} || 0);
8e64d0fa 289 local $Carp::MaxArgNums = 20; # default is 8, usually we use named args which gets messier though
3a63a2e7 290
8536d351 291 if(exists $args{longmess} && !$args{longmess}){ # intentionaly longmess => 0
292 Carp::croak($message);
293 }
294 else{
295 Carp::confess($message);
296 }
297}
3a63a2e7 298
2991;
300
301__END__
302
303=head1 NAME
304
1820fffe 305Mouse::Meta::Module - The base class for Mouse::Meta::Class and Mouse::Meta::Role
3a63a2e7 306
b995be6a 307=head1 SEE ALSO
308
31c5194b 309L<Class::MOP::Class>
310
311L<Class::MOP::Module>
312
313L<Class::MOP::Package>
b995be6a 314
3a63a2e7 315=cut
2cea7a5f 316