/usr/share/perl5/Module/CPANTS/Kwalitee.pm is in libmodule-cpants-analyse-perl 0.96-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | package Module::CPANTS::Kwalitee;
use 5.006;
use strict;
use warnings;
use base qw(Class::Accessor);
use Carp;
our $VERSION = '0.96';
$VERSION = eval $VERSION; ## no critic
__PACKAGE__->mk_accessors(qw(generators _gencache _genhashcache _available _total));
sub import {
my $class = shift;
my %search_path = map {(/^Module::CPANTS::/ ? $_ : "Module::CPANTS::$_") => 1 } @_;
$search_path{'Module::CPANTS::Kwalitee'} = 1;
require Module::Pluggable;
Module::Pluggable->import(search_path => [keys %search_path]);
}
sub new {
my $class=shift;
my $me=bless {},$class;
my %generators;
foreach my $gen ($me->plugins) {
## no critic (ProhibitStringyEval)
eval "require $gen";
croak qq{cannot load $gen: $@} if $@;
$generators{$gen}= [ $gen->order, $gen ];
}
# sort by 'order' first, then name
my @generators=sort {
$generators{$a}->[0] <=> $generators{$b}->[0]
||
$generators{$a}->[1] cmp $generators{$b}->[1]
} keys %generators;
$me->generators(\@generators);
$me->_gencache({});
return $me;
}
sub get_indicators {
my $self=shift;
my $type = shift || 'all';
$type='is_extra' if $type eq 'optional';
$type='is_experimental' if $type eq 'experimental';
my $indicators;
if ($self->_gencache->{$type}) {
$indicators=$self->_gencache->{$type};
} else {
my @aggregators;
foreach my $gen (@{$self->generators}) {
foreach my $ind (@{$gen->kwalitee_indicators}) {
if ($type eq 'all'
|| ($type eq 'core' && !$ind->{is_extra} && !$ind->{is_experimental})
|| $ind->{$type}) {
$ind->{defined_in}=$gen;
if ($ind->{aggregating}) {
push @aggregators, $ind;
next;
}
push(@$indicators,$ind);
}
}
}
push @$indicators, @aggregators;
$self->_gencache->{$type}=$indicators;
}
return wantarray ? @$indicators : $indicators;
}
sub get_indicators_hash {
my $self=shift;
my $indicators;
if ($self->_genhashcache) {
$indicators=$self->_genhashcache;
} else {
foreach my $gen (@{$self->generators}) {
foreach my $ind (@{$gen->kwalitee_indicators}) {
$ind->{defined_in}=$gen;
$indicators->{$ind->{name}}=$ind;
}
}
$self->_genhashcache($indicators);
}
return $indicators;
}
sub available_kwalitee {
my $self=shift;
my $mem=$self->_available;
return $mem if $mem;
my $available;
foreach my $g ($self->get_indicators) {
$available++ unless $g->{is_extra} || $g->{is_experimental};
}
$self->_available($available);
}
sub total_kwalitee {
my $self=shift;
my $mem=$self->_total;
return $mem if $mem;
my $available;
foreach my $g ($self->get_indicators) {
$available++ unless $g->{is_experimental};
}
$self->_total($available);
}
sub all_indicator_names {
my $self=shift;
my @all=map { $_->{name} } $self->get_indicators;
return wantarray ? @all : \@all;
}
sub core_indicator_names {
my $self=shift;
my @all=map { $_->{name} } grep { !$_->{is_extra} && !$_->{is_experimental} } $self->get_indicators;
return wantarray ? @all : \@all;
}
sub optional_indicator_names {
my $self=shift;
my @all=map { $_->{name} } grep { $_->{is_extra} } $self->get_indicators;
return wantarray ? @all : \@all;
}
sub experimental_indicator_names {
my $self=shift;
my @all=map { $_->{name} } grep { $_->{is_experimental} } $self->get_indicators;
return wantarray ? @all : \@all;
}
q{Favourite record of the moment:
Jahcoozi: Pure Breed Mongrel};
__END__
=encoding UTF-8
=head1 NAME
Module::CPANTS::Kwalitee - Interface to Kwalitee generators
=head1 SYNOPSIS
my $mck=Module::CPANTS::Kwalitee->new;
my @generators=$mck->generators;
=head1 DESCRIPTION
=head2 Methods
=head3 new
Plain old constructor.
Loads all Plugins.
=head3 get_indicators
Get the list of all Kwalitee indicators, either as an ARRAY or ARRAYREF.
=head3 get_indicators_hash
Get the list of all Kwalitee indicators as an HASHREF.
=head3 core_indicator_names
Get a list of core indicator names (NOT the whole indicator HASHREF).
=head3 optional_indicator_names
Get a list of optional indicator names (NOT the whole indicator HASHREF).
=head3 experimental_indicator_names
Get a list of experimental indicator names (NOT the whole indicator HASHREF).
=head3 all_indicator_names
Get a list of all indicator names (NOT the whole indicator HASHREF).
=head3 available_kwalitee
Get the number of available kwalitee points
=head3 total_kwalitee
Get the total number of kwalitee points. This is bigger the available_kwalitee as some kwalitee metrics are marked as 'extra' (eg is_prereq).
=head1 SEE ALSO
L<Module::CPANTS::Analyse>
=head1 AUTHOR
L<Thomas Klausner|https://metacpan.org/author/domm>
=head1 COPYRIGHT AND LICENSE
Copyright © 2003–2006, 2009 L<Thomas Klausner|https://metacpan.org/author/domm>
You may use and distribute this module according to the same terms
that Perl is distributed under.
|