| Perl-Critic documentation | Contained in the Perl-Critic distribution. |
Perl::Critic::Annotation - A "## no critic" annotation in a document.
use Perl::Critic::Annotation; $annotation = Perl::Critic::Annotation->new( -element => $no_critic_ppi_element ); $bool = $annotation->disables_line( $number ); $bool = $annotation->disables_policy( $policy_object ); $bool = $annotation->disables_all_policies(); ($start, $end) = $annotation->effective_range(); @disabled_policy_names = $annotation->disabled_policies();
Perl::Critic::Annotation represents a single "## no critic"
annotation in a PPI:Document. The Annotation takes care of parsing
the annotation and keeps track of which lines and Policies it affects.
It is intended to encapsulate the details of the no-critic
annotations, and to provide a way for Policy objects to interact with
the annotations (via a Perl::Critic::Document).
This is considered to be a non-public class. Its interface is subject to change without notice.
Given a Perl::Critic::Document, finds all the "## no critic"
annotations and constructs a new Perl::Critic::Annotation for each
one and returns them. The order of the returned objects is not
defined. It is generally expected that clients will use this
interface rather than calling the Perl::Critic::Annotation
constructor directly.
new( -element => $ppi_annotation_element )Returns a reference to a new Annotation object. The -element
argument is required and should be a PPI::Token::Comment that
conforms to the "## no critic" syntax.
disables_line( $line )Returns true if this Annotation disables $line for any (or all)
Policies.
disables_policy( $policy_object )disables_policy( $policy_name )Returns true if this Annotation disables $polciy_object or
$policy_name at any (or all) lines.
disables_all_policies()Returns true if this Annotation disables all Policies at any (or all)
lines. If this method returns true, disabled_policies will return
an empty list.
effective_range()Returns a two-element list, representing the first and last line numbers where this Annotation has effect.
disabled_policies()Returns a list of the names of the Policies that are affected by this
Annotation. If this list is empty, then it means that all Policies
are affected by this Annotation, and disables_all_policies() should
return true.
element()Returns the PPI::Element where this annotation started. This is typically an instance of PPI::Token::Comment.
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
Copyright (c) 2005-2011 Imaginative Software Systems. 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 documentation | Contained in the Perl-Critic distribution. |
############################################################################## # $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/distributions/Perl-Critic/lib/Perl/Critic/Annotation.pm $ # $Date: 2011-05-15 16:34:46 -0500 (Sun, 15 May 2011) $ # $Author: clonezone $ # $Revision: 4078 $ ############################################################################## package Perl::Critic::Annotation; use 5.006001; use strict; use warnings; use Carp qw(confess); use English qw(-no_match_vars); use Perl::Critic::PolicyFactory; use Perl::Critic::Utils qw(:characters hashify); use Readonly; #----------------------------------------------------------------------------- our $VERSION = '1.116'; Readonly::Scalar my $LAST_ELEMENT => -1; #============================================================================= # CLASS methods sub create_annotations { my ($class, $doc) = @_; my @annotations = (); my $comment_elements_ref = $doc->find('PPI::Token::Comment') || return; my $annotation_rx = qr{\A (?: [#]! .*? )? \s* [#][#] \s* no \s+ critic}xms; for my $annotation_element ( grep { $_ =~ $annotation_rx } @{$comment_elements_ref} ) { push @annotations, Perl::Critic::Annotation->new( -element => $annotation_element); } return @annotations; } #----------------------------------------------------------------------------- sub new { my ($class, @args) = @_; my $self = bless {}, $class; $self->_init(@args); return $self; } #============================================================================= # OBJECT methods sub _init { my ($self, %args) = @_; my $annotation_element = $args{-element} || confess '-element argument is required'; $self->{_element} = $annotation_element; my %disabled_policies = _parse_annotation( $annotation_element ); $self->{_disables_all_policies} = %disabled_policies ? 0 : 1; $self->{_disabled_policies} = \%disabled_policies; # Grab surrounding nodes to determine the context. # This determines whether the annotation applies to # the current line or the block that follows. my $annotation_line = $annotation_element->logical_line_number(); my $parent = $annotation_element->parent(); my $grandparent = $parent ? $parent->parent() : undef; # Handle case when it appears on the shebang line. In this # situation, it only affects the first line, not the whole doc if ( $annotation_element =~ m{\A [#]!}xms) { $self->{_effective_range} = [$annotation_line, $annotation_line]; return $self; } # Handle single-line usage on simple statements. In this # situation, it only affects the line that it appears on. if ( _is_single_line_annotation_on_simple_statement( $annotation_element ) ) { $self->{_effective_range} = [$annotation_line, $annotation_line]; return $self; } # Handle single-line usage on compound statements. In this # situation -- um -- I'm not sure how this works, but it does. if ( ref $parent eq 'PPI::Structure::Block' ) { if ( ref $grandparent eq 'PPI::Statement::Compound' || ref $grandparent eq 'PPI::Statement::Sub' ) { if ( $parent->logical_line_number() == $annotation_line ) { my $grandparent_line = $grandparent->logical_line_number(); $self->{_effective_range} = [$grandparent_line, $grandparent_line]; return $self; } } } # Handle multi-line usage. This is either a "no critic" .. # "use critic" region or a block where "no critic" is in effect # until the end of the scope. The start is the always the "no # critic" which we already found. So now we have to search for the end. my $end = $annotation_element; my $use_critic = qr{\A \s* [#][#] \s* use \s+ critic}xms; SIB: while ( my $esib = $end->next_sibling() ) { $end = $esib; # keep track of last sibling encountered in this scope last SIB if $esib->isa('PPI::Token::Comment') && $esib =~ $use_critic; } # PPI parses __END__ as a PPI::Statement::End, and everything following is # a child of that statement. That means if we encounter an __END__, we # need to descend into it and continue the analysis. if ( $end->isa( 'PPI::Statement::End' ) and my $kid = $end->child( 0 ) ) { $end = $kid; SIB: while ( my $esib = $end->next_sibling() ) { $end = $esib; last SIB if $esib->isa( 'PPI::Token::Comment' ) && $esib->content() =~ $use_critic; } } # We either found an end or hit the end of the scope. my $ending_line = $end->logical_line_number(); $self->{_effective_range} = [$annotation_line, $ending_line]; return $self; } #----------------------------------------------------------------------------- sub element { my ($self) = @_; return $self->{_element}; } #----------------------------------------------------------------------------- sub effective_range { my $self = shift; return @{ $self->{_effective_range} }; } #----------------------------------------------------------------------------- sub disabled_policies { my $self = shift; return keys %{ $self->{_disabled_policies} }; } #----------------------------------------------------------------------------- sub disables_policy { my ($self, $policy_name) = @_; return 1 if $self->{_disabled_policies}->{$policy_name}; return 1 if $self->disables_all_policies(); return 0; } #----------------------------------------------------------------------------- sub disables_all_policies { my ($self) = @_; return $self->{_disables_all_policies}; } #----------------------------------------------------------------------------- sub disables_line { my ($self, $line_number) = @_; my $effective_range = $self->{_effective_range}; return 1 if $line_number >= $effective_range->[0] and $line_number <= $effective_range->[$LAST_ELEMENT]; return 0; } #----------------------------------------------------------------------------- # Recognize a single-line annotation on a simple statement. sub _is_single_line_annotation_on_simple_statement { my ( $annotation_element ) = @_; my $annotation_line = $annotation_element->logical_line_number(); # If there is no sibling, we are clearly not a single-line annotation of # any sort. my $sib = $annotation_element->sprevious_sibling() or return 0; # The easy case: the sibling (whatever it is) is on the same line as the # annotation. $sib->logical_line_number() == $annotation_line and return 1; # If the sibling is a node, we may have an annotation on one line of a # statement that was split over multiple lines. So we descend through the # children, keeping the last significant child of each, until we bottom # out. If the ultimate significant descendant is on the same line as the # annotation, we accept the annotation as a single-line annotation. if ( $sib->isa( 'PPI::Node' ) && $sib->logical_line_number() < $annotation_line ) { my $neighbor = $sib; while ( $neighbor->isa( 'PPI::Node' ) and my $kid = $neighbor->schild( $LAST_ELEMENT ) ) { $neighbor = $kid; } if ( $neighbor && $neighbor->logical_line_number() == $annotation_line ) { return 1; } } # We do not understand any other sort of single-line annotation. Accepting # the annotation as such (if it is) is Someone Else's Problem. return 0; } #----------------------------------------------------------------------------- sub _parse_annotation { my ($annotation_element) = @_; ############################################################################# # This regex captures the list of Policy name patterns that are to be # disabled. It is generally assumed that the element has already been # verified as a no-critic annotation. So if this regex does not match, # then it implies that all Policies are to be disabled. # my $no_critic = qr{\#\# \s* no \s+ critic \s* (?:qw)? [("'] ([\s\w:,]+) }xms; # -------------------------- ------- ----- ----------- # | | | | # "## no critic" with optional spaces | | | # | | | # Policy list may be prefixed with "qw" | | # | | # Optional Policy list must begin with one of these | # | # Capture entire Policy list (with delimiters) here # ############################################################################# my @disabled_policy_names = (); if ( my ($patterns_string) = $annotation_element =~ $no_critic ) { # Compose the specified modules into a regex alternation. Wrap each # in a no-capturing group to permit "|" in the modules specification. my @policy_name_patterns = grep { $_ ne $EMPTY } split m{\s *[,\s] \s*}xms, $patterns_string; my $re = join $PIPE, map {"(?:$_)"} @policy_name_patterns; my @site_policy_names = Perl::Critic::PolicyFactory::site_policy_names(); @disabled_policy_names = grep {m/$re/ixms} @site_policy_names; # It is possible that the Policy patterns listed in the annotation do not # match any of the site policy names. This could happen when running # on a machine that does not have the same set of Policies as the author. # So we must return something here, otherwise all Policies will be # disabled. We probably need to add a mechanism to (optionally) warn # about this, just to help the author avoid writing invalid Policy names. if (not @disabled_policy_names) { @disabled_policy_names = @policy_name_patterns; } } return hashify(@disabled_policy_names); } #----------------------------------------------------------------------------- 1; __END__
############################################################################## # 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 :