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