—##############################################################################
# $Date: 2009-06-25 18:47:12 -0400 (Thu, 25 Jun 2009) $
# $Author: clonezone $
# $Revision: 3360 $
##############################################################################
use
5.006001;
use
strict;
use
warnings;
use
Readonly;
our
$VERSION
=
'1.099_001'
;
#-----------------------------------------------------------------------------
Readonly::Scalar
my
$EXPL
=>
q{Consider refactoring}
;
#-----------------------------------------------------------------------------
sub
supported_parameters {
return
(
{
name
=>
'max_mccabe'
,
description
=>
'The maximum complexity score allowed.'
,
default_string
=>
'20'
,
behavior
=>
'integer'
,
integer_minimum
=> 1,
},
);
}
sub
default_severity {
return
$SEVERITY_MEDIUM
}
sub
default_themes {
return
qw(core complexity maintenance)
}
sub
applies_to {
return
'PPI::Statement::Sub'
}
#-----------------------------------------------------------------------------
sub
violates {
my
(
$self
,
$elem
,
undef
) =
@_
;
my
$score
= calculate_mccabe_of_sub(
$elem
);
# Is it too complex?
return
if
$score
<=
$self
->{_max_mccabe};
my
$desc
;
if
(
my
$name
=
$elem
->name() ) {
$desc
=
qq<Subroutine "$name" with high complexity score ($score)>
;
}
else
{
$desc
=
qq<Anonymous subroutine with high complexity score ($score)>
;
}
return
$self
->violation(
$desc
,
$EXPL
,
$elem
);
}
1;
__END__
#-----------------------------------------------------------------------------
=pod
=for stopwords McCabe
=head1 NAME
Perl::Critic::Policy::Subroutines::ProhibitExcessComplexity - Minimize complexity by factoring code into smaller subroutines.
=head1 AFFILIATION
This Policy is part of the core L<Perl::Critic|Perl::Critic>
distribution.
=head1 DESCRIPTION
All else being equal, complicated code is more error-prone and more
expensive to maintain than simpler code. The first step towards
managing complexity is to establish formal complexity metrics. One
such metric is the McCabe score, which describes the number of
possible paths through a subroutine. This Policy approximates the
McCabe score by summing the number of conditional statements and
operators within a subroutine. Research has shown that a McCabe score
higher than 20 is a sign of high-risk, potentially untestable code.
for some discussion about the McCabe number and other complexity
metrics.
The usual prescription for reducing complexity is to refactor code
into smaller subroutines. Mark Dominus book "Higher Order Perl" also
describes callbacks, recursion, memoization, iterators, and other
techniques that help create simple and extensible Perl code.
=head1 CONFIGURATION
The maximum acceptable McCabe can be set with the C<max_mccabe>
configuration item. Any subroutine with a McCabe score higher than
this number will generate a policy violation. The default is 20. An
example section for a F<.perlcriticrc>:
[Subroutines::ProhibitExcessComplexity]
max_mccabe = 30
=head1 NOTES
"Everything should be made as simple as possible, but no simpler."
-- Albert Einstein
Complexity is subjective, but formal complexity metrics are still
incredibly valuable. Every problem has an inherent level of
complexity, so it is not necessarily optimal to minimize the McCabe
number. So don't get offended if your code triggers this Policy.
Just consider if there B<might> be a simpler way to get the job done.
=head1 AUTHOR
Jeffrey Ryan Thalhammer <thaljef@cpan.org>
=head1 COPYRIGHT
Copyright (c) 2005-2009 Jeffrey Ryan Thalhammer. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. The full text of this license
can be found in the LICENSE file included with this module.
=cut
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# indent-tabs-mode: nil
# c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :