Honestly, I can't really think of any good uses for it. I figured it might be useful in genetic algorithms or simulations where you want to redefine methods for a subset of instances.
Anyway, here it is.
package Class::Unique; use warnings; use strict; use Scalar::Util 'refaddr'; use Carp 'croak'; our $VERSION = '0.01'; my $PKG = 'Class::Unique PACKAGE'; sub new { my $class = shift; my $obj = { }; my $unique_class = $class . '::' . refaddr $obj; { no strict 'refs'; @{ $unique_class . '::ISA' } = ( $class ); } # so we don't have to rely on ref() $obj->{$PKG} = $unique_class; return bless $obj, $unique_class; } sub install { my $self = shift; my %args = @_; foreach my $s( keys %args ) { no strict 'refs'; *{ $self->{$PKG} . '::' . $s } = $args{$s}; } } 1; =head1 NAME Class::Unique - Create a unique subclass for every instance =head1 VERSION Version 0.01 =head1 SYNOPSIS package MyClass; use base 'Class::Unique'; sub foo { print "foo!\n"; } sub bar { print "bar!\n"; } ... use MyClass; my $obj1 = MyClass->new; my $obj2 = MyClass->new; my $new_foo = sub { print "new foo!\n"; }; $obj2->install( foo => $new_foo ); $obj1->foo; $obj1->bar; $obj2->foo; $obj2->bar; =head1 DESCRIPTION Class::Unique is a base class which provides a constructor and some utility routines for creating objects which instantiate into a unique subclass. If MyClass is a subclass of Class::Unique, and inherrits Class::Unique's constructor, then every object returned by MyClass->new will be blessed into a dynamically created subclass of MyClass. This allows you to modify package data on a per-instance basis. =head1 METHODS The following methods are inherrited. =over =item C<new()> Constructor. Returns a hash ref blessed into a new dynamically created package. =item C<install()> Install a new subroutine into an object's class. $obj->install( subname => $code_ref ); This is really just a shortcut for doing: my $pkg = ref $obj; no strict 'refs'; *{ $pkg . '::subname' } = $code_ref; =back =head1 AUTHOR Mike Friedman, C<< <friedo@friedo.com> >> =head1 BUGS Please report any bugs or feature requests to C<bug-class-unique@rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Class-Unique>. I will be notified, and then you'll automatically be notified of progr +ess on your bug as I make changes. =head1 COPYRIGHT & LICENSE Copyright 2005 Mike Friedman, all rights reserved. This program is free software; you can redistribute it and/or modify i +t under the same terms as Perl itself. =cut
In reply to RFC: Class::Unique by friedo
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |