package Moose::Meta::Role::Application::ToInstance; use strict; use warnings; use metaclass; use Carp 'confess'; use Scalar::Util 'blessed'; our $VERSION = '0.02'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Application::ToClass'; __PACKAGE__->meta->add_attribute('rebless_params' => ( reader => 'rebless_params', default => sub { {} } )); my %ANON_CLASSES; sub apply { my ($self, $role, $object) = @_; my $anon_role_key = (blessed($object) . $role->name); my $class; if (exists $ANON_CLASSES{$anon_role_key} && defined $ANON_CLASSES{$anon_role_key}) { $class = $ANON_CLASSES{$anon_role_key}; } else { $class = Moose::Meta::Class->create_anon_class( superclasses => [ blessed($object) ] ); $ANON_CLASSES{$anon_role_key} = $class; $self->SUPER::apply($role, $class); } $class->rebless_instance($object, %{$self->rebless_params}); } 1; __END__ =pod =head1 NAME Moose::Meta::Role::Application::ToInstance - Compose a role into an instance =head1 DESCRIPTION =head2 METHODS =over 4 =item B =item B =item B =item B =back =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. =head1 AUTHOR Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE Copyright 2006-2008 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. =cut