in reply to Making an Existing Class a Singleton

Here's the new method from Class::Accessor:

sub new { my($proto, $fields) = @_; my($class) = ref $proto || $proto; $fields = {} unless defined $fields; # make a copy of $fields. bless {%$fields}, $class; }

If you haven't defined a new method of your own, that's what you're using. In that case, you can just write your own, based on that, to be something like this:

my $singleton; sub new { my($proto, $fields) = @_; my($class) = ref $proto || $proto; if ( ! defined $singleton ) { $fields = {} unless defined $fields; # make a copy of $fields. $singleton = bless {%$fields}, $class; } return $singleton; }

After that, you should be able to use it as usual with the caveat that after the first time the object is created, subsequent attempts to create it will not have the arguments to new honored. That is, if you do this:

my $c1 = C->new( foo => 'bar' ); my $c2 = C->new( foo => 12345 );

...then $c2->{foo} will still be 'bar'. If you're not passing any arguments to new, this won't be a problem.

If you've written your own new instead of using the one from Class::Accessor, you can adapt it in a similar way.

Replies are listed 'Best First'.
Re^2: Making an Existing Class a Singleton
by friedo (Prior) on Jan 23, 2008 at 16:57 UTC
    Rather than duplicating the whole parent class method, you can let it do most of the work:
    my $singleton; sub new { my $proto = shift; if ( !defined $singleton ) { $singleton = $proto->SUPER::new( @_ ); } return $singleton; }
Re^2: Making an Existing Class a Singleton
by moritz (Cardinal) on Jan 23, 2008 at 17:06 UTC
    If you use perl 5.10 (or want to start thinking in that direction) the variable $singleton is a perfect candidate for a state variable.
Re^2: Making an Existing Class a Singleton
by agianni (Hermit) on Jan 23, 2008 at 18:26 UTC
    That makes sense. I'm used to caching stuff in the object's blessed hash, but that's the wrong scope for the kind of caching that a singleton needs. It was so obvious that I missed it :)
    perl -e 'split//,q{john hurl, pest caretaker}and(map{print @_[$_]}(joi +n(q{},map{sprintf(qq{%010u},$_)}(2**2*307*4993,5*101*641*5261,7*59*79 +*36997,13*17*71*45131,3**2*67*89*167*181))=~/\d{2}/g));'