2011-01-09 15:22:25 -08:00
|
|
|
<?php
|
|
|
|
|
2011-02-19 11:36:08 -08:00
|
|
|
/**
|
|
|
|
* Runs lint rules on changes.
|
|
|
|
*
|
|
|
|
* @group workflow
|
|
|
|
*/
|
2013-02-21 12:35:43 -08:00
|
|
|
final class ArcanistLintWorkflow extends ArcanistBaseWorkflow {
|
2011-01-09 15:22:25 -08:00
|
|
|
|
|
|
|
const RESULT_OKAY = 0;
|
|
|
|
const RESULT_WARNINGS = 1;
|
|
|
|
const RESULT_ERRORS = 2;
|
|
|
|
const RESULT_SKIP = 3;
|
2012-07-02 15:53:22 -07:00
|
|
|
const RESULT_POSTPONED = 4;
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2012-11-08 19:29:40 -08:00
|
|
|
const DEFAULT_SEVERITY = ArcanistLintSeverity::SEVERITY_ADVICE;
|
|
|
|
|
2011-01-11 20:21:17 -08:00
|
|
|
private $unresolvedMessages;
|
2012-11-21 14:52:50 -08:00
|
|
|
private $shouldLintAll;
|
2011-01-29 17:18:32 -08:00
|
|
|
private $shouldAmendChanges = false;
|
2012-04-06 12:23:19 -07:00
|
|
|
private $shouldAmendWithoutPrompt = false;
|
|
|
|
private $shouldAmendAutofixesWithoutPrompt = false;
|
2012-07-02 15:53:22 -07:00
|
|
|
private $engine;
|
|
|
|
private $postponedLinters;
|
2011-01-29 17:18:32 -08:00
|
|
|
|
Make Arcanist workflow names explicit
Summary:
Currently, adding a new workflow requires you to override ArcanistConfiguration, which is messy. Instead, just load everything that extends ArcanistBaseWorkflow.
Remove all the rules tying workflow names to class names through arcane incantations.
This has a very small performance cost in that we need to load every Workflow class every time now, but we don't hit __init__ and such anymore and it was pretty negligible on my machine (98ms vs 104ms or something).
Test Plan: Ran "arc help", "arc which", "arc diff", etc.
Reviewers: edward, vrana, btrahan
Reviewed By: edward
CC: aran, zeeg
Differential Revision: https://secure.phabricator.com/D3691
2012-10-17 08:35:03 -07:00
|
|
|
public function getWorkflowName() {
|
|
|
|
return 'lint';
|
|
|
|
}
|
|
|
|
|
2011-01-29 17:18:32 -08:00
|
|
|
public function setShouldAmendChanges($should_amend) {
|
|
|
|
$this->shouldAmendChanges = $should_amend;
|
|
|
|
return $this;
|
|
|
|
}
|
2011-01-11 20:21:17 -08:00
|
|
|
|
2012-04-06 12:23:19 -07:00
|
|
|
public function setShouldAmendWithoutPrompt($should_amend) {
|
|
|
|
$this->shouldAmendWithoutPrompt = $should_amend;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setShouldAmendAutofixesWithoutPrompt($should_amend) {
|
|
|
|
$this->shouldAmendAutofixesWithoutPrompt = $should_amend;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-05 10:02:37 -08:00
|
|
|
public function getCommandSynopses() {
|
2011-01-09 15:22:25 -08:00
|
|
|
return phutil_console_format(<<<EOTEXT
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
**lint** [__options__] [__paths__]
|
|
|
|
**lint** [__options__] --rev [__rev__]
|
2012-03-05 10:02:37 -08:00
|
|
|
EOTEXT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCommandHelp() {
|
|
|
|
return phutil_console_format(<<<EOTEXT
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
Supports: git, svn, hg
|
2011-01-09 15:22:25 -08:00
|
|
|
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' =>
|
2013-09-20 16:08:59 -07:00
|
|
|
"Show all lint warnings, not just those on changed lines. When " .
|
|
|
|
"paths are specified, this is the default behavior.",
|
|
|
|
'conflicts' => array(
|
|
|
|
'only-changed' => true,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'only-changed' => array(
|
|
|
|
'help' =>
|
|
|
|
"Show lint warnings just on changed lines. When no paths are " .
|
|
|
|
"specified, this is the default. This differs from only-new " .
|
|
|
|
"in cases where line modifications introduce lint on other " .
|
|
|
|
"unmodified lines.",
|
|
|
|
'conflicts' => array(
|
|
|
|
'lintall' => true,
|
|
|
|
),
|
2011-01-09 15:22:25 -08:00
|
|
|
),
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
'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.",
|
|
|
|
),
|
|
|
|
),
|
2011-04-03 18:04:20 -07:00
|
|
|
'output' => array(
|
|
|
|
'param' => 'format',
|
2011-01-09 15:22:25 -08:00
|
|
|
'help' =>
|
2011-04-03 18:04:20 -07:00
|
|
|
"With 'summary', show lint warnings in a more compact format. ".
|
2011-06-28 18:14:07 -07:00
|
|
|
"With 'json', show lint warnings in machine-readable JSON format. ".
|
2013-02-25 12:33:51 -08:00
|
|
|
"With 'none', show no lint warnings. ".
|
2011-06-28 18:14:07 -07:00
|
|
|
"With 'compiler', show lint warnings in suitable for your editor."
|
2011-01-09 15:22:25 -08:00
|
|
|
),
|
2012-12-03 16:52:58 -08:00
|
|
|
'only-new' => array(
|
|
|
|
'param' => 'bool',
|
|
|
|
'supports' => array('git', 'hg'), // TODO: svn
|
|
|
|
'help' => 'Display only messages not present in the original code.',
|
|
|
|
),
|
2011-01-09 15:22:25 -08:00
|
|
|
'engine' => array(
|
|
|
|
'param' => 'classname',
|
|
|
|
'help' =>
|
|
|
|
"Override configured lint engine for this project."
|
|
|
|
),
|
2011-01-10 14:03:12 -08:00
|
|
|
'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,
|
|
|
|
),
|
|
|
|
),
|
2012-04-06 12:23:19 -07:00
|
|
|
'amend-all' => array(
|
|
|
|
'help' =>
|
|
|
|
'When linting git repositories, amend HEAD with all patches '.
|
|
|
|
'suggested by lint without prompting.',
|
|
|
|
),
|
|
|
|
'amend-autofixes' => array(
|
|
|
|
'help' =>
|
2012-05-25 01:59:43 -07:00
|
|
|
'When linting git repositories, amend HEAD with autofix '.
|
|
|
|
'patches suggested by lint without prompting.',
|
2012-04-06 12:23:19 -07:00
|
|
|
),
|
2013-07-27 18:29:20 -07:00
|
|
|
'everything' => array(
|
|
|
|
'help' => 'Lint all files in the project.',
|
|
|
|
'conflicts' => array(
|
|
|
|
'cache' => '--everything lints all files',
|
|
|
|
'rev' => '--everything lints all files'
|
|
|
|
),
|
|
|
|
),
|
2012-11-08 19:29:40 -08:00
|
|
|
'severity' => array(
|
|
|
|
'param' => 'string',
|
|
|
|
'help' =>
|
|
|
|
"Set minimum message severity. One of: '".
|
|
|
|
implode(
|
|
|
|
"', '",
|
|
|
|
array_keys(ArcanistLintSeverity::getLintSeverities())).
|
|
|
|
"'. Defaults to '".self::DEFAULT_SEVERITY."'.",
|
|
|
|
),
|
2012-11-20 16:43:10 -08:00
|
|
|
'cache' => array(
|
|
|
|
'param' => 'bool',
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
'help' =>
|
|
|
|
"0 to disable cache, 1 to enable. The default value is ".
|
|
|
|
"determined by 'arc.lint.cache' in configuration, which defaults ".
|
|
|
|
"to off. See notes in 'arc.lint.cache'.",
|
2012-11-20 16:43:10 -08:00
|
|
|
),
|
2011-01-09 15:22:25 -08:00
|
|
|
'*' => 'paths',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-12-03 16:52:58 -08:00
|
|
|
public function requiresAuthentication() {
|
|
|
|
return (bool)$this->getArgument('only-new');
|
|
|
|
}
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
public function requiresWorkingCopy() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
public function requiresRepositoryAPI() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-20 16:43:10 -08:00
|
|
|
private function getCacheKey() {
|
|
|
|
return implode("\n", array(
|
|
|
|
get_class($this->engine),
|
|
|
|
$this->getArgument('severity', self::DEFAULT_SEVERITY),
|
2012-11-21 14:52:50 -08:00
|
|
|
$this->shouldLintAll,
|
2012-11-20 16:43:10 -08:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
public function run() {
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
$console = PhutilConsole::getConsole();
|
2011-01-09 15:22:25 -08:00
|
|
|
$working_copy = $this->getWorkingCopy();
|
2013-10-18 16:10:06 -07:00
|
|
|
$configuration_manager = $this->getConfigurationManager();
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2014-05-11 13:42:56 -07:00
|
|
|
$engine = $this->newLintEngine($this->getArgument('engine'));
|
Lay groundwork for configuration-driven linters
Summary:
Ref T2039. That task has a bunch of discussion, but basically we do a poor job of serving the midrange of lint configuration right now.
If you have something simple, the default linters work.
If you have something complex, building your own engine lets you do whatever you want.
But many users want something in between, which isn't really well accommodated. The idea is to let you write a `.arclint` file, which looks something like this:
{
"linters" : {
"css" : {
"type" : "csslint",
"include" : "(\.css$)",
"exclude" : "(^externals/)",
"bin" : "/usr/local/bin/csslint"
},
"js" : {
"type" : "jshint",
"include" : "(\.js$)",
"exclude" : "(^externals/)",
"bin" : "support/bin/jshint",
"interpreter" : "/usr/local/bin/node"
}
}
}
...which will provide a bunch of common options around lint severity, interpreter and binary locaitons, included and excluded files, etc.
This implements some basics, and very rough support in the Filename linter.
Test Plan:
Generated a `.arclint` file and saw it apply filename lint correctly. Used `debug` mode and tried invalid regexps.
{
"debug" : true,
"linters" : {
"filename" : {
"type" : "filename",
"exclude" : ["@^externals/@"]
}
}
}
Next steps include:
- Provide an external linter archetype (T3186) and expose a common set of configuration here ("bin", "interpreter", "flags", "severity").
- Provide a `.arcunit` file which works similarly (it can probably be simpler).
Reviewers: btrahan, Firehed
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T2039
Differential Revision: https://secure.phabricator.com/D6797
2013-08-22 16:02:16 -07:00
|
|
|
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
$rev = $this->getArgument('rev');
|
|
|
|
$paths = $this->getArgument('paths');
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
$use_cache = $this->getArgument('cache', null);
|
2013-07-27 18:29:20 -07:00
|
|
|
$everything = $this->getArgument('everything');
|
|
|
|
if ($everything && $paths) {
|
|
|
|
throw new ArcanistUsageException(
|
|
|
|
"You can not specify paths with --everything. The --everything ".
|
|
|
|
"flag lints every file.");
|
|
|
|
}
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
if ($use_cache === null) {
|
2013-10-18 16:10:06 -07:00
|
|
|
$use_cache = (bool)$configuration_manager->getConfigFromAnySource(
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
'arc.lint.cache',
|
|
|
|
false);
|
|
|
|
}
|
2011-01-09 15:22:25 -08:00
|
|
|
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
if ($rev && $paths) {
|
|
|
|
throw new ArcanistUsageException("Specify either --rev or paths.");
|
|
|
|
}
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2013-09-20 16:08:59 -07:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
$this->shouldLintAll = $paths ? true : false;
|
|
|
|
if ($this->getArgument('lintall')) {
|
2012-11-21 14:52:50 -08:00
|
|
|
$this->shouldLintAll = true;
|
2013-09-20 16:08:59 -07:00
|
|
|
} else if ($this->getArgument('only-changed')) {
|
|
|
|
$this->shouldLintAll = false;
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
|
2013-07-27 18:29:20 -07:00
|
|
|
if ($everything) {
|
|
|
|
// Recurse through project from root
|
|
|
|
switch ($this->getRepositoryApi()->getSourceControlSystemName()) {
|
|
|
|
case 'git':
|
|
|
|
$filter = '*/.git';
|
|
|
|
break;
|
|
|
|
case 'svn':
|
|
|
|
$filter = '*/.svn';
|
|
|
|
break;
|
|
|
|
case 'hg':
|
|
|
|
$filter = '*/.hg';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$paths = id(new FileFinder($working_copy->getProjectRoot()))
|
|
|
|
->excludePath($filter)
|
|
|
|
->find();
|
2013-08-12 13:47:33 -07:00
|
|
|
$this->shouldLintAll = true;
|
2013-07-27 18:29:20 -07:00
|
|
|
} else {
|
|
|
|
$paths = $this->selectPathsForWorkflow($paths, $rev);
|
|
|
|
}
|
Unify arguments for 'arc lint', 'arc unit'
Summary: See T645. These commands take inconsistent and overly-magical arguments
right now. Instead, make them behave consistently and allow them both to operate
on "arc <workflow> path path2 path3 ...", which is a generally useful workflow.
Test Plan: Ran "arc lint <path>", "arc unit <path>", "arc lint --rev
HEAD^^^^^^", "arc unit --rev HEAD^^^^^^^^^^^^", etc. Ran "arc diff --trace" and
verified --rev argument to child workflows.
Reviewers: btrahan, jungejason
Reviewed By: btrahan
CC: aran, epriestley, btrahan
Maniphest Tasks: T645
Differential Revision: https://secure.phabricator.com/D1348
2012-01-09 12:40:50 -08:00
|
|
|
|
2012-07-02 15:53:22 -07:00
|
|
|
$this->engine = $engine;
|
2014-05-11 13:42:56 -07:00
|
|
|
|
2012-11-08 19:29:40 -08:00
|
|
|
$engine->setMinimumSeverity(
|
|
|
|
$this->getArgument('severity', self::DEFAULT_SEVERITY));
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2013-03-10 18:49:02 -07:00
|
|
|
$file_hashes = array();
|
2012-12-20 11:35:50 -08:00
|
|
|
if ($use_cache) {
|
2013-02-06 15:27:31 -08:00
|
|
|
$engine->setRepositoryVersion($this->getRepositoryVersion());
|
2012-11-20 16:43:10 -08:00
|
|
|
$cache = $this->readScratchJSONFile('lint-cache.json');
|
|
|
|
$cache = idx($cache, $this->getCacheKey(), array());
|
2012-11-21 14:52:50 -08:00
|
|
|
$cached = array();
|
2013-03-10 18:49:02 -07:00
|
|
|
|
|
|
|
foreach ($paths as $path) {
|
2012-11-21 18:38:24 -08:00
|
|
|
$abs_path = $engine->getFilePathOnDisk($path);
|
|
|
|
if (!Filesystem::pathExists($abs_path)) {
|
|
|
|
continue;
|
|
|
|
}
|
2013-03-10 18:49:02 -07:00
|
|
|
$file_hashes[$abs_path] = md5_file($abs_path);
|
|
|
|
|
|
|
|
if (!isset($cache[$path])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$messages = idx($cache[$path], $file_hashes[$abs_path]);
|
2012-11-20 16:43:10 -08:00
|
|
|
if ($messages !== null) {
|
2012-11-21 14:52:50 -08:00
|
|
|
$cached[$path] = $messages;
|
2012-11-20 16:43:10 -08:00
|
|
|
}
|
|
|
|
}
|
Disable lint cache by default
Summary:
Fixes T2266. Motivation:
- The lint cache does not always invalidate correctly. Because of the nature of the cache, this is a hard problem (right after "naming things").
- We already have a fair amount of complexity in trying to invalidate it, and are still discovering new places where it doesn't work (e.g., Windows with "/" vs "\" paths).
- One invalidation failure is when linter code changes, which seems unresolvable in the general case (e.g., changes to external linters).
- It's not obvious what's happening when the lint cache causes some kind of issue.
- Particularly while developing or debugging linters, your changes often won't be reflected in the lint output. Some of this is theoretically tractable but the external linter case probably isn't.
- When someone reports a problem with the lint cache in IRC or elsewhere, there is essentially never a way for me to fix it. The lint cache can't be debugged effectively without access to a working copy where the problem reproduces.
- The cache provides limited benefit outside of Facebook's install.
To remedy these issues:
- Introduce configuration which controls cache usage.
- Default it off.
- Print a message when the cache is in use.
(I'd tentatively support removing the cache entirely, but I don't know how @vrana and Facebook feel about that.)
Test Plan: Ran `arc set-config --show`, `arc lint --cache 0`, `arc lint --cache 1`.
Reviewers: vrana, btrahan
Reviewed By: vrana
CC: aran, mbishopim3, nh, edward, wez
Maniphest Tasks: T2266
Differential Revision: https://secure.phabricator.com/D5766
2013-04-23 11:26:28 -07:00
|
|
|
|
|
|
|
if ($cached) {
|
|
|
|
$console->writeErr(
|
|
|
|
pht("Using lint cache, use '--cache 0' to disable it.")."\n");
|
|
|
|
}
|
|
|
|
|
2012-11-21 14:52:50 -08:00
|
|
|
$engine->setCachedResults($cached);
|
2012-11-20 16:43:10 -08:00
|
|
|
}
|
|
|
|
|
2011-10-27 15:26:23 -07:00
|
|
|
// Propagate information about which lines changed to the lint engine.
|
2011-11-03 13:42:19 -07:00
|
|
|
// This is used so that the lint engine can drop warning messages
|
|
|
|
// concerning lines that weren't in the change.
|
2011-01-09 15:22:25 -08:00
|
|
|
$engine->setPaths($paths);
|
2012-11-21 14:52:50 -08:00
|
|
|
if (!$this->shouldLintAll) {
|
2011-01-09 15:22:25 -08:00
|
|
|
foreach ($paths as $path) {
|
2011-11-03 13:42:19 -07:00
|
|
|
// 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'));
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-01 16:21:12 -07:00
|
|
|
// Enable possible async linting only for 'arc diff' not 'arc lint'
|
2012-07-02 15:53:22 -07:00
|
|
|
if ($this->getParentWorkflow()) {
|
|
|
|
$engine->setEnableAsyncLint(true);
|
|
|
|
} else {
|
|
|
|
$engine->setEnableAsyncLint(false);
|
|
|
|
}
|
|
|
|
|
2012-12-03 16:52:58 -08:00
|
|
|
if ($this->getArgument('only-new')) {
|
|
|
|
$conduit = $this->getConduit();
|
|
|
|
$api = $this->getRepositoryAPI();
|
2012-12-17 12:54:08 -08:00
|
|
|
if ($rev) {
|
|
|
|
$api->setBaseCommit($rev);
|
|
|
|
}
|
2012-12-03 16:52:58 -08:00
|
|
|
$svn_root = id(new PhutilURI($api->getSourceControlPath()))->getPath();
|
|
|
|
|
|
|
|
$all_paths = array();
|
|
|
|
foreach ($paths as $path) {
|
|
|
|
$path = str_replace(DIRECTORY_SEPARATOR, '/', $path);
|
|
|
|
$full_paths = array($path);
|
|
|
|
|
|
|
|
$change = $this->getChange($path);
|
|
|
|
$type = $change->getType();
|
|
|
|
if (ArcanistDiffChangeType::isOldLocationChangeType($type)) {
|
|
|
|
$full_paths = $change->getAwayPaths();
|
|
|
|
} else if (ArcanistDiffChangeType::isNewLocationChangeType($type)) {
|
|
|
|
continue;
|
|
|
|
} else if (ArcanistDiffChangeType::isDeleteChangeType($type)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($full_paths as $full_path) {
|
|
|
|
$all_paths[$svn_root.'/'.$full_path] = $path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$lint_future = $conduit->callMethod('diffusion.getlintmessages', array(
|
|
|
|
'arcanistProject' => $this->getWorkingCopy()->getProjectID(),
|
|
|
|
'branch' => '', // TODO: Tracking branch.
|
2012-12-17 12:54:08 -08:00
|
|
|
'commit' => $api->getBaseCommit(),
|
2012-12-03 16:52:58 -08:00
|
|
|
'files' => array_keys($all_paths),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2012-10-20 04:42:53 -07:00
|
|
|
$failed = null;
|
|
|
|
try {
|
|
|
|
$engine->run();
|
|
|
|
} catch (Exception $ex) {
|
2012-11-21 14:52:50 -08:00
|
|
|
$failed = $ex;
|
2012-10-20 04:42:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
$results = $engine->getResults();
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2012-12-03 16:52:58 -08:00
|
|
|
if ($this->getArgument('only-new')) {
|
|
|
|
$total = 0;
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$total += count($result->getMessages());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't wait for response with default value of --only-new.
|
|
|
|
$timeout = null;
|
|
|
|
if ($this->getArgument('only-new') === null || !$total) {
|
|
|
|
$timeout = 0;
|
|
|
|
}
|
|
|
|
|
2012-12-14 17:40:57 -08:00
|
|
|
$raw_messages = $this->resolveCall($lint_future, $timeout);
|
2012-12-03 16:52:58 -08:00
|
|
|
if ($raw_messages && $total) {
|
|
|
|
$old_messages = array();
|
|
|
|
$line_maps = array();
|
|
|
|
foreach ($raw_messages as $message) {
|
|
|
|
$path = $all_paths[$message['path']];
|
|
|
|
$line = $message['line'];
|
|
|
|
$code = $message['code'];
|
|
|
|
|
|
|
|
if (!isset($line_maps[$path])) {
|
|
|
|
$line_maps[$path] = $this->getChange($path)->buildLineMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_lines = idx($line_maps[$path], $line);
|
|
|
|
if (!$new_lines) { // Unmodified lines after last hunk.
|
|
|
|
$last_old = ($line_maps[$path] ? last_key($line_maps[$path]) : 0);
|
|
|
|
$news = array_filter($line_maps[$path]);
|
|
|
|
$last_new = ($news ? last(end($news)) : 0);
|
|
|
|
$new_lines = array($line + $last_new - $last_old);
|
|
|
|
}
|
|
|
|
|
|
|
|
$error = array($code => array(true));
|
|
|
|
foreach ($new_lines as $new) {
|
|
|
|
if (isset($old_messages[$path][$new])) {
|
|
|
|
$old_messages[$path][$new][$code][] = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$old_messages[$path][$new] = &$error;
|
|
|
|
}
|
|
|
|
unset($error);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($results as $result) {
|
|
|
|
foreach ($result->getMessages() as $message) {
|
|
|
|
$path = str_replace(DIRECTORY_SEPARATOR, '/', $message->getPath());
|
|
|
|
$line = $message->getLine();
|
|
|
|
$code = $message->getCode();
|
|
|
|
if (!empty($old_messages[$path][$line][$code])) {
|
|
|
|
$message->setObsolete(true);
|
|
|
|
array_pop($old_messages[$path][$line][$code]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$result->sortAndFilterMessages();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-02 15:53:22 -07:00
|
|
|
// 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();
|
|
|
|
|
2011-01-10 14:03:12 -08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-04-06 12:23:19 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2013-04-16 13:32:12 -07:00
|
|
|
$repository_api = $this->getRepositoryAPI();
|
|
|
|
if ($this->shouldAmendChanges) {
|
|
|
|
$this->shouldAmendChanges = $repository_api->supportsAmend() &&
|
|
|
|
!$this->isHistoryImmutable();
|
|
|
|
}
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
$wrote_to_disk = false;
|
|
|
|
|
2011-04-03 18:04:20 -07:00
|
|
|
switch ($this->getArgument('output')) {
|
|
|
|
case 'json':
|
|
|
|
$renderer = new ArcanistLintJSONRenderer();
|
2011-12-15 10:02:29 -08:00
|
|
|
$prompt_patches = false;
|
2012-02-10 21:35:12 -08:00
|
|
|
$apply_patches = $this->getArgument('apply-patches');
|
2011-04-03 18:04:20 -07:00
|
|
|
break;
|
|
|
|
case 'summary':
|
|
|
|
$renderer = new ArcanistLintSummaryRenderer();
|
|
|
|
break;
|
2013-02-25 12:33:51 -08:00
|
|
|
case 'none':
|
|
|
|
$prompt_patches = false;
|
|
|
|
$apply_patches = $this->getArgument('apply-patches');
|
|
|
|
$renderer = new ArcanistLintNoneRenderer();
|
|
|
|
break;
|
2011-06-28 18:14:07 -07:00
|
|
|
case 'compiler':
|
|
|
|
$renderer = new ArcanistLintLikeCompilerRenderer();
|
|
|
|
$prompt_patches = false;
|
|
|
|
$apply_patches = $this->getArgument('apply-patches');
|
|
|
|
break;
|
2011-04-03 18:04:20 -07:00
|
|
|
default:
|
2012-06-01 17:32:35 -07:00
|
|
|
$renderer = new ArcanistLintConsoleRenderer();
|
2012-04-06 12:23:19 -07:00
|
|
|
$renderer->setShowAutofixPatches($prompt_autofix_patches);
|
2011-04-03 18:04:20 -07:00
|
|
|
break;
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
2011-04-03 18:04:20 -07:00
|
|
|
|
2012-04-06 12:23:19 -07:00
|
|
|
$all_autofix = true;
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
foreach ($results as $result) {
|
2012-04-06 12:23:19 -07:00
|
|
|
$result_all_autofix = $result->isAllAutofix();
|
|
|
|
|
|
|
|
if (!$result->getMessages() && !$result_all_autofix) {
|
2011-01-09 15:22:25 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-04-06 12:23:19 -07:00
|
|
|
if (!$result_all_autofix) {
|
|
|
|
$all_autofix = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$lint_result = $renderer->renderLintResult($result);
|
|
|
|
if ($lint_result) {
|
2012-08-04 19:23:53 -07:00
|
|
|
$console->writeOut('%s', $lint_result);
|
2012-04-06 12:23:19 -07:00
|
|
|
}
|
2011-01-09 15:22:25 -08:00
|
|
|
|
|
|
|
if ($apply_patches && $result->isPatchable()) {
|
|
|
|
$patcher = ArcanistLintPatcher::newFromArcanistLintResult($result);
|
2013-03-10 18:49:02 -07:00
|
|
|
$old_file = $result->getFilePathOnDisk();
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2012-04-06 12:23:19 -07:00
|
|
|
if ($prompt_patches &&
|
|
|
|
!($result_all_autofix && !$prompt_autofix_patches)) {
|
2011-01-09 20:40:13 -08:00
|
|
|
if (!Filesystem::pathExists($old_file)) {
|
|
|
|
$old_file = '/dev/null';
|
|
|
|
}
|
2011-01-09 15:22:25 -08:00
|
|
|
$new_file = new TempFile();
|
2012-06-01 23:33:58 -07:00
|
|
|
$new = $patcher->getModifiedFileContent();
|
2011-01-09 15:22:25 -08:00
|
|
|
Filesystem::writeFile($new_file, $new);
|
|
|
|
|
|
|
|
// TODO: Improve the behavior here, make it more like
|
|
|
|
// difference_render().
|
2012-08-04 19:23:53 -07:00
|
|
|
list(, $stdout, $stderr) =
|
|
|
|
exec_manual("diff -u %s %s", $old_file, $new_file);
|
|
|
|
$console->writeOut('%s', $stdout);
|
|
|
|
$console->writeErr('%s', $stderr);
|
2011-01-09 15:22:25 -08:00
|
|
|
|
|
|
|
$prompt = phutil_console_format(
|
|
|
|
"Apply this patch to __%s__?",
|
|
|
|
$result->getPath());
|
2012-08-04 19:23:53 -07:00
|
|
|
if (!$console->confirm($prompt, $default_no = false)) {
|
2011-01-09 15:22:25 -08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$patcher->writePatchToDisk();
|
|
|
|
$wrote_to_disk = true;
|
2013-03-10 18:49:02 -07:00
|
|
|
$file_hashes[$old_file] = md5_file($old_file);
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-16 13:32:12 -07:00
|
|
|
if ($wrote_to_disk && $this->shouldAmendChanges) {
|
2012-04-06 12:23:19 -07:00
|
|
|
if ($this->shouldAmendWithoutPrompt ||
|
|
|
|
($this->shouldAmendAutofixesWithoutPrompt && $all_autofix)) {
|
2012-08-04 19:23:53 -07:00
|
|
|
$console->writeOut(
|
2012-04-06 12:23:19 -07:00
|
|
|
"<bg:yellow>** LINT NOTICE **</bg> Automatically amending HEAD ".
|
|
|
|
"with lint patches.\n");
|
|
|
|
$amend = true;
|
|
|
|
} else {
|
2012-08-04 19:23:53 -07:00
|
|
|
$amend = $console->confirm("Amend HEAD with lint patches?");
|
2012-04-06 12:23:19 -07:00
|
|
|
}
|
|
|
|
|
2011-01-10 14:03:12 -08:00
|
|
|
if ($amend) {
|
2013-04-16 13:32:12 -07:00
|
|
|
if ($repository_api instanceof ArcanistGitAPI) {
|
|
|
|
// Add the changes to the index before amending
|
2013-04-18 20:03:26 -07:00
|
|
|
$repository_api->execxLocal('add -u');
|
2013-04-16 13:32:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
$repository_api->amendCommit();
|
2011-01-10 14:03:12 -08:00
|
|
|
} else {
|
2011-01-29 17:18:32 -08:00
|
|
|
throw new ArcanistUsageException(
|
|
|
|
"Sort out the lint changes that were applied to the working ".
|
|
|
|
"copy and relint.");
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-08 19:29:40 -08:00
|
|
|
if ($this->getArgument('output') == 'json') {
|
|
|
|
// NOTE: Required by save_lint.php in Phabricator.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($failed) {
|
2013-02-25 12:33:51 -08:00
|
|
|
if ($failed instanceof ArcanistNoEffectException) {
|
|
|
|
if ($renderer instanceof ArcanistLintNoneRenderer) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2012-11-08 19:29:40 -08:00
|
|
|
throw $failed;
|
|
|
|
}
|
|
|
|
|
2011-01-11 20:21:17 -08:00
|
|
|
$unresolved = array();
|
2011-06-27 13:29:36 -07:00
|
|
|
$has_warnings = false;
|
|
|
|
$has_errors = false;
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
foreach ($results as $result) {
|
|
|
|
foreach ($result->getMessages() as $message) {
|
|
|
|
if (!$message->isPatchApplied()) {
|
|
|
|
if ($message->isError()) {
|
2011-06-27 13:29:36 -07:00
|
|
|
$has_errors = true;
|
2011-01-09 15:22:25 -08:00
|
|
|
} else if ($message->isWarning()) {
|
2011-06-27 13:29:36 -07:00
|
|
|
$has_warnings = true;
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
2011-06-27 13:29:36 -07:00
|
|
|
$unresolved[] = $message;
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-11 20:21:17 -08:00
|
|
|
$this->unresolvedMessages = $unresolved;
|
2011-01-09 15:22:25 -08:00
|
|
|
|
2012-11-21 14:52:50 -08:00
|
|
|
$cache = $this->readScratchJSONFile('lint-cache.json');
|
|
|
|
$cached = idx($cache, $this->getCacheKey(), array());
|
2012-12-20 11:35:50 -08:00
|
|
|
if ($cached || $use_cache) {
|
2013-01-15 13:47:11 -08:00
|
|
|
$stopped = $engine->getStoppedPaths();
|
2012-11-20 16:43:10 -08:00
|
|
|
foreach ($results as $result) {
|
|
|
|
$path = $result->getPath();
|
2012-12-20 11:35:50 -08:00
|
|
|
if (!$use_cache) {
|
2012-11-21 14:52:50 -08:00
|
|
|
unset($cached[$path]);
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-21 18:38:24 -08:00
|
|
|
$abs_path = $engine->getFilePathOnDisk($path);
|
|
|
|
if (!Filesystem::pathExists($abs_path)) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-21 14:52:50 -08:00
|
|
|
$version = $result->getCacheVersion();
|
2013-01-23 13:06:45 -08:00
|
|
|
$cached_path = array();
|
2013-01-15 13:47:11 -08:00
|
|
|
if (isset($stopped[$path])) {
|
2013-01-23 13:06:45 -08:00
|
|
|
$cached_path['stopped'] = $stopped[$path];
|
2013-01-15 13:47:11 -08:00
|
|
|
}
|
2013-01-23 13:06:45 -08:00
|
|
|
$cached_path['repository_version'] = $this->getRepositoryVersion();
|
2012-11-20 16:43:10 -08:00
|
|
|
foreach ($result->getMessages() as $message) {
|
2013-02-06 15:27:31 -08:00
|
|
|
$granularity = $message->getGranularity();
|
|
|
|
if ($granularity == ArcanistLinter::GRANULARITY_GLOBAL) {
|
2012-11-21 18:38:24 -08:00
|
|
|
continue;
|
|
|
|
}
|
2012-11-20 16:43:10 -08:00
|
|
|
if (!$message->isPatchApplied()) {
|
2013-01-23 13:06:45 -08:00
|
|
|
$cached_path[] = $message->toDictionary();
|
2012-11-20 16:43:10 -08:00
|
|
|
}
|
|
|
|
}
|
2013-03-28 05:04:37 +00:00
|
|
|
$hash = idx($file_hashes, $abs_path);
|
|
|
|
if (!$hash) {
|
|
|
|
$hash = md5_file($abs_path);
|
|
|
|
}
|
2013-01-23 13:06:45 -08:00
|
|
|
$cached[$path] = array($hash => array($version => $cached_path));
|
2012-11-20 16:43:10 -08:00
|
|
|
}
|
|
|
|
$cache[$this->getCacheKey()] = $cached;
|
|
|
|
// TODO: Garbage collection.
|
|
|
|
$this->writeScratchJSONFile('lint-cache.json', $cache);
|
|
|
|
}
|
|
|
|
|
2011-06-27 13:29:36 -07:00
|
|
|
// 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;
|
2012-07-02 15:53:22 -07:00
|
|
|
} else if (!empty($this->postponedLinters)) {
|
|
|
|
$result_code = self::RESULT_POSTPONED;
|
2011-06-27 13:29:36 -07:00
|
|
|
} else {
|
|
|
|
$result_code = self::RESULT_OKAY;
|
|
|
|
}
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
if (!$this->getParentWorkflow()) {
|
|
|
|
if ($result_code == self::RESULT_OKAY) {
|
2012-08-04 19:23:53 -07:00
|
|
|
$console->writeOut('%s', $renderer->renderOkayResult());
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result_code;
|
|
|
|
}
|
2011-01-11 20:21:17 -08:00
|
|
|
|
|
|
|
public function getUnresolvedMessages() {
|
|
|
|
return $this->unresolvedMessages;
|
|
|
|
}
|
|
|
|
|
2012-07-02 15:53:22 -07:00
|
|
|
public function getPostponedLinters() {
|
|
|
|
return $this->postponedLinters;
|
|
|
|
}
|
|
|
|
|
2011-01-09 15:22:25 -08:00
|
|
|
}
|