Add support for undef init_arg
[gitmo/Mouse.git] / lib / Mouse / Object.pm
1 #!/usr/bin/env perl
2 package Mouse::Object;
3 use strict;
4 use warnings;
5 use MRO::Compat;
6
7 use Scalar::Util qw/blessed weaken/;
8 use Carp 'confess';
9
10 sub new {
11     my $class = shift;
12     my %args;
13     if (scalar @_ == 1) {
14         if (defined $_[0]) {
15             (ref($_[0]) eq 'HASH')
16                 || confess "Single parameters to new() must be a HASH ref";
17             %args = %{$_[0]};
18         }
19     }
20     else {
21         %args = @_;
22     }
23
24     my $instance = bless {}, $class;
25
26     for my $attribute ($class->meta->compute_all_applicable_attributes) {
27         my $from = $attribute->init_arg;
28         my $key  = $attribute->name;
29         my $default;
30
31         if (defined($from) && exists($args{$from})) {
32             $attribute->verify_type_constraint($args{$from})
33                 if $attribute->has_type_constraint;
34
35             $instance->{$key} = $args{$from};
36
37             weaken($instance->{$key})
38                 if ref($instance->{$key}) && $attribute->is_weak_ref;
39
40             if ($attribute->has_trigger) {
41                 $attribute->trigger->($instance, $args{$from}, $attribute);
42             }
43         }
44         else {
45             if ($attribute->has_default || $attribute->has_builder) {
46                 unless ($attribute->is_lazy) {
47                     my $default = $attribute->default;
48                     my $builder = $attribute->builder;
49                     my $value = $attribute->has_builder
50                               ? $instance->$builder
51                               : ref($default) eq 'CODE'
52                                   ? $default->()
53                                   : $default;
54
55                     $attribute->verify_type_constraint($value)
56                         if $attribute->has_type_constraint;
57
58                     $instance->{$key} = $value;
59
60                     weaken($instance->{$key})
61                         if ref($instance->{$key}) && $attribute->is_weak_ref;
62                 }
63             }
64             else {
65                 if ($attribute->is_required) {
66                     confess "Attribute (".$attribute->name.") is required";
67                 }
68             }
69         }
70     }
71
72     $instance->BUILDALL(\%args);
73
74     return $instance;
75 }
76
77 sub DESTROY { shift->DEMOLISHALL }
78
79 sub BUILDALL {
80     my $self = shift;
81
82     # short circuit
83     return unless $self->can('BUILD');
84
85     no strict 'refs';
86
87     for my $class (reverse $self->meta->linearized_isa) {
88         my $code = *{ $class . '::BUILD' }{CODE}
89             or next;
90         $code->($self, @_);
91     }
92 }
93
94 sub DEMOLISHALL {
95     my $self = shift;
96
97     # short circuit
98     return unless $self->can('DEMOLISH');
99
100     no strict 'refs';
101
102     for my $class ($self->meta->linearized_isa) {
103         my $code = *{ $class . '::DEMOLISH' }{CODE}
104             or next;
105         $code->($self, @_);
106     }
107 }
108
109 1;
110
111 __END__
112
113 =head1 NAME
114
115 Mouse::Object - we don't need to steenkin' constructor
116
117 =head1 METHODS
118
119 =head2 new arguments -> object
120
121 Instantiates a new Mouse::Object. This is obviously intended for subclasses.
122
123 =head2 BUILDALL \%args
124
125 Calls L</BUILD> on each class in the class hierarchy. This is called at the
126 end of L</new>.
127
128 =head2 BUILD \%args
129
130 You may put any business logic initialization in BUILD methods. You don't
131 need to redispatch or return any specific value.
132
133 =head2 DEMOLISHALL
134
135 Calls L</DEMOLISH> on each class in the class hierarchy. This is called at
136 L</DESTROY> time.
137
138 =head2 DEMOLISH
139
140 You may put any business logic deinitialization in DEMOLISH methods. You don't
141 need to redispatch or return any specific value.
142
143 =cut
144