comment cleanup in AH code
[gitmo/Moose.git] / lib / Moose / AttributeHelpers / Trait / Counter.pm
CommitLineData
e3c07b19 1
2package Moose::AttributeHelpers::Trait::Counter;
3use Moose::Role;
4
115601b6 5our $VERSION = '0.85';
e3c07b19 6$VERSION = eval $VERSION;
7our $AUTHORITY = 'cpan:STEVAN';
8
9use Moose::AttributeHelpers::MethodProvider::Counter;
10
11with 'Moose::AttributeHelpers::Trait::Base';
12
13has 'method_provider' => (
14 is => 'ro',
15 isa => 'ClassName',
16 predicate => 'has_method_provider',
17 default => 'Moose::AttributeHelpers::MethodProvider::Counter',
18);
19
2edb73d9 20sub _default_default { 0 }
21sub _default_is { 'ro' }
2e069f5a 22sub _helper_type { 'Num' }
e3c07b19 23
2edb73d9 24after '_check_handles_values' => sub {
046c8b5e 25 my $self = shift;
5404f169 26 my $handles = $self->handles;
e3c07b19 27
046c8b5e 28 unless ( scalar keys %$handles ) {
e3c07b19 29 my $method_constructors = $self->method_constructors;
30 my $attr_name = $self->name;
31
046c8b5e 32 foreach my $method ( keys %$method_constructors ) {
33 $handles->{ $method . '_' . $attr_name } = $method;
e3c07b19 34 }
40ef30a5 35
e7470555 36 $self->_set_handles($handles);
37 }
e3c07b19 38};
39
40no Moose::Role;
41
e3c07b19 42package # hide me from search.cpan.org
43 Moose::Meta::Attribute::Custom::Trait::Counter;
44sub register_implementation { 'Moose::AttributeHelpers::Trait::Counter' }
45
461;
47
48__END__
49
50=pod
51
52=head1 NAME
53
54Moose::AttributeHelpers::Counter
55
56=head1 SYNOPSIS
57
58 package MyHomePage;
59 use Moose;
60 use Moose::AttributeHelpers;
61
62 has 'counter' => (
63 metaclass => 'Counter',
64 is => 'ro',
65 isa => 'Num',
2edb73d9 66 default => 0,
5f3663b2 67 handles => {
68 inc_counter => 'inc',
69 dec_counter => 'dec',
70 reset_counter => 'reset',
e3c07b19 71 }
72 );
73
74 my $page = MyHomePage->new();
2edb73d9 75 $page->inc_counter; # same as $page->counter( $page->counter + 1 );
76 $page->dec_counter; # same as $page->counter( $page->counter - 1 );
e3c07b19 77
78=head1 DESCRIPTION
79
80This module provides a simple counter attribute, which can be
fa73354b 81incremented and decremented.
e3c07b19 82
83If your attribute definition does not include any of I<is>, I<isa>,
5f3663b2 84I<default> or I<handles> but does use the C<Counter> metaclass,
e3c07b19 85then this module applies defaults as in the L</SYNOPSIS>
86above. This allows for a very basic counter definition:
87
88 has 'foo' => (metaclass => 'Counter');
89 $obj->inc_foo;
90
91=head1 METHODS
92
93=over 4
94
95=item B<meta>
96
97=item B<method_provider>
98
99=item B<has_method_provider>
100
e3c07b19 101=back
102
103=head1 PROVIDED METHODS
104
105It is important to note that all those methods do in place
106modification of the value stored in the attribute.
107
108=over 4
109
110=item I<set>
111
112Set the counter to the specified value.
113
114=item I<inc>
115
116Increments the value stored in this slot by 1. Providing an argument will
117cause the counter to be increased by specified amount.
118
119=item I<dec>
120
121Decrements the value stored in this slot by 1. Providing an argument will
122cause the counter to be increased by specified amount.
123
124=item I<reset>
125
126Resets the value stored in this slot to it's default value.
127
128=back
129
130=head1 BUGS
131
132All complex software has bugs lurking in it, and this module is no
133exception. If you find a bug please either email me, or add the bug
134to cpan-RT.
135
136=head1 AUTHOR
137
138Stevan Little E<lt>stevan@iinteractive.comE<gt>
139
140=head1 COPYRIGHT AND LICENSE
141
142Copyright 2007-2009 by Infinity Interactive, Inc.
143
144L<http://www.iinteractive.com>
145
146This library is free software; you can redistribute it and/or modify
147it under the same terms as Perl itself.
148
149=cut