bump version to 0.89_02 and set release date
[gitmo/Moose.git] / lib / Moose / Meta / Method / Constructor.pm
CommitLineData
5cf3dbcf 1
2package Moose::Meta::Method::Constructor;
3
4use strict;
5use warnings;
6
0fa70d03 7use Scalar::Util 'blessed', 'weaken', 'looks_like_number', 'refaddr';
5cf3dbcf 8
6e56c6e0 9our $VERSION = '0.89_02';
5cf3dbcf 10our $AUTHORITY = 'cpan:STEVAN';
11
badb7e89 12use base 'Moose::Meta::Method',
bc89e9b5 13 'Class::MOP::Method::Constructor';
5cf3dbcf 14
15sub new {
16 my $class = shift;
17 my %options = @_;
7a5b07b3 18
3e504337 19 my $meta = $options{metaclass};
20
21 (ref $options{options} eq 'HASH')
a9538ac9 22 || $class->throw_error("You must pass a hash of options", data => $options{options});
7a5b07b3 23
1b2aea39 24 ($options{package_name} && $options{name})
a9538ac9 25 || $class->throw_error("You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT");
1b2aea39 26
5cf3dbcf 27 my $self = bless {
d03bd989 28 'body' => undef,
e606ae5f 29 'package_name' => $options{package_name},
30 'name' => $options{name},
e606ae5f 31 'options' => $options{options},
e606ae5f 32 'associated_metaclass' => $meta,
0fa70d03 33 '_expected_method_class' => $options{_expected_method_class} || 'Moose::Object',
5cf3dbcf 34 } => $class;
35
7a5b07b3 36 # we don't want this creating
37 # a cycle in the code, if not
5cf3dbcf 38 # needed
e606ae5f 39 weaken($self->{'associated_metaclass'});
5cf3dbcf 40
f5b0af77 41 $self->_initialize_body;
5cf3dbcf 42
7a5b07b3 43 return $self;
5cf3dbcf 44}
45
308e04fa 46# This is here so can_be_inlined can be inherited by MooseX modules.
47sub _expected_constructor_class {
48 return 'Moose::Object';
49}
50
5cf3dbcf 51## method
52
f5b0af77 53sub _initialize_body {
5cf3dbcf 54 my $self = shift;
55 # TODO:
7a5b07b3 56 # the %options should also include a both
57 # a call 'initializer' and call 'SUPER::'
58 # options, which should cover approx 90%
59 # of the possible use cases (even if it
60 # requires some adaption on the part of
5cf3dbcf 61 # the author, after all, nothing is free)
62 my $source = 'sub {';
5d27ac73 63 $source .= "\n" . 'my $_instance = shift;';
64 $source .= "\n" . 'my $class = Scalar::Util::blessed($_instance) || $_instance;';
7a5b07b3 65
587ae0d2 66 $source .= "\n" . 'return $class->Moose::Object::new(@_)';
d03bd989 67 $source .= "\n if \$class ne '" . $self->associated_metaclass->name
ac070e13 68 . "';\n";
93e98578 69
ac070e13 70 $source .= $self->_generate_params('$params', '$class');
71 $source .= $self->_generate_instance('$instance', '$class');
72 $source .= $self->_generate_slot_initializers;
7a5b07b3 73
ac070e13 74 $source .= $self->_generate_triggers();
5cf3dbcf 75 $source .= ";\n" . $self->_generate_BUILDALL();
7a5b07b3 76
ac070e13 77 $source .= ";\nreturn \$instance";
7a5b07b3 78 $source .= ";\n" . '}';
79 warn $source if $self->options->{debug};
80
5442a061 81 # We need to check if the attribute ->can('type_constraint')
82 # since we may be trying to immutabilize a Moose meta class,
83 # which in turn has attributes which are Class::MOP::Attribute
84 # objects, rather than Moose::Meta::Attribute. And
85 # Class::MOP::Attribute attributes have no type constraints.
86 # However we need to make sure we leave an undef value there
87 # because the inlined code is using the index of the attributes
88 # to determine where to find the type constraint
89
0772362a 90 my $attrs = $self->_attributes;
5442a061 91
92 my @type_constraints = map {
93 $_->can('type_constraint') ? $_->type_constraint : undef
94 } @$attrs;
95
96 my @type_constraint_bodies = map {
97 defined $_ ? $_->_compiled_type_constraint : undef;
98 } @type_constraints;
99
34aab661 100 my ( $code, $e ) = $self->_compile_code(
5442a061 101 code => $source,
102 environment => {
103 '$meta' => \$self,
104 '$attrs' => \$attrs,
105 '@type_constraints' => \@type_constraints,
106 '@type_constraint_bodies' => \@type_constraint_bodies,
107 },
34aab661 108 );
109
110 $self->throw_error(
111 "Could not eval the constructor :\n\n$source\n\nbecause :\n\n$e",
112 error => $e, data => $source )
113 if $e;
d03bd989 114
e606ae5f 115 $self->{'body'} = $code;
116}
117
b905f0db 118sub _generate_params {
119 my ( $self, $var, $class_var ) = @_;
120 "my $var = " . $self->_generate_BUILDARGS( $class_var, '@_' ) . ";\n";
121}
122
123sub _generate_instance {
124 my ( $self, $var, $class_var ) = @_;
125 "my $var = "
0772362a 126 . $self->_meta_instance->inline_create_instance($class_var) . ";\n";
b905f0db 127}
128
129sub _generate_slot_initializers {
130 my ($self) = @_;
131 return (join ";\n" => map {
132 $self->_generate_slot_initializer($_)
0772362a 133 } 0 .. (@{$self->_attributes} - 1)) . ";\n";
b905f0db 134}
135
e606ae5f 136sub _generate_BUILDARGS {
137 my ( $self, $class, $args ) = @_;
138
139 my $buildargs = $self->associated_metaclass->find_method_by_name("BUILDARGS");
140
141 if ( $args eq '@_' and ( !$buildargs or $buildargs->body == \&Moose::Object::BUILDARGS ) ) {
142 return join("\n",
143 'do {',
144 $self->_inline_throw_error('"Single parameters to new() must be a HASH ref"', 'data => $_[0]'),
a62dcd43 145 ' if scalar @_ == 1 && !( defined $_[0] && ref $_[0] eq q{HASH} );',
e606ae5f 146 '(scalar @_ == 1) ? {%{$_[0]}} : {@_};',
147 '}',
148 );
149 } else {
150 return $class . "->BUILDARGS($args)";
151 }
5cf3dbcf 152}
153
154sub _generate_BUILDALL {
155 my $self = shift;
156 my @BUILD_calls;
1f779926 157 foreach my $method (reverse $self->associated_metaclass->find_all_methods_by_name('BUILD')) {
e606ae5f 158 push @BUILD_calls => '$instance->' . $method->{class} . '::BUILD($params)';
5cf3dbcf 159 }
7a5b07b3 160 return join ";\n" => @BUILD_calls;
5cf3dbcf 161}
162
1b55c340 163sub _generate_triggers {
164 my $self = shift;
165 my @trigger_calls;
0772362a 166 foreach my $i ( 0 .. $#{ $self->_attributes } ) {
167 my $attr = $self->_attributes->[$i];
708b4070 168
169 next unless $attr->can('has_trigger') && $attr->has_trigger;
170
171 my $init_arg = $attr->init_arg;
172
173 next unless defined $init_arg;
174
175 push @trigger_calls => '(exists $params->{\''
176 . $init_arg
177 . '\'}) && do {'
178 . "\n "
179 . '$attrs->['
180 . $i
181 . ']->trigger->('
182 . '$instance, '
0772362a 183 . $self->_meta_instance->inline_get_slot_value(
708b4070 184 '$instance',
185 $attr->name,
186 )
187 . ', '
c2685d20 188 . ');' . "\n}";
1b55c340 189 }
708b4070 190
191 return join ";\n" => @trigger_calls;
1b55c340 192}
193
5cf3dbcf 194sub _generate_slot_initializer {
195 my $self = shift;
196 my $index = shift;
7a5b07b3 197
0772362a 198 my $attr = $self->_attributes->[$index];
7a5b07b3 199
5cf3dbcf 200 my @source = ('## ' . $attr->name);
d66bea3c 201
202 my $is_moose = $attr->isa('Moose::Meta::Attribute'); # XXX FIXME
7a5b07b3 203
84981146 204 if ($is_moose && defined($attr->init_arg) && $attr->is_required && !$attr->has_default && !$attr->has_builder) {
e606ae5f 205 push @source => ('(exists $params->{\'' . $attr->init_arg . '\'}) ' .
3e504337 206 '|| ' . $self->_inline_throw_error('"Attribute (' . $attr->name . ') is required"') .';');
5cf3dbcf 207 }
7a5b07b3 208
ca168e89 209 if (($attr->has_default || $attr->has_builder) && !($is_moose && $attr->is_lazy)) {
7a5b07b3 210
84981146 211 if ( defined( my $init_arg = $attr->init_arg ) ) {
e606ae5f 212 push @source => 'if (exists $params->{\'' . $init_arg . '\'}) {';
213 push @source => ('my $val = $params->{\'' . $init_arg . '\'};');
214 push @source => $self->_generate_type_constraint_and_coercion($attr, $index)
215 if $is_moose;
216 push @source => $self->_generate_slot_assignment($attr, '$val', $index);
84981146 217 push @source => "} else {";
218 }
ca168e89 219 my $default;
97e11ef5 220 if ( $attr->has_default ) {
ca168e89 221 $default = $self->_generate_default_value($attr, $index);
d03bd989 222 }
97e11ef5 223 else {
ca168e89 224 my $builder = $attr->builder;
225 $default = '$instance->' . $builder;
226 }
d03bd989 227
3db3ea82 228 push @source => '{'; # wrap this to avoid my $val overwrite warnings
5cf3dbcf 229 push @source => ('my $val = ' . $default . ';');
e606ae5f 230 push @source => $self->_generate_type_constraint_and_coercion($attr, $index)
d03bd989 231 if $is_moose;
51c107ef 232 push @source => $self->_generate_slot_assignment($attr, '$val', $index);
d03bd989 233 push @source => '}'; # close - wrap this to avoid my $val overrite warnings
7a5b07b3 234
84981146 235 push @source => "}" if defined $attr->init_arg;
7a5b07b3 236 }
84981146 237 elsif ( defined( my $init_arg = $attr->init_arg ) ) {
e606ae5f 238 push @source => '(exists $params->{\'' . $init_arg . '\'}) && do {';
8ecb1fa0 239
e606ae5f 240 push @source => ('my $val = $params->{\'' . $init_arg . '\'};');
d66bea3c 241 if ($is_moose && $attr->has_type_constraint) {
7a5b07b3 242 if ($attr->should_coerce && $attr->type_constraint->has_coercion) {
688fcdda 243 push @source => $self->_generate_type_coercion(
d03bd989 244 $attr,
245 '$type_constraints[' . $index . ']',
246 '$val',
688fcdda 247 '$val'
248 );
8ecb1fa0 249 }
688fcdda 250 push @source => $self->_generate_type_constraint_check(
d03bd989 251 $attr,
252 '$type_constraint_bodies[' . $index . ']',
253 '$type_constraints[' . $index . ']',
688fcdda 254 '$val'
255 );
8ecb1fa0 256 }
9df136d0 257 push @source => $self->_generate_slot_assignment($attr, '$val', $index);
7a5b07b3 258
259 push @source => "}";
5cf3dbcf 260 }
7a5b07b3 261
5cf3dbcf 262 return join "\n" => @source;
263}
264
265sub _generate_slot_assignment {
9df136d0 266 my ($self, $attr, $value, $index) = @_;
267
268 my $source;
d03bd989 269
9df136d0 270 if ($attr->has_initializer) {
271 $source = (
272 '$attrs->[' . $index . ']->set_initial_value($instance, ' . $value . ');'
d03bd989 273 );
9df136d0 274 }
275 else {
276 $source = (
0772362a 277 $self->_meta_instance->inline_set_slot_value(
9df136d0 278 '$instance',
eae37c67 279 $attr->name,
9df136d0 280 $value
281 ) . ';'
d03bd989 282 );
9df136d0 283 }
d03bd989 284
285 my $is_moose = $attr->isa('Moose::Meta::Attribute'); # XXX FIXME
7a5b07b3 286
d66bea3c 287 if ($is_moose && $attr->is_weak_ref) {
5cf3dbcf 288 $source .= (
289 "\n" .
0772362a 290 $self->_meta_instance->inline_weaken_slot_value(
7a5b07b3 291 '$instance',
eae37c67 292 $attr->name
7a5b07b3 293 ) .
5cf3dbcf 294 ' if ref ' . $value . ';'
7a5b07b3 295 );
296 }
297
5cf3dbcf 298 return $source;
299}
300
e606ae5f 301sub _generate_type_constraint_and_coercion {
302 my ($self, $attr, $index) = @_;
d03bd989 303
e606ae5f 304 return unless $attr->has_type_constraint;
d03bd989 305
e606ae5f 306 my @source;
307 if ($attr->should_coerce && $attr->type_constraint->has_coercion) {
308 push @source => $self->_generate_type_coercion(
309 $attr,
310 '$type_constraints[' . $index . ']',
311 '$val',
312 '$val'
313 );
314 }
315 push @source => $self->_generate_type_constraint_check(
316 $attr,
317 ('$type_constraint_bodies[' . $index . ']'),
d03bd989 318 ('$type_constraints[' . $index . ']'),
e606ae5f 319 '$val'
320 );
321 return @source;
322}
323
5cf3dbcf 324sub _generate_type_coercion {
325 my ($self, $attr, $type_constraint_name, $value_name, $return_value_name) = @_;
326 return ($return_value_name . ' = ' . $type_constraint_name . '->coerce(' . $value_name . ');');
327}
328
329sub _generate_type_constraint_check {
688fcdda 330 my ($self, $attr, $type_constraint_cv, $type_constraint_obj, $value_name) = @_;
5cf3dbcf 331 return (
3e504337 332 $self->_inline_throw_error('"Attribute (' # FIXME add 'dad'
d03bd989 333 . $attr->name
334 . ') does not pass the type constraint because: " . '
3e504337 335 . $type_constraint_obj . '->get_message(' . $value_name . ')')
336 . "\n\t unless " . $type_constraint_cv . '->(' . $value_name . ');'
7a5b07b3 337 );
5cf3dbcf 338}
339
340sub _generate_default_value {
341 my ($self, $attr, $index) = @_;
342 # NOTE:
343 # default values can either be CODE refs
7a5b07b3 344 # in which case we need to call them. Or
5cf3dbcf 345 # they can be scalars (strings/numbers)
346 # in which case we can just deal with them
347 # in the code we eval.
348 if ($attr->is_default_a_coderef) {
349 return '$attrs->[' . $index . ']->default($instance)';
350 }
351 else {
4aa3d405 352 return q{"} . quotemeta( $attr->default ) . q{"};
7a5b07b3 353 }
5cf3dbcf 354}
355
3561;
357
5cf3dbcf 358__END__
359
360=pod
361
7a5b07b3 362=head1 NAME
5cf3dbcf 363
364Moose::Meta::Method::Constructor - Method Meta Object for constructors
365
5cf3dbcf 366=head1 DESCRIPTION
367
cefc9e36 368This class is a subclass of L<Class::MOP::Class::Constructor> that
369provides additional Moose-specific functionality
370
371To understand this class, you should read the the
372L<Class::MOP::Class::Constructor> documentation as well.
d44714be 373
bc89e9b5 374=head1 INHERITANCE
375
376C<Moose::Meta::Method::Constructor> is a subclass of
377L<Moose::Meta::Method> I<and> L<Class::MOP::Method::Constructor>.
378
5cf3dbcf 379=head1 AUTHORS
380
381Stevan Little E<lt>stevan@iinteractive.comE<gt>
382
383=head1 COPYRIGHT AND LICENSE
384
2840a3b2 385Copyright 2006-2009 by Infinity Interactive, Inc.
5cf3dbcf 386
387L<http://www.iinteractive.com>
388
389This library is free software; you can redistribute it and/or modify
7a5b07b3 390it under the same terms as Perl itself.
5cf3dbcf 391
392=cut
393