7 use if ( not our $__mx_is_compiled ), 'Moose::Meta::Class';
8 use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class';
12 our $VERSION = '0.52';
13 our $AUTHORITY = 'cpan:STEVAN';
17 my $params = $class->BUILDARGS(@_);
18 my $self = $class->meta->new_object(%$params);
19 $self->BUILDALL($params);
28 (ref($_[0]) eq 'HASH')
29 || confess "Single parameters to new() must be a HASH ref";
32 return {}; # FIXME this is compat behavior, but is it correct?
40 # NOTE: we ask Perl if we even
41 # need to do this first, to avoid
42 # extra meta level calls
43 return unless $_[0]->can('BUILD');
44 my ($self, $params) = @_;
45 foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) {
46 $method->{code}->body->($self, $params);
52 foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) {
53 $method->{code}->body->($self);
58 # NOTE: we ask Perl if we even
59 # need to do this first, to avoid
60 # extra meta level calls
61 return unless $_[0]->can('DEMOLISH');
62 # if we have an exception here ...
66 # run DEMOLISHALL ourselves, ...
71 # otherwise it is normal destruction
76 my ( $self, $class_or_role_name ) = @_;
78 $self->SUPER::DOES($class_or_role_name)
80 $self->does($class_or_role_name);
83 # new does() methods will be created
84 # as approiate see Moose::Meta::Role
86 my ($self, $role_name) = @_;
88 || confess "You must supply a role name to does()";
89 my $meta = $self->meta;
90 foreach my $class ($meta->class_precedence_list) {
91 my $m = $meta->initialize($class);
93 if $m->can('does_role') && $m->does_role($role_name);
99 # Cmon, how many times have you written
100 # the following code while debugging:
103 # warn Dumper \%thing;
105 # It can get seriously annoying, so why
106 # not just do this ...
109 require Data::Dumper;
110 local $Data::Dumper::Maxdepth = shift if @_;
111 Data::Dumper::Dumper $self;
122 Moose::Object - The base object for Moose
126 This serves as the base object for all Moose classes. Every
127 effort will be made to ensure that all classes which C<use Moose>
128 will inherit from this class. It provides a default constructor
129 and destructor, which run all the BUILD and DEMOLISH methods in
132 You don't actually I<need> to inherit from this in order to
133 use Moose though. It is just here to make life easier.
141 This will return the metaclass associated with the given class.
145 This will call C<BUILDARGS>, create a new instance and call C<BUILDALL>.
149 This method processes an argument list into a hash reference. It is used by
154 This will call every C<BUILD> method in the inheritance hierarchy,
155 and pass it a hash-ref of the the C<%params> passed to C<new>.
159 This will call every C<DEMOLISH> method in the inheritance hierarchy.
161 =item B<does ($role_name)>
163 This will check if the invocant's class C<does> a given C<$role_name>.
164 This is similar to C<isa> for object, but it checks the roles instead.
166 =item B<DOES ($class_or_role_name)>
168 A Moose Role aware implementation of L<UNIVERSAL/DOES>.
170 C<DOES> is equivalent to C<isa> or C<does>.
172 =item B<dump ($maxdepth)>
174 Cmon, how many times have you written the following code while debugging:
179 It can get seriously annoying, so why not just use this.
185 All complex software has bugs lurking in it, and this module is no
186 exception. If you find a bug please either email me, or add the bug
191 Stevan Little E<lt>stevan@iinteractive.comE<gt>
193 =head1 COPYRIGHT AND LICENSE
195 Copyright 2006-2008 by Infinity Interactive, Inc.
197 L<http://www.iinteractive.com>
199 This library is free software; you can redistribute it and/or modify
200 it under the same terms as Perl itself.