error_class and error_builder are readonly in immutable classes
[gitmo/Moose.git] / lib / Moose / Object.pm
CommitLineData
fcd84ca9 1
2package Moose::Object;
3
4use strict;
5use warnings;
648e79ae 6
9922fa6f 7use if ( not our $__mx_is_compiled ), 'Moose::Meta::Class';
8use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class';
bc1e29b5 9
0677220d 10use Carp 'confess';
11
eaa35e6e 12our $VERSION = '0.50';
d44714be 13our $AUTHORITY = 'cpan:STEVAN';
fcd84ca9 14
15sub new {
2c0cbef7 16 my $class = shift;
8a157bab 17 my %params;
18 if (scalar @_ == 1) {
86629f93 19 if (defined $_[0]) {
20 (ref($_[0]) eq 'HASH')
21 || confess "Single parameters to new() must be a HASH ref";
22 %params = %{$_[0]};
23 }
8a157bab 24 }
25 else {
26 %params = @_;
27 }
fb1e11d5 28 my $self = $class->meta->new_object(%params);
29 $self->BUILDALL(\%params);
30 return $self;
fcd84ca9 31}
32
c0e30cf5 33sub BUILDALL {
d44714be 34 # NOTE: we ask Perl if we even
35 # need to do this first, to avoid
36 # extra meta level calls
fb1e11d5 37 return unless $_[0]->can('BUILD');
38 my ($self, $params) = @_;
39 foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) {
ac0824ee 40 $method->{code}->body->($self, $params);
fb1e11d5 41 }
c0e30cf5 42}
43
44sub DEMOLISHALL {
3a0c064a 45 my $self = shift;
46 foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) {
47 $method->{code}->body->($self);
48 }
49}
50
51sub DESTROY {
d44714be 52 # NOTE: we ask Perl if we even
53 # need to do this first, to avoid
54 # extra meta level calls
3a0c064a 55 return unless $_[0]->can('DEMOLISH');
56 # if we have an exception here ...
ca0e380d 57 if ($@) {
58 # localize the $@ ...
59 local $@;
3a0c064a 60 # run DEMOLISHALL ourselves, ...
ca0e380d 61 $_[0]->DEMOLISHALL;
3a0c064a 62 # and return ...
63 return;
64 }
ca0e380d 65 # otherwise it is normal destruction
f93f7be9 66 $_[0]->DEMOLISHALL;
c0e30cf5 67}
68
ef333f17 69# new does() methods will be created
70# as approiate see Moose::Meta::Role
0677220d 71sub does {
bdabd620 72 my ($self, $role_name) = @_;
0677220d 73 (defined $role_name)
74 || confess "You much supply a role name to does()";
bdabd620 75 my $meta = $self->meta;
76 foreach my $class ($meta->class_precedence_list) {
587e457d 77 my $m = $meta->initialize($class);
bdabd620 78 return 1
587e457d 79 if $m->can('does_role') && $m->does_role($role_name);
bdabd620 80 }
81 return 0;
0677220d 82}
ef333f17 83
f742dfef 84# RANT:
85# Cmon, how many times have you written
86# the following code while debugging:
87#
88# use Data::Dumper;
89# warn Dumper \%thing;
90#
91# It can get seriously annoying, so why
92# not just do this ...
93sub dump {
94 my $self = shift;
95 require Data::Dumper;
1a386a6c 96 local $Data::Dumper::Maxdepth = shift if @_;
f742dfef 97 Data::Dumper::Dumper $self;
98}
99
fcd84ca9 1001;
101
102__END__
103
104=pod
105
106=head1 NAME
107
e522431d 108Moose::Object - The base object for Moose
fcd84ca9 109
fcd84ca9 110=head1 DESCRIPTION
111
6ba6d68c 112This serves as the base object for all Moose classes. Every
113effort will be made to ensure that all classes which C<use Moose>
114will inherit from this class. It provides a default constructor
115and destructor, which run all the BUILD and DEMOLISH methods in
116the class tree.
117
118You don't actually I<need> to inherit from this in order to
119use Moose though. It is just here to make life easier.
120
fcd84ca9 121=head1 METHODS
122
123=over 4
124
125=item B<meta>
126
6ba6d68c 127This will return the metaclass associated with the given class.
128
fcd84ca9 129=item B<new>
130
e522431d 131This will create a new instance and call C<BUILDALL>.
132
c0e30cf5 133=item B<BUILDALL>
134
d7f17ebb 135This will call every C<BUILD> method in the inheritance hierarchy,
136and pass it a hash-ref of the the C<%params> passed to C<new>.
e522431d 137
c0e30cf5 138=item B<DEMOLISHALL>
139
e522431d 140This will call every C<DEMOLISH> method in the inheritance hierarchy.
141
ef333f17 142=item B<does ($role_name)>
143
02a0fb52 144This will check if the invocant's class C<does> a given C<$role_name>.
145This is similar to C<isa> for object, but it checks the roles instead.
146
f742dfef 147=item B<dump ($maxdepth)>
148
149Cmon, how many times have you written the following code while debugging:
150
151 use Data::Dumper;
152 warn Dumper $obj;
153
154It can get seriously annoying, so why not just use this.
155
fcd84ca9 156=back
157
158=head1 BUGS
159
160All complex software has bugs lurking in it, and this module is no
161exception. If you find a bug please either email me, or add the bug
162to cpan-RT.
163
fcd84ca9 164=head1 AUTHOR
165
166Stevan Little E<lt>stevan@iinteractive.comE<gt>
167
168=head1 COPYRIGHT AND LICENSE
169
778db3ac 170Copyright 2006-2008 by Infinity Interactive, Inc.
fcd84ca9 171
172L<http://www.iinteractive.com>
173
174This library is free software; you can redistribute it and/or modify
175it under the same terms as Perl itself.
176
9922fa6f 177=cut