Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / lib / Mouse / Meta / Method / Constructor.pm
1 package Mouse::Meta::Method::Constructor;
2 use Mouse::Util qw(:meta); # enables strict and warnings
3
4 use constant _MOUSE_DEBUG => $ENV{MOUSE_DEBUG} ? 1 : 0;
5
6 sub _inline_slot{
7     my(undef, $self_var, $attr_name) = @_;
8     return sprintf '%s->{q{%s}}', $self_var, $attr_name;
9 }
10
11 sub _generate_constructor {
12     my ($class, $metaclass, $args) = @_;
13
14     my $associated_metaclass_name = $metaclass->name;
15
16     my $buildall      = $class->_generate_BUILDALL($metaclass);
17     my $buildargs     = $class->_generate_BUILDARGS($metaclass);
18     my $initializer   = $metaclass->{_mouse_cache}{_initialize_object} ||=
19        $class->_generate_initialize_object($metaclass);
20     my $source = sprintf(<<'EOT', __FILE__, $metaclass->name, $buildargs, $buildall);
21 #line 1 "%s"
22         package %s;
23         sub {
24             my $class = shift;
25             return $class->Mouse::Object::new(@_)
26                 if $class ne __PACKAGE__;
27             # BUILDARGS
28             %s;
29             my $instance = bless {}, $class;
30             $metaclass->$initializer($instance, $args, 0);
31             # BUILDALL
32             %s;
33             return $instance;
34         }
35 EOT
36     warn $source if _MOUSE_DEBUG;
37     my $body;
38     my $e = do{
39         local $@;
40         $body = eval $source;
41         $@;
42     };
43     die $e if $e;
44     return $body;
45 }
46
47 sub _generate_initialize_object {
48     my ($method_class, $metaclass) = @_;
49     my @attrs  = $metaclass->get_all_attributes;
50
51     my @checks = map { $_ && $_->_compiled_type_constraint }
52                  map { $_->type_constraint } @attrs;
53
54     my @res;
55
56     my $has_triggers;
57     my $strict = $metaclass->strict_constructor;
58
59     if($strict){
60         push @res, 'my $used = 0;';
61     }
62
63     for my $index (0 .. @attrs - 1) {
64         my $code = '';
65
66         my $attr = $attrs[$index];
67         my $key  = $attr->name;
68
69         my $init_arg        = $attr->init_arg;
70         my $type_constraint = $attr->type_constraint;
71         my $is_weak_ref     = $attr->is_weak_ref;
72         my $need_coercion;
73
74         my $instance_slot  = $method_class->_inline_slot('$instance', $key);
75         my $attr_var       = "\$attrs[$index]";
76         my $constraint_var;
77
78         if(defined $type_constraint){
79              $constraint_var = "$attr_var\->{type_constraint}";
80              $need_coercion  = ($attr->should_coerce && $type_constraint->has_coercion);
81         }
82
83         $code .= "# initialize $key\n";
84
85         my $post_process = '';
86         if(defined $type_constraint){
87             $post_process .= "\$checks[$index]->($instance_slot)\n";
88             $post_process .= "  or $attr_var->_throw_type_constraint_error($instance_slot, $constraint_var);\n";
89         }
90
91         # build cde for an attribute
92         if (defined $init_arg) {
93             my $value = "\$args->{q{$init_arg}}";
94
95             $code .= "if (exists $value) {\n";
96
97             if($need_coercion){
98                 $value = "$constraint_var->coerce($value)";
99             }
100
101             $code .= "$instance_slot = $value;\n";
102             $code .= $post_process;
103
104             if ($attr->has_trigger) {
105                 $has_triggers++;
106                 $code .= "push \@triggers, [$attr_var\->{trigger}, $instance_slot];\n";
107             }
108
109             if ($strict){
110                 $code .= '++$used;' . "\n";
111             }
112
113             $code .= "\n} else {\n"; # $value exists
114         }
115
116         if ($attr->has_default || $attr->has_builder) {
117             unless ($attr->is_lazy) {
118                 my $default = $attr->default;
119                 my $builder = $attr->builder;
120
121                 my $value;
122                 if (defined($builder)) {
123                     $value = "\$instance->$builder()";
124                 }
125                 elsif (ref($default) eq 'CODE') {
126                     $value = "$attr_var\->{default}->(\$instance)";
127                 }
128                 elsif (defined($default)) {
129                     $value = "$attr_var\->{default}";
130                 }
131                 else {
132                     $value = 'undef';
133                 }
134
135                 if($need_coercion){
136                     $value = "$constraint_var->coerce($value)";
137                 }
138
139                 $code .= "$instance_slot = $value;\n";
140                 $code .= $post_process;
141             }
142         }
143         elsif ($attr->is_required) {
144             $code .= "\$meta->throw_error('Attribute ($key) is required')";
145             $code .= "    unless \$is_cloning;\n";
146         }
147
148         $code .= "}\n" if defined $init_arg;
149
150         if($is_weak_ref){
151             $code .= "Scalar::Util::weaken($instance_slot) "
152                    . "if ref $instance_slot;\n";
153         }
154
155         push @res, $code;
156     }
157
158     if($strict){
159         push @res, q{if($used < keys %{$args})}
160             . q{{ $meta->_report_unknown_args(\@attrs, $args) }};
161     }
162
163     if($metaclass->is_anon_class){
164         push @res, q{$instance->{__METACLASS__} = $meta;};
165     }
166
167     if($has_triggers){
168         unshift @res, q{my @triggers;};
169         push    @res, q{$_->[0]->($instance, $_->[1]) for @triggers;};
170     }
171
172     my $source = sprintf <<'EOT', __FILE__, $metaclass->name, join "\n", @res;
173 #line 1 "%s"
174     package %s;
175     sub {
176         my($meta, $instance, $args, $is_cloning) = @_;
177         %s;
178         return $instance;
179     }
180 EOT
181     warn $source if _MOUSE_DEBUG;
182     my $body;
183     my $e = do {
184         local $@;
185         $body = eval $source;
186         $@;
187     };
188     die $e if $e;
189     return $body;
190 }
191
192 sub _generate_BUILDARGS {
193     my(undef, $metaclass) = @_;
194
195     my $class = $metaclass->name;
196     if ( $class->can('BUILDARGS') && $class->can('BUILDARGS') != \&Mouse::Object::BUILDARGS ) {
197         return 'my $args = $class->BUILDARGS(@_)';
198     }
199
200     return <<'...';
201         my $args;
202         if ( scalar @_ == 1 ) {
203             ( ref( $_[0] ) eq 'HASH' )
204                 || Carp::confess "Single parameters to new() must be a HASH ref";
205             $args = +{ %{ $_[0] } };
206         }
207         else {
208             $args = +{@_};
209         }
210 ...
211 }
212
213 sub _generate_BUILDALL {
214     my (undef, $metaclass) = @_;
215
216     return '' unless $metaclass->name->can('BUILD');
217
218     my @code;
219     for my $class ($metaclass->linearized_isa) {
220         if (Mouse::Util::get_code_ref($class, 'BUILD')) {
221             unshift  @code, qq{${class}::BUILD(\$instance, \$args);};
222         }
223     }
224     return join "\n", @code;
225 }
226
227 1;
228 __END__
229
230 =head1 NAME
231
232 Mouse::Meta::Method::Constructor - A Mouse method generator for constructors
233
234 =head1 VERSION
235
236 This document describes Mouse version 0.95
237
238 =head1 SEE ALSO
239
240 L<Moose::Meta::Method::Constructor>
241
242 =cut