bump version to 0.75_01
[gitmo/Moose.git] / lib / Moose / Meta / Role.pm
index 71d9d80..9c00815 100644 (file)
@@ -6,8 +6,9 @@ use warnings;
 use metaclass;
 
 use Scalar::Util 'blessed';
+use Carp         'confess';
 
-our $VERSION   = '0.61';
+our $VERSION   = '0.75_01';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -116,13 +117,21 @@ foreach my $action (
     }) if exists $methods->{remove};
 }
 
+$META->add_attribute(
+    'method_metaclass',
+    reader  => 'method_metaclass',
+    default => 'Moose::Meta::Role::Method',
+);
+
 ## some things don't always fit, so they go here ...
 
 sub add_attribute {
     my $self = shift;
     my $name = shift;
-    (defined $name && $name)
-        || Moose->throw_error("You must provide a name for the attribute");
+    unless ( defined $name && $name ) {
+        require Moose;
+        Moose->throw_error("You must provide a name for the attribute");
+    }
     my $attr_desc;
     if (scalar @_ == 1 && ref($_[0]) eq 'HASH') {
         $attr_desc = $_[0];
@@ -133,15 +142,6 @@ sub add_attribute {
     $self->get_attribute_map->{$name} = $attr_desc;
 }
 
-# DEPRECATED 
-# sub _clean_up_required_methods {
-#     my $self = shift;
-#     foreach my $method ($self->get_required_method_list) {
-#         $self->remove_required_methods($method)
-#             if $self->has_method($method);
-#     }
-# }
-
 ## ------------------------------------------------------------------
 ## method modifiers
 
@@ -253,7 +253,7 @@ sub update_package_cache_flag {
 ## ------------------------------------------------------------------
 ## subroles
 
-__PACKAGE__->meta->add_attribute('roles' => (
+$META->add_attribute('roles' => (
     reader  => 'get_roles',
     default => sub { [] }
 ));
@@ -292,8 +292,6 @@ sub does_role {
 ## ------------------------------------------------------------------
 ## methods
 
-sub method_metaclass { 'Moose::Meta::Role::Method' }
-
 sub get_method_map {
     my $self = shift;
 
@@ -310,28 +308,20 @@ sub get_method_map {
     my $role_name        = $self->name;
     my $method_metaclass = $self->method_metaclass;
 
-    my %all_code = $self->get_all_package_symbols('CODE');
+    my $all_code = $self->get_all_package_symbols('CODE');
 
-    foreach my $symbol (keys %all_code) {
-        my $code = $all_code{$symbol};
+    foreach my $symbol (keys %{ $all_code }) {
+        my $code = $all_code->{$symbol};
 
         next if exists  $map->{$symbol} &&
                 defined $map->{$symbol} &&
                         $map->{$symbol}->body == $code;
 
         my ($pkg, $name) = Class::MOP::get_code_info($code);
+        my $meta = Class::MOP::class_of($pkg);
 
-        if ($pkg->can('meta')
-            # NOTE:
-            # we don't know what ->meta we are calling
-            # here, so we need to be careful cause it
-            # just might blow up at us, or just complain
-            # loudly (in the case of Curses.pm) so we
-            # just be a little overly cautious here.
-            # - SL
-            && eval { no warnings; blessed($pkg->meta) } # FIXME calls meta
-            && $pkg->meta->isa('Moose::Meta::Role')) {
-            my $role = $pkg->meta->name;
+        if ($meta && $meta->isa('Moose::Meta::Role')) {
+            my $role = $meta->name;
             next unless $self->does_role($role);
         }
         else {
@@ -368,7 +358,7 @@ sub has_method {
     exists $self->get_method_map->{$name} ? 1 : 0
 }
 
-# FIXME this is copypasated from Class::MOP::Class
+# FIXME this is copy-pasted from Class::MOP::Class
 # refactor to inherit from some common base
 sub wrap_method_body {
     my ( $self, %args ) = @_;
@@ -423,6 +413,8 @@ sub get_method_list {
 }
 
 sub alias_method {
+    Carp::cluck("The alias_method method is deprecated. Use add_method instead.\n");
+
     my $self = shift;
 
     $self->add_method(@_);
@@ -461,7 +453,7 @@ sub combine {
     my (@roles, %role_params);
     while (@role_specs) {
         my ($role, $params) = @{ splice @role_specs, 0, 1 };
-        push @roles => $role->meta;
+        push @roles => Class::MOP::class_of($role);
         next unless defined $params;
         $role_params{$role} = $params; 
     }
@@ -474,6 +466,119 @@ sub combine {
     return $c;
 }
 
+sub create {
+    my ( $role, $package_name, %options ) = @_;
+
+    $options{package} = $package_name;
+
+    (ref $options{attributes} eq 'HASH')
+        || confess "You must pass a HASH ref of attributes"
+            if exists $options{attributes};
+
+    (ref $options{methods} eq 'HASH')
+        || confess "You must pass a HASH ref of methods"
+            if exists $options{methods};
+
+    my (%initialize_options) = %options;
+    delete @initialize_options{qw(
+        package
+        attributes
+        methods
+        version
+        authority
+    )};
+
+    my $meta = $role->initialize( $package_name => %initialize_options );
+
+    $meta->_instantiate_module( $options{version}, $options{authority} );
+
+    # FIXME totally lame
+    $meta->add_method('meta' => sub {
+        $role->initialize(ref($_[0]) || $_[0]);
+    });
+
+    if (exists $options{attributes}) {
+        foreach my $attribute_name (keys %{$options{attributes}}) {
+            my $attr = $options{attributes}->{$attribute_name};
+            $meta->add_attribute($attribute_name => $attr);
+        }
+    }
+
+    if (exists $options{methods}) {
+        foreach my $method_name (keys %{$options{methods}}) {
+            $meta->add_method($method_name, $options{methods}->{$method_name});
+        }
+    }
+
+    Class::MOP::weaken_metaclass($meta->name)
+        if $meta->is_anon_role;
+
+    return $meta;
+}
+
+# anonymous roles. most of it is copied straight out of Class::MOP::Class.
+# an intrepid hacker might find great riches if he unifies this code with that
+# code in Class::MOP::Module or Class::MOP::Package
+{
+    # NOTE:
+    # this should be sufficient, if you have a
+    # use case where it is not, write a test and
+    # I will change it.
+    my $ANON_ROLE_SERIAL = 0;
+
+    # NOTE:
+    # we need a sufficiently annoying prefix
+    # this should suffice for now, this is
+    # used in a couple of places below, so
+    # need to put it up here for now.
+    my $ANON_ROLE_PREFIX = 'Moose::Meta::Role::__ANON__::SERIAL::';
+
+    sub is_anon_role {
+        my $self = shift;
+        no warnings 'uninitialized';
+        $self->name =~ /^$ANON_ROLE_PREFIX/;
+    }
+
+    sub create_anon_role {
+        my ($role, %options) = @_;
+        my $package_name = $ANON_ROLE_PREFIX . ++$ANON_ROLE_SERIAL;
+        return $role->create($package_name, %options);
+    }
+
+    # NOTE:
+    # this will only get called for
+    # anon-roles, all other calls
+    # are assumed to occur during
+    # global destruction and so don't
+    # really need to be handled explicitly
+    sub DESTROY {
+        my $self = shift;
+
+        return if Class::MOP::in_global_destruction(); # it'll happen soon anyway and this just makes things more complicated
+
+        no warnings 'uninitialized';
+        return unless $self->name =~ /^$ANON_ROLE_PREFIX/;
+
+        # XXX: is this necessary for us? I don't understand what it's doing
+        # -sartak
+
+        # Moose does a weird thing where it replaces the metaclass for
+        # class when fixing metaclass incompatibility. In that case,
+        # we don't want to clean out the namespace now. We can detect
+        # that because Moose will explicitly update the singleton
+        # cache in Class::MOP.
+        #my $current_meta = Class::MOP::get_metaclass_by_name($self->name);
+        #return if $current_meta ne $self;
+
+        my ($serial_id) = ($self->name =~ /^$ANON_ROLE_PREFIX(\d+)/);
+        no strict 'refs';
+        foreach my $key (keys %{$ANON_ROLE_PREFIX . $serial_id}) {
+            delete ${$ANON_ROLE_PREFIX . $serial_id}{$key};
+        }
+        delete ${'main::' . $ANON_ROLE_PREFIX}{$serial_id . '::'};
+    }
+}
+
 #####################################################################
 ## NOTE:
 ## This is Moose::Meta::Role as defined by Moose (plus the use of 
@@ -607,164 +712,245 @@ Moose::Meta::Role - The Moose Role metaclass
 
 =head1 DESCRIPTION
 
-Please see L<Moose::Role> for more information about roles.
-For the most part, this has no user-serviceable parts inside
-this module. It's API is still subject to some change (although
-probably not that much really).
+This class is a subclass of L<Class::MOP::Module> that provides
+additional Moose-specific functionality.
+
+It's API looks a lot like L<Moose::Meta::Class>, but internally it
+implements many things differently. This may change in the future.
+
+=head1 INHERITANCE
+
+C<Moose::Meta::Role> is a subclass of L<Class::MOP::Module>.
 
 =head1 METHODS
 
+=head2 Construction
+
 =over 4
 
-=item B<meta>
+=item B<< Moose::Meta::Role->initialize($role_name) >>
 
-=item B<new>
+This method creates a new role object with the provided name.
 
-=item B<apply>
+=item B<< Moose::Meta::Role->combine( [ $role => { ... } ], [ $role ], ... ) >>
 
-=item B<apply_to_metaclass_instance>
+This method accepts a list of array references. Each array reference
+should contain a role name as its first element. The second element is
+an optional hash reference. The hash reference can contain C<exclude>
+and C<alias> keys to control how methods are composed from the role.
 
-=item B<combine>
+The return value is a new L<Moose::Meta::Role::Composite> that
+represents the combined roles.
 
-=back
+=item B<< Moose::Meta::Role->create($name, %options) >>
 
-=over 4
+This method is identical to the L<Moose::Meta::Class> C<create>
+method.
 
-=item B<name>
+=item B<< Moose::Meta::Role->create_anon_role >>
 
-=item B<version>
+This method is identical to the L<Moose::Meta::Class>
+C<create_anon_class> method.
 
-=item B<role_meta>
+=item B<< $metarole->is_anon_role >>
+
+Returns true if the role is an anonymous role.
 
 =back
 
+=head2 Role application
+
 =over 4
 
-=item B<get_roles>
+=item B<< $metarole->apply( $thing, @options ) >>
+
+This method applies a role to the given C<$thing>. That can be another
+L<Moose::Meta::Role>, object, a L<Moose::Meta::Class> object, or a
+(non-meta) object instance.
 
-=item B<add_role>
+The options are passed directly to the constructor for the appropriate
+L<Moose::Meta::Role::Application> subclass.
 
-=item B<does_role>
+Note that this will apply the role even if the C<$thing> in question already
+C<does> this role.  L<Moose::Util/does_role> is a convenient wrapper for
+finding out if role application is necessary.
 
 =back
 
+=head2 Roles and other roles
+
 =over 4
 
-=item B<add_excluded_roles>
+=item B<< $metarole->get_roles >>
+
+This returns an array reference of roles which this role does. This
+list may include duplicates.
 
-=item B<excludes_role>
+=item B<< $metarole->calculate_all_roles >>
 
-=item B<get_excluded_roles_list>
+This returns a I<unique> list of all roles that this role does, and
+all the roles that its roles do.
 
-=item B<get_excluded_roles_map>
+=item B<< $metarole->does_role($role_name) >>
 
-=item B<calculate_all_roles>
+Given a role I<name>, returns true if this role does the given
+role.
+
+=item B<< $metarole->add_role($role) >>
+
+Given a L<Moose::Meta::Role> object, this adds the role to the list of
+roles that the role does.
+
+=item B<< $metarole->get_excluded_roles_list >>
+
+Returns a list of role names which this role excludes.
+
+=item B<< $metarole->excludes_role($role_name) >>
+
+Given a role I<name>, returns true if this role excludes the named
+role.
+
+=item B<< $metarole->add_excluded_roles(@role_names) >>
+
+Given one or more role names, adds those roles to the list of excluded
+roles.
 
 =back
 
-=over 4
+=head2 Methods
 
-=item B<method_metaclass>
+The methods for dealing with a role's methods are all identical in API
+and behavior to the same methods in L<Class::MOP::Class>.
 
-=item B<find_method_by_name>
+=over 4
 
-=item B<get_method>
+=item B<< $metarole->method_metaclass >>
 
-=item B<has_method>
+Returns the method metaclass name for the role. This defaults to
+L<Moose::Meta::Role::Method>.
 
-=item B<add_method>
+=item B<< $metarole->get_method($name) >>
 
-=item B<wrap_method_body>
+=item B<< $metarole->has_method($name) >>
 
-=item B<alias_method>
+=item B<< $metarole->add_method( $name, $body ) >>
 
-=item B<get_method_list>
+=item B<< $metarole->get_method_list >>
 
-=item B<get_method_map>
+=item B<< $metarole->get_method_map >>
 
-=item B<update_package_cache_flag>
+=item B<< $metarole->find_method_by_name($name) >>
 
-=item B<reset_package_cache_flag>
+These methods are all identical to the methods of the same name in
+L<Class::MOP::Class>
 
 =back
 
+=head2 Attributes
+
+As with methods, the methods for dealing with a role's attribute are
+all identical in API and behavior to the same methods in
+L<Class::MOP::Class>.
+
+However, attributes stored in this class are I<not> stored as
+objects. Rather, the attribute definition is stored as a hash
+reference. When a role is composed into a class, this hash reference
+is passed directly to the metaclass's C<add_attribute> method.
+
+This is quite likely to change in the future.
+
 =over 4
 
-=item B<add_attribute>
+=item B<< $metarole->get_attribute($attribute_name) >>
 
-=item B<has_attribute>
+=item B<< $metarole->has_attribute($attribute_name) >>
 
-=item B<get_attribute>
+=item B<< $metarole->get_attribute_map >>
 
-=item B<get_attribute_list>
+=item B<< $metarole->get_attribute_list >>
 
-=item B<get_attribute_map>
+=item B<< $metarole->add_attribute($name, %options) >>
 
-=item B<remove_attribute>
+=item B<< $metarole->remove_attribute($attribute_name) >>
 
 =back
 
+=head2 Required methods
+
 =over 4
 
-=item B<add_required_methods>
+=item B<< $metarole->get_required_method_list >>
 
-=item B<remove_required_methods>
+Returns the list of methods required by the role.
 
-=item B<get_required_method_list>
+=item B<< $metarole->requires_method($name) >>
 
-=item B<get_required_methods_map>
+Returns true if the role requires the named method.
 
-=item B<requires_method>
+=item B<< $metarole->add_required_methods(@names >>
 
-=back
+Adds the named methods to the roles list of required methods.
 
-=over 4
+=item B<< $metarole->remove_required_methods(@names) >>
 
-=item B<add_after_method_modifier>
+Removes the named methods to the roles list of required methods.
 
-=item B<add_around_method_modifier>
+=back
 
-=item B<add_before_method_modifier>
+=head2 Method modifiers
 
-=item B<add_override_method_modifier>
+These methods act like their counterparts in L<Class::Mop::Class> and
+L<Moose::Meta::Class>.
+
+However, method modifiers are simply stored internally, and are not
+applied until the role itself is applied to a class.
 
 =over 4
 
-=back
+=item B<< $metarole->add_after_method_modifier($method_name, $method) >>
 
-=item B<has_after_method_modifiers>
+=item B<< $metarole->add_around_method_modifier($method_name, $method) >>
 
-=item B<has_around_method_modifiers>
+=item B<< $metarole->add_before_method_modifier($method_name, $method) >>
 
-=item B<has_before_method_modifiers>
+=item B<< $metarole->add_override_method_modifier($method_name, $method) >>
 
-=item B<has_override_method_modifier>
+These methods all add an appropriate modifier to the internal list of
+modifiers.
 
-=over 4
+=item B<< $metarole->has_after_method_modifiers >>
 
-=back
+=item B<< $metarole->has_around_method_modifiers >>
 
-=item B<get_after_method_modifiers>
+=item B<< $metarole->has_before_method_modifiers >>
 
-=item B<get_around_method_modifiers>
+=item B<< $metarole->has_override_method_modifier >>
 
-=item B<get_before_method_modifiers>
+Return true if the role has any modifiers of the given type.
 
-=item B<get_method_modifier_list>
+=item B<< $metarole->get_after_method_modifiers($method_name) >>
 
-=over 4
+=item B<< $metarole->get_around_method_modifiers($method_name) >>
 
-=back
+=item B<< $metarole->get_before_method_modifiers($method_name) >>
+
+Given a method name, returns a list of the appropriate modifiers for
+that method.
 
-=item B<get_override_method_modifier>
+=item B<< $metarole->get_override_method_modifier($method_name) >>
 
-=item B<get_after_method_modifiers_map>
+Given a method name, returns the override method modifier for that
+method, if it has one.
 
-=item B<get_around_method_modifiers_map>
+=back
+
+=head2 Introspection
+
+=over 4
 
-=item B<get_before_method_modifiers_map>
+=item B<< Moose::Meta::Role->meta >>
 
-=item B<get_override_method_modifiers_map>
+This will return a L<Class::MOP::Class> instance for this class.
 
 =back
 
@@ -780,7 +966,7 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006-2008 by Infinity Interactive, Inc.
+Copyright 2006-2009 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>