ae5d3fb2b9fa3d60f95e33190b3b319fea5f9889
[gitmo/MooseX-StrictConstructor.git] / lib / MooseX / StrictConstructor / Trait / Method / Constructor.pm
1 package MooseX::StrictConstructor::Trait::Method::Constructor;
2
3 use Moose::Role;
4
5 use namespace::autoclean;
6
7 use B ();
8
9 around '_generate_BUILDALL' => sub {
10     my $orig = shift;
11     my $self = shift;
12
13     my $source = $self->$orig();
14     $source .= ";\n" if $source;
15
16     my @attrs = (
17         '__INSTANCE__ => 1,',
18         map { B::perlstring($_) . ' => 1,' }
19         grep {defined}
20         map  { $_->init_arg() } @{ $self->_attributes() }
21     );
22
23     $source .= <<"EOF";
24 my \%attrs = (@attrs);
25
26 my \@bad = sort grep { ! \$attrs{\$_} }  keys \%{ \$params };
27
28 if (\@bad) {
29     Moose->throw_error("Found unknown attribute(s) passed to the constructor: \@bad");
30 }
31 EOF
32
33     return $source;
34 } if $Moose::VERSION < 1.9900;
35
36 around _eval_environment => sub {
37     my $orig = shift;
38     my $self = shift;
39
40     my $env = $self->$orig();
41
42     my %attrs = map { $_ => 1 }
43         grep { defined }
44         map  { $_->init_arg() }
45         $self->associated_metaclass()->get_all_attributes();
46
47     $attrs{__INSTANCE__} = 1;
48
49     $env->{'%allowed_attrs'} = \%attrs;
50
51     return $env;
52 } if $Moose::VERSION >= 1.9900;
53
54 1;
55
56 # ABSTRACT: A role to make immutable constructors strict
57
58 __END__
59
60 =pod
61
62 =head1 DESCRIPTION
63
64 This role simply wraps C<_generate_BUILDALL()> (from
65 C<Moose::Meta::Method::Constructor>) so that immutable classes have a
66 strict constructor.
67
68 =cut
69