Perl::Critic::Policy - Base class for all Policy modules |
Perl::Critic::Policy - Base class for all Policy modules
Perl::Critic::Policy is the abstract base class for all Policy objects. If you're developing your own Policies, your job is to implement and override its methods in a subclass. To work with the the Perl::Critic manpage engine, your implementation must behave as described below. For a detailed explanation on how to make new Policy modules, please see the the Perl::Critic::DEVELOPER manpage document included in this distribution.
new(key1 => value1, key2 => value2 ... )
new
method, the default
method simply returns a reference to an empty hash that has been
blessed into your subclass. However, you really should not override
this; override initialize_if_enabled()
instead.
This constructor is always called regardless of whether the user has enabled this Policy or not.
initialize_if_enabled( { key1 => value1, key2 => value2 ... } )
new()
, but as a reference to a
hash, and is only invoked if this Policy is enabled by the user.
Thus, this is the preferred place for subclasses to do any
initialization.
Implementations of this method should return a boolean value
indicating whether the Policy should continue to be enabled. For most
subclasses, this will always be $TRUE
. Policies that depend upon
external modules or other system facilities that may or may not be
available should test for the availability of these dependencies and
return $FALSE
if they are not.
violates( $element, $document )
$element
violates this
Policy. If there are no violations, then it returns an empty list.
If the Policy encounters an exception, then it should croak
with an
error message and let the caller decide how to handle it.
violates()
is an abstract method and it will abort if you attempt
to invoke it directly. It is the heart of all Policy modules, and
your subclass must override this method.
violation( $description, $explanation, $element )
Perl::Critic::Violation
object. The
arguments are a description of the violation (as string), an
explanation for the policy (as string) or a series of page numbers in
PBP (as an ARRAY ref), a reference to the PPI element that caused
the violation.
These are the same as the constructor to the Perl::Critic::Violation manpage, but without the severity. The Policy itself knows the severity.
get_long_name()
get_short_name()
applies_to()
PPI::Element
. Overriding this
method in Policy subclasses should lead to significant performance
increases.
default_severity()
$SEVERITY
constants in the Perl::Critic::Utils manpage for an enumeration of
possible severity values. By default, this method returns
$SEVERITY_LOWEST
. Authors of Perl::Critic::Policy subclasses
should override this method to return a value that they feel is
appropriate for their Policy. In general, Polices that are widely
accepted or tend to prevent bugs should have a higher severity than
those that are more subjective or cosmetic in nature.
get_severity()
set_severity
, then the
default_severity
is returned. See the $SEVERITY
constants in
the Perl::Critic::Utils manpage for an enumeration of possible severity values.
set_severity( $N )
default_severity
. See the $SEVERITY
constants in
the Perl::Critic::Utils manpage for an enumeration of possible values.
default_themes()
get_themes()
set_themes( @THEME_LIST )
add_themes( @THEME_LIST )
set_format( $FORMAT )
"%p\n"
. See
OVERLOADS for formatting options.
get_format()
to_string()
$FORMAT
package
variable. See OVERLOADS for the details.
When your Policy module first use
s the Perl::Critic::Violation manpage, it
will try and extract the DESCRIPTION section of your Policy module's
POD. This information is displayed by Perl::Critic if the verbosity
level is set accordingly. Therefore, please include a DESCRIPTION
section in the POD for any Policy modules that you author. Thanks.
Perl::Critic::Violation overloads the ""
operator to produce neat
little messages when evaluated in string context. The format depends
on the current value of the $FORMAT
package variable.
Formats are a combination of literal and escape characters similar to
the way sprintf
works. If you want to know the specific formatting
capabilities, look at the String::Format manpage. Valid escape characters are:
%O
%P
%p
Perl::Critic::Policy::
prefix.
%S
%s
%T
%t
Jeffrey Ryan Thalhammer <thaljef@cpan.org>
Copyright (c) 2005-2007 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.
Perl::Critic::Policy - Base class for all Policy modules |