1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 08:58:55 +02:00

Provide ConfigurationManager to LintEngine in Arcanist

Summary: Unbreaks ArcanistSingleLintEngine / ArcanistScriptAndRegexLinter from recent config churn.

Test Plan: `arc lint --engine ArcanistSingleLintEngine --rev HEAD^`

Reviewers: btrahan

Reviewed By: btrahan

CC: csilvers, aran

Differential Revision: https://secure.phabricator.com/D7377
This commit is contained in:
epriestley 2013-10-21 16:57:22 -07:00
parent 5c2f7b2abd
commit ddbc14ade1
4 changed files with 21 additions and 4 deletions

View file

@ -63,11 +63,22 @@ abstract class ArcanistLintEngine {
private $enableAsyncLint = false; private $enableAsyncLint = false;
private $postponedLinters = array(); private $postponedLinters = array();
private $configurationManager;
public function __construct() { public function __construct() {
} }
public function setConfigurationManager(
ArcanistConfigurationManager $configuration_manager) {
$this->configurationManager = $configuration_manager;
return $this;
}
public function getConfigurationManager() {
return $this->configurationManager;
}
public function setWorkingCopy(ArcanistWorkingCopyIdentity $working_copy) { public function setWorkingCopy(ArcanistWorkingCopyIdentity $working_copy) {
$this->workingCopy = $working_copy; $this->workingCopy = $working_copy;
return $this; return $this;

View file

@ -15,7 +15,8 @@ final class ArcanistSingleLintEngine extends ArcanistLintEngine {
public function buildLinters() { public function buildLinters() {
$key = 'lint.engine.single.linter'; $key = 'lint.engine.single.linter';
$linter_name = $this->getWorkingCopy()->getConfigFromAnySource($key); $linter_name = $this->getConfigurationManager()
->getConfigFromAnySource($key);
if (!$linter_name) { if (!$linter_name) {
throw new ArcanistUsageException( throw new ArcanistUsageException(

View file

@ -348,7 +348,9 @@ final class ArcanistScriptAndRegexLinter extends ArcanistLinter {
*/ */
private function getConfiguredScript() { private function getConfiguredScript() {
$key = 'linter.scriptandregex.script'; $key = 'linter.scriptandregex.script';
$config = $this->getConfigFromAnySource($key); $config = $this->getEngine()
->getConfigurationManager()
->getConfigFromAnySource($key);
if (!$config) { if (!$config) {
throw new ArcanistUsageException( throw new ArcanistUsageException(
@ -373,7 +375,9 @@ final class ArcanistScriptAndRegexLinter extends ArcanistLinter {
*/ */
private function getConfiguredRegex() { private function getConfiguredRegex() {
$key = 'linter.scriptandregex.regex'; $key = 'linter.scriptandregex.regex';
$config = $this->getConfigFromAnySource($key); $config = $this->getEngine()
->getConfigurationManager()
->getConfigFromAnySource($key);
if (!$config) { if (!$config) {
throw new ArcanistUsageException( throw new ArcanistUsageException(

View file

@ -261,7 +261,8 @@ EOTEXT
$engine = newv($engine, array()); $engine = newv($engine, array());
$this->engine = $engine; $this->engine = $engine;
$engine->setWorkingCopy($working_copy); // todo setConfig? $engine->setWorkingCopy($working_copy);
$engine->setConfigurationManager($configuration_manager);
$engine->setMinimumSeverity( $engine->setMinimumSeverity(
$this->getArgument('severity', self::DEFAULT_SEVERITY)); $this->getArgument('severity', self::DEFAULT_SEVERITY));