Checking in changes prior to tagging of version 0.39. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse / Meta / Method / Accessor.pm
CommitLineData
a41c0667 1package Mouse::Meta::Method::Accessor;
bc69ee88 2use Mouse::Util; # enables strict and warnings
7b133c92 3use Scalar::Util qw(blessed);
a41c0667 4
2a464664 5sub _generate_accessor{
4ab51fb0 6 my (undef, $attribute, $class, $type) = @_;
a41c0667 7
8 my $name = $attribute->name;
9 my $default = $attribute->default;
10 my $constraint = $attribute->type_constraint;
11 my $builder = $attribute->builder;
12 my $trigger = $attribute->trigger;
13 my $is_weak = $attribute->is_weak_ref;
14 my $should_deref = $attribute->should_auto_deref;
cd00d876 15 my $should_coerce = (defined($constraint) && $constraint->has_coercion && $attribute->should_coerce);
a41c0667 16
cd00d876 17 my $compiled_type_constraint = defined($constraint) ? $constraint->_compiled_type_constraint : undef;
a41c0667 18
19 my $self = '$_[0]';
cd00d876 20 my $key = "q{$name}";
21 my $slot = "$self\->{$key}";
a41c0667 22
23 $type ||= 'accessor';
24
cd00d876 25 my $accessor = sprintf(qq{#line 1 "%s for %s (%s)"\n}, $type, $name, __FILE__)
26 . "sub {\n";
2a464664 27
a41c0667 28 if ($type eq 'accessor' || $type eq 'writer') {
29 if($type eq 'accessor'){
30 $accessor .=
a41c0667 31 'if (scalar(@_) >= 2) {' . "\n";
32 }
33 else{ # writer
34 $accessor .=
2a464664 35 'if(@_ < 2){ Carp::confess("Not enough arguments for the writer of '.$name.'") }'.
a41c0667 36 '{' . "\n";
37 }
38
39 my $value = '$_[1]';
40
14d7595a 41 if (defined $constraint) {
a41c0667 42 if ($should_coerce) {
43 $accessor .=
44 "\n".
ffbbf459 45 'my $val = $constraint->coerce('.$value.');';
a41c0667 46 $value = '$val';
47 }
14d7595a 48 $accessor .=
49 "\n".
cd00d876 50 '$compiled_type_constraint->('.$value.') or
51 $attribute->verify_type_constraint_error($name, '.$value.', $constraint);' . "\n";
a41c0667 52 }
53
54 # if there's nothing left to do for the attribute we can return during
55 # this setter
56 $accessor .= 'return ' if !$is_weak && !$trigger && !$should_deref;
57
cd00d876 58 $accessor .= "$slot = $value;\n";
a41c0667 59
60 if ($is_weak) {
cd00d876 61 $accessor .= "Scalar::Util::weaken($slot) if ref $slot;\n";
a41c0667 62 }
63
64 if ($trigger) {
65 $accessor .= '$trigger->('.$self.', '.$value.');' . "\n";
66 }
67
68 $accessor .= "}\n";
69 }
70 elsif($type eq 'reader') {
71 $accessor .= 'Carp::confess("Cannot assign a value to a read-only accessor") if scalar(@_) >= 2;' . "\n";
72 }
73 else{
74 $class->throw_error("Unknown accessor type '$type'");
75 }
76
f774b7de 77 if ($attribute->is_lazy) {
cd00d876 78 my $value;
a41c0667 79
cd00d876 80 if (defined $builder){
81 $value = "$self->\$builder()";
82 }
83 elsif (ref($default) eq 'CODE'){
84 $value = "$self->\$default()";
85 }
86 else{
87 $value = '$default';
14d7595a 88 }
14d7595a 89
95ecd6f1 90 $accessor .= "if(!exists $slot){\n";
cd00d876 91 if($should_coerce){
95ecd6f1 92 $accessor .= "$slot = \$constraint->coerce($value)";
14d7595a 93 }
95ecd6f1 94 elsif(defined $constraint){
95 $accessor .= "my \$tmp = $value;\n";
b6331c0c 96 #XXX: The following 'defined and' check is for backward compatibility
97 $accessor .= "defined(\$tmp) and ";
98
95ecd6f1 99 $accessor .= "\$compiled_type_constraint->(\$tmp)";
b6331c0c 100 $accessor .= " || \$attribute->verify_type_constraint_error(\$name, \$tmp, \$constraint);\n";
95ecd6f1 101 $accessor .= "$slot = \$tmp;\n";
102 }
103 else{
104 $accessor .= "$slot = $value;\n";
105 }
106 $accessor .= "}\n";
a41c0667 107 }
108
109 if ($should_deref) {
110 if ($constraint->is_a_type_of('ArrayRef')) {
cd00d876 111 $accessor .= "return \@{ $slot || [] } if wantarray;\n";
a41c0667 112 }
113 elsif($constraint->is_a_type_of('HashRef')){
cd00d876 114 $accessor .= "return \%{ $slot || {} } if wantarray;\n";
a41c0667 115 }
116 else{
117 $class->throw_error("Can not auto de-reference the type constraint " . $constraint->name);
118 }
119 }
120
cd00d876 121 $accessor .= "return $slot;\n}\n";
a41c0667 122
c3797828 123 #print "# class ", $class->name, "\n", $accessor, "\n";
2a464664 124 my $code;
125 my $e = do{
126 local $@;
127 $code = eval $accessor;
128 $@;
129 };
130 die $e if $e;
131
ad087d11 132 return $code;
a41c0667 133}
134
2a464664 135sub _generate_reader{
a41c0667 136 my $class = shift;
2a464664 137 return $class->_generate_accessor(@_, 'reader');
a41c0667 138}
139
2a464664 140sub _generate_writer{
a41c0667 141 my $class = shift;
2a464664 142 return $class->_generate_accessor(@_, 'writer');
a41c0667 143}
144
145
2a464664 146sub _generate_predicate {
4ab51fb0 147 my (undef, $attribute, $class) = @_;
a41c0667 148
7b133c92 149 my $slot = $attribute->name;
4ab51fb0 150 return sub{
7b133c92 151 return exists $_[0]->{$slot};
4ab51fb0 152 };
a41c0667 153}
154
2a464664 155sub _generate_clearer {
4ab51fb0 156 my (undef, $attribute, $class) = @_;
a41c0667 157
7b133c92 158 my $slot = $attribute->name;
a41c0667 159
4ab51fb0 160 return sub{
7b133c92 161 delete $_[0]->{$slot};
4ab51fb0 162 };
a41c0667 163}
164
4ab51fb0 165sub _generate_delegation{
166 my (undef, $attribute, $class, $reader, $handle_name, $method_to_call) = @_;
167
168 return sub {
169 my $instance = shift;
170 my $proxy = $instance->$reader();
171
172 my $error = !defined($proxy) ? ' is not defined'
173 : ref($proxy) && !blessed($proxy) ? qq{ is not an object (got '$proxy')}
174 : undef;
175 if ($error) {
176 $instance->meta->throw_error(
177 "Cannot delegate $handle_name to $method_to_call because "
178 . "the value of "
179 . $attribute->name
180 . $error
181 );
182 }
183 $proxy->$method_to_call(@_);
184 };
a41c0667 185}
186
187
1881;
0126c27c 189__END__
a25ca8d6 190
191=head1 NAME
192
193Mouse::Meta::Method::Accessor - A Mouse method generator for accessors
194
195=head1 VERSION
196
9b9e4b65 197This document describes Mouse version 0.39
a25ca8d6 198
199=head1 SEE ALSO
200
201L<Moose::Meta::Method::Accessor>
202
203=cut