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.14';
13 our $AUTHORITY = 'cpan:STEVAN';
20 (ref($_[0]) eq 'HASH')
21 || confess "Single parameters to new() must be a HASH ref";
28 my $self = $class->meta->new_object(%params);
29 $self->BUILDALL(\%params);
34 # NOTE: we ask Perl if we even
35 # need to do this first, to avoid
36 # extra meta level calls
37 return unless $_[0]->can('BUILD');
38 my ($self, $params) = @_;
39 foreach my $method (reverse $self->meta->find_all_methods_by_name('BUILD')) {
40 $method->{code}->body->($self, $params);
46 foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) {
47 $method->{code}->body->($self);
52 # NOTE: we ask Perl if we even
53 # need to do this first, to avoid
54 # extra meta level calls
55 return unless $_[0]->can('DEMOLISH');
56 # if we have an exception here ...
60 # run DEMOLISHALL ourselves, ...
65 # otherwise it is normal destruction
69 # new does() methods will be created
70 # as approiate see Moose::Meta::Role
72 my ($self, $role_name) = @_;
74 || confess "You much supply a role name to does()";
75 my $meta = $self->meta;
76 foreach my $class ($meta->class_precedence_list) {
77 my $m = $meta->initialize($class);
79 if $m->can('does_role') && $m->does_role($role_name);
85 # Cmon, how many times have you written
86 # the following code while debugging:
89 # warn Dumper \%thing;
91 # It can get seriously annoying, so why
92 # not just do this ...
96 local $Data::Dumper::Maxdepth = shift if @_;
97 Data::Dumper::Dumper $self;
108 Moose::Object - The base object for Moose
112 This serves as the base object for all Moose classes. Every
113 effort will be made to ensure that all classes which C<use Moose>
114 will inherit from this class. It provides a default constructor
115 and destructor, which run all the BUILD and DEMOLISH methods in
118 You don't actually I<need> to inherit from this in order to
119 use Moose though. It is just here to make life easier.
127 This will return the metaclass associated with the given class.
131 This will create a new instance and call C<BUILDALL>.
135 This will call every C<BUILD> method in the inheritance hierarchy,
136 and pass it a hash-ref of the the C<%params> passed to C<new>.
140 This will call every C<DEMOLISH> method in the inheritance hierarchy.
142 =item B<does ($role_name)>
144 This will check if the invocant's class C<does> a given C<$role_name>.
145 This is similar to C<isa> for object, but it checks the roles instead.
147 =item B<dump ($maxdepth)>
149 Cmon, how many times have you written the following code while debugging:
154 It can get seriously annoying, so why not just use this.
160 All complex software has bugs lurking in it, and this module is no
161 exception. If you find a bug please either email me, or add the bug
166 Stevan Little E<lt>stevan@iinteractive.comE<gt>
168 =head1 COPYRIGHT AND LICENSE
170 Copyright 2006-2008 by Infinity Interactive, Inc.
172 L<http://www.iinteractive.com>
174 This library is free software; you can redistribute it and/or modify
175 it under the same terms as Perl itself.