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