2011-01-10 00:22:25 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2011-02-19 20:36:08 +01:00
|
|
|
/**
|
|
|
|
* Runs lint rules on changes.
|
|
|
|
*
|
|
|
|
* @group workflow
|
|
|
|
*/
|
2011-01-10 00:22:25 +01:00
|
|
|
class ArcanistLintWorkflow extends ArcanistBaseWorkflow {
|
|
|
|
|
|
|
|
const RESULT_OKAY = 0;
|
|
|
|
const RESULT_WARNINGS = 1;
|
|
|
|
const RESULT_ERRORS = 2;
|
|
|
|
const RESULT_SKIP = 3;
|
|
|
|
|
2011-01-12 05:21:17 +01:00
|
|
|
private $unresolvedMessages;
|
2011-01-30 02:18:32 +01:00
|
|
|
private $shouldAmendChanges = false;
|
|
|
|
|
|
|
|
public function setShouldAmendChanges($should_amend) {
|
|
|
|
$this->shouldAmendChanges = $should_amend;
|
|
|
|
return $this;
|
|
|
|
}
|
2011-01-12 05:21:17 +01:00
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
public function getCommandHelp() {
|
|
|
|
return phutil_console_format(<<<EOTEXT
|
|
|
|
**lint** [__options__] [__paths__] (svn)
|
|
|
|
**lint** [__options__] [__commit_range__] (git)
|
|
|
|
Supports: git, svn
|
|
|
|
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."
|
|
|
|
),
|
2011-04-04 03:04:20 +02:00
|
|
|
'output' => array(
|
|
|
|
'param' => 'format',
|
2011-01-10 00:22:25 +01:00
|
|
|
'help' =>
|
2011-04-04 03:04:20 +02:00
|
|
|
"With 'summary', show lint warnings in a more compact format. ".
|
|
|
|
"With 'json', show lint warnings in machine-readable JSON format."
|
2011-01-10 00:22:25 +01:00
|
|
|
),
|
|
|
|
'advice' => array(
|
|
|
|
'help' =>
|
|
|
|
"Show lint advice, not just warnings and errors."
|
|
|
|
),
|
|
|
|
'engine' => array(
|
|
|
|
'param' => 'classname',
|
|
|
|
'help' =>
|
|
|
|
"Override configured lint engine for this project."
|
|
|
|
),
|
2011-01-10 23:03:12 +01: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,
|
|
|
|
),
|
|
|
|
),
|
2011-01-10 00:22:25 +01:00
|
|
|
'*' => 'paths',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresWorkingCopy() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run() {
|
|
|
|
$working_copy = $this->getWorkingCopy();
|
|
|
|
|
|
|
|
$engine = $this->getArgument('engine');
|
|
|
|
if (!$engine) {
|
|
|
|
$engine = $working_copy->getConfig('lint_engine');
|
2011-05-17 21:43:49 +02:00
|
|
|
if (!$engine) {
|
|
|
|
throw new ArcanistNoEngineException(
|
|
|
|
"No lint engine configured for this project. Edit .arcconfig to ".
|
|
|
|
"specify a lint engine.");
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$should_lint_all = $this->getArgument('lintall');
|
|
|
|
|
|
|
|
$repository_api = null;
|
|
|
|
if (!$should_lint_all) {
|
|
|
|
try {
|
|
|
|
$repository_api = ArcanistRepositoryAPI::newAPIFromWorkingCopyIdentity(
|
|
|
|
$working_copy);
|
|
|
|
$this->setRepositoryAPI($repository_api);
|
|
|
|
} catch (ArcanistUsageException $ex) {
|
|
|
|
throw new ArcanistUsageException(
|
|
|
|
$ex->getMessage()."\n\n".
|
|
|
|
"Use '--lintall' to ignore working copy changes when running lint.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($repository_api instanceof ArcanistSubversionAPI) {
|
|
|
|
$paths = $repository_api->getWorkingCopyStatus();
|
|
|
|
$list = new FileList($this->getArgument('paths'));
|
|
|
|
foreach ($paths as $path => $flags) {
|
|
|
|
if (!$list->contains($path)) {
|
|
|
|
unset($paths[$path]);
|
|
|
|
}
|
|
|
|
}
|
2011-09-15 03:44:54 +02:00
|
|
|
} else if ($repository_api->supportsRelativeLocalCommits()) {
|
|
|
|
$repository_api->parseRelativeLocalCommit(
|
|
|
|
$this->getArgument('paths', array()));
|
2011-01-10 00:22:25 +01:00
|
|
|
$paths = $repository_api->getWorkingCopyStatus();
|
2011-09-15 03:44:54 +02:00
|
|
|
} else {
|
|
|
|
throw new Exception("Unknown VCS!");
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($paths as $path => $flags) {
|
|
|
|
if ($flags & ArcanistRepositoryAPI::FLAG_UNTRACKED) {
|
|
|
|
unset($paths[$path]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$paths = array_keys($paths);
|
|
|
|
} else {
|
|
|
|
$paths = $this->getArgument('paths');
|
|
|
|
if (empty($paths)) {
|
|
|
|
throw new ArcanistUsageException(
|
|
|
|
"You must specify one or more files to lint when using '--lintall'.");
|
|
|
|
}
|
2011-03-14 23:03:50 +01:00
|
|
|
foreach ($paths as $key => $path) {
|
|
|
|
$full_path = Filesystem::resolvePath($path);
|
|
|
|
if (!Filesystem::pathExists($full_path)) {
|
|
|
|
throw new ArcanistUsageException("Path '{$path}' does not exist!");
|
|
|
|
}
|
|
|
|
$relative_path = Filesystem::readablePath(
|
|
|
|
$full_path,
|
|
|
|
$working_copy->getProjectRoot());
|
|
|
|
$paths[$key] = $relative_path;
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
|
2011-01-13 00:45:17 +01:00
|
|
|
PhutilSymbolLoader::loadClass($engine);
|
2011-01-10 00:22:25 +01:00
|
|
|
|
|
|
|
$engine = newv($engine, array());
|
|
|
|
$engine->setWorkingCopy($working_copy);
|
|
|
|
|
|
|
|
if ($this->getArgument('advice')) {
|
|
|
|
$engine->setMinimumSeverity(ArcanistLintSeverity::SEVERITY_ADVICE);
|
|
|
|
} else {
|
|
|
|
$engine->setMinimumSeverity(ArcanistLintSeverity::SEVERITY_WARNING);
|
|
|
|
}
|
|
|
|
|
2011-10-28 00:26:23 +02:00
|
|
|
// Propagate information about which lines changed to the lint engine.
|
|
|
|
// This is used so that the lint engine can drop messages concerning
|
|
|
|
// lines that weren't in the change.
|
2011-01-10 00:22:25 +01:00
|
|
|
$engine->setPaths($paths);
|
|
|
|
if (!$should_lint_all) {
|
|
|
|
foreach ($paths as $path) {
|
2011-10-28 00:26:23 +02:00
|
|
|
// Explicitly flag text changes, as line information doesn't apply
|
|
|
|
// to non-text files.
|
|
|
|
if ($this->isTextChange($path)) {
|
|
|
|
$engine->setTextChange($path);
|
|
|
|
$engine->setPathChangedLines(
|
|
|
|
$path,
|
|
|
|
$this->getChangedLines($path, 'new'));
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = $engine->run();
|
|
|
|
|
2011-01-10 23:03:12 +01: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;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
$wrote_to_disk = false;
|
|
|
|
|
2011-04-04 03:04:20 +02:00
|
|
|
switch ($this->getArgument('output')) {
|
|
|
|
case 'json':
|
|
|
|
$renderer = new ArcanistLintJSONRenderer();
|
|
|
|
break;
|
|
|
|
case 'summary':
|
|
|
|
$renderer = new ArcanistLintSummaryRenderer();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$renderer = new ArcanistLintRenderer();
|
|
|
|
break;
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
2011-04-04 03:04:20 +02:00
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
foreach ($results as $result) {
|
|
|
|
if (!$result->getMessages()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $renderer->renderLintResult($result);
|
|
|
|
|
|
|
|
if ($apply_patches && $result->isPatchable()) {
|
|
|
|
$patcher = ArcanistLintPatcher::newFromArcanistLintResult($result);
|
|
|
|
$old = $patcher->getUnmodifiedFileContent();
|
|
|
|
$new = $patcher->getModifiedFileContent();
|
|
|
|
|
|
|
|
if ($prompt_patches) {
|
|
|
|
$old_file = $result->getFilePathOnDisk();
|
2011-01-10 05:40:13 +01:00
|
|
|
if (!Filesystem::pathExists($old_file)) {
|
|
|
|
$old_file = '/dev/null';
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
$new_file = new TempFile();
|
|
|
|
Filesystem::writeFile($new_file, $new);
|
|
|
|
|
|
|
|
// TODO: Improve the behavior here, make it more like
|
|
|
|
// difference_render().
|
|
|
|
passthru(csprintf("diff -u %s %s", $old_file, $new_file));
|
|
|
|
|
|
|
|
$prompt = phutil_console_format(
|
|
|
|
"Apply this patch to __%s__?",
|
|
|
|
$result->getPath());
|
|
|
|
if (!phutil_console_confirm($prompt, $default_no = false)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$patcher->writePatchToDisk();
|
|
|
|
$wrote_to_disk = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-30 02:18:32 +01:00
|
|
|
if ($wrote_to_disk &&
|
|
|
|
($repository_api instanceof ArcanistGitAPI) &&
|
|
|
|
$this->shouldAmendChanges) {
|
2011-01-10 23:03:12 +01:00
|
|
|
$amend = phutil_console_confirm("Amend HEAD with lint patches?");
|
|
|
|
if ($amend) {
|
|
|
|
execx(
|
|
|
|
'(cd %s; git commit -a --amend -C HEAD)',
|
|
|
|
$repository_api->getPath());
|
|
|
|
} else {
|
2011-01-30 02:18:32 +01:00
|
|
|
throw new ArcanistUsageException(
|
|
|
|
"Sort out the lint changes that were applied to the working ".
|
|
|
|
"copy and relint.");
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-12 05:21:17 +01:00
|
|
|
$unresolved = array();
|
2011-06-27 22:29:36 +02:00
|
|
|
$has_warnings = false;
|
|
|
|
$has_errors = false;
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
foreach ($results as $result) {
|
|
|
|
foreach ($result->getMessages() as $message) {
|
|
|
|
if (!$message->isPatchApplied()) {
|
|
|
|
if ($message->isError()) {
|
2011-06-27 22:29:36 +02:00
|
|
|
$has_errors = true;
|
2011-01-10 00:22:25 +01:00
|
|
|
} else if ($message->isWarning()) {
|
2011-06-27 22:29:36 +02:00
|
|
|
$has_warnings = true;
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
2011-06-27 22:29:36 +02:00
|
|
|
$unresolved[] = $message;
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-12 05:21:17 +01:00
|
|
|
$this->unresolvedMessages = $unresolved;
|
2011-01-10 00:22:25 +01:00
|
|
|
|
2011-06-27 22:29:36 +02: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;
|
|
|
|
} else {
|
|
|
|
$result_code = self::RESULT_OKAY;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
if (!$this->getParentWorkflow()) {
|
|
|
|
if ($result_code == self::RESULT_OKAY) {
|
|
|
|
echo phutil_console_format(
|
|
|
|
"<bg:green>** OKAY **</bg> No lint warnings.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result_code;
|
|
|
|
}
|
2011-01-12 05:21:17 +01:00
|
|
|
|
|
|
|
public function getUnresolvedMessages() {
|
|
|
|
return $this->unresolvedMessages;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|