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