whole bunch of stuff
[gitmo/Class-MOP.git] / lib / Class / MOP.pm
CommitLineData
94b19069 1
2package Class::MOP;
3
4use strict;
5use warnings;
6
8b978dd5 7use Scalar::Util 'blessed';
727919c5 8use Carp 'confess';
8b978dd5 9
2eb717d5 10use Class::MOP::Class;
11use Class::MOP::Attribute;
12use Class::MOP::Method;
13
99e5b7e8 14our $VERSION = '0.06';
94b19069 15
2eb717d5 16sub import {
17 shift;
18 return unless @_;
19 if ($_[0] eq ':universal') {
20 *UNIVERSAL::meta = sub {
21 Class::MOP::Class->initialize(blessed($_[0]) || $_[0])
22 };
23 }
1a7ebbb3 24 else {
25 my $pkg = caller();
26 no strict 'refs';
27 *{$pkg . '::' . $_[0]} = sub {
28 Class::MOP::Class->initialize(blessed($_[0]) || $_[0])
29 };
30 }
2eb717d5 31}
8b978dd5 32
b51af7f9 33## ----------------------------------------------------------------------------
34## Bootstrapping
35## ----------------------------------------------------------------------------
36## The code below here is to bootstrap our MOP with itself. This is also
37## sometimes called "tying the knot". By doing this, we make it much easier
38## to extend the MOP through subclassing and such since now you can use the
39## MOP itself to extend itself.
40##
41## Yes, I know, thats weird and insane, but it's a good thing, trust me :)
42## ----------------------------------------------------------------------------
727919c5 43
44# We need to add in the meta-attributes here so that
45# any subclass of Class::MOP::* will be able to
46# inherit them using &construct_instance
47
48## Class::MOP::Class
49
50Class::MOP::Class->meta->add_attribute(
351bd7d4 51 Class::MOP::Attribute->new('$:package' => (
7b31baf4 52 reader => 'name',
53 init_arg => ':package',
727919c5 54 ))
55);
56
57Class::MOP::Class->meta->add_attribute(
351bd7d4 58 Class::MOP::Attribute->new('%:attributes' => (
7b31baf4 59 reader => 'get_attribute_map',
351bd7d4 60 init_arg => ':attributes',
727919c5 61 default => sub { {} }
62 ))
63);
64
351bd7d4 65Class::MOP::Class->meta->add_attribute(
66 Class::MOP::Attribute->new('$:attribute_metaclass' => (
7b31baf4 67 reader => 'attribute_metaclass',
351bd7d4 68 init_arg => ':attribute_metaclass',
69 default => 'Class::MOP::Attribute',
70 ))
71);
72
73Class::MOP::Class->meta->add_attribute(
74 Class::MOP::Attribute->new('$:method_metaclass' => (
7b31baf4 75 reader => 'method_metaclass',
351bd7d4 76 init_arg => ':method_metaclass',
77 default => 'Class::MOP::Method',
78 ))
79);
80
727919c5 81## Class::MOP::Attribute
82
7b31baf4 83Class::MOP::Attribute->meta->add_attribute(
84 Class::MOP::Attribute->new('name' => (
85 reader => 'name'
86 ))
87);
88
89Class::MOP::Attribute->meta->add_attribute(
90 Class::MOP::Attribute->new('associated_class' => (
91 reader => 'associated_class'
92 ))
93);
94
95Class::MOP::Attribute->meta->add_attribute(
96 Class::MOP::Attribute->new('accessor' => (
97 reader => 'accessor',
98 predicate => 'has_accessor',
99 ))
100);
101
102Class::MOP::Attribute->meta->add_attribute(
103 Class::MOP::Attribute->new('reader' => (
104 reader => 'reader',
105 predicate => 'has_reader',
106 ))
107);
108
109Class::MOP::Attribute->meta->add_attribute(
110 Class::MOP::Attribute->new('writer' => (
111 reader => 'writer',
112 predicate => 'has_writer',
113 ))
114);
115
116Class::MOP::Attribute->meta->add_attribute(
117 Class::MOP::Attribute->new('predicate' => (
118 reader => 'predicate',
119 predicate => 'has_predicate',
120 ))
121);
122
123Class::MOP::Attribute->meta->add_attribute(
124 Class::MOP::Attribute->new('init_arg' => (
125 reader => 'init_arg',
126 predicate => 'has_init_arg',
127 ))
128);
129
130Class::MOP::Attribute->meta->add_attribute(
131 Class::MOP::Attribute->new('default' => (
132 # default has a custom 'reader' method ...
133 predicate => 'has_default',
134 ))
135);
136
727919c5 137
138# NOTE: (meta-circularity)
139# This should be one of the last things done
140# it will "tie the knot" with Class::MOP::Attribute
141# so that it uses the attributes meta-objects
142# to construct itself.
143Class::MOP::Attribute->meta->add_method('new' => sub {
144 my $class = shift;
145 my $name = shift;
146 my %options = @_;
147
148 (defined $name && $name)
149 || confess "You must provide a name for the attribute";
5659d76e 150 $options{init_arg} = $name
151 if not exists $options{init_arg};
651955fb 152
5659d76e 153 # return the new object
154 $class->meta->new_object(name => $name, %options);
155});
156
157Class::MOP::Attribute->meta->add_method('clone' => sub {
158 my $self = shift;
159 $self->meta->clone_object($self, @_);
727919c5 160});
161
94b19069 1621;
163
164__END__
165
166=pod
167
168=head1 NAME
169
170Class::MOP - A Meta Object Protocol for Perl 5
171
172=head1 SYNOPSIS
173
a2e85e6c 174 # ... This will come later, for now see
175 # the other SYNOPSIS for more information
94b19069 176
177=head1 DESCRIPTON
178
179This module is an attempt to create a meta object protocol for the
180Perl 5 object system. It makes no attempt to change the behavior or
181characteristics of the Perl 5 object system, only to create a
27e31eaf 182protocol for its manipulation and introspection.
94b19069 183
184That said, it does attempt to create the tools for building a rich
185set of extensions to the Perl 5 object system. Every attempt has been
186made for these tools to keep to the spirit of the Perl 5 object
187system that we all know and love.
188
bfe4d0fc 189=head2 What is a Meta Object Protocol?
190
191A meta object protocol is an API to an object system.
192
193To be more specific, it is a set of abstractions of the components of
194an object system (typically things like; classes, object, methods,
195object attributes, etc.). These abstractions can then be used to both
196inspect and manipulate the object system which they describe.
197
198It can be said that there are two MOPs for any object system; the
199implicit MOP, and the explicit MOP. The implicit MOP handles things
200like method dispatch or inheritance, which happen automatically as
201part of how the object system works. The explicit MOP typically
202handles the introspection/reflection features of the object system.
203All object systems have implicit MOPs, without one, they would not
204work. Explict MOPs however as less common, and depending on the
205language can vary from restrictive (Reflection in Java or C#) to
206wide open (CLOS is a perfect example).
207
e16da3e6 208=head2 Yet Another Class Builder!! Why?
209
210This is B<not> a class builder so much as it is a I<class builder
211B<builder>>. My intent is that an end user does not use this module
212directly, but instead this module is used by module authors to
213build extensions and features onto the Perl 5 object system.
214
94b19069 215=head2 Who is this module for?
216
217This module is specifically for anyone who has ever created or
218wanted to create a module for the Class:: namespace. The tools which
219this module will provide will hopefully make it easier to do more
220complex things with Perl 5 classes by removing such barriers as
221the need to hack the symbol tables, or understand the fine details
222of method dispatch.
223
bfe4d0fc 224=head2 What changes do I have to make to use this module?
225
2eb717d5 226This module was designed to be as unintrusive as possible. Many of
343203ee 227its features are accessible without B<any> change to your existsing
bfe4d0fc 228code at all. It is meant to be a compliment to your existing code and
2eb717d5 229not an intrusion on your code base. Unlike many other B<Class::>
a2e85e6c 230modules, this module B<does not> require you subclass it, or even that
231you C<use> it in within your module's package.
bfe4d0fc 232
2eb717d5 233The only features which requires additions to your code are the
234attribute handling and instance construction features, and these are
a2e85e6c 235both completely optional features. The only reason for this is because
2eb717d5 236Perl 5's object system does not actually have these features built
237in. More information about this feature can be found below.
bfe4d0fc 238
239=head2 A Note about Performance?
240
241It is a common misconception that explict MOPs are performance drains.
242But this is not a universal truth at all, it is an side-effect of
243specific implementations. For instance, using Java reflection is much
244slower because the JVM cannot take advantage of any compiler
245optimizations, and the JVM has to deal with much more runtime type
246information as well. Reflection in C# is marginally better as it was
247designed into the language and runtime (the CLR). In contrast, CLOS
248(the Common Lisp Object System) was built to support an explicit MOP,
249and so performance is tuned for it.
250
251This library in particular does it's absolute best to avoid putting
2eb717d5 252B<any> drain at all upon your code's performance. In fact, by itself
253it does nothing to affect your existing code. So you only pay for
254what you actually use.
bfe4d0fc 255
94b19069 256=head1 PROTOCOLS
257
258The protocol is divided into 3 main sub-protocols:
259
260=over 4
261
262=item The Class protocol
263
264This provides a means of manipulating and introspecting a Perl 5
265class. It handles all of symbol table hacking for you, and provides
266a rich set of methods that go beyond simple package introspection.
267
552e3d24 268See L<Class::MOP::Class> for more details.
269
94b19069 270=item The Attribute protocol
271
272This provides a consistent represenation for an attribute of a
273Perl 5 class. Since there are so many ways to create and handle
274atttributes in Perl 5 OO, this attempts to provide as much of a
275unified approach as possible, while giving the freedom and
276flexibility to subclass for specialization.
277
552e3d24 278See L<Class::MOP::Attribute> for more details.
279
94b19069 280=item The Method protocol
281
282This provides a means of manipulating and introspecting methods in
283the Perl 5 object system. As with attributes, there are many ways to
284approach this topic, so we try to keep it pretty basic, while still
285making it possible to extend the system in many ways.
286
552e3d24 287See L<Class::MOP::Method> for more details.
94b19069 288
289=back
290
552e3d24 291=head1 SEE ALSO
8b978dd5 292
552e3d24 293=head2 Books
8b978dd5 294
a2e85e6c 295There are very few books out on Meta Object Protocols and Metaclasses
296because it is such an esoteric topic. The following books are really
297the only ones I have found. If you know of any more, B<I<please>>
298email me and let me know, I would love to hear about them.
299
8b978dd5 300=over 4
301
552e3d24 302=item "The Art of the Meta Object Protocol"
8b978dd5 303
552e3d24 304=item "Advances in Object-Oriented Metalevel Architecture and Reflection"
8b978dd5 305
b51af7f9 306=item "Putting MetaClasses to Work"
307
a2e85e6c 308=item "Smalltalk: The Language"
309
94b19069 310=back
311
552e3d24 312=head2 Prior Art
8b978dd5 313
314=over 4
315
7184ca14 316=item The Perl 6 MetaModel work in the Pugs project
8b978dd5 317
318=over 4
319
552e3d24 320=item L<http://svn.openfoundry.org/pugs/perl5/Perl6-MetaModel>
8b978dd5 321
552e3d24 322=item L<http://svn.openfoundry.org/pugs/perl5/Perl6-ObjectSpace>
8b978dd5 323
324=back
325
94b19069 326=back
327
a2e85e6c 328=head1 SIMILAR MODULES
329
330As I have said above, this module is a class-builder-builder, so it is
331not the same thing as modules like L<Class::Accessor> and
332L<Class::MethodMaker>. That being said there are very few modules on CPAN
333with similar goals to this module. The one I have found which is most
334like this module is L<Class::Meta>, although it's philosophy is very
335different from this module.
336
337To start with, it provides wrappers around common Perl data types, and even
338extends those types with more specific subtypes. This module does not
339go into that area at all.
340
341L<Class::Meta> also seems to create it's own custom meta-object protocol,
342which is both more restrictive and more featureful than the vanilla
343Perl 5 one. This module attempts to model the existing Perl 5 MOP as it is.
344
345It's introspection capabilities also seem to be heavily rooted in this
346custom MOP, so that you can only introspect classes which are already
347created with L<Class::Meta>. This module does not make such restictions.
348
349Now, all this said, L<Class::Meta> is much more featureful than B<Class::MOP>
350would ever try to be. But B<Class::MOP> has some features which L<Class::Meta>
351could not easily implement. It would be very possible to completely re-implement
352L<Class::Meta> using B<Class::MOP> and bring some of these features to
353L<Class::Meta> though.
354
355But in the end, this module's admitedly ambitious goals have no direct equal
356on CPAN since surely no one has been crazy enough to try something as silly
357as this ;) until now.
94b19069 358
a2e85e6c 359=head1 BUGS
360
361All complex software has bugs lurking in it, and this module is no
362exception. If you find a bug please either email me, or add the bug
363to cpan-RT.
364
365=head1 ACKNOWLEDGEMENTS
366
367=over 4
368
369=item Rob Kinyon E<lt>rob@iinteractive.comE<gt>
370
371Thanks to Rob for actually getting the development of this module kick-started.
372
373=back
374
375=head1 AUTHOR
94b19069 376
a2e85e6c 377Stevan Little E<lt>stevan@iinteractive.comE<gt>
552e3d24 378
94b19069 379=head1 COPYRIGHT AND LICENSE
380
381Copyright 2006 by Infinity Interactive, Inc.
382
383L<http://www.iinteractive.com>
384
385This library is free software; you can redistribute it and/or modify
386it under the same terms as Perl itself.
387
388=cut