improvement the compatibility with Moose.
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
CommitLineData
c3398f5b 1#!/usr/bin/env perl
306290e8 2package Mouse::Meta::Class;
c3398f5b 3use strict;
4use warnings;
5
fc1d8369 6use Mouse::Meta::Method::Constructor;
bbf64e76 7use Mouse::Meta::Method::Destructor;
6c169c50 8use Scalar::Util qw/blessed/;
9use Mouse::Util qw/get_linear_isa/;
7a59f4e8 10use Carp 'confess';
72b88a88 11
c3398f5b 12do {
13 my %METACLASS_CACHE;
72b88a88 14
15 # because Mouse doesn't introspect existing classes, we're forced to
16 # only pay attention to other Mouse classes
17 sub _metaclass_cache {
18 my $class = shift;
19 my $name = shift;
20 return $METACLASS_CACHE{$name};
21 }
22
c3398f5b 23 sub initialize {
24 my $class = shift;
25 my $name = shift;
26 $METACLASS_CACHE{$name} = $class->new(name => $name)
27 if !exists($METACLASS_CACHE{$name});
28 return $METACLASS_CACHE{$name};
29 }
30};
31
32sub new {
33 my $class = shift;
6cbacbf6 34 my %args = @_;
c3398f5b 35
36 $args{attributes} = {};
37 $args{superclasses} = do {
38 no strict 'refs';
39 \@{ $args{name} . '::ISA' };
40 };
47f36c05 41 $args{roles} ||= [];
c3398f5b 42
43 bless \%args, $class;
44}
45
46sub name { $_[0]->{name} }
47
48sub superclasses {
49 my $self = shift;
50
51 if (@_) {
52 Mouse::load_class($_) for @_;
53 @{ $self->{superclasses} } = @_;
54 }
55
56 @{ $self->{superclasses} };
57}
58
d16fe7d7 59sub add_method {
60 my $self = shift;
61 my $name = shift;
62 my $code = shift;
63
64 my $pkg = $self->name;
65
66 no strict 'refs';
8632b6fe 67 $self->{'methods'}->{$name}++; # Moose stores meta object here.
d16fe7d7 68 *{ $pkg . '::' . $name } = $code;
69}
70
2e92bb89 71# copied from Class::Inspector
72sub get_method_list {
73 my $self = shift;
74 my $name = $self->name;
75
76 no strict 'refs';
77 # Get all the CODE symbol table entries
8632b6fe 78 my @functions =
79 grep !/(?:has|with|around|before|after|blessed|extends|confess)/,
2e92bb89 80 grep { defined &{"${name}::$_"} }
81 keys %{"${name}::"};
8632b6fe 82 push @functions, keys %{$self->{'methods'}->{$name}};
2e92bb89 83 wantarray ? @functions : \@functions;
84}
85
c3398f5b 86sub add_attribute {
87 my $self = shift;
88 my $attr = shift;
89
90 $self->{'attributes'}{$attr->name} = $attr;
91}
92
72b88a88 93sub compute_all_applicable_attributes {
94 my $self = shift;
95 my (@attr, %seen);
96
97 for my $class ($self->linearized_isa) {
98 my $meta = $self->_metaclass_cache($class)
99 or next;
100
101 for my $name (keys %{ $meta->get_attribute_map }) {
102 next if $seen{$name}++;
103 push @attr, $meta->get_attribute($name);
104 }
105 }
106
107 return @attr;
108}
109
c3398f5b 110sub get_attribute_map { $_[0]->{attributes} }
66eea168 111sub has_attribute { exists $_[0]->{attributes}->{$_[1]} }
c3398f5b 112sub get_attribute { $_[0]->{attributes}->{$_[1]} }
113
00ca1c62 114sub linearized_isa { @{ get_linear_isa($_[0]->name) } }
c3398f5b 115
7a59f4e8 116sub clone_object {
117 my $class = shift;
118 my $instance = shift;
119
120 (blessed($instance) && $instance->isa($class->name))
1a0f0802 121 || confess "You must pass an instance of the metaclass (" . $class->name . "), not ($instance)";
7a59f4e8 122
123 $class->clone_instance($instance, @_);
124}
125
126sub clone_instance {
127 my ($class, $instance, %params) = @_;
128
129 (blessed($instance))
e42bee44 130 || confess "You can only clone instances, ($instance) is not a blessed instance";
7a59f4e8 131
132 my $clone = bless { %$instance }, ref $instance;
133
134 foreach my $attr ($class->compute_all_applicable_attributes()) {
135 if ( defined( my $init_arg = $attr->init_arg ) ) {
136 if (exists $params{$init_arg}) {
137 $clone->{ $attr->name } = $params{$init_arg};
138 }
139 }
140 }
141
142 return $clone;
143
144}
145
fc1d8369 146sub make_immutable {
147 my $self = shift;
8632b6fe 148 my %args = @_;
fc1d8369 149 my $name = $self->name;
150 $self->{is_immutable}++;
8632b6fe 151 $self->add_method('new' => Mouse::Meta::Method::Constructor->generate_constructor_method_inline( $self ));
152 if ($args{inline_destructor}) {
153 $self->add_method('DESTROY' => Mouse::Meta::Method::Destructor->generate_destructor_method_inline( $self ));
154 }
fc1d8369 155}
156sub make_mutable {
157 Carp::croak "Mouse::Meta::Class->make_mutable does not supported by Mouse";
158}
159sub is_immutable { $_[0]->{is_immutable} }
84ef660f 160
161sub attribute_metaclass { "Mouse::Meta::Class" }
7a59f4e8 162
50dc6ee5 163sub add_before_method_modifier {
164 my ($self, $name, $code) = @_;
4e31595c 165 require Class::Method::Modifiers;
50dc6ee5 166 Class::Method::Modifiers::_install_modifier(
167 $self->name,
168 'before',
169 $name,
170 $code,
171 );
172}
173
174sub add_around_method_modifier {
175 my ($self, $name, $code) = @_;
4e31595c 176 require Class::Method::Modifiers;
50dc6ee5 177 Class::Method::Modifiers::_install_modifier(
178 $self->name,
179 'around',
180 $name,
181 $code,
182 );
183}
184
185sub add_after_method_modifier {
186 my ($self, $name, $code) = @_;
4e31595c 187 require Class::Method::Modifiers;
50dc6ee5 188 Class::Method::Modifiers::_install_modifier(
189 $self->name,
190 'after',
191 $name,
192 $code,
193 );
194}
195
47f36c05 196sub roles { $_[0]->{roles} }
197
198sub does_role {
199 my ($self, $role_name) = @_;
200 (defined $role_name)
201 || confess "You must supply a role name to look for";
202 for my $role (@{ $self->{roles} }) {
203 return 1 if $role->name eq $role_name;
204 }
205 return 0;
206}
207
ae3edb8a 208sub create {
209 my ( $class, @args ) = @_;
210
211 unshift @args, 'package' if @args % 2 == 1;
212
213 my (%options) = @args;
214 my $package_name = $options{package};
215
216 (ref $options{superclasses} eq 'ARRAY')
217 || confess "You must pass an ARRAY ref of superclasses"
218 if exists $options{superclasses};
219
220 (ref $options{attributes} eq 'ARRAY')
221 || confess "You must pass an ARRAY ref of attributes"
222 if exists $options{attributes};
223
224 (ref $options{methods} eq 'HASH')
225 || confess "You must pass a HASH ref of methods"
226 if exists $options{methods};
227
228 do {
229 # XXX should I implement Mouse::Meta::Module?
230 my $package_name = $options{package};
231
232 ( defined $package_name && $package_name )
233 || confess "You must pass a package name";
234
235 my $code = "package $package_name;";
236 $code .= "\$$package_name\:\:VERSION = '" . $options{version} . "';"
237 if exists $options{version};
238 $code .= "\$$package_name\:\:AUTHORITY = '" . $options{authority} . "';"
239 if exists $options{authority};
240
241 eval $code;
242 confess "creation of $package_name failed : $@" if $@;
243 };
244
245 my (%initialize_options) = @args;
246 delete @initialize_options{qw(
247 package
248 superclasses
249 attributes
250 methods
251 version
252 authority
253 )};
254 my $meta = $class->initialize( $package_name => %initialize_options );
255
256 # FIXME totally lame
257 $meta->add_method('meta' => sub {
258 $class->initialize(ref($_[0]) || $_[0]);
259 });
260
261 $meta->superclasses(@{$options{superclasses}})
262 if exists $options{superclasses};
263 # NOTE:
264 # process attributes first, so that they can
265 # install accessors, but locally defined methods
266 # can then overwrite them. It is maybe a little odd, but
267 # I think this should be the order of things.
268 if (exists $options{attributes}) {
269 foreach my $attr (@{$options{attributes}}) {
270 Mouse::Meta::Attribute->create($meta, $attr->{name}, %$attr);
271 }
272 }
273 if (exists $options{methods}) {
274 foreach my $method_name (keys %{$options{methods}}) {
275 $meta->add_method($method_name, $options{methods}->{$method_name});
276 }
277 }
278 return $meta;
279}
280
281{
282 my $ANON_CLASS_SERIAL = 0;
283 my $ANON_CLASS_PREFIX = 'Mouse::Meta::Class::__ANON__::SERIAL::';
284 sub create_anon_class {
285 my ( $class, %options ) = @_;
286 my $package_name = $ANON_CLASS_PREFIX . ++$ANON_CLASS_SERIAL;
287 return $class->create( $package_name, %options );
288 }
289}
290
c3398f5b 2911;
292
293__END__
294
295=head1 NAME
296
306290e8 297Mouse::Meta::Class - hook into the Mouse MOP
c3398f5b 298
299=head1 METHODS
300
306290e8 301=head2 initialize ClassName -> Mouse::Meta::Class
c3398f5b 302
306290e8 303Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only
304one instance should exist for a given class.
c3398f5b 305
306290e8 306=head2 new %args -> Mouse::Meta::Class
c3398f5b 307
306290e8 308Creates a new Mouse::Meta::Class. Don't call this directly.
c3398f5b 309
310=head2 name -> ClassName
311
312Returns the name of the owner class.
313
314=head2 superclasses -> [ClassName]
315
316Gets (or sets) the list of superclasses of the owner class.
317
306290e8 318=head2 add_attribute Mouse::Meta::Attribute
c3398f5b 319
306290e8 320Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
321class.
c3398f5b 322
72b88a88 323=head2 compute_all_applicable_attributes -> (Mouse::Meta::Attribute)
324
325Returns the list of all L<Mouse::Meta::Attribute> instances associated with
326this class and its superclasses.
327
306290e8 328=head2 get_attribute_map -> { name => Mouse::Meta::Attribute }
c3398f5b 329
330Returns a mapping of attribute names to their corresponding
306290e8 331L<Mouse::Meta::Attribute> objects.
c3398f5b 332
66eea168 333=head2 has_attribute Name -> Boool
334
335Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
336
306290e8 337=head2 get_attribute Name -> Mouse::Meta::Attribute | undef
c3398f5b 338
306290e8 339Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 340
341=head2 linearized_isa -> [ClassNames]
342
343Returns the list of classes in method dispatch order, with duplicates removed.
344
f7b11a21 345=head2 clone_object Instance -> Instance
346
347Clones the given C<Instance> which must be an instance governed by this
348metaclass.
349
350=head2 clone_instance Instance, Parameters -> Instance
351
352Clones the given C<Instance> and sets any additional parameters.
353
c3398f5b 354=cut
355