File Coverage

blib/lib/Catmandu/Pluggable.pm
Criterion Covered Total %
statement 21 22 95.4
branch 3 6 50.0
condition 3 6 50.0
subroutine 5 5 100.0
pod 2 2 100.0
total 34 41 82.9


line stmt bran cond sub pod time code
1              
2             use Catmandu::Sane;
3 21     21   96263  
  21         43  
  21         153  
4             our $VERSION = '1.2018';
5              
6             use Moo::Role;
7 21     21   157 use namespace::clean;
  21         44  
  21         113  
8 21     21   7000  
  21         55  
  21         124  
9              
10 16     16 1 1793 my $class = shift;
11             $class = ref $class || $class;
12             my @plugins = ref $_[0] eq 'ARRAY' ? @{$_[0]} : @_;
13 15     15 1 24 @plugins = split /,/, join ',', @plugins;
14 15   66     57 @plugins || return $class;
15 15 50       55 my $ns = $class->plugin_namespace;
  0         0  
16 15         58 Moo::Role->create_class_with_roles(
17 15 50       38 $class,
18 15         52 map {
19             my $pkg = $_;
20             if ($pkg !~ s/^\+// && $pkg !~ /^$ns/) {
21             $pkg = "${ns}::${pkg}";
22 15         35 }
  16         27  
23 16 50 33     165 $pkg;
24 16         47 } @plugins
25             );
26 16         83 }
27              
28             1;
29              
30              
31             =pod
32              
33             =head1 NAME
34              
35             Catmandu::Pluggable - A role for classes that need plugin capabilities
36              
37             =head1 SYNOPSIS
38              
39             package My::Foo::Bar;
40              
41             use Role::Tiny;
42              
43             before foo => sub {
44             print "Before foo!\n";
45             };
46              
47             after foo => sub {
48             print "After foo!\n";
49             };
50              
51             sub extra {
52             print "I can do extra too\n";
53             }
54              
55             package My::Foo;
56              
57             use Moo;
58              
59             with 'Catmandu::Pluggable';
60              
61             sub plugin_namespace {
62             'My::Foo';
63             }
64              
65             sub foo {
66             print "Foo!\n";
67             }
68              
69             package main;
70              
71             my $x = My::Foo->with_plugins('Bar')->new;
72              
73             # prints:
74             # Before foo!
75             # Foo!
76             # After foo!
77             $x->foo;
78              
79             # prints:
80             # I can do extra too
81             $x->extra;
82              
83             =head1 METHODS
84              
85             =head2 plugin_namespace
86              
87             Returns the namespace where all plugins for your class can be found.
88              
89             =head2 with_plugins(NAME)
90              
91             =head2 with_plugins(NAME,NAME,...)
92              
93             This class method returns a subclass of your class with all provided plugins NAME-s implemented.
94              
95             =head1 SEE ALSO
96              
97             L<Catmandu::Bag>,
98             L<Catmandu::Plugin::Datestamps>,
99             L<Catmandu::Plugin::Versioning>
100              
101             =cut