method modifiers,.. I think the API needs work
[gitmo/Class-MOP.git] / lib / Class / MOP / Attribute.pm
CommitLineData
8b978dd5 1
2package Class::MOP::Attribute;
3
4use strict;
5use warnings;
6
2eb717d5 7use Carp 'confess';
9ec169fe 8use Scalar::Util 'blessed', 'reftype', 'weaken';
2eb717d5 9
aa448b16 10our $VERSION = '0.04';
8b978dd5 11
727919c5 12sub meta {
13 require Class::MOP::Class;
aa448b16 14 Class::MOP::Class->initialize(blessed($_[0]) || $_[0]);
727919c5 15}
2eb717d5 16
727919c5 17# NOTE: (meta-circularity)
18# This method will be replaces in the
19# boostrap section of Class::MOP, by
20# a new version which uses the
21# &Class::MOP::Class::construct_instance
22# method to build an attribute meta-object
23# which itself is described with attribute
24# meta-objects.
25# - Ain't meta-circularity grand? :)
8b978dd5 26sub new {
27 my $class = shift;
28 my $name = shift;
29 my %options = @_;
30
cbd9f942 31 (defined $name && $name)
8b978dd5 32 || confess "You must provide a name for the attribute";
5659d76e 33 $options{init_arg} = $name
34 if not exists $options{init_arg};
2eb717d5 35
8b978dd5 36 bless {
c50c603e 37 name => $name,
38 accessor => $options{accessor},
39 reader => $options{reader},
40 writer => $options{writer},
41 predicate => $options{predicate},
42 init_arg => $options{init_arg},
9ec169fe 43 default => $options{default},
44 # keep a weakened link to the
45 # class we are associated with
46 associated_class => undef,
8b978dd5 47 } => $class;
48}
49
7b31baf4 50# NOTE:
5659d76e 51# this is a primative (and kludgy) clone operation
52# for now, it will be repleace in the Class::MOP
53# bootstrap with a proper one, however we know
54# that this one will work fine for now.
55sub clone {
56 my $self = shift;
57 my %options = @_;
58 (blessed($self))
59 || confess "Can only clone an instance";
60 return bless { %{$self}, %options } => blessed($self);
61}
62
63# NOTE:
7b31baf4 64# the next bunch of methods will get bootstrapped
65# away in the Class::MOP bootstrapping section
66
c50c603e 67sub name { $_[0]->{name} }
68
7b31baf4 69sub associated_class { $_[0]->{associated_class} }
70
727919c5 71sub has_accessor { defined($_[0]->{accessor}) ? 1 : 0 }
72sub has_reader { defined($_[0]->{reader}) ? 1 : 0 }
73sub has_writer { defined($_[0]->{writer}) ? 1 : 0 }
c50c603e 74sub has_predicate { defined($_[0]->{predicate}) ? 1 : 0 }
727919c5 75sub has_init_arg { defined($_[0]->{init_arg}) ? 1 : 0 }
76sub has_default { defined($_[0]->{default}) ? 1 : 0 }
c50c603e 77
78sub accessor { $_[0]->{accessor} }
79sub reader { $_[0]->{reader} }
80sub writer { $_[0]->{writer} }
81sub predicate { $_[0]->{predicate} }
82sub init_arg { $_[0]->{init_arg} }
83
7b31baf4 84# end bootstrapped away method section.
85# (all methods below here are kept intact)
86
c50c603e 87sub default {
88 my $self = shift;
89 if (reftype($self->{default}) && reftype($self->{default}) eq 'CODE') {
727919c5 90 # if the default is a CODE ref, then
91 # we pass in the instance and default
92 # can return a value based on that
93 # instance. Somewhat crude, but works.
c50c603e 94 return $self->{default}->(shift);
95 }
96 $self->{default};
97}
8b978dd5 98
9ec169fe 99# class association
727919c5 100
9ec169fe 101sub attach_to_class {
102 my ($self, $class) = @_;
103 (blessed($class) && $class->isa('Class::MOP::Class'))
104 || confess "You must pass a Class::MOP::Class instance (or a subclass)";
105 weaken($self->{associated_class} = $class);
106}
107
108sub detach_from_class {
109 my $self = shift;
110 $self->{associated_class} = undef;
111}
112
113## Method generation helpers
114
115sub generate_accessor_method {
116 my ($self, $attr_name) = @_;
013b1897 117 sub {
118 $_[0]->{$attr_name} = $_[1] if scalar(@_) == 2;
119 $_[0]->{$attr_name};
120 };
9ec169fe 121}
122
123sub generate_reader_method {
124 my ($self, $attr_name) = @_;
013b1897 125 sub { $_[0]->{$attr_name} };
9ec169fe 126}
127
128sub generate_writer_method {
129 my ($self, $attr_name) = @_;
013b1897 130 sub { $_[0]->{$attr_name} = $_[1] };
9ec169fe 131}
132
133sub generate_predicate_method {
134 my ($self, $attr_name) = @_;
013b1897 135 sub { defined $_[0]->{$attr_name} ? 1 : 0 };
9ec169fe 136}
137
138sub process_accessors {
139 my ($self, $type, $accessor) = @_;
013b1897 140 if (reftype($accessor)) {
141 (reftype($accessor) eq 'HASH')
142 || confess "bad accessor/reader/writer/predicate format, must be a HASH ref";
9ec169fe 143 my ($name, $method) = each %{$accessor};
de19f115 144 return ($name, Class::MOP::Attribute::Accessor->new($method));
2eb717d5 145 }
9ec169fe 146 else {
147 my $generator = $self->can('generate_' . $type . '_method');
148 ($generator)
149 || confess "There is no method generator for the type='$type'";
150 if (my $method = $self->$generator($self->name)) {
de19f115 151 return ($accessor => Class::MOP::Attribute::Accessor->new($method));
9ec169fe 152 }
343203ee 153 confess "Could not create the '$type' method for " . $self->name . " because : $@";
9ec169fe 154 }
155}
156
157sub install_accessors {
158 my $self = shift;
159 my $class = $self->associated_class;
c50c603e 160
9ec169fe 161 $class->add_method(
162 $self->process_accessors('accessor' => $self->accessor())
163 ) if $self->has_accessor();
164
165 $class->add_method(
166 $self->process_accessors('reader' => $self->reader())
167 ) if $self->has_reader();
168
169 $class->add_method(
170 $self->process_accessors('writer' => $self->writer())
171 ) if $self->has_writer();
172
173 $class->add_method(
174 $self->process_accessors('predicate' => $self->predicate())
175 ) if $self->has_predicate();
176 return;
2eb717d5 177}
178
b51af7f9 179{
180 my $_remove_accessor = sub {
181 my ($accessor, $class) = @_;
c50c603e 182 if (reftype($accessor) && reftype($accessor) eq 'HASH') {
183 ($accessor) = keys %{$accessor};
184 }
b51af7f9 185 my $method = $class->get_method($accessor);
186 $class->remove_method($accessor)
2eb717d5 187 if (blessed($method) && $method->isa('Class::MOP::Attribute::Accessor'));
b51af7f9 188 };
c50c603e 189
b51af7f9 190 sub remove_accessors {
9ec169fe 191 my $self = shift;
192 $_remove_accessor->($self->accessor(), $self->associated_class()) if $self->has_accessor();
193 $_remove_accessor->($self->reader(), $self->associated_class()) if $self->has_reader();
194 $_remove_accessor->($self->writer(), $self->associated_class()) if $self->has_writer();
195 $_remove_accessor->($self->predicate(), $self->associated_class()) if $self->has_predicate();
b51af7f9 196 return;
197 }
198
8b978dd5 199}
200
2eb717d5 201package Class::MOP::Attribute::Accessor;
202
203use strict;
204use warnings;
205
727919c5 206use Class::MOP::Method;
207
2eb717d5 208our $VERSION = '0.01';
209
210our @ISA = ('Class::MOP::Method');
211
8b978dd5 2121;
213
214__END__
215
216=pod
217
218=head1 NAME
219
220Class::MOP::Attribute - Attribute Meta Object
221
222=head1 SYNOPSIS
223
224 Class::MOP::Attribute->new('$foo' => (
fe122940 225 accessor => 'foo', # dual purpose get/set accessor
226 predicate => 'has_foo' # predicate check for defined-ness
227 init_arg => '-foo', # class->new will look for a -foo key
228 default => 'BAR IS BAZ!' # if no -foo key is provided, use this
8b978dd5 229 ));
230
231 Class::MOP::Attribute->new('$.bar' => (
fe122940 232 reader => 'bar', # getter
233 writer => 'set_bar', # setter
234 predicate => 'has_bar' # predicate check for defined-ness
235 init_arg => ':bar', # class->new will look for a :bar key
8b978dd5 236 # no default value means it is undef
237 ));
238
239=head1 DESCRIPTION
240
fe122940 241The Attribute Protocol is almost entirely an invention of this module,
242and is completely optional to this MOP. This is because Perl 5 does not
243have consistent notion of what is an attribute of a class. There are
244so many ways in which this is done, and very few (if any) are
245easily discoverable by this module.
552e3d24 246
247So, all that said, this module attempts to inject some order into this
fe122940 248chaos, by introducing a consistent API which can be used to create
249object attributes.
552e3d24 250
251=head1 METHODS
252
253=head2 Creation
254
255=over 4
256
fe122940 257=item B<new ($name, ?%options)>
258
259An attribute must (at the very least), have a C<$name>. All other
a2e85e6c 260C<%options> are contained added as key-value pairs. Acceptable keys
fe122940 261are as follows:
262
5659d76e 263=item B<clone (%options)>
264
fe122940 265=over 4
266
267=item I<init_arg>
268
269This should be a string value representing the expected key in
270an initialization hash. For instance, if we have an I<init_arg>
271value of C<-foo>, then the following code will Just Work.
272
273 MyClass->meta->construct_instance(-foo => "Hello There");
274
7b31baf4 275In an init_arg is not assigned, it will automatically use the
276value of C<$name>.
277
fe122940 278=item I<default>
279
280The value of this key is the default value which
281C<Class::MOP::Class::construct_instance> will initialize the
282attribute to.
283
284B<NOTE:>
285If the value is a simple scalar (string or number), then it can
286be just passed as is. However, if you wish to initialize it with
287a HASH or ARRAY ref, then you need to wrap that inside a CODE
288reference, like so:
289
290 Class::MOP::Attribute->new('@foo' => (
291 default => sub { [] },
292 ));
293
294 # or ...
295
296 Class::MOP::Attribute->new('%foo' => (
297 default => sub { {} },
298 ));
299
300If you wish to initialize an attribute with a CODE reference
301itself, then you need to wrap that in a subroutine as well, like
302so:
303
304 Class::MOP::Attribute->new('&foo' => (
305 default => sub { sub { print "Hello World" } },
306 ));
307
308And lastly, if the value of your attribute is dependent upon
309some other aspect of the instance structure, then you can take
310advantage of the fact that when the I<default> value is a CODE
311reference, it is passed the raw (unblessed) instance structure
312as it's only argument. So you can do things like this:
313
314 Class::MOP::Attribute->new('$object_identity' => (
315 default => sub { Scalar::Util::refaddr($_[0]) },
316 ));
317
318This last feature is fairly limited as there is no gurantee of
319the order of attribute initializations, so you cannot perform
320any kind of dependent initializations. However, if this is
321something you need, you could subclass B<Class::MOP::Class> and
322this class to acheive it. However, this is currently left as
323an exercise to the reader :).
324
325=back
326
a2e85e6c 327The I<accessor>, I<reader>, I<writer> and I<predicate> keys can
fe122940 328contain either; the name of the method and an appropriate default
329one will be generated for you, B<or> a HASH ref containing exactly one
330key (which will be used as the name of the method) and one value,
331which should contain a CODE reference which will be installed as
332the method itself.
59e7697f 333
334=over 4
335
336=item I<accessor>
337
fe122940 338The I<accessor> is a standard perl-style read/write accessor. It will
339return the value of the attribute, and if a value is passed as an argument,
340it will assign that value to the attribute.
341
342B<NOTE:>
343This method will properly handle the following code, by assigning an
344C<undef> value to the attribute.
345
346 $object->set_something(undef);
347
59e7697f 348=item I<reader>
349
fe122940 350This is a basic read-only accessor, it will just return the value of
351the attribute.
352
59e7697f 353=item I<writer>
354
fe122940 355This is a basic write accessor, it accepts a single argument, and
356assigns that value to the attribute. This method does not intentially
357return a value, however perl will return the result of the last
358expression in the subroutine, which returns in this returning the
359same value that it was passed.
59e7697f 360
fe122940 361B<NOTE:>
362This method will properly handle the following code, by assigning an
363C<undef> value to the attribute.
59e7697f 364
fe122940 365 $object->set_something();
366
367=item I<predicate>
368
369This is a basic test to see if the value of the attribute is not
370C<undef>. It will return true (C<1>) if the attribute's value is
371defined, and false (C<0>) otherwise.
59e7697f 372
373=back
552e3d24 374
375=back
376
377=head2 Informational
378
fe122940 379These are all basic read-only value accessors for the values
380passed into C<new>. I think they are pretty much self-explanitory.
381
552e3d24 382=over 4
383
384=item B<name>
385
386=item B<accessor>
387
388=item B<reader>
389
390=item B<writer>
391
c50c603e 392=item B<predicate>
393
552e3d24 394=item B<init_arg>
395
fe122940 396=item B<default (?$instance)>
397
398As noted in the documentation for C<new> above, if the I<default>
399value is a CODE reference, this accessor will pass a single additional
400argument C<$instance> into it and return the value.
552e3d24 401
402=back
403
404=head2 Informational predicates
405
a2e85e6c 406These are all basic predicate methods for the values passed into C<new>.
fe122940 407
552e3d24 408=over 4
409
410=item B<has_accessor>
411
552e3d24 412=item B<has_reader>
413
552e3d24 414=item B<has_writer>
415
c50c603e 416=item B<has_predicate>
417
552e3d24 418=item B<has_init_arg>
419
552e3d24 420=item B<has_default>
421
552e3d24 422=back
423
9ec169fe 424=head2 Class association
425
426=over 4
427
428=item B<associated_class>
429
430=item B<attach_to_class ($class)>
431
432=item B<detach_from_class>
433
434=back
435
552e3d24 436=head2 Attribute Accessor generation
437
438=over 4
439
9ec169fe 440=item B<install_accessors>
2eb717d5 441
442This allows the attribute to generate and install code for it's own
a2e85e6c 443I<accessor/reader/writer/predicate> methods. This is called by
fe122940 444C<Class::MOP::Class::add_attribute>.
2eb717d5 445
9ec169fe 446This method will call C<process_accessors> for each of the possible
447method types (accessor, reader, writer & predicate).
448
449=item B<process_accessors ($type, $value)>
450
451This takes a C<$type> (accessor, reader, writer or predicate), and
452a C<$value> (the value passed into the constructor for each of the
453different types). It will then either generate the method itself
454(using the C<generate_*_method> methods listed below) or it will
455use the custom method passed through the constructor.
456
457=over 4
458
459=item B<generate_accessor_method ($attr_name)>
460
461=item B<generate_predicate_method ($attr_name)>
462
463=item B<generate_reader_method ($attr_name)>
464
465=item B<generate_writer_method ($attr_name)>
466
467=back
468
469=item B<remove_accessors>
2eb717d5 470
471This allows the attribute to remove the method for it's own
a2e85e6c 472I<accessor/reader/writer/predicate>. This is called by
fe122940 473C<Class::MOP::Class::remove_attribute>.
2eb717d5 474
475=back
476
477=head2 Introspection
478
479=over 4
552e3d24 480
2eb717d5 481=item B<meta>
552e3d24 482
fe122940 483This will return a B<Class::MOP::Class> instance which is related
484to this class.
485
486It should also be noted that B<Class::MOP> will actually bootstrap
487this module by installing a number of attribute meta-objects into
488it's metaclass. This will allow this class to reap all the benifits
489of the MOP when subclassing it.
490
552e3d24 491=back
492
8b978dd5 493=head1 AUTHOR
494
a2e85e6c 495Stevan Little E<lt>stevan@iinteractive.comE<gt>
8b978dd5 496
497=head1 COPYRIGHT AND LICENSE
498
499Copyright 2006 by Infinity Interactive, Inc.
500
501L<http://www.iinteractive.com>
502
503This library is free software; you can redistribute it and/or modify
504it under the same terms as Perl itself.
505
9ec169fe 506=cut