X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Singleton.git;a=blobdiff_plain;f=lib%2FMooseX%2FSingleton.pm;h=b73707eeef42b51c8f4d0dbb24f5dcdada335b98;hp=5b65d5dec1c53c8e66fadcc34278002078e73a1d;hb=51e6046bc95a815f79db1c079b4c0ee43243ad2a;hpb=553b1b2b47f55ea6c5651d10fc79e14f9a1992a0 diff --git a/lib/MooseX/Singleton.pm b/lib/MooseX/Singleton.pm index 5b65d5d..b73707e 100644 --- a/lib/MooseX/Singleton.pm +++ b/lib/MooseX/Singleton.pm @@ -1,20 +1,45 @@ package MooseX::Singleton; -use Moose; -use MooseX::Singleton::Object; -use MooseX::Singleton::Meta::Class; -our $VERSION = 0.05; +use Moose 0.94 (); +use Moose::Exporter; +use MooseX::Singleton::Role::Object; +use MooseX::Singleton::Role::Meta::Class; +use MooseX::Singleton::Role::Meta::Instance; -sub import { - my $caller = caller; +our $VERSION = '0.23'; +$VERSION = eval $VERSION; - Moose::init_meta($caller, 'MooseX::Singleton::Object', 'MooseX::Singleton::Meta::Class'); +Moose::Exporter->setup_import_methods( also => 'Moose' ); - Moose->import({into => $caller}); - strict->import; - warnings->import; +sub init_meta { + shift; + 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'], + }, + ); + + Moose::Util::MetaRole::apply_base_class_roles( + for_class => $caller, + roles => + ['MooseX::Singleton::Role::Object'], + ); + + return $caller->meta(); } + 1; __END__ @@ -25,10 +50,6 @@ __END__ MooseX::Singleton - turn your Moose class into a singleton -=head1 VERSION - -Version 0.04, released 03 Feb 08 - =head1 SYNOPSIS package MyApp; @@ -53,39 +74,50 @@ 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 +This clears the existing singleton instance for the class. Obviously, this is +meant for use only inside the class itself. + +=head2 Singleton->new + +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. =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. +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 AUTHOR +=head1 AUTHORS Shawn M Moore Esartak@gmail.comE +Dave Rolsky Eautarch@urth.orgE + =head1 SOME CODE STOLEN FROM Anders Nor Berle Edebolaz@gmail.comE @@ -96,7 +128,7 @@ Ricardo SIGNES Erjbs@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2007 Shawn M Moore. +Copyright 2007-2009 Infinity Interactive This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.