Add parens to has's attr definition
[gitmo/MooseX-Singleton.git] / lib / MooseX / Singleton.pm
CommitLineData
443f4253 1package MooseX::Singleton;
ede8dce0 2
494ee6d2 3use Moose 0.82 ();
ede8dce0 4use Moose::Exporter;
a4e5ec1e 5use MooseX::Singleton::Role::Object;
6use MooseX::Singleton::Role::Meta::Class;
7use MooseX::Singleton::Role::Meta::Instance;
443f4253 8
c77ec30d 9our $VERSION = '0.21';
ede8dce0 10$VERSION = eval $VERSION;
443f4253 11
ede8dce0 12Moose::Exporter->setup_import_methods( also => 'Moose' );
443f4253 13
ede8dce0 14sub init_meta {
15 shift;
8eec3c69 16 my %p = @_;
17
18 Moose->init_meta(%p);
19
20 my $caller = $p{for_class};
21
22 Moose::Util::MetaRole::apply_metaclass_roles(
23 for_class => $caller,
24 metaclass_roles => ['MooseX::Singleton::Role::Meta::Class'],
25 instance_metaclass_roles =>
26 ['MooseX::Singleton::Role::Meta::Instance'],
27 constructor_class_roles =>
28 ['MooseX::Singleton::Role::Meta::Method::Constructor'],
ede8dce0 29 );
8eec3c69 30
31 Moose::Util::MetaRole::apply_base_class_roles(
32 for_class => $caller,
33 roles =>
34 ['MooseX::Singleton::Role::Object'],
35 );
36
37 return $caller->meta();
443f4253 38}
39
8eec3c69 40
443f4253 411;
42
b375b147 43__END__
44
45=pod
46
47=head1 NAME
48
49MooseX::Singleton - turn your Moose class into a singleton
50
b375b147 51=head1 SYNOPSIS
52
53 package MyApp;
54 use MooseX::Singleton;
55
56 has env => (
57 is => 'rw',
58 isa => 'HashRef[Str]',
59 default => sub { \%ENV },
60 );
61
62 package main;
63
64 delete MyApp->env->{PATH};
65 my $instance = MyApp->instance;
66 my $same = MyApp->instance;
67
68=head1 DESCRIPTION
69
70A singleton is a class that has only one instance in an application.
71C<MooseX::Singleton> lets you easily upgrade (or downgrade, as it were) your
72L<Moose> class to a singleton.
73
74All you should need to do to transform your class is to change C<use Moose> to
75C<use MooseX::Singleton>. This module uses a new class metaclass and instance
76metaclass, so if you're doing metamagic you may not be able to use this.
77
03e1b8df 78C<MooseX::Singleton> gives your class an C<instance> method that can be used to
79get a handle on the singleton. It's actually just an alias for C<new>.
b375b147 80
81Alternatively, C<< YourPackage->method >> should just work. This includes
82accessors.
83
03e1b8df 84If you need to reset your class's singleton object for some reason (e.g.
85tests), you can call C<< YourPackage->_clear_instance >>.
86
b375b147 87=head1 TODO
88
89=over
90
91=item Always more tests and doc
92
93=item Fix speed boost
94
95C<instance> invokes C<new> every time C<< Package->method >> is called, which
96incurs a nontrivial runtime cost. I've implemented a short-circuit for this
97case, which does eliminate nearly all of the runtime cost. However, it's ugly
98and should be fixed in a more elegant way.
99
100=back
101
102=head1 BUGS
103
104All complex software has bugs lurking in it, and this module is no
105exception. If you find a bug please either email me, or add the bug
106to cpan-RT.
107
060d6e6b 108=head1 AUTHORS
b375b147 109
110Shawn M Moore E<lt>sartak@gmail.comE<gt>
111
060d6e6b 112Dave Rolsky E<lt>autarch@urth.orgE<gt>
113
b375b147 114=head1 SOME CODE STOLEN FROM
115
116Anders Nor Berle E<lt>debolaz@gmail.comE<gt>
117
d64d5811 118=head1 AND PATCHES FROM
119
120Ricardo SIGNES E<lt>rjbs@cpan.orgE<gt>
121
b375b147 122=head1 COPYRIGHT AND LICENSE
123
aee76780 124Copyright 2007, 2008 Infinity Interactive
b375b147 125
126This program is free software; you can redistribute it and/or modify it under
127the same terms as Perl itself.
128
129=cut
130