Some doc updates
[gitmo/Mouse.git] / lib / Mouse.pm
CommitLineData
c3398f5b 1#!perl
2package Mouse;
3use strict;
4use warnings;
5
6our $VERSION = '0.01';
7
8use Sub::Exporter;
9use Carp 'confess';
10use Scalar::Util 'blessed';
11
12use Mouse::Attribute;
13use Mouse::Class;
14use Mouse::Object;
d60c78b9 15use Mouse::TypeRegistry;
c3398f5b 16
17do {
18 my $CALLER;
19
20 my %exports = (
21 meta => sub {
22 my $meta = Mouse::Class->initialize($CALLER);
23 return sub { $meta };
24 },
25
26 extends => sub {
27 my $caller = $CALLER;
28 return sub {
29 $caller->meta->superclasses(@_);
30 };
31 },
32
33 has => sub {
34 return sub {
35 my $package = caller;
36 my $names = shift;
37 $names = [$names] if !ref($names);
38
39 for my $name (@$names) {
40 Mouse::Attribute->create($package, $name, @_);
41 }
42 };
43 },
44
45 confess => sub {
b17094ce 46 return \&confess;
c3398f5b 47 },
48
49 blessed => sub {
b17094ce 50 return \&blessed;
c3398f5b 51 },
52 );
53
54 my $exporter = Sub::Exporter::build_exporter({
55 exports => \%exports,
56 groups => { default => [':all'] },
57 });
58
59 sub import {
60 $CALLER = caller;
61
62 strict->import;
63 warnings->import;
64
ca73a208 65 my $meta = Mouse::Class->initialize($CALLER);
66 $meta->superclasses('Mouse::Object')
67 unless $meta->superclasses;
c3398f5b 68
69 goto $exporter;
70 }
71
72 sub unimport {
73 my $caller = caller;
74
75 no strict 'refs';
76 for my $keyword (keys %exports) {
77 next if $keyword eq 'meta'; # we don't delete this one
78 delete ${ $caller . '::' }{$keyword};
79 }
80 }
81};
82
83sub load_class {
84 my $class = shift;
85
86 (my $file = "$class.pm") =~ s{::}{/}g;
87
88 eval { CORE::require($file) };
89 confess "Could not load class ($class) because : $@"
90 if $@
91 && $@ !~ /^Can't locate .*? at /;
92
93 return 1;
94}
95
961;
97
98__END__
99
100=head1 NAME
101
6caea456 102Mouse - Moose minus antlers
c3398f5b 103
104=head1 VERSION
105
106Version 0.01 released ???
107
108=head1 SYNOPSIS
109
110 package Point;
6caea456 111 use Mouse; # automatically turns on strict and warnings
112
113 has 'x' => (is => 'rw', isa => 'Int');
114 has 'y' => (is => 'rw', isa => 'Int');
115
116 sub clear {
117 my $self = shift;
118 $self->x(0);
119 $self->y(0);
120 }
121
122 package Point3D;
c3398f5b 123 use Mouse;
124
6caea456 125 extends 'Point';
c3398f5b 126
6caea456 127 has 'z' => (is => 'rw', isa => 'Int');
128
129 #after 'clear' => sub {
130 # my $self = shift;
131 # $self->z(0);
132 #};
c3398f5b 133
134=head1 DESCRIPTION
135
136Moose.
137
138=head1 INTERFACE
139
140=head2 meta -> Mouse::Class
141
142Returns this class' metaclass instance.
143
144=head2 extends superclasses
145
146Sets this class' superclasses.
147
148=head2 has (name|names) => parameters
149
150Adds an attribute (or if passed an arrayref of names, multiple attributes) to
151this class.
152
153=head2 confess error -> BOOM
154
155L<Carp/confess> for your convenience.
156
157=head2 blessed value -> ClassName | undef
158
159L<Scalar::Util/blessed> for your convenience.
160
161=head1 MISC
162
163=head2 import
164
6caea456 165Importing Mouse will default your class' superclass list to L<Mouse::Object>.
c3398f5b 166You may use L</extends> to replace the superclass list.
167
168=head2 unimport
169
170Please unimport Mouse so that if someone calls one of the keywords (such as
171L</extends>) it will break loudly instead breaking subtly.
172
173=head1 FUNCTIONS
174
175=head2 load_class Class::Name
176
6caea456 177This will load a given C<Class::Name> (or die if it's not loadable).
c3398f5b 178This function can be used in place of tricks like
179C<eval "use $module"> or using C<require>.
180
181=head1 AUTHOR
182
183Shawn M Moore, C<< <sartak at gmail.com> >>
184
185=head1 BUGS
186
187No known bugs.
188
189Please report any bugs through RT: email
190C<bug-mouse at rt.cpan.org>, or browse
191L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mouse>.
192
193=head1 COPYRIGHT AND LICENSE
194
195Copyright 2008 Shawn M Moore.
196
197This program is free software; you can redistribute it and/or modify it
198under the same terms as Perl itself.
199
200=cut
201