File Coverage

blib/lib/MooX/PluginKit/Consumer.pm
Criterion Covered Total %
statement 115 135 85.1
branch 37 52 71.1
condition 16 24 66.6
subroutine 29 32 90.6
pod 3 3 100.0
total 200 246 81.3


line stmt bran cond sub pod time code
1             package MooX::PluginKit::Consumer;
2              
3             our $VERSION = '0.05';
4              
5             =head1 NAME
6              
7             MooX::PluginKit::Consumer - Declare a class as a consumer of
8             PluginKit plugins.
9              
10             =head1 SYNOPSIS
11              
12             package My::Class;
13             use Moo;
14             use MooX::PluginKit::Consumer;
15            
16             # Optional, defaults to just 'My::Class'.
17             plugin_namespace 'My::Class::Plugin';
18            
19             has_pluggable_object some_object => (
20             class => 'Some::Object',
21             );
22            
23             my $object = My::Class->new(
24             plugins => [...],
25             some_object=>{...},
26             );
27              
28             =head1 DESCRIPTION
29              
30             This module, when Cd, sets the callers base class to the
31             L class, applies the
32             L role to the caller, and
33             exports several candy functions (see L) into the
34             caller.
35              
36             Some higher-level documentation about how to consume plugins can
37             be found at L.
38              
39             =cut
40              
41 3     3   596543 use MooX::PluginKit::Core;
  3         13  
  3         256  
42 3     3   1207 use MooX::PluginKit::ConsumerRole;
  3         8  
  3         103  
43 3     3   20 use Types::Standard -types;
  3         6  
  3         16  
44 3     3   11341 use Types::Common::String -types;
  3         6  
  3         22  
45 3     3   5166 use Class::Method::Modifiers qw( install_modifier );
  3         4073  
  3         178  
46 3     3   21 use Module::Runtime qw( require_module );
  3         15  
  3         22  
47 3     3   131 use Scalar::Util qw( blessed );
  3         6  
  3         123  
48 3     3   16 use Carp qw( croak );
  3         5  
  3         115  
49 3     3   27 use Exporter qw();
  3         5  
  3         52  
50              
51 3     3   13 use strictures 2;
  3         19  
  3         109  
52 3     3   512 use namespace::clean;
  3         5  
  3         18  
53              
54             our @EXPORT = qw(
55             plugin_namespace
56             has_pluggable_object
57             has_pluggable_class
58             );
59              
60             sub import {
61             {
62 12     12   5770 my $caller = (caller())[0];
  12         39  
63 12         52 init_consumer( $caller );
64 12         43 get_consumer_moo_extends( $caller )->('MooX::PluginKit::ConsumerBase');
65 12         6361 get_consumer_moo_with( $caller )->('MooX::PluginKit::ConsumerRole');
66             }
67              
68 12         14097 goto &Exporter::import;
69             }
70              
71             =head1 CANDY
72              
73             =head2 plugin_namespace
74              
75             plugin_namespace 'Location::Of::My::Plugins';
76              
77             When the L argument is set
78             the user may choose to pass relative plugins. Setting this namespace
79             changes the default root namespace used to resolve these relative
80             plugin names to absolute ones.
81              
82             This defaults to the package name of the class which uses this module.
83              
84             Read more about this at L.
85              
86             =cut
87              
88             sub plugin_namespace {
89 1     1 1 72 my ($consumer) = caller();
90 1         4 local $Carp::Internal{ (__PACKAGE__) } = 1;
91 1         5 set_consumer_namespace( $consumer, @_ );
92 1         2 return;
93             }
94              
95             =head2 has_pluggable_object
96              
97             has_pluggable_object foo_bar => (
98             class => 'Foo::Bar',
99             );
100              
101             This function acts like L but adds a bunch of functionality,
102             making it easy to cascade the creation of objects which automatically
103             have applicable plugins applied to them, at run-time.
104              
105             In the above C example, the user of your class can then specify
106             the C argument as a hashref. This hashref will be used to
107             create an object of the C class, but not until after any
108             applicable plugins set on the consumer class have been applied to it.
109              
110             Documented below are the L argument which are supported as well
111             as several custom arguments (like C, above).
112              
113             Note that you MUST set either L, L, or L.
114              
115             Read more about this at L.
116              
117             =head3 Moo Arguments
118              
119             This function only supports a subset of the arguments that L
120             supports. They are:
121              
122             builder
123             default
124             handles
125             init_arg
126             isa
127             required
128             weak_ref
129              
130             =head3 class
131              
132             Setting this to a class name does two things, 1) it declares the C on
133             the attributes to validate that the final value is an instance of the class
134             or a subclass of it, and 2) sets L to it.
135              
136             =head3 default_class
137              
138             If no class is specified this will be the default class used. A common idiom
139             of using both L and this is:
140              
141             has_pluggable_object foo => (
142             class => 'Foo',
143             default_class => 'Foo::SubClass',
144             );
145              
146             Meaning, in the above example, that the final object may be any subclass of the
147             C class, but if no class is specified, it will be constructed from the
148             C class.
149              
150             =head3 class_arg
151              
152             If the class to be instantiated can be derived from the hashref argument to
153             this attribute then set this to the name of the key in the hashref to get the
154             class from. Setting this to a C<1> is the same as setting it to C. So,
155             these are the same:
156              
157             has_pluggable_object foo => ( class_arg=>1 );
158             has_pluggable_object foo => ( class_arg=>'class' );
159              
160             Then when passing the hashref the class can be declared as part of it:
161              
162             my $thing = YourClass->new( foo=>{ class=>'Foo::Stuff', ... } );
163              
164             =head3 class_builder
165              
166             Set this to a method name or a code ref which will be used to build the
167             class name. This sub will be called as a method and passed the args hashref
168             and is expected to return a class name.
169              
170             If this is set to C<1> then the method name will be automatically generated
171             based on the attribute name. So, these are identical:
172              
173             has_pluggable_object foo => ( class_builder=>1 );
174             has_pluggable_object foo => ( class_builder=>'_foo_build_class' );
175              
176             Then make the sub:
177              
178             sub _foo_build_class { my ($self, $args) = @_; ...; return $class }
179              
180             Note that the class builder will not be called if L if set and
181             the user has specified a class argument.
182              
183             =head3 class_namespace
184              
185             Set this to allow the class to be relative. This way if the class starts with
186             C<::> then this namespace will be automatically prefixed to it.
187              
188             =head3 args_builder
189              
190             Set this to a method name or a code ref which will be used to adjust the
191             hashref arguments before the object is constructed from them. This sub will
192             be called as a method and passed the args hashref and is epxected to return
193             an args hashref.
194              
195             If this is set to C<1> then the method name will be automatically generated
196             based on the attribute name. So, these are identical:
197              
198             has_pluggable_object foo => ( args_builder=>1 );
199             has_pluggable_object foo => ( args_builder=>'_foo_build_args' );
200              
201             Then make the sub:
202              
203             sub _foo_build_args { my ($self, $args) = @_; ...; return $args }
204              
205             =cut
206              
207             sub has_pluggable_object {
208 9     9 1 29080 my ($name, %args) = @_;
209 9         41 my $consumer_class = (caller())[0];
210 9         38 local $Carp::Internal{ (__PACKAGE__) } = 1;
211              
212 9         44 my $has = get_consumer_moo_has( $consumer_class );
213              
214 9         40 my $class_builder = _normalize_class_builder( $name, $consumer_class, %args );
215 9         49 my $args_builder = _normalize_args_builder( $name, $consumer_class, %args );
216              
217 9         21 my $isa = delete $args{isa};
218 9         21 my $class = delete $args{class};
219              
220 9 50       27 if (!defined $isa) {
221 9 100       38 $isa = InstanceOf[ $class ] if defined $class;
222 9   66     3914 $isa ||= Object;
223             }
224              
225 9         94 my $init_name = "_init_$name";
226 9         42 my $init_isa = $isa | HashRef;
227              
228             $has->(
229             $init_name,
230             init_arg => $name,
231             is => 'ro',
232             isa => $init_isa,
233             lazy => 1,
234             (
235 0         0 map { $_ => $args{$_} }
236 9         4687 grep { exists $args{$_} }
  45         126  
237             qw( default builder required weak_ref init_arg )
238             ),
239             );
240              
241 9         6295 my $attr_isa = $isa;
242 9 50       64 $attr_isa = $attr_isa | Undef if !$args{required};
243              
244             $has->(
245             $name,
246             init_arg => undef,
247             is => 'lazy',
248             isa => $attr_isa,
249             (
250 0         0 map { $_ => $args{$_} }
251 9         1343 grep { exists $args{$_} }
  18         60  
252             qw( handles weak_ref )
253             ),
254             builder => _build_attr_builder(
255             $init_name, $args_builder, $class_builder,
256             ),
257             );
258              
259 9         16552 return;
260             }
261              
262             # Avoid circular references by making this anonymous sub into a separate closure.
263             sub _build_attr_builder {
264 9     9   33 my ($init_name, $args_builder, $class_builder) = @_;
265              
266             return sub{
267 9     9   677 my ($self) = @_;
        9      
        9      
        9      
        9      
        9      
        9      
        9      
        9      
        9      
268              
269 9         30 my $args = $self->$init_name();
270 9 50       38 return $args if ref($args) ne 'HASH';
271 9 100       38 $args = $self->$args_builder({ %$args }) if defined $args_builder;
272              
273 9         198 my $class = $self->$class_builder( $args );
274              
275 9         37 return $self->class_new_with_plugins(
276             $class, $args,
277             );
278 9         56 };
279             }
280              
281             sub _normalize_class_builder {
282 9     9   31 my ($name, $consumer_class, %args) = @_;
283              
284 9         27 my $class = delete $args{class};
285 9         18 my $default_class = delete $args{default_class};
286 9         20 my $class_arg = delete $args{class_arg};
287 9         18 my $class_builder = delete $args{class_builder};
288 9         18 my $class_namespace = delete $args{class_namespace};
289              
290 9 50       35 $default_class = $class if !defined $default_class;
291 9 50 66     40 $class_arg = undef if defined($class_arg) and "$class_arg" eq '0';
292 9 50 66     42 $class_builder = undef if defined($class_builder) and "$class_builder" eq '0';
293              
294 9 100 100     34 $class_arg = 'class' if defined($class_arg) and "$class_arg" eq '1';
295              
296 9         16 my $class_builder_sub;
297 9 100       39 if (ref($class_builder) eq 'CODE') {
    100          
298 1         4 $class_builder_sub = $class_builder;
299 1         2 $class_builder = 1;
300             }
301             elsif (!defined $class_builder) {
302 6     4   26 $class_builder_sub = sub{ undef };
  4         23  
303 6         13 $class_builder = 1;
304             }
305              
306 9 100 66     52 if (defined($class_builder) and "$class_builder" eq '1') {
307 8         23 $class_builder = $name . '_build_class';
308 8 50       38 $class_builder = '_' . $class_builder if $class_builder !~ m{^_};
309             }
310              
311 9 100       30 if ($class_builder_sub) {
312 7         29 install_modifier(
313             $consumer_class, 'fresh',
314             $class_builder => $class_builder_sub,
315             );
316             }
317              
318             install_modifier(
319             $consumer_class, 'around',
320             $class_builder => sub{
321 9     9   249 my ($orig, $self, $args) = @_;
322              
323 9 100       32 my $class = defined($class_arg) ? $args->{$class_arg} : undef;
324 9 100       100 $class = $self->$orig( $args ) if !defined $class;
325 9 100       36 $class = $default_class if !defined $class;
326 9 50       26 return undef if !defined $class;
327              
328 9 50       32 $class = $class_namespace . $class if $class =~ m{^::};
329 9         25 return $class;
330             },
331 9         1405 );
332              
333 9         2968 return $class_builder;
334             }
335              
336             sub _normalize_args_builder {
337 9     9   39 my ($name, $consumer_class, %args) = @_;
338              
339 9         27 my $args_builder = delete $args{args_builder};
340              
341 9 50 66     46 $args_builder = undef if defined($args_builder) and "$args_builder" eq '0';
342              
343 9         17 my $args_builder_sub;
344              
345 9 100       30 if (ref($args_builder) eq 'CODE') {
346 1         3 $args_builder_sub = $args_builder;
347 1         3 $args_builder = 1;
348             }
349              
350 9 100 100     40 if (defined($args_builder) and "$args_builder" eq '1') {
351 2         6 $args_builder = $name . '_build_args';
352 2 50       10 $args_builder = '_' . $args_builder if $args_builder !~ m{^_};
353             }
354              
355 9 100       53 if ($args_builder_sub) {
356 1         5 install_modifier(
357             $consumer_class, 'fresh',
358             $args_builder => $args_builder_sub,
359             );
360             }
361              
362 9         75 return $args_builder;
363             }
364              
365             =head2 has_pluggable_class
366              
367             has_pluggable_class foo_bar_class => (
368             default => 'Foo::Bar',
369             );
370              
371             This function acts like L but adds a bunch of functionality,
372             making it easy to refer to a class that gets plugins applied to it
373             at run-time.
374              
375             In the above C example, the user of your class can then specify
376             the C argument, if they wish, and the class they pass in will
377             have any relevant plugins applied to it.
378              
379             This function only supports a subset of the arguments that L
380             supports. They are:
381              
382             builder
383             default
384             init_arg
385             isa
386             required
387              
388             =cut
389              
390             sub has_pluggable_class {
391 0     0 1   my ($name, %args) = @_;
392 0           my $consumer_class = (caller())[0];
393 0           local $Carp::Internal{ (__PACKAGE__) } = 1;
394              
395 0           my $has = get_consumer_moo_has( $consumer_class );
396              
397 0           my $init_name = "_init_$name";
398              
399             $has->(
400             $init_name,
401             init_arg => $name,
402             is => 'ro',
403             isa => NonEmptySimpleStr,
404             lazy => 1,
405             (
406 0           map { $_ => $args{$_} }
407 0           grep { exists $args{$_} }
  0            
408             qw( default builder required init_arg )
409             ),
410             );
411              
412 0   0       my $isa = $args{isa} || ClassName;
413 0 0         $isa = $isa | Undef if !$args{required};
414              
415 0           $has->(
416             $name,
417             init_arg => undef,
418             is => 'lazy',
419             isa => $isa,
420             builder => _build_class_attr_builder(
421             $init_name,
422             ),
423             );
424              
425 0           return;
426             }
427              
428             sub _build_class_attr_builder {
429 0     0     my ($init_name) = @_;
430              
431             return sub{
432 0     0     my ($self) = @_;
433              
434 0           my $class = $self->$init_name();
435              
436 0 0         require_module $class if !$class->can('new');
437              
438 0           return $self->plugin_factory->build_class( $class );
439 0           };
440             }
441              
442             1;
443             __END__