Some ClassName simplification and fixes
[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
306290e8 12use Mouse::Meta::Attribute;
13use Mouse::Meta::Class;
c3398f5b 14use Mouse::Object;
d60c78b9 15use Mouse::TypeRegistry;
c3398f5b 16
17do {
18 my $CALLER;
19
20 my %exports = (
21 meta => sub {
306290e8 22 my $meta = Mouse::Meta::Class->initialize($CALLER);
c3398f5b 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) {
306290e8 40 Mouse::Meta::Attribute->create($package, $name, @_);
c3398f5b 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
306290e8 65 my $meta = Mouse::Meta::Class->initialize($CALLER);
ca73a208 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;
79af4b55 85 return if ref($class);
86 return unless defined($class) && length($class);
c3398f5b 87
2a674d23 88 return 1 if is_class_loaded($class);
89
c3398f5b 90 (my $file = "$class.pm") =~ s{::}{/}g;
91
92 eval { CORE::require($file) };
2a674d23 93 confess "Could not load class ($class) because : $@" if $@;
c3398f5b 94
95 return 1;
96}
97
2a674d23 98sub is_class_loaded {
99 my $class = shift;
100
7ecc2123 101 return 0 if ref($class) || !defined($class) || !length($class);
102
2a674d23 103 no strict 'refs';
104 return 1 if defined ${"${class}::VERSION"} || defined @{"${class}::ISA"};
105 foreach my $symbol (keys %{"${class}::"}) {
106 next if substr($symbol, -2, 2) eq '::';
107 return 1 if defined &{"${class}::${symbol}"};
108 }
109 return 0;
110}
111
c3398f5b 1121;
113
114__END__
115
116=head1 NAME
117
6caea456 118Mouse - Moose minus antlers
c3398f5b 119
120=head1 VERSION
121
122Version 0.01 released ???
123
124=head1 SYNOPSIS
125
126 package Point;
6caea456 127 use Mouse; # automatically turns on strict and warnings
128
129 has 'x' => (is => 'rw', isa => 'Int');
130 has 'y' => (is => 'rw', isa => 'Int');
131
132 sub clear {
133 my $self = shift;
134 $self->x(0);
135 $self->y(0);
136 }
137
138 package Point3D;
c3398f5b 139 use Mouse;
140
6caea456 141 extends 'Point';
c3398f5b 142
6caea456 143 has 'z' => (is => 'rw', isa => 'Int');
144
145 #after 'clear' => sub {
146 # my $self = shift;
147 # $self->z(0);
148 #};
c3398f5b 149
150=head1 DESCRIPTION
151
152Moose.
153
154=head1 INTERFACE
155
306290e8 156=head2 meta -> Mouse::Meta::Class
c3398f5b 157
158Returns this class' metaclass instance.
159
160=head2 extends superclasses
161
162Sets this class' superclasses.
163
164=head2 has (name|names) => parameters
165
166Adds an attribute (or if passed an arrayref of names, multiple attributes) to
167this class.
168
169=head2 confess error -> BOOM
170
171L<Carp/confess> for your convenience.
172
173=head2 blessed value -> ClassName | undef
174
175L<Scalar::Util/blessed> for your convenience.
176
177=head1 MISC
178
179=head2 import
180
6caea456 181Importing Mouse will default your class' superclass list to L<Mouse::Object>.
c3398f5b 182You may use L</extends> to replace the superclass list.
183
184=head2 unimport
185
186Please unimport Mouse so that if someone calls one of the keywords (such as
187L</extends>) it will break loudly instead breaking subtly.
188
189=head1 FUNCTIONS
190
191=head2 load_class Class::Name
192
6caea456 193This will load a given C<Class::Name> (or die if it's not loadable).
c3398f5b 194This function can be used in place of tricks like
195C<eval "use $module"> or using C<require>.
196
197=head1 AUTHOR
198
199Shawn M Moore, C<< <sartak at gmail.com> >>
200
201=head1 BUGS
202
203No known bugs.
204
205Please report any bugs through RT: email
206C<bug-mouse at rt.cpan.org>, or browse
207L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mouse>.
208
209=head1 COPYRIGHT AND LICENSE
210
211Copyright 2008 Shawn M Moore.
212
213This program is free software; you can redistribute it and/or modify it
214under the same terms as Perl itself.
215
216=cut
217