X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FSingleton.pm;h=c98249073a013def6580cc7ca63e8e2cecb047c2;hb=7fc144c9cb90c2fc7f37fcf956f53bcefe369419;hp=bc2b7ec1b1ab6077c8460faf07de1cbe687e0c56;hpb=283bf6e6d41ced93a6082f77c3f87addf88da4e7;p=gitmo%2FMooseX-Singleton.git diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index bc2b7ec..c982490 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -1,37 +1,50 @@ package MooseX::Singleton; -use Moose 0.74 (); +use Moose 1.10 (); use Moose::Exporter; -use MooseX::Singleton::Object; -use MooseX::Singleton::Meta::Class; +use MooseX::Singleton::Role::Object; +use MooseX::Singleton::Role::Meta::Class; +use MooseX::Singleton::Role::Meta::Instance; -our $VERSION = '0.16'; -$VERSION = eval $VERSION; Moose::Exporter->setup_import_methods( also => 'Moose' ); sub init_meta { shift; - Moose->init_meta( - @_, - base_class => 'MooseX::Singleton::Object', - metaclass => 'MooseX::Singleton::Meta::Class', + my %p = @_; + + Moose->init_meta(%p); + + my $caller = $p{for_class}; + + Moose::Util::MetaRole::apply_metaroles( + for => $caller, + class_metaroles => { + class => ['MooseX::Singleton::Role::Meta::Class'], + instance => + ['MooseX::Singleton::Role::Meta::Instance'], + constructor => + ['MooseX::Singleton::Role::Meta::Method::Constructor'], + }, ); -} -1; + Moose::Util::MetaRole::apply_base_class_roles( + for_class => $caller, + roles => + ['MooseX::Singleton::Role::Object'], + ); -__END__ + return $caller->meta(); +} -=pod -=head1 NAME +1; -MooseX::Singleton - turn your Moose class into a singleton +# ABSTRACT: turn your Moose class into a singleton -=head1 VERSION +__END__ -Version 0.16, released 24 May 08 +=pod =head1 SYNOPSIS @@ -57,40 +70,43 @@ C lets you easily upgrade (or downgrade, as it were) your L class to a singleton. All you should need to do to transform your class is to change C to -C. This module uses a new class metaclass and instance -metaclass, so if you're doing metamagic you may not be able to use this. +C. This module uses metaclass roles to do its magic, so +it should cooperate with most other C modules. -C gives your class an C method that can be used to get a handle on the singleton. It's actually just an alias for C. +=head1 METHODS -Alternatively, C<< YourPackage->method >> should just work. This includes -accessors. +A singleton class will have the following additional methods: -=head1 TODO +=head2 Singleton->instance -=over +This returns the singleton instance for the given package. This method does +I accept any arguments. If the instance does not yet exist, it is created +with its defaults values. This means that if your singleton requires +arguments, calling C will die if the object has not already been +initialized. -=item Always more tests and doc +=head2 Singleton->initialize(%args) -=item Fix speed boost +This method can be called I. It explicitly initializes +the singleton object with the given arguments. -C invokes C every time C<< Package->method >> is called, which -incurs a nontrivial runtime cost. I've implemented a short-circuit for this -case, which does eliminate nearly all of the runtime cost. However, it's ugly -and should be fixed in a more elegant way. +=head2 Singleton->_clear_instance -=back - -=head1 BUGS +This clears the existing singleton instance for the class. Obviously, this is +meant for use only inside the class itself. -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. +=head2 Singleton->new -=head1 AUTHORS +This method currently works like a hybrid of C and +C. However, calling C directly will probably be deprecated in a +future release. Instead, call C or C as appropriate. -Shawn M Moore Esartak@gmail.comE +=head1 BUGS -Dave Rolsky Eautarch@urth.orgE +Please report any bugs or feature requests to +C, or through the web interface at +L. We will be notified, and then you'll automatically be +notified of progress on your bug as we make changes. =head1 SOME CODE STOLEN FROM @@ -100,12 +116,5 @@ Anders Nor Berle Edebolaz@gmail.comE Ricardo SIGNES Erjbs@cpan.orgE -=head1 COPYRIGHT AND LICENSE - -Copyright 2007, 2008 Infinity Interactive - -This program is free software; you can redistribute it and/or modify it under -the same terms as Perl itself. - =cut