look under %TYPE first
[gitmo/Mouse.git] / lib / Mouse.pm
CommitLineData
c3398f5b 1package Mouse;
2use strict;
3use warnings;
eae80759 4use 5.006;
eaad7dab 5use base 'Exporter';
c3398f5b 6
aec5563b 7our $VERSION = '0.20';
c3398f5b 8
c3398f5b 9use Carp 'confess';
6c169c50 10use Scalar::Util 'blessed';
11use Mouse::Util;
c3398f5b 12
306290e8 13use Mouse::Meta::Attribute;
14use Mouse::Meta::Class;
c3398f5b 15use Mouse::Object;
3b46bd49 16use Mouse::Util::TypeConstraints;
c3398f5b 17
e6007308 18our @EXPORT = qw(extends has before after around override super blessed confess with);
eaad7dab 19
20sub extends { Mouse::Meta::Class->initialize(caller)->superclasses(@_) }
c3398f5b 21
eaad7dab 22sub has {
23 my $meta = Mouse::Meta::Class->initialize(caller);
60f6eba9 24 $meta->add_attribute(@_);
eaad7dab 25}
26
27sub before {
28 my $meta = Mouse::Meta::Class->initialize(caller);
29
30 my $code = pop;
31
32 for (@_) {
33 $meta->add_before_method_modifier($_ => $code);
34 }
35}
36
37sub after {
38 my $meta = Mouse::Meta::Class->initialize(caller);
39
40 my $code = pop;
41
42 for (@_) {
43 $meta->add_after_method_modifier($_ => $code);
44 }
45}
46
47sub around {
48 my $meta = Mouse::Meta::Class->initialize(caller);
49
50 my $code = pop;
51
52 for (@_) {
53 $meta->add_around_method_modifier($_ => $code);
54 }
55}
56
57sub with {
21498b08 58 Mouse::Util::apply_all_roles((caller)[0], @_);
eaad7dab 59}
60
e6007308 61our $SUPER_PACKAGE;
62our $SUPER_BODY;
63our @SUPER_ARGS;
64
65sub super {
66 # This check avoids a recursion loop - see
67 # t/100_bugs/020_super_recursion.t
68 return if defined $SUPER_PACKAGE && $SUPER_PACKAGE ne caller();
69 return unless $SUPER_BODY; $SUPER_BODY->(@SUPER_ARGS);
70}
71
72sub override {
73 my $meta = Mouse::Meta::Class->initialize(caller);
74 my $pkg = $meta->name;
75
76 my $name = shift;
77 my $code = shift;
78
79 my $body = $pkg->can($name)
80 or confess "You cannot override '$name' because it has no super method";
81
82 $meta->add_method($name => sub {
83 local $SUPER_PACKAGE = $pkg;
84 local @SUPER_ARGS = @_;
85 local $SUPER_BODY = $body;
86
87 $code->(@_);
88 });
89}
90
eaad7dab 91sub import {
e15d73d2 92 my $class = shift;
93
eaad7dab 94 strict->import;
95 warnings->import;
96
bfcc8a05 97 my $opts = do {
98 if (ref($_[0]) && ref($_[0]) eq 'HASH') {
99 shift @_;
100 } else {
101 +{ };
102 }
103 };
104 my $level = delete $opts->{into_level};
105 $level = 0 unless defined $level;
106 my $caller = caller($level);
eaad7dab 107
7daedfff 108 # we should never export to main
109 if ($caller eq 'main') {
110 warn qq{$class does not export its sugar to the 'main' package.\n};
111 return;
112 }
113
eaad7dab 114 my $meta = Mouse::Meta::Class->initialize($caller);
115 $meta->superclasses('Mouse::Object')
116 unless $meta->superclasses;
117
118 no strict 'refs';
119 no warnings 'redefine';
120 *{$caller.'::meta'} = sub { $meta };
121
e15d73d2 122 if (@_) {
bfcc8a05 123 __PACKAGE__->export_to_level( $level+1, $class, @_);
e15d73d2 124 } else {
125 # shortcut for the common case of no type character
126 no strict 'refs';
127 for my $keyword (@EXPORT) {
128 *{ $caller . '::' . $keyword } = *{__PACKAGE__ . '::' . $keyword};
129 }
130 }
eaad7dab 131}
132
133sub unimport {
134 my $caller = caller;
135
136 no strict 'refs';
137 for my $keyword (@EXPORT) {
138 delete ${ $caller . '::' }{$keyword};
139 }
140}
c3398f5b 141
142sub load_class {
143 my $class = shift;
262801ef 144
9694b71b 145 if (ref($class) || !defined($class) || !length($class)) {
146 my $display = defined($class) ? $class : 'undef';
147 confess "Invalid class name ($display)";
148 }
c3398f5b 149
6c169c50 150 return 1 if $class eq 'Mouse::Object';
2a674d23 151 return 1 if is_class_loaded($class);
152
c3398f5b 153 (my $file = "$class.pm") =~ s{::}{/}g;
154
155 eval { CORE::require($file) };
2a674d23 156 confess "Could not load class ($class) because : $@" if $@;
c3398f5b 157
158 return 1;
159}
160
2a674d23 161sub is_class_loaded {
162 my $class = shift;
163
7ecc2123 164 return 0 if ref($class) || !defined($class) || !length($class);
165
bf134049 166 # walk the symbol table tree to avoid autovififying
167 # \*{${main::}{"Foo::"}} == \*main::Foo::
168
169 my $pack = \*::;
170 foreach my $part (split('::', $class)) {
171 return 0 unless exists ${$$pack}{"${part}::"};
172 $pack = \*{${$$pack}{"${part}::"}};
2a674d23 173 }
bf134049 174
175 # check for $VERSION or @ISA
176 return 1 if exists ${$$pack}{VERSION}
177 && defined *{${$$pack}{VERSION}}{SCALAR};
178 return 1 if exists ${$$pack}{ISA}
179 && defined *{${$$pack}{ISA}}{ARRAY};
180
181 # check for any method
182 foreach ( keys %{$$pack} ) {
183 next if substr($_, -2, 2) eq '::';
184 return 1 if defined *{${$$pack}{$_}}{CODE};
185 }
186
187 # fail
2a674d23 188 return 0;
189}
190
c3398f5b 1911;
192
193__END__
194
195=head1 NAME
196
0fff36e6 197Mouse - Moose minus the antlers
c3398f5b 198
c3398f5b 199=head1 SYNOPSIS
200
201 package Point;
6caea456 202 use Mouse; # automatically turns on strict and warnings
203
204 has 'x' => (is => 'rw', isa => 'Int');
205 has 'y' => (is => 'rw', isa => 'Int');
206
207 sub clear {
208 my $self = shift;
209 $self->x(0);
210 $self->y(0);
211 }
212
213 package Point3D;
c3398f5b 214 use Mouse;
215
6caea456 216 extends 'Point';
c3398f5b 217
6caea456 218 has 'z' => (is => 'rw', isa => 'Int');
219
8517d2ff 220 after 'clear' => sub {
221 my $self = shift;
222 $self->z(0);
223 };
c3398f5b 224
225=head1 DESCRIPTION
226
0fff36e6 227L<Moose> is wonderful.
c3398f5b 228
0fff36e6 229Unfortunately, it's a little slow. Though significant progress has been made
230over the years, the compile time penalty is a non-starter for some
231applications.
232
233Mouse aims to alleviate this by providing a subset of Moose's
234functionality, faster. In particular, L<Moose/has> is missing only a few
235expert-level features.
236
7ca75105 237We're also going as light on dependencies as possible.
238L<Class::Method::Modifiers> or L<Data::Util> is required if you want support
239for L</before>, L</after>, and L</around>.
d1c1b994 240
0fff36e6 241=head2 MOOSE COMPAT
242
243Compatibility with Moose has been the utmost concern. Fewer than 1% of the
244tests fail when run against Moose instead of Mouse. Mouse code coverage is also
7e3ed32e 245over 96%. Even the error messages are taken from Moose. The Mouse code just
246runs the test suite 4x faster.
0fff36e6 247
248The idea is that, if you need the extra power, you should be able to run
8e1a28a8 249C<s/Mouse/Moose/g> on your codebase and have nothing break. To that end,
250nothingmuch has written L<Squirrel> (part of this distribution) which will act
251as Mouse unless Moose is loaded, in which case it will act as Moose.
7ca75105 252L<Any::Moose> is a more high-tech L<Squirrel>.
0fff36e6 253
9090e5fe 254=head2 MouseX
255
256Please don't copy MooseX code to MouseX. If you need extensions, you really
257should upgrade to Moose. We don't need two parallel sets of extensions!
258
259If you really must write a Mouse extension, please contact the Moose mailing
260list or #moose on IRC beforehand.
261
0fff36e6 262=head1 KEYWORDS
c3398f5b 263
306290e8 264=head2 meta -> Mouse::Meta::Class
c3398f5b 265
266Returns this class' metaclass instance.
267
268=head2 extends superclasses
269
270Sets this class' superclasses.
271
b7a74822 272=head2 before (method|methods) => Code
273
274Installs a "before" method modifier. See L<Moose/before> or
275L<Class::Method::Modifiers/before>.
276
6beb7db6 277Use of this feature requires L<Class::Method::Modifiers>!
278
b7a74822 279=head2 after (method|methods) => Code
280
281Installs an "after" method modifier. See L<Moose/after> or
282L<Class::Method::Modifiers/after>.
283
6beb7db6 284Use of this feature requires L<Class::Method::Modifiers>!
285
b7a74822 286=head2 around (method|methods) => Code
287
288Installs an "around" method modifier. See L<Moose/around> or
289L<Class::Method::Modifiers/around>.
290
6beb7db6 291Use of this feature requires L<Class::Method::Modifiers>!
292
c3398f5b 293=head2 has (name|names) => parameters
294
295Adds an attribute (or if passed an arrayref of names, multiple attributes) to
0fff36e6 296this class. Options:
297
298=over 4
299
300=item is => ro|rw
301
302If specified, inlines a read-only/read-write accessor with the same name as
303the attribute.
304
305=item isa => TypeConstraint
306
307Provides basic type checking in the constructor and accessor. Basic types such
308as C<Int>, C<ArrayRef>, C<Defined> are supported. Any unknown type is taken to
309be a class check (e.g. isa => 'DateTime' would accept only L<DateTime>
310objects).
311
312=item required => 0|1
313
314Whether this attribute is required to have a value. If the attribute is lazy or
315has a builder, then providing a value for the attribute in the constructor is
316optional.
317
ca63d17a 318=item init_arg => Str | Undef
0fff36e6 319
ca63d17a 320Allows you to use a different key name in the constructor. If undef, the
321attribue can't be passed to the constructor.
0fff36e6 322
323=item default => Value | CodeRef
324
325Sets the default value of the attribute. If the default is a coderef, it will
326be invoked to get the default value. Due to quirks of Perl, any bare reference
327is forbidden, you must wrap the reference in a coderef. Otherwise, all
328instances will share the same reference.
329
330=item lazy => 0|1
331
332If specified, the default is calculated on demand instead of in the
333constructor.
334
335=item predicate => Str
336
337Lets you specify a method name for installing a predicate method, which checks
338that the attribute has a value. It will not invoke a lazy default or builder
339method.
340
341=item clearer => Str
342
343Lets you specify a method name for installing a clearer method, which clears
344the attribute's value from the instance. On the next read, lazy or builder will
345be invoked.
346
347=item handles => HashRef|ArrayRef
348
349Lets you specify methods to delegate to the attribute. ArrayRef forwards the
350given method names to method calls on the attribute. HashRef maps local method
351names to remote method names called on the attribute. Other forms of
352L</handles>, such as regular expression and coderef, are not yet supported.
353
354=item weak_ref => 0|1
355
356Lets you automatically weaken any reference stored in the attribute.
357
6beb7db6 358Use of this feature requires L<Scalar::Util>!
359
844fa049 360=item trigger => CodeRef
361
362Any time the attribute's value is set (either through the accessor or the constructor), the trigger is called on it. The trigger receives as arguments the instance, the new value, and the attribute instance.
363
6beb7db6 364Mouse 0.05 supported more complex triggers, but this behavior is now removed.
0fff36e6 365
366=item builder => Str
367
368Defines a method name to be called to provide the default value of the
369attribute. C<< builder => 'build_foo' >> is mostly equivalent to
370C<< default => sub { $_[0]->build_foo } >>.
371
372=item auto_deref => 0|1
373
374Allows you to automatically dereference ArrayRef and HashRef attributes in list
375context. In scalar context, the reference is returned (NOT the list length or
376bucket status). You must specify an appropriate type constraint to use
377auto_deref.
378
5253d13d 379=item lazy_build => 0|1
380
381Automatically define lazy => 1 as well as builder => "_build_$attr", clearer =>
382"clear_$attr', predicate => 'has_$attr' unless they are already defined.
383
0fff36e6 384=back
c3398f5b 385
386=head2 confess error -> BOOM
387
388L<Carp/confess> for your convenience.
389
390=head2 blessed value -> ClassName | undef
391
392L<Scalar::Util/blessed> for your convenience.
393
394=head1 MISC
395
396=head2 import
397
6caea456 398Importing Mouse will default your class' superclass list to L<Mouse::Object>.
c3398f5b 399You may use L</extends> to replace the superclass list.
400
401=head2 unimport
402
0fff36e6 403Please unimport Mouse (C<no Mouse>) so that if someone calls one of the
404keywords (such as L</extends>) it will break loudly instead breaking subtly.
c3398f5b 405
406=head1 FUNCTIONS
407
408=head2 load_class Class::Name
409
6caea456 410This will load a given C<Class::Name> (or die if it's not loadable).
c3398f5b 411This function can be used in place of tricks like
412C<eval "use $module"> or using C<require>.
413
262801ef 414=head2 is_class_loaded Class::Name -> Bool
415
416Returns whether this class is actually loaded or not. It uses a heuristic which
417involves checking for the existence of C<$VERSION>, C<@ISA>, and any
418locally-defined method.
419
c817e8f1 420=head1 AUTHORS
c3398f5b 421
422Shawn M Moore, C<< <sartak at gmail.com> >>
423
fc9f8988 424Yuval Kogman, C<< <nothingmuch at woobling.org> >>
425
c817e8f1 426tokuhirom
427
428Yappo
429
0fff36e6 430with plenty of code borrowed from L<Class::MOP> and L<Moose>
431
c3398f5b 432=head1 BUGS
433
434No known bugs.
435
436Please report any bugs through RT: email
437C<bug-mouse at rt.cpan.org>, or browse
438L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mouse>.
439
440=head1 COPYRIGHT AND LICENSE
441
442Copyright 2008 Shawn M Moore.
443
444This program is free software; you can redistribute it and/or modify it
445under the same terms as Perl itself.
446
447=cut
448