X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Fmetaclass.pm;h=756a076b1256c6d8ba26a154d956584ebefd0d99;hb=37f3c8751fededef5b4e8401180d5b43da6f90db;hp=e1bd16a0c54fb5e64032832d6a1898a503351d84;hpb=c23184fc39306590f9e481d76c199020a638bb28;p=gitmo%2FClass-MOP.git diff --git a/lib/metaclass.pm b/lib/metaclass.pm index e1bd16a..756a076 100644 --- a/lib/metaclass.pm +++ b/lib/metaclass.pm @@ -6,36 +6,59 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed'; +use Try::Tiny; -our $VERSION = '0.03'; +our $VERSION = '1.08'; +$VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; use Class::MOP; sub import { - shift; - my $metaclass; - if (!defined($_[0]) || $_[0] =~ /^(attribute|method|instance)_metaclass/) { - $metaclass = 'Class::MOP::Class'; + my ( $class, @args ) = @_; + + unshift @args, "metaclass" if @args % 2 == 1; + my %options = @args; + + my $metaclass = delete $options{metaclass}; + + unless ( defined $metaclass ) { + $metaclass = "Class::MOP::Class"; + } else { + Class::MOP::load_class($metaclass); } - else { - $metaclass = shift; - ($metaclass->isa('Class::MOP::Class')) - || confess "The metaclass ($metaclass) must be derived from Class::MOP::Class"; + + ($metaclass->isa('Class::MOP::Class')) + || confess "The metaclass ($metaclass) must be derived from Class::MOP::Class"; + + # make sure the custom metaclasses get loaded + foreach my $key (grep { /_(?:meta)?class$/ } keys %options) { + unless ( ref( my $class = $options{$key} ) ) { + Class::MOP::load_class($class) + } } - my %options = @_; + my $package = caller(); - + # create a meta object so we can install &meta my $meta = $metaclass->initialize($package => %options); + my $should_install = !delete $options{no_meta}; $meta->add_method('meta' => sub { - # we must re-initialize so that it - # works as expected in subclasses, - # since metaclass instances are - # singletons, this is not really a + # we must re-initialize so that it + # works as expected in subclasses, + # since metaclass instances are + # singletons, this is not really a # big deal anyway. + if (Class::MOP::DEBUG_NO_META()) { + my ($self) = @_; + if (my $meta = try { $self->SUPER::meta }) { + return $meta if $meta->isa('Class::MOP::Class'); + } + confess "'meta' method called by MOP internals" + if caller =~ /Class::MOP|metaclass/; + } $metaclass->initialize((blessed($_[0]) || $_[0]) => %options) - }); + }) if $should_install; } 1; @@ -53,17 +76,17 @@ metaclass - a pragma for installing and using Class::MOP metaclasses package MyClass; # use Class::MOP::Class - use metaclass; + use metaclass; # ... or use a custom metaclass use metaclass 'MyMetaClass'; - - # ... or use a custom metaclass + + # ... or use a custom metaclass # and custom attribute and method # metaclasses use metaclass 'MyMetaClass' => ( 'attribute_metaclass' => 'MyAttributeMetaClass', - 'method_metaclass' => 'MyMethodMetaClass', + 'method_metaclass' => 'MyMethodMetaClass', ); # ... or just specify custom attribute @@ -71,28 +94,30 @@ metaclass - a pragma for installing and using Class::MOP metaclasses # is the assumed metaclass use metaclass ( 'attribute_metaclass' => 'MyAttributeMetaClass', - 'method_metaclass' => 'MyMethodMetaClass', + 'method_metaclass' => 'MyMethodMetaClass', ); + # if we'd rather not install a 'meta' method, we can do this + use metaclass no_meta => 1; + =head1 DESCRIPTION -This is a pragma to make it easier to use a specific metaclass -and a set of custom attribute and method metaclasses. It also -installs a C method to your class as well. +This is a pragma to make it easier to use a specific metaclass +and a set of custom attribute and method metaclasses. It also +installs a C method to your class as well, if the +C option is not specified. =head1 AUTHORS Stevan Little Estevan@iinteractive.comE -Yuval Kogman Enothingmuch@woobling.comE - =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Infinity Interactive, Inc. +Copyright 2006-2010 by Infinity Interactive, Inc. L This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. +it under the same terms as Perl itself. =cut