Commit | Line | Data |
2243a22b |
1 | |
2 | package Class::MOP::Module; |
3 | |
4 | use strict; |
5 | use warnings; |
6 | |
4edd0667 |
7 | use Carp 'confess'; |
2243a22b |
8 | use Scalar::Util 'blessed'; |
9 | |
a0e95742 |
10 | our $VERSION = '0.82_02'; |
d519662a |
11 | $VERSION = eval $VERSION; |
f0480c45 |
12 | our $AUTHORITY = 'cpan:STEVAN'; |
2243a22b |
13 | |
14 | use base 'Class::MOP::Package'; |
15 | |
7f436b8c |
16 | sub version { |
17 | my $self = shift; |
8b49a472 |
18 | ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'VERSION' })}; |
7f436b8c |
19 | } |
20 | |
f0480c45 |
21 | sub authority { |
22 | my $self = shift; |
8b49a472 |
23 | ${$self->get_package_symbol({ sigil => '$', type => 'SCALAR', name => 'AUTHORITY' })}; |
f0480c45 |
24 | } |
9d6dce77 |
25 | |
f0480c45 |
26 | sub identifier { |
27 | my $self = shift; |
28 | join '-' => ( |
29 | $self->name, |
30 | ($self->version || ()), |
31 | ($self->authority || ()), |
32 | ); |
33 | } |
9d6dce77 |
34 | |
4edd0667 |
35 | sub create { |
89f66023 |
36 | confess "The Class::MOP::Module->create method has been made a private object method.\n"; |
37 | } |
4edd0667 |
38 | |
89f66023 |
39 | sub _instantiate_module { |
40 | my $self = shift; |
41 | my $version = shift; |
42 | my $authority = shift; |
4edd0667 |
43 | |
89f66023 |
44 | my $package_name = $self->name; |
4edd0667 |
45 | |
46 | my $code = "package $package_name;"; |
89f66023 |
47 | |
48 | $code .= "\$$package_name\:\:VERSION = '" . $version . "';" |
49 | if defined $version; |
50 | $code .= "\$$package_name\:\:AUTHORITY = '" . $authority . "';" |
51 | if defined $authority; |
4edd0667 |
52 | |
53 | eval $code; |
54 | confess "creation of $package_name failed : $@" if $@; |
4edd0667 |
55 | } |
56 | |
2243a22b |
57 | 1; |
58 | |
59 | __END__ |
60 | |
61 | =pod |
62 | |
63 | =head1 NAME |
64 | |
65 | Class::MOP::Module - Module Meta Object |
66 | |
2243a22b |
67 | =head1 DESCRIPTION |
68 | |
1f44239e |
69 | A module is essentially a L<Class::MOP::Package> with metadata, in our |
70 | case the version and authority. |
127d39a7 |
71 | |
121991f6 |
72 | =head1 INHERITANCE |
73 | |
1f44239e |
74 | B<Class::MOP::Module> is a subclass of L<Class::MOP::Package>. |
121991f6 |
75 | |
2243a22b |
76 | =head1 METHODS |
77 | |
78 | =over 4 |
79 | |
1f44239e |
80 | =item B<< $metamodule->version >> |
2243a22b |
81 | |
1f44239e |
82 | This is a read-only attribute which returns the C<$VERSION> of the |
83 | package, if one exists. |
127d39a7 |
84 | |
1f44239e |
85 | =item B<< $metamodule->authority >> |
127d39a7 |
86 | |
1f44239e |
87 | This is a read-only attribute which returns the C<$AUTHORITY> of the |
88 | package, if one exists. |
127d39a7 |
89 | |
1f44239e |
90 | =item B<< $metamodule->identifier >> |
7f436b8c |
91 | |
1f44239e |
92 | This constructs a string which combines the name, version and |
93 | authority. |
b9d9fc0b |
94 | |
929e9565 |
95 | =item B<< Class::MOP::Module->meta >> |
f0480c45 |
96 | |
1f44239e |
97 | This will return a L<Class::MOP::Class> instance for this class. |
4edd0667 |
98 | |
2243a22b |
99 | =back |
100 | |
1a09d9cc |
101 | =head1 AUTHORS |
2243a22b |
102 | |
103 | Stevan Little E<lt>stevan@iinteractive.comE<gt> |
104 | |
105 | =head1 COPYRIGHT AND LICENSE |
106 | |
070bb6c9 |
107 | Copyright 2006-2009 by Infinity Interactive, Inc. |
2243a22b |
108 | |
109 | L<http://www.iinteractive.com> |
110 | |
111 | This library is free software; you can redistribute it and/or modify |
112 | it under the same terms as Perl itself. |
113 | |
ebce5539 |
114 | =cut |