Do not recreate hash on every construction
[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     my $MY = 'my';
24     if ($] >= 5.009004) {
25         $source .= "use feature 'state';\n";
26         $MY = 'state';
27     }
28
29     $source .= <<"EOF";
30 $MY \$attrs = { @attrs };
31 if (my \@bad = sort grep { ! \$attrs->{\$_} } keys %\$params) {
32     Moose->throw_error("Found unknown attribute(s) passed to the constructor: \@bad");
33 }
34 EOF
35
36     return $source;
37 };
38
39 1;
40
41 # ABSTRACT: A role to make immutable constructors strict
42
43 __END__
44
45 =pod
46
47 =head1 DESCRIPTION
48
49 This role simply wraps C<_generate_BUILDALL()> (from
50 C<Moose::Meta::Method::Constructor>) so that immutable classes have a
51 strict constructor.
52
53 =cut
54