litle changes, almost ready to ship
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / lib / MooseX / Emulate / Class / Accessor / Fast.pm
CommitLineData
c5a105b3 1package MooseX::Emulate::Class::Accessor::Fast;
2
e579fc46 3use Moose::Role;
c5a105b3 4
144866f7 5our $VERSION = '0.00300';
c5a105b3 6
7=head1 NAME
8
9MooseX::Emulate::Class::Accessor::Fast -
10 Emulate Class::Accessor::Fast behavior using Moose attributes
11
12=head1 SYNOPSYS
13
14 package MyClass;
144866f7 15 use Moose;
e579fc46 16
17 with 'MooseX::Emulate::Class::Accessor::Fast';
c5a105b3 18
c5a105b3 19
20 #fields with readers and writers
21 __PACKAGE__->mk_accessors(qw/field1 field2/);
22 #fields with readers only
23 __PACKAGE__->mk_accessors(qw/field3 field4/);
24 #fields with writers only
25 __PACKAGE__->mk_accessors(qw/field5 field6/);
26
27
28=head1 DESCRIPTION
29
30This module attempts to emulate the behavior of L<Class::Accessor::Fast> as
31accurately as possible using the Moose attribute system. The public API of
32C<Class::Accessor::Fast> is wholly supported, but the private methods are not.
33If you are only using the public methods (as you should) migration should be a
e579fc46 34matter of switching your C<use base> line to a C<with> line.
c5a105b3 35
36While I have attempted to emulate the behavior of Class::Accessor::Fast as closely
37as possible bugs may still be lurking in edge-cases.
38
39=head1 BEHAVIOR
40
41Simple documentation is provided here for your convenience, but for more thorough
42documentation please see L<Class::Accessor::Fast> and L<Class::Accessor>.
43
44=head2 A note about introspection
45
46Please note that, at this time, the C<is> flag attribute is not being set. To
47determine the C<reader> and C<writer> methods using introspection in later versions
48of L<Class::MOP> ( > 0.38) please use the C<get_read_method> and C<get_write_method>
49methods in L<Class::MOP::Attribute>. Example
50
51 # with Class::MOP <= 0.38
52 my $attr = $self->meta->find_attribute_by_name($field_name);
53 my $reader_method = $attr->reader || $attr->accessor;
54 my $writer_method = $attr->writer || $attr->accessor;
55
56 # with Class::MOP > 0.38
57 my $attr = $self->meta->find_attribute_by_name($field_name);
58 my $reader_method = $attr->get_read_method;
59 my $writer_method = $attr->get_write_method;
60
61=head1 METHODS
62
144866f7 63=head2 BUILD $self %args
6b8ba79f 64
144866f7 65Change the default Moose class building to emulate the behavior of C::A::F and
6b8ba79f 66store arguments in the instance hashref.
67
68=cut
69
144866f7 70sub BUILD {
71 my $self = shift;
6b8ba79f 72 my %args;
73 if (scalar @_ == 1 && defined $_[0] && ref($_[0]) eq 'HASH') {
74 %args = %{$_[0]};
7ed9430a 75 } elsif( scalar(@_) ) {
6b8ba79f 76 %args = @_;
77 }
6b8ba79f 78 my @extra = grep { !exists($self->{$_}) } keys %args;
79 @{$self}{@extra} = @args{@extra};
80 return $self;
144866f7 81}
6b8ba79f 82
c5a105b3 83=head2 mk_accessors @field_names
84
85Create read-write accessors. An attribute named C<$field_name> will be created.
86The name of the c<reader> and C<writer> methods will be determined by the return
87value of C<accessor_name_for> and C<mutator_name_for>, which by default return the
88name passed unchanged. If the accessor and mutator names are equal the C<accessor>
89attribute will be passes to Moose, otherwise the C<reader> and C<writer> attributes
90will be passed. Please see L<Class::MOP::Attribute> for more information.
91
92=cut
93
94sub mk_accessors{
95 my $self = shift;
96 my $meta = $self->meta;
97 for my $attr_name (@_){
98 my $reader = $self->accessor_name_for($attr_name);
99 my $writer = $self->mutator_name_for( $attr_name);
100 #dont overwrite existing methods
101 my @opts = $reader eq $writer ?
102 ( $self->can($reader) ? () : (accessor => $reader) ) :
103 (
104 ( $self->can($reader) ? () : (reader => $reader) ),
105 ( $self->can($writer) ? () : (writer => $writer) ),
106 );
107 $meta->add_attribute($attr_name, @opts);
108
109 $meta->add_method("_${attr_name}_accessor", $self->can($reader) )
110 if($reader eq $attr_name && !$self->can("_${attr_name}_accessor") );
111 }
112}
113
114=head2 mk_ro_accessors @field_names
115
116Create read-only accessors.
117
118=cut
119
120sub mk_ro_accessors{
121 my $self = shift;
122 my $meta = $self->meta;
123 for my $attr_name (@_){
124 my $reader = $self->accessor_name_for($attr_name);
125 $meta->add_attribute($attr_name,
126 $self->can($reader) ? () : (reader => $reader) );
127 $meta->add_method("_${attr_name}_accessor", $meta->find_method_by_name($reader))
128 if($reader eq $attr_name && !$self->can("_${attr_name}_accessor") );
129 }
130}
131
132=head2 mk_ro_accessors @field_names
133
134Create write-only accessors.
135
136=cut
137
138#this is retarded.. but we need it for compatibility or whatever.
139sub mk_wo_accessors{
140 my $self = shift;
141 my $meta = $self->meta;
142 for my $attr_name (@_){
143 my $writer = $self->mutator_name_for($attr_name);
144 $meta->add_attribute($attr_name, $self->can($writer) ? () : (writer => $writer) );
145 $meta->add_method("_${attr_name}_accessor", $meta->find_method_by_name($writer))
146 if($writer eq $attr_name && !$self->can("_${attr_name}_accessor") );
147 }
148}
149
150=head2 follow_best_practices
151
152Preface readers with 'get_' and writers with 'set_'.
153See original L<Class::Accessor> documentation for more information.
154
155=cut
156
157sub follow_best_practice{
158 my $self = shift;
159 my $meta = $self->meta;
160
161 $meta->remove_method('mutator_name_for');
162 $meta->remove_method('accessor_name_for');
163 $meta->add_method('mutator_name_for', sub{ return "set_".$_[1] });
164 $meta->add_method('accessor_name_for', sub{ return "get_".$_[1] });
165}
166
167=head2 mutator_name_for
168
169=head2 accessor_name_for
170
171See original L<Class::Accessor> documentation for more information.
172
173=cut
174
175sub mutator_name_for{ return $_[1] }
176sub accessor_name_for{ return $_[1] }
177
178=head2 set
179
180See original L<Class::Accessor> documentation for more information.
181
182=cut
183
184sub set{
185 my $self = shift;
186 my $k = shift;
187 confess "Wrong number of arguments received" unless scalar @_;
188
189 #my $writer = $self->mutator_name_for( $k );
190 confess "No such attribute '$k'"
191 unless ( my $attr = $self->meta->find_attribute_by_name($k) );
192 my $writer = $attr->writer || $attr->accessor;
193 $self->$writer(@_ > 1 ? [@_] : @_);
194}
195
196=head2 get
197
198See original L<Class::Accessor> documentation for more information.
199
200=cut
201
202sub get{
203 my $self = shift;
204 confess "Wrong number of arguments received" unless scalar @_;
205
206 my @values;
207 #while( my $attr = $self->meta->find_attribute_by_name( shift(@_) ){
208 for( @_ ){
209 confess "No such attribute '$_'"
210 unless ( my $attr = $self->meta->find_attribute_by_name($_) );
211 my $reader = $attr->reader || $attr->accessor;
212 @_ > 1 ? push(@values, $self->$reader) : return $self->$reader;
213 }
214
215 return @values;
216}
217
2181;
219
220=head2 meta
221
222See L<Moose::Meta::Class>.
223
224=cut
225
226=head1 SEE ALSO
227
228L<Moose>, L<Moose::Meta::Attribute>, L<Class::Accessor>, L<Class::Accessor::Fast>,
229L<Class::MOP::Attribute>, L<MooseX::Adopt::Class::Accessor::Fast>
230
231=head1 AUTHOR
232
7ed9430a 233Guillermo Roditi (groditi) E<lt>groditi@cpan.orgE<gt>
c5a105b3 234
235=head1 LICENSE
236
237You may distribute this code under the same terms as Perl itself.
238
239=cut