File Coverage

blib/lib/metaclass.pm
Criterion Covered Total %
statement 28 28 100.0
branch 11 12 91.6
condition n/a
subroutine 5 5 100.0
pod n/a
total 44 45 97.7


line stmt bran cond sub pod time code
1             package metaclass;
2             our $VERSION = '2.2206';
3              
4 429     429   822152 use strict;
  429         1111  
  429         13192  
5 429     429   2288 use warnings;
  429         898  
  429         12846  
6              
7 429     429   12642 use Module::Runtime 'use_package_optimistically', 'use_module';
  429         35161  
  429         3554  
8 429     429   36874 use Class::MOP;
  429         1034  
  429         127353  
9              
10             sub import {
11 7821     7821   48176 my ( $class, @args ) = @_;
12              
13 7821 100       27564 unshift @args, "metaclass" if @args % 2 == 1;
14 7821         16374 my %options = @args;
15              
16 7821 100       21413 my $meta_name = exists $options{meta_name} ? $options{meta_name} : 'meta';
17 7821         13768 my $metaclass = delete $options{metaclass};
18              
19 7821 100       16185 unless ( defined $metaclass ) {
20 7413         11943 $metaclass = "Class::MOP::Class";
21             } else {
22 408         1957 use_package_optimistically($metaclass);
23             }
24              
25 7821 100       83093 ($metaclass->isa('Class::MOP::Class'))
26             || die use_module('Moose::Exception::MetaclassMustBeDerivedFromClassMOPClass')->new( class_name => $metaclass );
27              
28             # make sure the custom metaclasses get loaded
29 7819         23990 foreach my $key (grep { /_(?:meta)?class$/ } keys %options) {
  43         299  
30 38 50       3769 unless ( ref( my $class = $options{$key} ) ) {
31 38         118 use_package_optimistically($class)
32             }
33             }
34              
35 7819         22931 my $package = caller();
36              
37             # create a meta object so we can install &meta
38 7819         28653 my $meta = $metaclass->initialize($package => %options);
39 7816 100       42998 $meta->_add_meta_method($meta_name)
40             if defined $meta_name;
41             }
42              
43             1;
44              
45             # ABSTRACT: a pragma for installing and using Class::MOP metaclasses
46              
47             __END__
48              
49             =pod
50              
51             =encoding UTF-8
52              
53             =head1 NAME
54              
55             metaclass - a pragma for installing and using Class::MOP metaclasses
56              
57             =head1 VERSION
58              
59             version 2.2206
60              
61             =head1 SYNOPSIS
62              
63             package MyClass;
64              
65             # use Class::MOP::Class
66             use metaclass;
67              
68             # ... or use a custom metaclass
69             use metaclass 'MyMetaClass';
70              
71             # ... or use a custom metaclass
72             # and custom attribute and method
73             # metaclasses
74             use metaclass 'MyMetaClass' => (
75             'attribute_metaclass' => 'MyAttributeMetaClass',
76             'method_metaclass' => 'MyMethodMetaClass',
77             );
78              
79             # ... or just specify custom attribute
80             # and method classes, and Class::MOP::Class
81             # is the assumed metaclass
82             use metaclass (
83             'attribute_metaclass' => 'MyAttributeMetaClass',
84             'method_metaclass' => 'MyMethodMetaClass',
85             );
86              
87             # if we'd rather not install a 'meta' method, we can do this
88             use metaclass meta_name => undef;
89             # or if we'd like it to have a different name,
90             use metaclass meta_name => 'my_meta';
91              
92             =head1 DESCRIPTION
93              
94             This is a pragma to make it easier to use a specific metaclass
95             and a set of custom attribute and method metaclasses. It also
96             installs a C<meta> method to your class as well, unless C<undef>
97             is passed to the C<meta_name> option.
98              
99             Note that if you are using Moose, you most likely do B<not> want
100             to be using this - look into L<Moose::Util::MetaRole> instead.
101              
102             =head1 AUTHORS
103              
104             =over 4
105              
106             =item *
107              
108             Stevan Little <stevan@cpan.org>
109              
110             =item *
111              
112             Dave Rolsky <autarch@urth.org>
113              
114             =item *
115              
116             Jesse Luehrs <doy@cpan.org>
117              
118             =item *
119              
120             Shawn M Moore <sartak@cpan.org>
121              
122             =item *
123              
124             יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
125              
126             =item *
127              
128             Karen Etheridge <ether@cpan.org>
129              
130             =item *
131              
132             Florian Ragwitz <rafl@debian.org>
133              
134             =item *
135              
136             Hans Dieter Pearcey <hdp@cpan.org>
137              
138             =item *
139              
140             Chris Prather <chris@prather.org>
141              
142             =item *
143              
144             Matt S Trout <mstrout@cpan.org>
145              
146             =back
147              
148             =head1 COPYRIGHT AND LICENSE
149              
150             This software is copyright (c) 2006 by Infinity Interactive, Inc.
151              
152             This is free software; you can redistribute it and/or modify it under
153             the same terms as the Perl 5 programming language system itself.
154              
155             =cut