Fixes to work with latest Moose.
[gitmo/MooseX-Singleton.git] / lib / MooseX / Singleton / Meta / Method / Constructor.pm
1 #!/usr/bin/env perl
2 package MooseX::Singleton::Meta::Method::Constructor;
3 use Moose;
4
5 extends 'Moose::Meta::Method::Constructor';
6
7 sub initialize_body {
8     my $self = shift;
9     # TODO:
10     # the %options should also include a both
11     # a call 'initializer' and call 'SUPER::'
12     # options, which should cover approx 90%
13     # of the possible use cases (even if it
14     # requires some adaption on the part of
15     # the author, after all, nothing is free)
16     my $source = 'sub {';
17     $source .= "\n" . 'my $class = shift;';
18
19     $source .= "\n" . 'my $existing = do { no strict "refs"; \${"$class\::singleton"}; };';
20     $source .= "\n" . 'return ${$existing} if ${$existing};';
21
22     $source .= "\n" . 'return $class->Moose::Object::new(@_)';
23     $source .= "\n" . '    if $class ne \'' . $self->associated_metaclass->name . '\';';
24
25     $source .= "\n" . 'my $params = ' . $self->_generate_BUILDARGS('$class', '@_');
26
27     $source .= ";\n" . 'my $instance = ' . $self->meta_instance->inline_create_instance('$class');
28
29     $source .= ";\n" . (join ";\n" => map {
30         $self->_generate_slot_initializer($_)
31     } 0 .. (@{$self->attributes} - 1));
32
33     $source .= ";\n" . $self->_generate_triggers();
34     $source .= ";\n" . $self->_generate_BUILDALL();
35
36     $source .= ";\n" . 'return ${$existing} = $instance';
37     $source .= ";\n" . '}';
38     warn $source if $self->options->{debug};
39
40     my $code;
41     {
42         my $meta = $self;
43
44         # NOTE:
45         # create the nessecary lexicals
46         # to be picked up in the eval
47         my $attrs = $self->attributes;
48
49         # We need to check if the attribute ->can('type_constraint')
50         # since we may be trying to immutabilize a Moose meta class,
51         # which in turn has attributes which are Class::MOP::Attribute
52         # objects, rather than Moose::Meta::Attribute. And 
53         # Class::MOP::Attribute attributes have no type constraints.
54         # However we need to make sure we leave an undef value there
55         # because the inlined code is using the index of the attributes
56         # to determine where to find the type constraint
57         
58         my @type_constraints = map { 
59             $_->can('type_constraint') ? $_->type_constraint : undef
60         } @$attrs;
61         
62         my @type_constraint_bodies = map {
63             defined $_ ? $_->_compiled_type_constraint : undef;
64         } @type_constraints;
65
66         $code = eval $source;
67         confess "Could not eval the constructor :\n\n$source\n\nbecause :\n\n$@" if $@;
68     }
69     $self->{'body'} = $code;
70 }
71
72 no Moose;
73
74 1;