Refactoring
[gitmo/Mouse.git] / lib / Mouse / Object.pm
CommitLineData
c3398f5b 1package Mouse::Object;
2use strict;
3use warnings;
c3398f5b 4
f6715552 5use Scalar::Util 'weaken';
c3398f5b 6use Carp 'confess';
7
8sub new {
9 my $class = shift;
d574882a 10
11 my $args = $class->BUILDARGS(@_);
da4cb913 12
c3398f5b 13 my $instance = bless {}, $class;
14
0eaf53c2 15 for my $attribute ($class->meta->get_all_attributes) {
384072a3 16 my $from = $attribute->init_arg;
17 my $key = $attribute->name;
c3398f5b 18
d574882a 19 if (defined($from) && exists($args->{$from})) {
4188b837 20 $args->{$from} = $attribute->coerce_constraint($args->{$from})
32af3489 21 if $attribute->should_coerce;
20e25eb9 22 $attribute->verify_against_type_constraint($args->{$from});
491e5923 23
a08e715f 24 $instance->{$key} = $args->{$from};
fe5fe061 25
a08e715f 26 weaken($instance->{$key})
27 if ref($instance->{$key}) && $attribute->is_weak_ref;
491e5923 28
a08e715f 29 if ($attribute->has_trigger) {
88b6c018 30 $attribute->trigger->($instance, $args->{$from});
491e5923 31 }
32 }
33 else {
de9a434a 34 if ($attribute->has_default || $attribute->has_builder) {
2434d21b 35 unless ($attribute->is_lazy) {
fb706f5c 36 my $default = $attribute->default;
de9a434a 37 my $builder = $attribute->builder;
38 my $value = $attribute->has_builder
39 ? $instance->$builder
40 : ref($default) eq 'CODE'
0e503bd9 41 ? $default->($instance)
de9a434a 42 : $default;
43
4188b837 44 $value = $attribute->coerce_constraint($value)
32af3489 45 if $attribute->should_coerce;
20e25eb9 46 $attribute->verify_against_type_constraint($value);
5aa30ced 47
de9a434a 48 $instance->{$key} = $value;
5aa30ced 49
b17094ce 50 weaken($instance->{$key})
3645b316 51 if ref($instance->{$key}) && $attribute->is_weak_ref;
c3398f5b 52 }
53 }
54 else {
2434d21b 55 if ($attribute->is_required) {
398327c3 56 confess "Attribute (".$attribute->name.") is required";
c3398f5b 57 }
58 }
59 }
c3398f5b 60 }
61
d574882a 62 $instance->BUILDALL($args);
c3398f5b 63
64 return $instance;
65}
66
d574882a 67sub BUILDARGS {
68 my $class = shift;
69
70 if (scalar @_ == 1) {
c9aefe26 71 (ref($_[0]) eq 'HASH')
72 || confess "Single parameters to new() must be a HASH ref";
73 return {%{$_[0]}};
d574882a 74 }
75 else {
76 return {@_};
77 }
78}
79
c3398f5b 80sub DESTROY { shift->DEMOLISHALL }
81
82sub BUILDALL {
83 my $self = shift;
84
85 # short circuit
86 return unless $self->can('BUILD');
87
2230a6a3 88 for my $class (reverse $self->meta->linearized_isa) {
cbe29bd9 89 no strict 'refs';
90 no warnings 'once';
c3398f5b 91 my $code = *{ $class . '::BUILD' }{CODE}
92 or next;
93 $code->($self, @_);
94 }
3a63a2e7 95 return;
c3398f5b 96}
97
98sub DEMOLISHALL {
99 my $self = shift;
100
101 # short circuit
102 return unless $self->can('DEMOLISH');
103
104 no strict 'refs';
105
c26e296a 106 my @isa;
3a63a2e7 107 if ( my $meta = Mouse::Meta::Class::class_of($self) ) {
c26e296a 108 @isa = $meta->linearized_isa;
109 } else {
110 # We cannot count on being able to retrieve a previously made
111 # metaclass, _or_ being able to make a new one during global
112 # destruction. However, we should still be able to use mro at
113 # that time (at least tests suggest so ;)
114 my $class_name = ref $self;
6ebf64d5 115 @isa = @{ Mouse::Util::get_linear_isa($class_name) }
c26e296a 116 }
117
118 foreach my $class (@isa) {
119 no strict 'refs';
120 my $demolish = *{"${class}::DEMOLISH"}{CODE};
121 $self->$demolish
122 if defined $demolish;
c3398f5b 123 }
3a63a2e7 124 return;
c3398f5b 125}
126
df963a63 127sub dump {
128 my $self = shift;
129 require Data::Dumper;
130 local $Data::Dumper::Maxdepth = shift if @_;
3a63a2e7 131 Data::Dumper::Dumper($self);
df963a63 132}
133
56a558f9 134
135sub does {
136 my ($self, $role_name) = @_;
137 (defined $role_name)
138 || confess "You must supply a role name to does()";
3a63a2e7 139
56a558f9 140 my $meta = $self->meta;
141 foreach my $class ($meta->linearized_isa) {
88ed7189 142 my $m = ref($meta)->initialize($class);
3a63a2e7 143 return 1
144 if $m->can('does_role') && $m->does_role($role_name);
56a558f9 145 }
3a63a2e7 146 return 0;
56a558f9 147};
148
c3398f5b 1491;
150
151__END__
152
153=head1 NAME
154
155Mouse::Object - we don't need to steenkin' constructor
156
157=head1 METHODS
158
159=head2 new arguments -> object
160
161Instantiates a new Mouse::Object. This is obviously intended for subclasses.
162
163=head2 BUILDALL \%args
164
165Calls L</BUILD> on each class in the class hierarchy. This is called at the
166end of L</new>.
167
168=head2 BUILD \%args
169
170You may put any business logic initialization in BUILD methods. You don't
171need to redispatch or return any specific value.
172
442125dc 173=head2 BUILDARGS
174
175Lets you override the arguments that C<new> takes. Return a hashref of
176parameters.
177
c3398f5b 178=head2 DEMOLISHALL
179
180Calls L</DEMOLISH> on each class in the class hierarchy. This is called at
181L</DESTROY> time.
182
183=head2 DEMOLISH
184
185You may put any business logic deinitialization in DEMOLISH methods. You don't
186need to redispatch or return any specific value.
187
df963a63 188
56a558f9 189=head2 does $role_name
190
191This will check if the invocant's class "does" a given C<$role_name>.
192This is similar to "isa" for object, but it checks the roles instead.
193
194
df963a63 195=head2 B<dump ($maxdepth)>
196
197From the Moose POD:
198
199 C'mon, how many times have you written the following code while debugging:
200
201 use Data::Dumper;
202 warn Dumper $obj;
203
204 It can get seriously annoying, so why not just use this.
205
206The implementation was lifted directly from Moose::Object.
207
c3398f5b 208=cut
209
df963a63 210