Include method name in immutable methods (fixes #49680)
[gitmo/Class-MOP.git] / lib / metaclass.pm
CommitLineData
677eb158 1
2package metaclass;
3
4use strict;
5use warnings;
6
22286063 7use Carp 'confess';
8use Scalar::Util 'blessed';
677eb158 9
d499b013 10our $VERSION = '0.92_01';
d519662a 11$VERSION = eval $VERSION;
f0480c45 12our $AUTHORITY = 'cpan:STEVAN';
677eb158 13
14use Class::MOP;
15
16sub import {
ec21cb13 17 my ( $class, @args ) = @_;
18
19 unshift @args, "metaclass" if @args % 2 == 1;
20 my %options = @args;
21
22 my $metaclass = delete $options{metaclass};
23
24 unless ( defined $metaclass ) {
25 $metaclass = "Class::MOP::Class";
26 } else {
95514cb4 27 Class::MOP::load_class($metaclass);
1becdfcc 28 }
ec21cb13 29
30 ($metaclass->isa('Class::MOP::Class'))
31 || confess "The metaclass ($metaclass) must be derived from Class::MOP::Class";
32
8861fab2 33 # make sure the custom metaclasses get loaded
de12105a 34 foreach my $key (grep { /_(?:meta)?class$/ } keys %options) {
35 unless ( ref( my $class = $options{$key} ) ) {
36 Class::MOP::load_class($class)
37 }
8861fab2 38 }
39
d82060fe 40 my $package = caller();
95514cb4 41
677eb158 42 # create a meta object so we can install &meta
43 my $meta = $metaclass->initialize($package => %options);
44 $meta->add_method('meta' => sub {
95514cb4 45 # we must re-initialize so that it
46 # works as expected in subclasses,
47 # since metaclass instances are
48 # singletons, this is not really a
677eb158 49 # big deal anyway.
22286063 50 $metaclass->initialize((blessed($_[0]) || $_[0]) => %options)
677eb158 51 });
52}
53
541;
55
56__END__
57
58=pod
59
60=head1 NAME
61
96ceced8 62metaclass - a pragma for installing and using Class::MOP metaclasses
677eb158 63
64=head1 SYNOPSIS
65
550d56db 66 package MyClass;
67
68 # use Class::MOP::Class
95514cb4 69 use metaclass;
550d56db 70
71 # ... or use a custom metaclass
677eb158 72 use metaclass 'MyMetaClass';
95514cb4 73
74 # ... or use a custom metaclass
550d56db 75 # and custom attribute and method
76 # metaclasses
677eb158 77 use metaclass 'MyMetaClass' => (
c23184fc 78 'attribute_metaclass' => 'MyAttributeMetaClass',
95514cb4 79 'method_metaclass' => 'MyMethodMetaClass',
677eb158 80 );
81
1becdfcc 82 # ... or just specify custom attribute
83 # and method classes, and Class::MOP::Class
84 # is the assumed metaclass
85 use metaclass (
c23184fc 86 'attribute_metaclass' => 'MyAttributeMetaClass',
95514cb4 87 'method_metaclass' => 'MyMethodMetaClass',
1becdfcc 88 );
89
677eb158 90=head1 DESCRIPTION
91
95514cb4 92This is a pragma to make it easier to use a specific metaclass
93and a set of custom attribute and method metaclasses. It also
94installs a C<meta> method to your class as well.
c9e77dbb 95
1a09d9cc 96=head1 AUTHORS
677eb158 97
98Stevan Little E<lt>stevan@iinteractive.comE<gt>
99
100=head1 COPYRIGHT AND LICENSE
101
070bb6c9 102Copyright 2006-2009 by Infinity Interactive, Inc.
677eb158 103
104L<http://www.iinteractive.com>
105
106This library is free software; you can redistribute it and/or modify
95514cb4 107it under the same terms as Perl itself.
677eb158 108
16e960bd 109=cut