Beginning of dzilization
[gitmo/Moose.git] / lib / Moose / Meta / Method / Constructor.pm
CommitLineData
5cf3dbcf 1
2package Moose::Meta::Method::Constructor;
3
4use strict;
5use warnings;
6
0d922627 7use Carp ();
0fa70d03 8use Scalar::Util 'blessed', 'weaken', 'looks_like_number', 'refaddr';
55c361dc 9use Try::Tiny;
5cf3dbcf 10
5cf3dbcf 11our $AUTHORITY = 'cpan:STEVAN';
12
badb7e89 13use base 'Moose::Meta::Method',
bc89e9b5 14 'Class::MOP::Method::Constructor';
5cf3dbcf 15
16sub new {
17 my $class = shift;
18 my %options = @_;
7a5b07b3 19
3e504337 20 my $meta = $options{metaclass};
21
22 (ref $options{options} eq 'HASH')
a9538ac9 23 || $class->throw_error("You must pass a hash of options", data => $options{options});
7a5b07b3 24
1b2aea39 25 ($options{package_name} && $options{name})
a9538ac9 26 || $class->throw_error("You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT");
1b2aea39 27
5cf3dbcf 28 my $self = bless {
d03bd989 29 'body' => undef,
e606ae5f 30 'package_name' => $options{package_name},
31 'name' => $options{name},
e606ae5f 32 'options' => $options{options},
e606ae5f 33 'associated_metaclass' => $meta,
0fa70d03 34 '_expected_method_class' => $options{_expected_method_class} || 'Moose::Object',
5cf3dbcf 35 } => $class;
36
7a5b07b3 37 # we don't want this creating
38 # a cycle in the code, if not
5cf3dbcf 39 # needed
e606ae5f 40 weaken($self->{'associated_metaclass'});
5cf3dbcf 41
f5b0af77 42 $self->_initialize_body;
5cf3dbcf 43
7a5b07b3 44 return $self;
5cf3dbcf 45}
46
5cf3dbcf 47## method
48
f5b0af77 49sub _initialize_body {
5cf3dbcf 50 my $self = shift;
e247d17c 51 $self->{'body'} = $self->_generate_constructor_method_inline;
52}
53
54sub _eval_environment {
55 my $self = shift;
56
57 my $attrs = $self->_attributes;
58
59 my $defaults = [map { $_->default } @$attrs];
60
61 # We need to check if the attribute ->can('type_constraint')
62 # since we may be trying to immutabilize a Moose meta class,
63 # which in turn has attributes which are Class::MOP::Attribute
64 # objects, rather than Moose::Meta::Attribute. And
65 # Class::MOP::Attribute attributes have no type constraints.
66 # However we need to make sure we leave an undef value there
67 # because the inlined code is using the index of the attributes
68 # to determine where to find the type constraint
69
70 my @type_constraints = map {
71 $_->can('type_constraint') ? $_->type_constraint : undef
72 } @$attrs;
73
74 my @type_constraint_bodies = map {
75 defined $_ ? $_->_compiled_type_constraint : undef;
76 } @type_constraints;
77
78 return {
79 '$meta' => \$self,
80 '$attrs' => \$attrs,
81 '$defaults' => \$defaults,
82 '@type_constraints' => \@type_constraints,
83 '@type_constraint_bodies' => \@type_constraint_bodies,
84 };
85}
86
5cf3dbcf 871;
88
ad46f524 89# ABSTRACT: Method Meta Object for constructors
90
5cf3dbcf 91__END__
92
93=pod
94
5cf3dbcf 95=head1 DESCRIPTION
96
cec39889 97This class is a subclass of L<Class::MOP::Method::Constructor> that
cefc9e36 98provides additional Moose-specific functionality
99
100To understand this class, you should read the the
cec39889 101L<Class::MOP::Method::Constructor> documentation as well.
d44714be 102
bc89e9b5 103=head1 INHERITANCE
104
105C<Moose::Meta::Method::Constructor> is a subclass of
106L<Moose::Meta::Method> I<and> L<Class::MOP::Method::Constructor>.
107
c5fc2c21 108=head1 BUGS
109
110See L<Moose/BUGS> for details on reporting bugs.
111
5cf3dbcf 112=cut
113