fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
9 years ago
|
<?php
|
||
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
// This source code is licensed under the BSD-style license found in the
|
||
|
// LICENSE file in the root directory of this source tree. An additional grant
|
||
|
// of patent rights can be found in the PATENTS file in the same directory.
|
||
|
|
||
|
abstract class BaseDirectoryScopedFormatLinter extends ArcanistLinter {
|
||
|
|
||
|
const LINT_FORMATTING = 1;
|
||
|
|
||
|
private $changedLines = array();
|
||
|
private $rawLintOutput = array();
|
||
|
|
||
|
abstract protected function getPathsToLint();
|
||
|
|
||
|
protected function shouldLintPath($path) {
|
||
|
foreach ($this->getPathsToLint() as $p) {
|
||
|
// check if $path starts with $p
|
||
|
if (strncmp($path, $p, strlen($p)) === 0) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
// API to tell this linter which lines were changed
|
||
|
final public function setPathChangedLines($path, $changed) {
|
||
|
$this->changedLines[$path] = $changed;
|
||
|
}
|
||
|
|
||
|
final public function willLintPaths(array $paths) {
|
||
|
$futures = array();
|
||
|
foreach ($paths as $path) {
|
||
|
if (!$this->shouldLintPath($path)) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
$changed = $this->changedLines[$path];
|
||
|
if (!isset($changed)) {
|
||
|
// do not run linter if there are no changes
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
$futures[$path] = $this->getFormatFuture($path, $changed);
|
||
|
}
|
||
|
|
||
|
foreach (Futures($futures)->limit(8) as $p => $f) {
|
||
|
$this->rawLintOutput[$p] = $f->resolvex();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
abstract protected function getFormatFuture($path, array $changed);
|
||
|
abstract protected function getLintMessage($diff);
|
||
|
|
||
|
final public function lintPath($path) {
|
||
|
if (!isset($this->rawLintOutput[$path])) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
list($new_content) = $this->rawLintOutput[$path];
|
||
|
$old_content = $this->getData($path);
|
||
|
|
||
|
if ($new_content != $old_content) {
|
||
|
$diff = ArcanistDiffUtils::renderDifferences($old_content, $new_content);
|
||
|
$this->raiseLintAtOffset(
|
||
|
0,
|
||
|
self::LINT_FORMATTING,
|
||
|
$this->getLintMessage($diff),
|
||
|
$old_content,
|
||
|
$new_content);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|