convert the rest of the simple readers in cmop to xs
[gitmo/Class-MOP.git] / lib / Class / MOP / Mixin / AttributeCore.pm
CommitLineData
9b871d79 1package Class::MOP::Mixin::AttributeCore;
2
3use strict;
4use warnings;
5
a9f48b4b 6our $VERSION = '1.11';
9b871d79 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use Scalar::Util 'blessed';
11
12use base 'Class::MOP::Mixin';
13
14sub has_accessor { defined $_[0]->{'accessor'} }
15sub has_reader { defined $_[0]->{'reader'} }
16sub has_writer { defined $_[0]->{'writer'} }
17sub has_predicate { defined $_[0]->{'predicate'} }
18sub has_clearer { defined $_[0]->{'clearer'} }
19sub has_builder { defined $_[0]->{'builder'} }
20sub has_init_arg { defined $_[0]->{'init_arg'} }
8343d501 21sub has_default { exists $_[0]->{'default'} }
9b871d79 22sub has_initializer { defined $_[0]->{'initializer'} }
23sub has_insertion_order { defined $_[0]->{'insertion_order'} }
24
9b871d79 25sub _set_insertion_order { $_[0]->{'insertion_order'} = $_[1] }
26
27sub has_read_method { $_[0]->has_reader || $_[0]->has_accessor }
28sub has_write_method { $_[0]->has_writer || $_[0]->has_accessor }
29
30sub is_default_a_coderef {
31 # Uber hack because it is called from CMOP::Attribute constructor as
32 # $class->is_default_a_coderef(\%options)
33 my ($value) = ref $_[0] ? $_[0]->{'default'} : $_[1]->{'default'};
34
35 return unless ref($value);
36
37 return ref($value) eq 'CODE'
38 || ( blessed($value) && $value->isa('Class::MOP::Method') );
39}
40
41sub default {
42 my ( $self, $instance ) = @_;
43 if ( defined $instance && $self->is_default_a_coderef ) {
44 # if the default is a CODE ref, then we pass in the instance and
45 # default can return a value based on that instance. Somewhat crude,
46 # but works.
47 return $self->{'default'}->($instance);
48 }
49 $self->{'default'};
50}
51
521;
53
54__END__
55
56=pod
57
58=head1 NAME
59
60Class::MOP::Mixin::AttributeCore - Core attributes shared by attribute metaclasses
61
62=head1 DESCRIPTION
63
64This class implements the core attributes (aka properties) shared by all
65attributes. See the L<Class::MOP::Attribute> documentation for API details.
66
67=head1 AUTHORS
68
69Dave Rolsky E<lt>autarch@urth.orgE<gt>
70
71=head1 COPYRIGHT AND LICENSE
72
3e2c8600 73Copyright 2006-2010 by Infinity Interactive, Inc.
9b871d79 74
75L<http://www.iinteractive.com>
76
77This library is free software; you can redistribute it and/or modify
78it under the same terms as Perl itself.
79
80=cut