getting close to a 0.07 release
[gitmo/Class-MOP.git] / examples / Perl6Attribute.pod
CommitLineData
e2f8b029 1
9ec169fe 2package # hide the package from PAUSE
3 Perl6Attribute;
e2f8b029 4
5use strict;
6use warnings;
7
8our $VERSION = '0.01';
9
10use base 'Class::MOP::Attribute';
11
12sub new {
13 my ($class, $attribute_name, %options) = @_;
14
15 # extract the sigil and accessor name
16 my ($sigil, $accessor_name) = ($attribute_name =~ /^([\$\@\%])\.(.*)$/);
17
18 # pass the accessor name
19 $options{accessor} = $accessor_name;
20
21 # create a default value based on the sigil
22 $options{default} = sub { [] } if ($sigil eq '@');
23 $options{default} = sub { {} } if ($sigil eq '%');
24
25 $class->SUPER::new($attribute_name, %options);
26}
27
281;
29
30__END__
31
32=pod
33
34=head1 NAME
35
9ec169fe 36Perl6Attribute - An example attribute metaclass for Perl 6 style attributes
e2f8b029 37
38=head1 SYNOPSIS
39
40 package Foo;
41
e2f8b029 42 Foo->meta->add_attribute(Perl6Attribute->new('$.foo'));
43 Foo->meta->add_attribute(Perl6Attribute->new('@.bar'));
44 Foo->meta->add_attribute(Perl6Attribute->new('%.baz'));
45
46 sub new {
47 my $class = shift;
5659d76e 48 $class->meta->new_object(@_);
e2f8b029 49 }
50
51=head1 DESCRIPTION
52
53This is an attribute metaclass which implements Perl 6 style
54attributes, including the auto-generating accessors.
55
56This code is very simple, we only need to subclass
57C<Class::MOP::Attribute> and override C<&new>. Then we just
58pre-process the attribute name, and create the accessor name
59and default value based on it.
60
61More advanced features like the C<handles> trait (see
62L<Perl6::Bible/A12>) can be accomplished as well doing the
63same pre-processing approach. This is left as an exercise to
64the reader though (if you do it, please send me a patch
65though, and will update this).
66
67=head1 AUTHOR
68
69Stevan Little E<lt>stevan@iinteractive.comE<gt>
70
71=head1 COPYRIGHT AND LICENSE
72
73Copyright 2006 by Infinity Interactive, Inc.
74
75L<http://www.iinteractive.com>
76
77This library is free software; you can redistribute it and/or modify
78it under the same terms as Perl itself.
79
80=cut