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