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