handle non-lazy default and builder when init_arg is undef
[gitmo/Role-Tiny.git] / lib / Method / Generate / Constructor.pm
CommitLineData
6f68f022 1package Method::Generate::Constructor;
2
3use strictures 1;
4use Sub::Quote;
b1eebd55 5use base qw(Moo::Object);
14f32032 6use Sub::Defer;
a16d301e 7use B 'perlstring';
6f68f022 8
96d3f07a 9sub register_attribute_specs {
10 my ($self, %spec) = @_;
11 @{$self->{attribute_specs}||={}}{keys %spec} = values %spec;
12 $self;
13}
14
15sub all_attribute_specs {
16 $_[0]->{attribute_specs}
14f32032 17}
18
a16d301e 19sub accessor_generator {
20 $_[0]->{accessor_generator}
21}
22
de5c0e53 23sub construction_string {
24 my ($self) = @_;
25 $self->{construction_string} or 'bless({}, $class);'
26}
27
14f32032 28sub install_delayed {
29 my ($self) = @_;
30 my $package = $self->{package};
31 defer_sub "${package}::new" => sub {
32 unquote_sub $self->generate_method(
33 $package, 'new', $self->{attribute_specs}, { no_install => 1 }
34 )
35 };
36 $self;
37}
6f68f022 38
39sub generate_method {
40 my ($self, $into, $name, $spec, $quote_opts) = @_;
41 foreach my $no_init (grep !exists($spec->{$_}{init_arg}), keys %$spec) {
42 $spec->{$no_init}{init_arg} = $no_init;
43 }
a16d301e 44 local $self->{captures} = {};
6f68f022 45 my $body = ' my $class = shift;'."\n";
46 $body .= $self->_generate_args;
47 $body .= $self->_check_required($spec);
de5c0e53 48 $body .= ' my $new = '.$self->construction_string.";\n";
6f68f022 49 $body .= $self->_assign_new($spec);
077bd026 50 if ($into->can('BUILD')) {
51 require Method::Generate::BuildAll;
52 $body .= Method::Generate::BuildAll->new->buildall_body_for(
53 $into, '$new', '$args'
54 );
55 }
4053679e 56 $body .= ' return $new;'."\n";
6f68f022 57 quote_sub
4053679e 58 "${into}::${name}" => $body,
a16d301e 59 $self->{captures}, $quote_opts||{}
6f68f022 60 ;
61}
62
3a9a65a4 63sub _cap_call {
64 my ($self, $code, $captures) = @_;
65 @{$self->{captures}}{keys %$captures} = values %$captures if $captures;
66 $code;
67}
68
6f68f022 69sub _generate_args {
70 my ($self) = @_;
71 q{ my $args = ref($_[0]) eq 'HASH' ? $_[0] : { @_ };}."\n";
72}
73
74sub _assign_new {
75 my ($self, $spec) = @_;
46389f86 76 my (@init, @slots, %test);
3a9a65a4 77 my $ag = $self->accessor_generator;
46389f86 78 NAME: foreach my $name (sort keys %$spec) {
6f68f022 79 my $attr_spec = $spec->{$name};
3a9a65a4 80 unless ($ag->is_simple_attribute($name, $attr_spec)) {
d02da2bc 81 next NAME unless defined($attr_spec->{init_arg})
82 or (($attr_spec->{default} or $attr_spec->{builder})
83 and not $attr_spec->{lazy});
84 $test{$name} = $attr_spec->{init_arg};
46389f86 85 next NAME;
86 }
d02da2bc 87 next NAME unless defined(my $i = $attr_spec->{init_arg});
46389f86 88 push @init, $i;
6f68f022 89 push @slots, $name;
90 }
649ac264 91 return '' unless @init or %test;
46389f86 92 join '', (
93 @init
3a9a65a4 94 ? ' '.$self->_cap_call($ag->generate_multi_set(
5d349892 95 '$new', [ @slots ], '@{$args}{qw('.join(' ',@init).')}'
96 )).";\n"
46389f86 97 : ''
98 ), map {
99 my $arg_key = perlstring($test{$_});
649ac264 100 my $test = "exists \$args->{$arg_key}";
101 my $source = "\$args->{$arg_key}";
102 my $attr_spec = $spec->{$_};
3a9a65a4 103 $self->_cap_call($ag->generate_populate_set(
104 '$new', $_, $attr_spec, $source, $test
105 ));
46389f86 106 } sort keys %test;
6f68f022 107}
108
109sub _check_required {
110 my ($self, $spec) = @_;
111 my @required_init =
112 map $spec->{$_}{init_arg},
113 grep $spec->{$_}{required},
6d377074 114 sort keys %$spec;
6f68f022 115 return '' unless @required_init;
116 ' if (my @missing = grep !exists $args->{$_}, qw('
117 .join(' ',@required_init).')) {'."\n"
118 .q{ die "Missing required arguments: ".join(', ', sort @missing);}."\n"
119 ." }\n";
120}
121
6d377074 122sub _check_isa {
123 my ($self, $spec) = @_;
124 my $acc = $self->accessor_generator;
125 my $captures = $self->{captures};
126 my $check = '';
127 foreach my $name (sort keys %$spec) {
128 my ($init, $isa) = @{$spec->{$name}}{qw(init_arg isa)};
129 next unless $init and $isa;
130 my $init_str = perlstring($init);
131 my ($code, $add_captures) = $acc->generate_isa_check(
132 $name, "\$args->{${init_str}}", $isa
133 );
134 @{$captures}{keys %$add_captures} = values %$add_captures;
649ac264 135 $check .= " ${code}".(
136 (not($spec->{lazy}) and ($spec->{default} or $spec->{builder})
137 ? ";\n"
138 : "if exists \$args->{${init_str}};\n"
139 )
140 );
6d377074 141 }
142 return $check;
143}
144
a16d301e 145sub _fire_triggers {
146 my ($self, $spec) = @_;
a16d301e 147 my $acc = $self->accessor_generator;
148 my $captures = $self->{captures};
149 my $fire = '';
6d377074 150 foreach my $name (sort keys %$spec) {
a16d301e 151 my ($init, $trigger) = @{$spec->{$name}}{qw(init_arg trigger)};
152 next unless $init && $trigger;
153 my ($code, $add_captures) = $acc->generate_trigger(
154 $name, '$new', $acc->generate_simple_get('$new', $name), $trigger
155 );
156 @{$captures}{keys %$add_captures} = values %$add_captures;
157 $fire .= " ${code} if exists \$args->{${\perlstring $init}};\n";
158 }
159 return $fire;
160}
161
6f68f022 1621;