fix setting associated_metaclass and attribute on accessor objects
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor.pm
CommitLineData
8ee73eeb 1
2package Moose::Meta::Method::Accessor;
3
4use strict;
5use warnings;
6
55c361dc 7use Try::Tiny;
8
39b3bc94 9use base 'Moose::Meta::Method',
d617b644 10 'Class::MOP::Method::Accessor';
11
aa5bb362 12# multiple inheritance is terrible
13sub new {
14 goto &Class::MOP::Method::Accessor::new;
15}
16
17sub _new {
18 goto &Class::MOP::Method::Accessor::_new;
19}
20
18748ad6 21sub _error_thrower {
22 my $self = shift;
cc743de9 23 return $self->associated_attribute
24 if ref($self) && defined($self->associated_attribute);
25 return $self->SUPER::_error_thrower;
18748ad6 26}
d617b644 27
55c361dc 28sub _compile_code {
29 my $self = shift;
30 my @args = @_;
31 try {
32 $self->SUPER::_compile_code(@args);
33 }
34 catch {
35 $self->throw_error(
36 'Could not create writer for '
37 . "'" . $self->associated_attribute->name . "' "
38 . 'because ' . $_,
39 error => $_,
40 );
41 };
c9183ffc 42}
43
f5f08b5f 44sub _eval_environment {
45 my $self = shift;
46
144a8df1 47 my $env = { };
48
49 my $attr = $self->associated_attribute;
50
51 $env->{'$trigger'} = \($attr->trigger)
52 if $attr->has_trigger;
53 $env->{'$default'} = \($attr->default)
54 if $attr->has_default;
55
56 if ($attr->has_type_constraint) {
57 my $tc_obj = $attr->type_constraint;
58
c40e4359 59 # is this going to be an issue? it's currently only used for the tc
60 # message. is there a way to inline that too?
144a8df1 61 $env->{'$type_constraint_obj'} = \$tc_obj;
c40e4359 62
63 $env->{'$type_constraint'} = \(
64 $tc_obj->_compiled_type_constraint
65 ) unless $tc_obj->can_be_inlined;
66 $env->{'$type_coercion'} = \(
67 $tc_obj->coercion->_compiled_type_coercion
68 ) if $tc_obj->has_coercion;
144a8df1 69
70 $env = { %$env, %{ $tc_obj->inline_environment } };
71 }
72
73 # XXX ugh, fix these
74 $env->{'$attr'} = \$attr
d1ef0daf 75 if $attr->has_initializer && $attr->is_lazy;
144a8df1 76 $env->{'$meta'} = \$self;
77
78 return $env;
f5f08b5f 79}
80
f001c60f 81sub _instance_is_inlinable {
82 my $self = shift;
83 return $self->associated_attribute->associated_class->instance_metaclass->is_inlinable;
84}
85
86sub _generate_reader_method {
87 my $self = shift;
88 $self->_instance_is_inlinable ? $self->_generate_reader_method_inline(@_)
89 : $self->SUPER::_generate_reader_method(@_);
90}
91
92sub _generate_writer_method {
93 my $self = shift;
94 $self->_instance_is_inlinable ? $self->_generate_writer_method_inline(@_)
95 : $self->SUPER::_generate_writer_method(@_);
96}
97
98sub _generate_accessor_method {
99 my $self = shift;
100 $self->_instance_is_inlinable ? $self->_generate_accessor_method_inline(@_)
101 : $self->SUPER::_generate_accessor_method(@_);
102}
103
104sub _generate_predicate_method {
105 my $self = shift;
106 $self->_instance_is_inlinable ? $self->_generate_predicate_method_inline(@_)
107 : $self->SUPER::_generate_predicate_method(@_);
108}
109
110sub _generate_clearer_method {
111 my $self = shift;
112 $self->_instance_is_inlinable ? $self->_generate_clearer_method_inline(@_)
113 : $self->SUPER::_generate_clearer_method(@_);
114}
8ecb1fa0 115
6e50f7e9 116sub _writer_value_needs_copy {
117 shift->associated_attribute->_writer_value_needs_copy(@_);
118}
c350159f 119
1e2c801e 120sub _inline_tc_code {
6e50f7e9 121 shift->associated_attribute->_inline_tc_code(@_);
1e2c801e 122}
123
0f4afc62 124sub _inline_check_coercion {
125 shift->associated_attribute->_inline_check_coercion(@_);
126}
127
d617b644 128sub _inline_check_constraint {
6e50f7e9 129 shift->associated_attribute->_inline_check_constraint(@_);
d617b644 130}
131
132sub _inline_check_lazy {
6e50f7e9 133 shift->associated_attribute->_inline_check_lazy(@_);
9df136d0 134}
d617b644 135
1e2c801e 136sub _inline_store_value {
6e50f7e9 137 shift->associated_attribute->_inline_instance_set(@_) . ';';
d617b644 138}
139
3dda07f5 140sub _inline_get_old_value_for_trigger {
6e50f7e9 141 shift->associated_attribute->_inline_get_old_value_for_trigger(@_);
3dda07f5 142}
143
d617b644 144sub _inline_trigger {
6e50f7e9 145 shift->associated_attribute->_inline_trigger(@_);
d617b644 146}
147
1e2c801e 148sub _get_value {
6e50f7e9 149 shift->associated_attribute->_inline_instance_get(@_);
d617b644 150}
151
1e2c801e 152sub _has_value {
6e50f7e9 153 shift->associated_attribute->_inline_instance_has(@_);
d617b644 154}
8ee73eeb 155
1561;
157
ad46f524 158# ABSTRACT: A Moose Method metaclass for accessors
159
8ee73eeb 160__END__
161
162=pod
163
39b3bc94 164=head1 DESCRIPTION
165
ba4dfb8e 166This class is a subclass of L<Class::MOP::Method::Accessor> that
73f769fc 167provides additional Moose-specific functionality, all of which is
168private.
ecb59493 169
73f769fc 170To understand this class, you should read the the
ba4dfb8e 171L<Class::MOP::Method::Accessor> documentation.
39b3bc94 172
173=head1 BUGS
174
d4048ef3 175See L<Moose/BUGS> for details on reporting bugs.
39b3bc94 176
51308c23 177=cut