Calculate _native_type from role name, rather than hardcoding it
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / Counter.pm
CommitLineData
e3c07b19 1
c466e58f 2package Moose::Meta::Attribute::Native::Trait::Counter;
e3c07b19 3use Moose::Role;
4
b6cca0d5 5our $VERSION = '1.14';
e3c07b19 6$VERSION = eval $VERSION;
7our $AUTHORITY = 'cpan:STEVAN';
8
04e05413 9use Moose::Meta::Method::Accessor::Native::Counter::dec;
10use Moose::Meta::Method::Accessor::Native::Counter::inc;
11use Moose::Meta::Method::Accessor::Native::Counter::reset;
12use Moose::Meta::Method::Accessor::Native::Counter::set;
e3c07b19 13
04e05413 14with 'Moose::Meta::Attribute::Native::Trait' =>
15 { -excludes => ['_root_types'] };
e3c07b19 16
2edb73d9 17sub _default_default { 0 }
18sub _default_is { 'ro' }
2e069f5a 19sub _helper_type { 'Num' }
04e05413 20sub _root_types { 'Num', 'Int' }
e3c07b19 21
e3c07b19 22no Moose::Role;
23
e3c07b19 241;
25
26__END__
27
28=pod
29
30=head1 NAME
31
2420461c 32Moose::Meta::Attribute::Native::Trait::Counter - Helper trait for counters
e3c07b19 33
34=head1 SYNOPSIS
35
36 package MyHomePage;
37 use Moose;
e3c07b19 38
39 has 'counter' => (
9610c1d2 40 traits => ['Counter'],
e3c07b19 41 is => 'ro',
42 isa => 'Num',
2edb73d9 43 default => 0,
5f3663b2 44 handles => {
45 inc_counter => 'inc',
46 dec_counter => 'dec',
47 reset_counter => 'reset',
9610c1d2 48 },
e3c07b19 49 );
50
51 my $page = MyHomePage->new();
2edb73d9 52 $page->inc_counter; # same as $page->counter( $page->counter + 1 );
53 $page->dec_counter; # same as $page->counter( $page->counter - 1 );
aa276b31 54
55 my $count_by_twos = 2;
56 $page->inc_counter($count_by_twos);
e3c07b19 57
58=head1 DESCRIPTION
59
60This module provides a simple counter attribute, which can be
aa276b31 61incremented and decremented by arbitrary amounts. The default
62amount of change is one.
e3c07b19 63
e3c07b19 64=head1 PROVIDED METHODS
65
7250a968 66These methods are implemented in
67L<Moose::Meta::Attribute::Native::MethodProvider::Counter>. It is important to
68note that all those methods do in place modification of the value stored in
69the attribute.
e3c07b19 70
71=over 4
72
eb465b32 73=item B<set($value)>
e3c07b19 74
75Set the counter to the specified value.
76
aa276b31 77=item B<inc($arg)>
e3c07b19 78
aa276b31 79Increase the attribute value by the amount of the argument.
80No argument increments the value by 1.
e3c07b19 81
aa276b31 82=item B<dec($arg)>
e3c07b19 83
aa276b31 84Decrease the attribute value by the amount of the argument.
85No argument decrements the value by 1.
e3c07b19 86
eb465b32 87=item B<reset>
e3c07b19 88
89Resets the value stored in this slot to it's default value.
90
91=back
92
7250a968 93=head1 METHODS
94
95=over 4
96
97=item B<meta>
98
99=item B<method_provider>
100
101=item B<has_method_provider>
102
103=back
104
e3c07b19 105=head1 BUGS
106
d4048ef3 107See L<Moose/BUGS> for details on reporting bugs.
e3c07b19 108
109=head1 AUTHOR
110
111Stevan Little E<lt>stevan@iinteractive.comE<gt>
112
113=head1 COPYRIGHT AND LICENSE
114
115Copyright 2007-2009 by Infinity Interactive, Inc.
116
117L<http://www.iinteractive.com>
118
119This library is free software; you can redistribute it and/or modify
120it under the same terms as Perl itself.
121
122=cut