Source code for statick_tool.plugins.tool.perlcritic_tool_plugin
"""Apply Perl::Critic tool and gather results."""
import argparse
import logging
import subprocess
from typing import List, Optional
from statick_tool.issue import Issue
from statick_tool.package import Package
from statick_tool.tool_plugin import ToolPlugin
[docs]class PerlCriticToolPlugin(ToolPlugin):
"""Apply Perl::Critic tool and gather results."""
[docs] def gather_args(self, args: argparse.Namespace) -> None:
"""Gather arguments."""
args.add_argument(
"--perlcritic-bin",
dest="perlcritic_bin",
type=str,
help="perlcritic binary path",
)
[docs] def get_file_types(self) -> List[str]:
"""Return a list of file types the plugin can scan."""
return ["perl_src"]
[docs] def process_files(
self, package: Package, level: str, files: List[str], user_flags: List[str]
) -> Optional[List[str]]:
"""Run tool and gather output."""
perlcritic_bin = "perlcritic"
if self.plugin_context and self.plugin_context.args.perlcritic_bin is not None:
perlcritic_bin = self.plugin_context.args.perlcritic_bin
flags = ["--nocolor", "--verbose=%f:::%l:::%p:::%m:::%s\n"]
flags += self.get_user_flags(level)
try:
output = subprocess.check_output(
[perlcritic_bin] + flags + files,
stderr=subprocess.STDOUT,
universal_newlines=True,
).join(" ")
except subprocess.CalledProcessError as ex:
output = ex.output
if ex.returncode != 2:
logging.warning("perlcritic failed! Returncode = %d", ex.returncode)
logging.warning("%s exception: %s", self.get_name(), ex.output)
return []
except OSError as ex:
logging.warning("Couldn't find %s! (%s)", perlcritic_bin, ex)
return []
logging.debug("%s", output)
return output.splitlines()
[docs] def parse_output(
self, total_output: List[str], package: Optional[Package] = None
) -> List[Issue]:
"""Parse tool output and report issues."""
issues: List[Issue] = []
# Load the plugin mapping if possible
warnings_mapping = self.load_mapping()
for line in total_output:
split_line = line.strip().split(":::")
# Should split into five segments, anything less is invalid.
if len(split_line) < 5:
continue
cert_reference = None
if split_line[2].replace("::", "__") in warnings_mapping:
cert_reference = warnings_mapping[split_line[2].replace("::", "__")]
issues.append(
Issue(
split_line[0],
split_line[1],
self.get_name(),
split_line[2],
split_line[4],
split_line[3],
cert_reference,
)
)
return issues