mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-09 22:31:02 +01:00
3cfd58c29c
Summary: There is one big decision: How to get linters version. I've created `getCacheVersion()` which is supposed to be bumped every time engine or any linter is changed. This is not very nice but the other alternative (detect this automatically) seems worse: - The engine may be outside repo and may or may not be under version control so getting its version through something like `git log` may not be even possible. - If it is in the same repo then every rebase will obsolete the whole cache. Even though bumping the version manually is PITA I still think it's a better solution. Test Plan: $ time arc lint --cache 1 # verified file $ arc arc lint --cache 1 # added some debug output to see the cached results # also observed better time (.57 s instead of 2.19 s) Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2036 Differential Revision: https://secure.phabricator.com/D4006
451 lines
13 KiB
PHP
451 lines
13 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Runs lint rules on changes.
|
|
*
|
|
* @group workflow
|
|
*/
|
|
class ArcanistLintWorkflow extends ArcanistBaseWorkflow {
|
|
|
|
const RESULT_OKAY = 0;
|
|
const RESULT_WARNINGS = 1;
|
|
const RESULT_ERRORS = 2;
|
|
const RESULT_SKIP = 3;
|
|
const RESULT_POSTPONED = 4;
|
|
|
|
const DEFAULT_SEVERITY = ArcanistLintSeverity::SEVERITY_ADVICE;
|
|
|
|
private $unresolvedMessages;
|
|
private $shouldAmendChanges = false;
|
|
private $shouldAmendWithoutPrompt = false;
|
|
private $shouldAmendAutofixesWithoutPrompt = false;
|
|
private $engine;
|
|
private $postponedLinters;
|
|
|
|
public function getWorkflowName() {
|
|
return 'lint';
|
|
}
|
|
|
|
public function setShouldAmendChanges($should_amend) {
|
|
$this->shouldAmendChanges = $should_amend;
|
|
return $this;
|
|
}
|
|
|
|
public function setShouldAmendWithoutPrompt($should_amend) {
|
|
$this->shouldAmendWithoutPrompt = $should_amend;
|
|
return $this;
|
|
}
|
|
|
|
public function setShouldAmendAutofixesWithoutPrompt($should_amend) {
|
|
$this->shouldAmendAutofixesWithoutPrompt = $should_amend;
|
|
return $this;
|
|
}
|
|
|
|
public function getCommandSynopses() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
**lint** [__options__] [__paths__]
|
|
**lint** [__options__] --rev [__rev__]
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function getCommandHelp() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
Supports: git, svn, hg
|
|
Run static analysis on changes to check for mistakes. If no files
|
|
are specified, lint will be run on all files which have been modified.
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function getArguments() {
|
|
return array(
|
|
'lintall' => array(
|
|
'help' =>
|
|
"Show all lint warnings, not just those on changed lines."
|
|
),
|
|
'rev' => array(
|
|
'param' => 'revision',
|
|
'help' => "Lint changes since a specific revision.",
|
|
'supports' => array(
|
|
'git',
|
|
'hg',
|
|
),
|
|
'nosupport' => array(
|
|
'svn' => "Lint does not currently support --rev in SVN.",
|
|
),
|
|
),
|
|
'output' => array(
|
|
'param' => 'format',
|
|
'help' =>
|
|
"With 'summary', show lint warnings in a more compact format. ".
|
|
"With 'json', show lint warnings in machine-readable JSON format. ".
|
|
"With 'compiler', show lint warnings in suitable for your editor."
|
|
),
|
|
'engine' => array(
|
|
'param' => 'classname',
|
|
'help' =>
|
|
"Override configured lint engine for this project."
|
|
),
|
|
'apply-patches' => array(
|
|
'help' =>
|
|
'Apply patches suggested by lint to the working copy without '.
|
|
'prompting.',
|
|
'conflicts' => array(
|
|
'never-apply-patches' => true,
|
|
),
|
|
),
|
|
'never-apply-patches' => array(
|
|
'help' => 'Never apply patches suggested by lint.',
|
|
'conflicts' => array(
|
|
'apply-patches' => true,
|
|
),
|
|
),
|
|
'amend-all' => array(
|
|
'help' =>
|
|
'When linting git repositories, amend HEAD with all patches '.
|
|
'suggested by lint without prompting.',
|
|
),
|
|
'amend-autofixes' => array(
|
|
'help' =>
|
|
'When linting git repositories, amend HEAD with autofix '.
|
|
'patches suggested by lint without prompting.',
|
|
),
|
|
'severity' => array(
|
|
'param' => 'string',
|
|
'help' =>
|
|
"Set minimum message severity. One of: '".
|
|
implode(
|
|
"', '",
|
|
array_keys(ArcanistLintSeverity::getLintSeverities())).
|
|
"'. Defaults to '".self::DEFAULT_SEVERITY."'.",
|
|
),
|
|
'cache' => array(
|
|
'param' => 'bool',
|
|
'help' => "0 to disable cache (default), 1 to enable.",
|
|
),
|
|
'*' => 'paths',
|
|
);
|
|
}
|
|
|
|
public function requiresWorkingCopy() {
|
|
return true;
|
|
}
|
|
|
|
public function requiresRepositoryAPI() {
|
|
return true;
|
|
}
|
|
|
|
private function getCacheKey() {
|
|
return implode("\n", array(
|
|
get_class($this->engine),
|
|
$this->getArgument('severity', self::DEFAULT_SEVERITY),
|
|
$this->getArgument('lintall'),
|
|
$this->engine->getCacheVersion(),
|
|
));
|
|
}
|
|
|
|
public function run() {
|
|
$working_copy = $this->getWorkingCopy();
|
|
|
|
$engine = $this->getArgument('engine');
|
|
if (!$engine) {
|
|
$engine = $working_copy->getConfigFromAnySource('lint.engine');
|
|
if (!$engine) {
|
|
throw new ArcanistNoEngineException(
|
|
"No lint engine configured for this project. Edit .arcconfig to ".
|
|
"specify a lint engine.");
|
|
}
|
|
}
|
|
|
|
$rev = $this->getArgument('rev');
|
|
$paths = $this->getArgument('paths');
|
|
|
|
if ($rev && $paths) {
|
|
throw new ArcanistUsageException("Specify either --rev or paths.");
|
|
}
|
|
|
|
$should_lint_all = $this->getArgument('lintall');
|
|
if ($paths) {
|
|
// NOTE: When the user specifies paths, we imply --lintall and show all
|
|
// warnings for the paths in question. This is easier to deal with for
|
|
// us and less confusing for users.
|
|
$should_lint_all = true;
|
|
}
|
|
|
|
$paths = $this->selectPathsForWorkflow($paths, $rev);
|
|
|
|
if (!class_exists($engine) ||
|
|
!is_subclass_of($engine, 'ArcanistLintEngine')) {
|
|
throw new ArcanistUsageException(
|
|
"Configured lint engine '{$engine}' is not a subclass of ".
|
|
"'ArcanistLintEngine'.");
|
|
}
|
|
|
|
$engine = newv($engine, array());
|
|
$this->engine = $engine;
|
|
$engine->setWorkingCopy($working_copy);
|
|
|
|
$engine->setMinimumSeverity(
|
|
$this->getArgument('severity', self::DEFAULT_SEVERITY));
|
|
|
|
$cached = false;
|
|
if ($this->getArgument('cache')) {
|
|
$paths = array_combine($paths, $paths);
|
|
$cache = $this->readScratchJSONFile('lint-cache.json');
|
|
$cache = idx($cache, $this->getCacheKey(), array());
|
|
foreach ($cache as $path => $messages) {
|
|
$messages = idx($messages, md5_file($engine->getFilePathOnDisk($path)));
|
|
// TODO: Some linters work with the whole directory.
|
|
if ($messages !== null) {
|
|
foreach ($messages as $message) {
|
|
$engine->getResultForPath($path)->addMessage(
|
|
ArcanistLintMessage::newFromDictionary($message));
|
|
}
|
|
$cached = true;
|
|
unset($paths[$path]);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Propagate information about which lines changed to the lint engine.
|
|
// This is used so that the lint engine can drop warning messages
|
|
// concerning lines that weren't in the change.
|
|
$engine->setPaths($paths);
|
|
if (!$should_lint_all) {
|
|
foreach ($paths as $path) {
|
|
// Note that getChangedLines() returns null to indicate that a file
|
|
// is binary or a directory (i.e., changed lines are not relevant).
|
|
$engine->setPathChangedLines(
|
|
$path,
|
|
$this->getChangedLines($path, 'new'));
|
|
}
|
|
}
|
|
|
|
// Enable possible async linting only for 'arc diff' not 'arc lint'
|
|
if ($this->getParentWorkflow()) {
|
|
$engine->setEnableAsyncLint(true);
|
|
} else {
|
|
$engine->setEnableAsyncLint(false);
|
|
}
|
|
|
|
$failed = null;
|
|
try {
|
|
$engine->run();
|
|
} catch (Exception $ex) {
|
|
if ($ex instanceof ArcanistNoEffectException && $cached) {
|
|
// Swallow.
|
|
} else {
|
|
$failed = $ex;
|
|
}
|
|
}
|
|
|
|
$results = $engine->getResults();
|
|
|
|
// It'd be nice to just return a single result from the run method above
|
|
// which contains both the lint messages and the postponed linters.
|
|
// However, to maintain compatibility with existing lint subclasses, use
|
|
// a separate method call to grab the postponed linters.
|
|
$this->postponedLinters = $engine->getPostponedLinters();
|
|
|
|
if ($this->getArgument('never-apply-patches')) {
|
|
$apply_patches = false;
|
|
} else {
|
|
$apply_patches = true;
|
|
}
|
|
|
|
if ($this->getArgument('apply-patches')) {
|
|
$prompt_patches = false;
|
|
} else {
|
|
$prompt_patches = true;
|
|
}
|
|
|
|
if ($this->getArgument('amend-all')) {
|
|
$this->shouldAmendChanges = true;
|
|
$this->shouldAmendWithoutPrompt = true;
|
|
}
|
|
|
|
if ($this->getArgument('amend-autofixes')) {
|
|
$prompt_autofix_patches = false;
|
|
$this->shouldAmendChanges = true;
|
|
$this->shouldAmendAutofixesWithoutPrompt = true;
|
|
} else {
|
|
$prompt_autofix_patches = true;
|
|
}
|
|
|
|
$wrote_to_disk = false;
|
|
|
|
switch ($this->getArgument('output')) {
|
|
case 'json':
|
|
$renderer = new ArcanistLintJSONRenderer();
|
|
$prompt_patches = false;
|
|
$apply_patches = $this->getArgument('apply-patches');
|
|
break;
|
|
case 'summary':
|
|
$renderer = new ArcanistLintSummaryRenderer();
|
|
break;
|
|
case 'compiler':
|
|
$renderer = new ArcanistLintLikeCompilerRenderer();
|
|
$prompt_patches = false;
|
|
$apply_patches = $this->getArgument('apply-patches');
|
|
break;
|
|
default:
|
|
$renderer = new ArcanistLintConsoleRenderer();
|
|
$renderer->setShowAutofixPatches($prompt_autofix_patches);
|
|
break;
|
|
}
|
|
|
|
$all_autofix = true;
|
|
|
|
$console = PhutilConsole::getConsole();
|
|
|
|
foreach ($results as $result) {
|
|
$result_all_autofix = $result->isAllAutofix();
|
|
|
|
if (!$result->getMessages() && !$result_all_autofix) {
|
|
continue;
|
|
}
|
|
|
|
if (!$result_all_autofix) {
|
|
$all_autofix = false;
|
|
}
|
|
|
|
$lint_result = $renderer->renderLintResult($result);
|
|
if ($lint_result) {
|
|
$console->writeOut('%s', $lint_result);
|
|
}
|
|
|
|
if ($apply_patches && $result->isPatchable()) {
|
|
$patcher = ArcanistLintPatcher::newFromArcanistLintResult($result);
|
|
|
|
if ($prompt_patches &&
|
|
!($result_all_autofix && !$prompt_autofix_patches)) {
|
|
$old_file = $result->getFilePathOnDisk();
|
|
if (!Filesystem::pathExists($old_file)) {
|
|
$old_file = '/dev/null';
|
|
}
|
|
$new_file = new TempFile();
|
|
$new = $patcher->getModifiedFileContent();
|
|
Filesystem::writeFile($new_file, $new);
|
|
|
|
// TODO: Improve the behavior here, make it more like
|
|
// difference_render().
|
|
list(, $stdout, $stderr) =
|
|
exec_manual("diff -u %s %s", $old_file, $new_file);
|
|
$console->writeOut('%s', $stdout);
|
|
$console->writeErr('%s', $stderr);
|
|
|
|
$prompt = phutil_console_format(
|
|
"Apply this patch to __%s__?",
|
|
$result->getPath());
|
|
if (!$console->confirm($prompt, $default_no = false)) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$patcher->writePatchToDisk();
|
|
$wrote_to_disk = true;
|
|
}
|
|
}
|
|
|
|
$repository_api = $this->getRepositoryAPI();
|
|
if ($wrote_to_disk &&
|
|
($repository_api instanceof ArcanistGitAPI) &&
|
|
$this->shouldAmendChanges) {
|
|
|
|
if ($this->shouldAmendWithoutPrompt ||
|
|
($this->shouldAmendAutofixesWithoutPrompt && $all_autofix)) {
|
|
$console->writeOut(
|
|
"<bg:yellow>** LINT NOTICE **</bg> Automatically amending HEAD ".
|
|
"with lint patches.\n");
|
|
$amend = true;
|
|
} else {
|
|
$amend = $console->confirm("Amend HEAD with lint patches?");
|
|
}
|
|
|
|
if ($amend) {
|
|
execx(
|
|
'(cd %s; git commit -a --amend -C HEAD)',
|
|
$repository_api->getPath());
|
|
} else {
|
|
throw new ArcanistUsageException(
|
|
"Sort out the lint changes that were applied to the working ".
|
|
"copy and relint.");
|
|
}
|
|
}
|
|
|
|
if ($this->getArgument('output') == 'json') {
|
|
// NOTE: Required by save_lint.php in Phabricator.
|
|
return 0;
|
|
}
|
|
|
|
if ($failed) {
|
|
throw $failed;
|
|
}
|
|
|
|
$unresolved = array();
|
|
$has_warnings = false;
|
|
$has_errors = false;
|
|
|
|
foreach ($results as $result) {
|
|
foreach ($result->getMessages() as $message) {
|
|
if (!$message->isPatchApplied()) {
|
|
if ($message->isError()) {
|
|
$has_errors = true;
|
|
} else if ($message->isWarning()) {
|
|
$has_warnings = true;
|
|
}
|
|
$unresolved[] = $message;
|
|
}
|
|
}
|
|
}
|
|
$this->unresolvedMessages = $unresolved;
|
|
|
|
if ($this->getArgument('cache')) {
|
|
$cached = array();
|
|
foreach ($results as $result) {
|
|
$path = $result->getPath();
|
|
$hash = md5_file($engine->getFilePathOnDisk($path));
|
|
$cached[$path] = array($hash => array());
|
|
foreach ($result->getMessages() as $message) {
|
|
if (!$message->isPatchApplied()) {
|
|
$cached[$path][$hash][] = $message->toDictionary();
|
|
}
|
|
}
|
|
}
|
|
$cache = $this->readScratchJSONFile('lint-cache.json');
|
|
$cache[$this->getCacheKey()] = $cached;
|
|
// TODO: Garbage collection.
|
|
$this->writeScratchJSONFile('lint-cache.json', $cache);
|
|
}
|
|
|
|
// Take the most severe lint message severity and use that
|
|
// as the result code.
|
|
if ($has_errors) {
|
|
$result_code = self::RESULT_ERRORS;
|
|
} else if ($has_warnings) {
|
|
$result_code = self::RESULT_WARNINGS;
|
|
} else if (!empty($this->postponedLinters)) {
|
|
$result_code = self::RESULT_POSTPONED;
|
|
} else {
|
|
$result_code = self::RESULT_OKAY;
|
|
}
|
|
|
|
if (!$this->getParentWorkflow()) {
|
|
if ($result_code == self::RESULT_OKAY) {
|
|
$console->writeOut('%s', $renderer->renderOkayResult());
|
|
}
|
|
}
|
|
|
|
return $result_code;
|
|
}
|
|
|
|
public function getUnresolvedMessages() {
|
|
return $this->unresolvedMessages;
|
|
}
|
|
|
|
public function getPostponedLinters() {
|
|
return $this->postponedLinters;
|
|
}
|
|
|
|
}
|