bump version to 1.04
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Constructor.pm
CommitLineData
d90b42a6 1
2package Class::MOP::Method::Constructor;
3
4use strict;
5use warnings;
6
7use Carp 'confess';
8use Scalar::Util 'blessed', 'weaken', 'looks_like_number';
9
67f694ad 10our $VERSION = '1.04';
d519662a 11$VERSION = eval $VERSION;
d90b42a6 12our $AUTHORITY = 'cpan:STEVAN';
13
29d4e92a 14use base 'Class::MOP::Method::Inlined';
d90b42a6 15
16sub new {
17 my $class = shift;
18 my %options = @_;
8d2d4c67 19
ad315b75 20 (blessed $options{metaclass} && $options{metaclass}->isa('Class::MOP::Class'))
21 || confess "You must pass a metaclass instance if you want to inline"
8d2d4c67 22 if $options{is_inline};
23
b38f3848 24 ($options{package_name} && $options{name})
32202ce2 25 || confess "You must supply the package_name and name parameters $Class::MOP::Method::UPGRADE_ERROR_TEXT";
b38f3848 26
0bfc85b8 27 my $self = $class->_new(\%options);
d90b42a6 28
8d2d4c67 29 # we don't want this creating
30 # a cycle in the code, if not
d90b42a6 31 # needed
8683db0e 32 weaken($self->{'associated_metaclass'});
d90b42a6 33
8f7852d8 34 $self->_initialize_body;
d90b42a6 35
8d2d4c67 36 return $self;
d90b42a6 37}
38
28b97bef 39sub _new {
0bfc85b8 40 my $class = shift;
812d58f9 41
ec9e38e5 42 return Class::MOP::Class->initialize($class)->new_object(@_)
812d58f9 43 if $class ne __PACKAGE__;
ec9e38e5 44
45 my $params = @_ == 1 ? $_[0] : {@_};
46
47 return bless {
48 # inherited from Class::MOP::Method
49 body => $params->{body},
50 # associated_metaclass => $params->{associated_metaclass}, # overriden
51 package_name => $params->{package_name},
52 name => $params->{name},
53 original_method => $params->{original_method},
54
55 # inherited from Class::MOP::Generated
56 is_inline => $params->{is_inline} || 0,
57 definition_context => $params->{definition_context},
58
59 # inherited from Class::MOP::Inlined
60 _expected_method_class => $params->{_expected_method_class},
61
62 # defined in this subclass
63 options => $params->{options} || {},
64 associated_metaclass => $params->{metaclass},
28b97bef 65 }, $class;
66}
67
8d2d4c67 68## accessors
c23184fc 69
8683db0e 70sub options { (shift)->{'options'} }
71sub associated_metaclass { (shift)->{'associated_metaclass'} }
c23184fc 72
565f0cbb 73## cached values ...
d90b42a6 74
5a49fb79 75sub _meta_instance {
565f0cbb 76 my $self = shift;
8683db0e 77 $self->{'meta_instance'} ||= $self->associated_metaclass->get_meta_instance;
565f0cbb 78}
c23184fc 79
780f14c2 80sub _attributes {
565f0cbb 81 my $self = shift;
2620be77 82 $self->{'attributes'} ||= [ $self->associated_metaclass->get_all_attributes ]
565f0cbb 83}
d90b42a6 84
85## method
86
8f7852d8 87sub _initialize_body {
565f0cbb 88 my $self = shift;
ecb874a0 89 my $method_name = '_generate_constructor_method';
8d2d4c67 90
565f0cbb 91 $method_name .= '_inline' if $self->is_inline;
8d2d4c67 92
8683db0e 93 $self->{'body'} = $self->$method_name;
565f0cbb 94}
95
ecb874a0 96sub _generate_constructor_method {
2a2b8458 97 return sub { Class::MOP::Class->initialize(shift)->new_object(@_) }
565f0cbb 98}
99
ecb874a0 100sub _generate_constructor_method_inline {
d90b42a6 101 my $self = shift;
565f0cbb 102
0c6f3280 103 my $close_over = {};
104
d90b42a6 105 my $source = 'sub {';
26ffbb36 106 $source .= "\n" . 'my $class = shift;';
8d2d4c67 107
26ffbb36 108 $source .= "\n" . 'return Class::MOP::Class->initialize($class)->new_object(@_)';
8d2d4c67 109 $source .= "\n" . ' if $class ne \'' . $self->associated_metaclass->name . '\';';
110
26ffbb36 111 $source .= "\n" . 'my $params = @_ == 1 ? $_[0] : {@_};';
112
5a49fb79 113 $source .= "\n" . 'my $instance = ' . $self->_meta_instance->inline_create_instance('$class');
8d2d4c67 114 $source .= ";\n" . (join ";\n" => map {
82cff1ae 115 $self->_generate_slot_initializer($_, $close_over)
780f14c2 116 } @{ $self->_attributes });
d90b42a6 117 $source .= ";\n" . 'return $instance';
8d2d4c67 118 $source .= ";\n" . '}';
119 warn $source if $self->options->{debug};
120
e24b19fb 121 my ( $code, $e ) = $self->_eval_closure(
ffe92c8b 122 $close_over,
123 $source
124 );
e24b19fb 125 confess "Could not eval the constructor :\n\n$source\n\nbecause :\n\n$e" if $e;
a6eef5a3 126
127 return $code;
d90b42a6 128}
129
130sub _generate_slot_initializer {
131 my $self = shift;
64adcd8d 132 my $attr = shift;
82cff1ae 133 my $close = shift;
8d2d4c67 134
d90b42a6 135 my $default;
136 if ($attr->has_default) {
137 # NOTE:
138 # default values can either be CODE refs
8d2d4c67 139 # in which case we need to call them. Or
d90b42a6 140 # they can be scalars (strings/numbers)
141 # in which case we can just deal with them
142 # in the code we eval.
143 if ($attr->is_default_a_coderef) {
82cff1ae 144 my $idx = @{$close->{'@defaults'}||=[]};
145 push(@{$close->{'@defaults'}}, $attr->default);
146 $default = '$defaults[' . $idx . ']->($instance)';
d90b42a6 147 }
148 else {
149 $default = $attr->default;
150 # make sure to quote strings ...
151 unless (looks_like_number($default)) {
152 $default = "'$default'";
153 }
154 }
8d2d4c67 155 } elsif( $attr->has_builder ) {
156 $default = '$instance->'.$attr->builder;
d90b42a6 157 }
8d2d4c67 158
2f2329a4 159 if ( defined(my $init_arg = $attr->init_arg) ) {
c16c9c1b 160 return (
2f2329a4 161 'if(exists $params->{\'' . $init_arg . '\'}){' . "\n" .
5a49fb79 162 $self->_meta_instance->inline_set_slot_value(
c16c9c1b 163 '$instance',
e9a19694 164 $attr->name,
2f2329a4 165 '$params->{\'' . $init_arg . '\'}' ) . "\n" .
c16c9c1b 166 '} ' . (!defined $default ? '' : 'else {' . "\n" .
5a49fb79 167 $self->_meta_instance->inline_set_slot_value(
c16c9c1b 168 '$instance',
e9a19694 169 $attr->name,
c16c9c1b 170 $default ) . "\n" .
171 '}')
172 );
173 } elsif ( defined $default ) {
174 return (
5a49fb79 175 $self->_meta_instance->inline_set_slot_value(
c16c9c1b 176 '$instance',
e9a19694 177 $attr->name,
c16c9c1b 178 $default ) . "\n"
179 );
180 } else { return '' }
d90b42a6 181}
182
1831;
184
d90b42a6 185__END__
186
187=pod
188
8d2d4c67 189=head1 NAME
d90b42a6 190
191Class::MOP::Method::Constructor - Method Meta Object for constructors
192
193=head1 SYNOPSIS
194
96e38ba6 195 use Class::MOP::Method::Constructor;
8d2d4c67 196
96e38ba6 197 my $constructor = Class::MOP::Method::Constructor->new(
8d2d4c67 198 metaclass => $metaclass,
96e38ba6 199 options => {
200 debug => 1, # this is all for now
8d2d4c67 201 },
96e38ba6 202 );
8d2d4c67 203
96e38ba6 204 # calling the constructor ...
b7045e66 205 $constructor->body->execute($metaclass->name, %params);
8d2d4c67 206
d90b42a6 207=head1 DESCRIPTION
208
3fd960d9 209This is a subclass of C<Class::MOP::Method> which generates
210constructor methods.
96e38ba6 211
d90b42a6 212=head1 METHODS
213
214=over 4
215
3fd960d9 216=item B<< Class::MOP::Method::Constructor->new(%options) >>
d90b42a6 217
3fd960d9 218This creates a new constructor object. It accepts a hash reference of
219options.
96e38ba6 220
3fd960d9 221=over 8
96e38ba6 222
3fd960d9 223=item * metaclass
96e38ba6 224
3fd960d9 225This should be a L<Class::MOP::Class> object. It is required.
c23184fc 226
3fd960d9 227=item * name
d90b42a6 228
3fd960d9 229The method name (without a package name). This is required.
96e38ba6 230
3fd960d9 231=item * package_name
d90b42a6 232
3fd960d9 233The package name for the method. This is required.
c23184fc 234
3fd960d9 235=item * is_inline
96e38ba6 236
3fd960d9 237This indicates whether or not the constructor should be inlined. This
238defaults to false.
d90b42a6 239
3fd960d9 240=back
f0de47d9 241
3fd960d9 242=item B<< $metamethod->is_inline >>
f0de47d9 243
3fd960d9 244Returns a boolean indicating whether or not the constructor is
245inlined.
d90b42a6 246
3fd960d9 247=item B<< $metamethod->associated_metaclass >>
96e38ba6 248
3fd960d9 249This returns the L<Class::MOP::Class> object for the method.
d90b42a6 250
565f0cbb 251=back
252
d90b42a6 253=head1 AUTHORS
254
255Stevan Little E<lt>stevan@iinteractive.comE<gt>
256
257=head1 COPYRIGHT AND LICENSE
258
3e2c8600 259Copyright 2006-2010 by Infinity Interactive, Inc.
d90b42a6 260
261L<http://www.iinteractive.com>
262
263This library is free software; you can redistribute it and/or modify
8d2d4c67 264it under the same terms as Perl itself.
d90b42a6 265
266=cut
267