Update MANIFEST.SKIP
[gitmo/Mouse.git] / lib / Mouse.pm
CommitLineData
c3398f5b 1package Mouse;
eb88905f 2use 5.006_002;
3
bc69ee88 4use Mouse::Exporter; # enables strict and warnings
eb88905f 5
6f16d3ce 6our $VERSION = '0.37_05';
c3398f5b 7
fea36fd2 8use Carp qw(confess);
43523060 9use Scalar::Util qw(blessed);
6d28c5cf 10
01afd8ff 11use Mouse::Util qw(load_class is_class_loaded get_code_package not_supported);
c3398f5b 12
08f7a8db 13use Mouse::Meta::Module;
306290e8 14use Mouse::Meta::Class;
7a50b450 15use Mouse::Meta::Role;
6d28c5cf 16use Mouse::Meta::Attribute;
c3398f5b 17use Mouse::Object;
6d28c5cf 18use Mouse::Util::TypeConstraints ();
fea36fd2 19
20Mouse::Exporter->setup_import_methods(
21 as_is => [qw(
22 extends with
23 has
24 before after around
25 override super
26 augment inner
27 ),
28 \&Scalar::Util::blessed,
29 \&Carp::confess,
30 ],
2cb8b713 31);
eaad7dab 32
43523060 33# XXX: for backward compatibility
34our @EXPORT = qw(
35 extends with
36 has
37 before after around
38 override super
39 augment inner
40 blessed confess
41);
42
8bc2760b 43sub extends { Mouse::Meta::Class->initialize(scalar caller)->superclasses(@_) }
c3398f5b 44
eaad7dab 45sub has {
8bc2760b 46 my $meta = Mouse::Meta::Class->initialize(scalar caller);
1b9e472d 47 my $name = shift;
48
95ecd6f1 49 $meta->throw_error(q{Usage: has 'name' => ( key => value, ... )})\r
50 if @_ % 2; # odd number of arguments
51
1b9e472d 52 $meta->add_attribute($_ => @_) for ref($name) ? @{$name} : $name;
eaad7dab 53}
54
55sub before {
8bc2760b 56 my $meta = Mouse::Meta::Class->initialize(scalar caller);
eaad7dab 57
58 my $code = pop;
59
60 for (@_) {
61 $meta->add_before_method_modifier($_ => $code);
62 }
63}
64
65sub after {
8bc2760b 66 my $meta = Mouse::Meta::Class->initialize(scalar caller);
eaad7dab 67
68 my $code = pop;
69
70 for (@_) {
71 $meta->add_after_method_modifier($_ => $code);
72 }
73}
74
75sub around {
8bc2760b 76 my $meta = Mouse::Meta::Class->initialize(scalar caller);
eaad7dab 77
78 my $code = pop;
79
80 for (@_) {
81 $meta->add_around_method_modifier($_ => $code);
82 }
83}
84
85sub with {
8bc2760b 86 Mouse::Util::apply_all_roles(scalar(caller), @_);
eaad7dab 87}
88
e6007308 89our $SUPER_PACKAGE;
90our $SUPER_BODY;
91our @SUPER_ARGS;
92
93sub super {
94 # This check avoids a recursion loop - see
95 # t/100_bugs/020_super_recursion.t
85bd3f44 96 return if defined $SUPER_PACKAGE && $SUPER_PACKAGE ne caller();
97 return if !defined $SUPER_BODY;
98 $SUPER_BODY->(@SUPER_ARGS);
e6007308 99}
100
101sub override {
85bd3f44 102 # my($name, $method) = @_;
103 Mouse::Meta::Class->initialize(scalar caller)->add_override_method_modifier(@_);
e6007308 104}
105
768804c0 106our %INNER_BODY;
107our %INNER_ARGS;
108
109sub inner {
110 my $pkg = caller();
111 if ( my $body = $INNER_BODY{$pkg} ) {
112 my $args = $INNER_ARGS{$pkg};
113 local $INNER_ARGS{$pkg};
114 local $INNER_BODY{$pkg};
115 return $body->(@{$args});
116 }
117 else {
118 return;
119 }
120}
121
122sub augment {
123 #my($name, $method) = @_;
124 Mouse::Meta::Class->initialize(scalar caller)->add_augment_method_modifier(@_);
125}
2cb8b713 126
0d6e12be 127sub init_meta {
0d6e12be 128 shift;
129 my %args = @_;
130
131 my $class = $args{for_class}
382b7340 132 or confess("Cannot call init_meta without specifying a for_class");
c9a3c0ed 133
0d6e12be 134 my $base_class = $args{base_class} || 'Mouse::Object';
135 my $metaclass = $args{metaclass} || 'Mouse::Meta::Class';
136
0d6e12be 137 my $meta = $metaclass->initialize($class);
0d6e12be 138
3a63a2e7 139 $meta->add_method(meta => sub{
382b7340 140 return $metaclass->initialize(ref($_[0]) || $_[0]);
3a63a2e7 141 });
142
382b7340 143 $meta->superclasses($base_class)
144 unless $meta->superclasses;
0d6e12be 145
c9a3c0ed 146 # make a class type for each Mouse class
147 Mouse::Util::TypeConstraints::class_type($class)
148 unless Mouse::Util::TypeConstraints::find_type_constraint($class);
149
0d6e12be 150 return $meta;
151}
152
c3398f5b 153
c3398f5b 1541;
c3398f5b 155__END__
156
157=head1 NAME
158
0fff36e6 159Mouse - Moose minus the antlers
c3398f5b 160
2efecf0c 161=head1 VERSION
162
6f16d3ce 163This document describes Mouse version 0.37_05
2efecf0c 164
c3398f5b 165=head1 SYNOPSIS
166
167 package Point;
6caea456 168 use Mouse; # automatically turns on strict and warnings
169
170 has 'x' => (is => 'rw', isa => 'Int');
171 has 'y' => (is => 'rw', isa => 'Int');
172
173 sub clear {
174 my $self = shift;
175 $self->x(0);
176 $self->y(0);
177 }
178
179 package Point3D;
c3398f5b 180 use Mouse;
181
6caea456 182 extends 'Point';
c3398f5b 183
6caea456 184 has 'z' => (is => 'rw', isa => 'Int');
185
8517d2ff 186 after 'clear' => sub {
187 my $self = shift;
188 $self->z(0);
189 };
c3398f5b 190
191=head1 DESCRIPTION
192
6614c108 193L<Moose> is wonderful. B<Use Moose instead of Mouse.>
c3398f5b 194
16913e71 195Unfortunately, Moose has a compile-time penalty. Though significant progress
196has been made over the years, the compile time penalty is a non-starter for
197some very specific applications. If you are writing a command-line application
198or CGI script where startup time is essential, you may not be able to use
199Moose. We recommend that you instead use L<HTTP::Engine> and FastCGI for the
200latter, if possible.
0fff36e6 201
6614c108 202Mouse aims to alleviate this by providing a subset of Moose's functionality,
203faster.
0fff36e6 204
7ca75105 205We're also going as light on dependencies as possible.
3fcf8a33 206L<Class::Method::Modifiers::Fast> or L<Class::Method::Modifiers> is required
207if you want support for L</before>, L</after>, and L</around>.
d1c1b994 208
1820fffe 209=head2 MOOSE COMPATIBILITY
0fff36e6 210
211Compatibility with Moose has been the utmost concern. Fewer than 1% of the
212tests fail when run against Moose instead of Mouse. Mouse code coverage is also
7e3ed32e 213over 96%. Even the error messages are taken from Moose. The Mouse code just
214runs the test suite 4x faster.
0fff36e6 215
216The idea is that, if you need the extra power, you should be able to run
8e1a28a8 217C<s/Mouse/Moose/g> on your codebase and have nothing break. To that end,
6614c108 218we have written L<Any::Moose> which will act as Mouse unless Moose is loaded,
16913e71 219in which case it will act as Moose. Since Mouse is a little sloppier than
220Moose, if you run into weird errors, it would be worth running:
221
222 ANY_MOOSE=Moose perl your-script.pl
223
224to see if the bug is caused by Mouse. Moose's diagnostics and validation are
225also much better.
0fff36e6 226
9090e5fe 227=head2 MouseX
228
229Please don't copy MooseX code to MouseX. If you need extensions, you really
230should upgrade to Moose. We don't need two parallel sets of extensions!
231
232If you really must write a Mouse extension, please contact the Moose mailing
233list or #moose on IRC beforehand.
234
0fff36e6 235=head1 KEYWORDS
c3398f5b 236
1820fffe 237=head2 C<< $object->meta -> Mouse::Meta::Class >>
c3398f5b 238
239Returns this class' metaclass instance.
240
1820fffe 241=head2 C<< extends superclasses >>
c3398f5b 242
243Sets this class' superclasses.
244
1820fffe 245=head2 C<< before (method|methods) => CodeRef >>
b7a74822 246
247Installs a "before" method modifier. See L<Moose/before> or
248L<Class::Method::Modifiers/before>.
249
6beb7db6 250Use of this feature requires L<Class::Method::Modifiers>!
251
1820fffe 252=head2 C<< after (method|methods) => CodeRef >>
b7a74822 253
254Installs an "after" method modifier. See L<Moose/after> or
255L<Class::Method::Modifiers/after>.
256
6beb7db6 257Use of this feature requires L<Class::Method::Modifiers>!
258
1820fffe 259=head2 C<< around (method|methods) => CodeRef >>
b7a74822 260
261Installs an "around" method modifier. See L<Moose/around> or
262L<Class::Method::Modifiers/around>.
263
6beb7db6 264Use of this feature requires L<Class::Method::Modifiers>!
265
1820fffe 266=head2 C<< has (name|names) => parameters >>
c3398f5b 267
268Adds an attribute (or if passed an arrayref of names, multiple attributes) to
0fff36e6 269this class. Options:
270
271=over 4
272
1820fffe 273=item C<< is => ro|rw|bare >>
0fff36e6 274
275If specified, inlines a read-only/read-write accessor with the same name as
276the attribute.
277
1820fffe 278=item C<< isa => TypeConstraint >>
0fff36e6 279
5893ee36 280Provides type checking in the constructor and accessor. The following types are
1820fffe 281supported. Any unknown type is taken to be a class check
282(e.g. C<< isa => 'DateTime' >> would accept only L<DateTime> objects).
5893ee36 283
284 Any Item Bool Undef Defined Value Num Int Str ClassName
285 Ref ScalarRef ArrayRef HashRef CodeRef RegexpRef GlobRef
286 FileHandle Object
287
288For more documentation on type constraints, see L<Mouse::Util::TypeConstraints>.
289
0fff36e6 290
1820fffe 291=item C<< required => Bool >>
0fff36e6 292
293Whether this attribute is required to have a value. If the attribute is lazy or
294has a builder, then providing a value for the attribute in the constructor is
295optional.
296
1820fffe 297=item C<< init_arg => Str | Undef >>
0fff36e6 298
ca63d17a 299Allows you to use a different key name in the constructor. If undef, the
1820fffe 300attribute can't be passed to the constructor.
0fff36e6 301
1820fffe 302=item C<< default => Value | CodeRef >>
0fff36e6 303
304Sets the default value of the attribute. If the default is a coderef, it will
305be invoked to get the default value. Due to quirks of Perl, any bare reference
306is forbidden, you must wrap the reference in a coderef. Otherwise, all
307instances will share the same reference.
308
1820fffe 309=item C<< lazy => Bool >>
0fff36e6 310
311If specified, the default is calculated on demand instead of in the
312constructor.
313
1820fffe 314=item C<< predicate => Str >>
0fff36e6 315
316Lets you specify a method name for installing a predicate method, which checks
317that the attribute has a value. It will not invoke a lazy default or builder
318method.
319
1820fffe 320=item C<< clearer => Str >>
0fff36e6 321
322Lets you specify a method name for installing a clearer method, which clears
323the attribute's value from the instance. On the next read, lazy or builder will
324be invoked.
325
1820fffe 326=item C<< handles => HashRef|ArrayRef >>
0fff36e6 327
328Lets you specify methods to delegate to the attribute. ArrayRef forwards the
329given method names to method calls on the attribute. HashRef maps local method
330names to remote method names called on the attribute. Other forms of
331L</handles>, such as regular expression and coderef, are not yet supported.
332
1820fffe 333=item C<< weak_ref => Bool >>
0fff36e6 334
335Lets you automatically weaken any reference stored in the attribute.
336
6beb7db6 337Use of this feature requires L<Scalar::Util>!
338
1820fffe 339=item C<< trigger => CodeRef >>
844fa049 340
341Any 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.
342
1820fffe 343=item C<< builder => Str >>
0fff36e6 344
345Defines a method name to be called to provide the default value of the
346attribute. C<< builder => 'build_foo' >> is mostly equivalent to
347C<< default => sub { $_[0]->build_foo } >>.
348
1820fffe 349=item C<< auto_deref => Bool >>
0fff36e6 350
351Allows you to automatically dereference ArrayRef and HashRef attributes in list
352context. In scalar context, the reference is returned (NOT the list length or
353bucket status). You must specify an appropriate type constraint to use
354auto_deref.
355
1820fffe 356=item C<< lazy_build => Bool >>
357
358Automatically define the following options:
5253d13d 359
1820fffe 360 has $attr => (
361 # ...
362 lazy => 1
363 builder => "_build_$attr",
364 clearer => "clear_$attr",
365 predicate => "has_$attr",
366 );
5253d13d 367
0fff36e6 368=back
c3398f5b 369
1820fffe 370=head2 C<< confess(message) -> BOOM >>
c3398f5b 371
372L<Carp/confess> for your convenience.
373
1820fffe 374=head2 C<< blessed(value) -> ClassName | undef >>
c3398f5b 375
376L<Scalar::Util/blessed> for your convenience.
377
378=head1 MISC
379
380=head2 import
381
6caea456 382Importing Mouse will default your class' superclass list to L<Mouse::Object>.
c3398f5b 383You may use L</extends> to replace the superclass list.
384
385=head2 unimport
386
0fff36e6 387Please unimport Mouse (C<no Mouse>) so that if someone calls one of the
388keywords (such as L</extends>) it will break loudly instead breaking subtly.
c3398f5b 389
1820fffe 390=head1 SOURCE CODE ACCESS
c3398f5b 391
1820fffe 392We have a public git repository:
c3398f5b 393
1820fffe 394 git clone git://jules.scsys.co.uk/gitmo/Mouse.git
c3398f5b 395
1820fffe 396=head1 DEPENDENCIES
262801ef 397
1820fffe 398Perl 5.6.2 or later.
262801ef 399
1820fffe 400=head1 SEE ALSO
e693975f 401
1820fffe 402L<Moose>
e693975f 403
1820fffe 404L<Class::MOP>
e693975f 405
c817e8f1 406=head1 AUTHORS
c3398f5b 407
434ca269 408Shawn M Moore, E<lt>sartak at gmail.comE<gt>
c3398f5b 409
434ca269 410Yuval Kogman, E<lt>nothingmuch at woobling.orgE<gt>
fc9f8988 411
c817e8f1 412tokuhirom
413
414Yappo
415
ea6dc3a5 416wu-lee
417
434ca269 418Goro Fuji (gfx) E<lt>gfuji at cpan.orgE<gt>
ba55dea1 419
0fff36e6 420with plenty of code borrowed from L<Class::MOP> and L<Moose>
421
c3398f5b 422=head1 BUGS
423
1820fffe 424All complex software has bugs lurking in it, and this module is no exception.
425Please report any bugs to C<bug-mouse at rt.cpan.org>, or through the web
426interface at L<http://rt.cpan.org/Public/Dist/Display.html?Name=Mouse>
c3398f5b 427
428=head1 COPYRIGHT AND LICENSE
429
3ef6ae56 430Copyright 2008-2009 Infinity Interactive, Inc.
431
432http://www.iinteractive.com/
c3398f5b 433
434This program is free software; you can redistribute it and/or modify it
435under the same terms as Perl itself.
436
437=cut
438