doc fix
[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
1a386a6c 12our $VERSION = '0.11';
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')) {
40 $method->{code}->($self, $params);
41 }
c0e30cf5 42}
43
44sub DEMOLISHALL {
d44714be 45 # NOTE: we ask Perl if we even
46 # need to do this first, to avoid
47 # extra meta level calls
fb1e11d5 48 return unless $_[0]->can('DEMOLISH');
49 my $self = shift;
50 foreach my $method ($self->meta->find_all_methods_by_name('DEMOLISH')) {
51 $method->{code}->($self);
52 }
c0e30cf5 53}
54
55sub DESTROY { goto &DEMOLISHALL }
56
ef333f17 57# new does() methods will be created
58# as approiate see Moose::Meta::Role
0677220d 59sub does {
bdabd620 60 my ($self, $role_name) = @_;
0677220d 61 (defined $role_name)
62 || confess "You much supply a role name to does()";
bdabd620 63 my $meta = $self->meta;
64 foreach my $class ($meta->class_precedence_list) {
587e457d 65 my $m = $meta->initialize($class);
bdabd620 66 return 1
587e457d 67 if $m->can('does_role') && $m->does_role($role_name);
bdabd620 68 }
69 return 0;
0677220d 70}
ef333f17 71
f742dfef 72# RANT:
73# Cmon, how many times have you written
74# the following code while debugging:
75#
76# use Data::Dumper;
77# warn Dumper \%thing;
78#
79# It can get seriously annoying, so why
80# not just do this ...
81sub dump {
82 my $self = shift;
83 require Data::Dumper;
1a386a6c 84 local $Data::Dumper::Maxdepth = shift if @_;
f742dfef 85 Data::Dumper::Dumper $self;
86}
87
fcd84ca9 881;
89
90__END__
91
92=pod
93
94=head1 NAME
95
e522431d 96Moose::Object - The base object for Moose
fcd84ca9 97
fcd84ca9 98=head1 DESCRIPTION
99
6ba6d68c 100This serves as the base object for all Moose classes. Every
101effort will be made to ensure that all classes which C<use Moose>
102will inherit from this class. It provides a default constructor
103and destructor, which run all the BUILD and DEMOLISH methods in
104the class tree.
105
106You don't actually I<need> to inherit from this in order to
107use Moose though. It is just here to make life easier.
108
fcd84ca9 109=head1 METHODS
110
111=over 4
112
113=item B<meta>
114
6ba6d68c 115This will return the metaclass associated with the given class.
116
fcd84ca9 117=item B<new>
118
e522431d 119This will create a new instance and call C<BUILDALL>.
120
c0e30cf5 121=item B<BUILDALL>
122
d7f17ebb 123This will call every C<BUILD> method in the inheritance hierarchy,
124and pass it a hash-ref of the the C<%params> passed to C<new>.
e522431d 125
c0e30cf5 126=item B<DEMOLISHALL>
127
e522431d 128This will call every C<DEMOLISH> method in the inheritance hierarchy.
129
ef333f17 130=item B<does ($role_name)>
131
02a0fb52 132This will check if the invocant's class C<does> a given C<$role_name>.
133This is similar to C<isa> for object, but it checks the roles instead.
134
f742dfef 135=item B<dump ($maxdepth)>
136
137Cmon, how many times have you written the following code while debugging:
138
139 use Data::Dumper;
140 warn Dumper $obj;
141
142It can get seriously annoying, so why not just use this.
143
fcd84ca9 144=back
145
146=head1 BUGS
147
148All complex software has bugs lurking in it, and this module is no
149exception. If you find a bug please either email me, or add the bug
150to cpan-RT.
151
fcd84ca9 152=head1 AUTHOR
153
154Stevan Little E<lt>stevan@iinteractive.comE<gt>
155
156=head1 COPYRIGHT AND LICENSE
157
778db3ac 158Copyright 2006-2008 by Infinity Interactive, Inc.
fcd84ca9 159
160L<http://www.iinteractive.com>
161
162This library is free software; you can redistribute it and/or modify
163it under the same terms as Perl itself.
164
9922fa6f 165=cut