Ensure that we're not blowing away an inherited constructor
[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
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 =
a56aa0ee 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}++;
c7a6403f 151
152 if ($self->name->can('new') != Mouse::Object->can('new')) {
153 warn "Not inlining a constructor for ".$self->name." since it is not inheriting the default Mouse::Object constructor\n";
154 }
155 else {
156 $self->add_method('new' => Mouse::Meta::Method::Constructor->generate_constructor_method_inline( $self ));
157 }
158
8632b6fe 159 if ($args{inline_destructor}) {
160 $self->add_method('DESTROY' => Mouse::Meta::Method::Destructor->generate_destructor_method_inline( $self ));
161 }
fc1d8369 162}
ad958001 163
164sub make_mutable { confess "Mouse does not currently support 'make_mutable'" }
165
fc1d8369 166sub is_immutable { $_[0]->{is_immutable} }
84ef660f 167
168sub attribute_metaclass { "Mouse::Meta::Class" }
7a59f4e8 169
4859d490 170sub _install_modifier {
171 my ( $self, $into, $type, $name, $code ) = @_;
fa9a3caa 172 if (eval "require Class::Method::Modifiers::Fast; 1") {
173 Class::Method::Modifiers::Fast::_install_modifier(
4859d490 174 $into,
175 $type,
176 $name,
177 $code
178 );
179 }
180 else {
181 require Class::Method::Modifiers;
182 Class::Method::Modifiers::_install_modifier(
183 $into,
184 $type,
185 $name,
186 $code
187 );
188 }
189}
190
50dc6ee5 191sub add_before_method_modifier {
4859d490 192 my ( $self, $name, $code ) = @_;
193 $self->_install_modifier( $self->name, 'before', $name, $code );
50dc6ee5 194}
195
196sub add_around_method_modifier {
4859d490 197 my ( $self, $name, $code ) = @_;
198 $self->_install_modifier( $self->name, 'around', $name, $code );
50dc6ee5 199}
200
201sub add_after_method_modifier {
4859d490 202 my ( $self, $name, $code ) = @_;
203 $self->_install_modifier( $self->name, 'after', $name, $code );
50dc6ee5 204}
205
47f36c05 206sub roles { $_[0]->{roles} }
207
208sub does_role {
209 my ($self, $role_name) = @_;
ad958001 210
47f36c05 211 (defined $role_name)
212 || confess "You must supply a role name to look for";
ad958001 213
47f36c05 214 for my $role (@{ $self->{roles} }) {
215 return 1 if $role->name eq $role_name;
216 }
ad958001 217
47f36c05 218 return 0;
219}
220
ae3edb8a 221sub create {
1a72f15c 222 my ($self, $package_name, %options) = @_;
ae3edb8a 223
224 (ref $options{superclasses} eq 'ARRAY')
225 || confess "You must pass an ARRAY ref of superclasses"
226 if exists $options{superclasses};
ad958001 227
ae3edb8a 228 (ref $options{attributes} eq 'ARRAY')
229 || confess "You must pass an ARRAY ref of attributes"
ad958001 230 if exists $options{attributes};
231
ae3edb8a 232 (ref $options{methods} eq 'HASH')
233 || confess "You must pass a HASH ref of methods"
ad958001 234 if exists $options{methods};
ae3edb8a 235
236 do {
ae3edb8a 237 ( defined $package_name && $package_name )
238 || confess "You must pass a package name";
239
240 my $code = "package $package_name;";
241 $code .= "\$$package_name\:\:VERSION = '" . $options{version} . "';"
242 if exists $options{version};
243 $code .= "\$$package_name\:\:AUTHORITY = '" . $options{authority} . "';"
244 if exists $options{authority};
245
246 eval $code;
247 confess "creation of $package_name failed : $@" if $@;
248 };
249
dd3c04d7 250 my %initialize_options = %options;
251 delete @initialize_options{qw(
ae3edb8a 252 package
253 superclasses
254 attributes
255 methods
256 version
257 authority
258 )};
dd3c04d7 259 my $meta = $self->initialize( $package_name => %initialize_options );
ae3edb8a 260
261 # FIXME totally lame
262 $meta->add_method('meta' => sub {
1a72f15c 263 $self->initialize(ref($_[0]) || $_[0]);
ae3edb8a 264 });
265
266 $meta->superclasses(@{$options{superclasses}})
267 if exists $options{superclasses};
268 # NOTE:
269 # process attributes first, so that they can
270 # install accessors, but locally defined methods
271 # can then overwrite them. It is maybe a little odd, but
272 # I think this should be the order of things.
273 if (exists $options{attributes}) {
274 foreach my $attr (@{$options{attributes}}) {
275 Mouse::Meta::Attribute->create($meta, $attr->{name}, %$attr);
276 }
277 }
278 if (exists $options{methods}) {
279 foreach my $method_name (keys %{$options{methods}}) {
280 $meta->add_method($method_name, $options{methods}->{$method_name});
281 }
282 }
283 return $meta;
284}
285
286{
287 my $ANON_CLASS_SERIAL = 0;
288 my $ANON_CLASS_PREFIX = 'Mouse::Meta::Class::__ANON__::SERIAL::';
289 sub create_anon_class {
290 my ( $class, %options ) = @_;
291 my $package_name = $ANON_CLASS_PREFIX . ++$ANON_CLASS_SERIAL;
292 return $class->create( $package_name, %options );
293 }
294}
295
c3398f5b 2961;
297
298__END__
299
300=head1 NAME
301
306290e8 302Mouse::Meta::Class - hook into the Mouse MOP
c3398f5b 303
304=head1 METHODS
305
306290e8 306=head2 initialize ClassName -> Mouse::Meta::Class
c3398f5b 307
306290e8 308Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only
309one instance should exist for a given class.
c3398f5b 310
306290e8 311=head2 new %args -> Mouse::Meta::Class
c3398f5b 312
306290e8 313Creates a new Mouse::Meta::Class. Don't call this directly.
c3398f5b 314
315=head2 name -> ClassName
316
317Returns the name of the owner class.
318
319=head2 superclasses -> [ClassName]
320
321Gets (or sets) the list of superclasses of the owner class.
322
306290e8 323=head2 add_attribute Mouse::Meta::Attribute
c3398f5b 324
306290e8 325Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
326class.
c3398f5b 327
72b88a88 328=head2 compute_all_applicable_attributes -> (Mouse::Meta::Attribute)
329
330Returns the list of all L<Mouse::Meta::Attribute> instances associated with
331this class and its superclasses.
332
306290e8 333=head2 get_attribute_map -> { name => Mouse::Meta::Attribute }
c3398f5b 334
335Returns a mapping of attribute names to their corresponding
306290e8 336L<Mouse::Meta::Attribute> objects.
c3398f5b 337
cbc437f2 338=head2 has_attribute Name -> Bool
66eea168 339
340Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
341
306290e8 342=head2 get_attribute Name -> Mouse::Meta::Attribute | undef
c3398f5b 343
306290e8 344Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 345
346=head2 linearized_isa -> [ClassNames]
347
348Returns the list of classes in method dispatch order, with duplicates removed.
349
f7b11a21 350=head2 clone_object Instance -> Instance
351
352Clones the given C<Instance> which must be an instance governed by this
353metaclass.
354
355=head2 clone_instance Instance, Parameters -> Instance
356
357Clones the given C<Instance> and sets any additional parameters.
358
c3398f5b 359=cut
360