now uses faster methods for accessors and some other minor cleanup stuff
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers.pm
1
2 package MooseX::AttributeHelpers;
3
4 our $VERSION   = '0.02';
5 our $AUTHORITY = 'cpan:STEVAN';
6
7 use MooseX::AttributeHelpers::Meta::Method::Provided;
8
9 use MooseX::AttributeHelpers::Counter;
10 use MooseX::AttributeHelpers::Number;
11 use MooseX::AttributeHelpers::Collection::List;
12 use MooseX::AttributeHelpers::Collection::Array;
13 use MooseX::AttributeHelpers::Collection::Hash;
14
15 1;
16
17 __END__
18
19 =pod
20
21 =head1 NAME
22
23 MooseX::AttributeHelpers - Extend your attribute interfaces
24
25 =head1 SYNOPSIS
26
27   package MyClass;
28   use Moose;
29   use MooseX::AttributeHelpers;
30
31   has 'mapping' => (
32       metaclass => 'Collection::Hash',
33       is        => 'rw',
34       isa       => 'HashRef[Str]',
35       default   => sub { {} },
36       provides  => {
37           exists    => 'exists_in_mapping',
38           keys      => 'ids_in_mapping',
39           get       => 'get_mapping',
40           set       => 'set_mapping',
41       },
42   );
43
44   # ...
45
46   my $obj = MyClass->new;
47   $obj->set_mapping(4, 'foo');
48   $obj->set_mapping(5, 'bar');
49   $obj->set_mapping(6, 'baz');
50
51   # prints 'bar'
52   print $obj->get_mapping(5) if $obj->exists_in_mapping(5);
53
54   # prints '4, 5, 6'
55   print join ', ', $obj->ids_in_mapping;
56
57 =head1 DESCRIPTION
58
59 While L<Moose> attributes provide you with a way to name your accessors,
60 readers, writers, clearers and predicates, this library provides commonly
61 used attribute helper methods for more specific types of data.
62
63 As seen in the L</SYNOPSIS>, you specify the extension via the 
64 C<metaclass> parameter. Available meta classes are:
65
66 =over
67
68 =item L<Number|MooseX::AttributeHelpers::Number>
69
70 Common numerical operations.
71
72 =item L<Counter|MooseX::AttributeHelpers::Counter>
73
74 Methods for incrementing and decrementing a counter attribute.
75
76 =item L<Collection::Hash|MooseX::AttributeHelpers::Collection::Hash>
77
78 Common methods for hash references.
79
80 =item L<Collection::Array|MooseX::AttributeHelpers::Collection::Array>
81
82 Common methods for array references.
83
84 =item L<Collection::Array|MooseX::AttributeHelpers::Collection::List>
85
86 Common list methods for array references. 
87
88 =back
89
90 =head1 CAVEAT
91
92 This is an early release of this module. Right now it is in great need 
93 of documentation and tests in the test suite. However, we have used this 
94 module to great success at $work where it has been tested very thoroughly
95 and deployed into a major production site.
96
97 I plan on getting better docs and tests in the next few releases, but until 
98 then please refer to the few tests we do have and feel free email and/or 
99 message me on irc.perl.org if you have any questions.
100
101 =head1 TODO
102
103 We need tests and docs badly.
104
105 =head1 BUGS
106
107 All complex software has bugs lurking in it, and this module is no 
108 exception. If you find a bug please either email me, or add the bug
109 to cpan-RT.
110
111 =head1 AUTHOR
112
113 Stevan Little E<lt>stevan@iinteractive.comE<gt>
114
115 B<with contributions from:>
116
117 Robert (rlb3) Boone
118
119 Chris (perigrin) Prather
120
121 Robert (phaylon) Sedlacek
122
123 =head1 COPYRIGHT AND LICENSE
124
125 Copyright 2007 by Infinity Interactive, Inc.
126
127 L<http://www.iinteractive.com>
128
129 This library is free software; you can redistribute it and/or modify
130 it under the same terms as Perl itself.
131
132 =cut