7366c82c295c0471d9c6f141218f5bd636d563f5
[gitmo/Class-MOP.git] / lib / Class / MOP / Method / Meta.pm
1
2 package Class::MOP::Method::Meta;
3
4 use strict;
5 use warnings;
6
7 use Carp         'confess';
8 use Scalar::Util 'blessed';
9
10 our $VERSION   = '1.08';
11 $VERSION = eval $VERSION;
12 our $AUTHORITY = 'cpan:STEVAN';
13
14 use constant DEBUG_NO_META => $ENV{DEBUG_NO_META} ? 1 : 0;
15
16 use base 'Class::MOP::Method';
17
18 sub _is_caller_mop_internal {
19     my $self = shift;
20     my ($caller) = @_;
21     return $caller =~ /^(?:Class::MOP|metaclass)(?:::|$)/;
22 }
23
24 sub _generate_meta_method {
25     my $method_self = shift;
26     my $metaclass   = shift;
27     sub {
28         # this will be compiled out if the env var wasn't set
29         if (DEBUG_NO_META) {
30             confess "'meta' method called by MOP internals"
31                 # it's okay to call meta methods on metaclasses, since we
32                 # explicitly ask for them
33                 if !$_[0]->isa('Class::MOP::Object')
34                 && !$_[0]->isa('Class::MOP::Mixin')
35                 # it's okay if the test itself calls ->meta, we only care about
36                 # if the mop internals call ->meta
37                 && $method_self->_is_caller_mop_internal(scalar caller);
38         }
39         # we must re-initialize so that it
40         # works as expected in subclasses,
41         # since metaclass instances are
42         # singletons, this is not really a
43         # big deal anyway.
44         $metaclass->initialize(blessed($_[0]) || $_[0])
45     };
46 }
47
48 sub wrap {
49     my ($class, @args) = @_;
50
51     unshift @args, 'body' if @args % 2 == 1;
52     my %params = @args;
53     confess "Overriding the body of meta methods is not allowed"
54         if $params{body};
55
56     my $metaclass_class = $params{associated_metaclass}->meta;
57     $params{body} = $class->_generate_meta_method($metaclass_class);
58     return $class->SUPER::wrap(%params);
59 }
60
61 1;
62
63 __END__
64
65 =pod
66
67 =head1 NAME
68
69 Class::MOP::Method::Meta - Method Meta Object for C<meta> methods
70
71 =head1 DESCRIPTION
72
73 This is a L<Class::MOP::Method> subclass which represents C<meta>
74 methods installed into classes by Class::MOP.
75
76 =head1 METHODS
77
78 =over 4
79
80 =item B<< Class::MOP::Method::Wrapped->wrap($metamethod, %options) >>
81
82 This is the constructor. It accepts a L<Class::MOP::Method> object and
83 a hash of options. The options accepted are identical to the ones
84 accepted by L<Class::MOP::Method>, except that C<body> cannot be passed
85 (it will be generated automatically).
86
87 =back
88
89 =head1 AUTHORS
90
91 Jesse Luehrs E<lt>doy at tozt dot netE<gt>
92
93 =head1 COPYRIGHT AND LICENSE
94
95 Copyright 2006-2010 by Infinity Interactive, Inc.
96
97 L<http://www.iinteractive.com>
98
99 This library is free software; you can redistribute it and/or modify
100 it under the same terms as Perl itself.
101
102 =cut
103