mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-10 14:51:05 +01:00
3f747be644
Summary: This can be useful by itself, we want to use it in FB linter. Test Plan: This diff. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4744
113 lines
3 KiB
PHP
113 lines
3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group linter
|
|
*/
|
|
final class ArcanistPhutilXHPASTLinter extends ArcanistBaseXHPASTLinter {
|
|
|
|
const LINT_PHT_WITH_DYNAMIC_STRING = 1;
|
|
const LINT_ARRAY_COMBINE = 2;
|
|
|
|
private $xhpastLinter;
|
|
|
|
public function setXHPASTLinter(ArcanistXHPASTLinter $linter) {
|
|
$this->xhpastLinter = $linter;
|
|
return $this;
|
|
}
|
|
|
|
public function setEngine(ArcanistLintEngine $engine) {
|
|
if (!$this->xhpastLinter) {
|
|
throw new Exception(
|
|
'Call setXHPASTLinter() before using ArcanistPhutilXHPASTLinter.');
|
|
}
|
|
$this->xhpastLinter->setEngine($engine);
|
|
return parent::setEngine($engine);
|
|
}
|
|
|
|
public function getLintNameMap() {
|
|
return array(
|
|
self::LINT_PHT_WITH_DYNAMIC_STRING => 'Use of pht() on Dynamic String',
|
|
self::LINT_ARRAY_COMBINE => 'array_combine() Unreliable',
|
|
);
|
|
}
|
|
|
|
public function getLintSeverityMap() {
|
|
return array(
|
|
self::LINT_ARRAY_COMBINE => ArcanistLintSeverity::SEVERITY_WARNING,
|
|
);
|
|
}
|
|
|
|
public function getLinterName() {
|
|
return 'PHLXHP';
|
|
}
|
|
|
|
public function willLintPaths(array $paths) {
|
|
$this->xhpastLinter->willLintPaths($paths);
|
|
}
|
|
|
|
public function lintPath($path) {
|
|
$tree = $this->xhpastLinter->getXHPASTTreeForPath($path);
|
|
if (!$tree) {
|
|
return;
|
|
}
|
|
|
|
$root = $tree->getRootNode();
|
|
|
|
$this->lintPHT($root);
|
|
$this->lintArrayCombine($root);
|
|
}
|
|
|
|
|
|
private function lintPHT($root) {
|
|
$calls = $root->selectDescendantsOfType('n_FUNCTION_CALL');
|
|
foreach ($calls as $call) {
|
|
$name = $call->getChildByIndex(0)->getConcreteString();
|
|
if (strcasecmp($name, 'pht') != 0) {
|
|
continue;
|
|
}
|
|
|
|
$parameters = $call->getChildOfType(1, 'n_CALL_PARAMETER_LIST');
|
|
if (!$parameters->getChildren()) {
|
|
continue;
|
|
}
|
|
|
|
$identifier = $parameters->getChildByIndex(0);
|
|
if ($identifier->isConstantString()) {
|
|
continue;
|
|
}
|
|
|
|
$this->raiseLintAtNode(
|
|
$call,
|
|
self::LINT_PHT_WITH_DYNAMIC_STRING,
|
|
"The first parameter of pht() can be only a scalar string, ".
|
|
"otherwise it can't be extracted.");
|
|
}
|
|
}
|
|
|
|
|
|
private function lintArrayCombine($root) {
|
|
$function_calls = $root->selectDescendantsOfType('n_FUNCTION_CALL');
|
|
foreach ($function_calls as $call) {
|
|
$name = $call->getChildByIndex(0)->getConcreteString();
|
|
if (strcasecmp($name, 'array_combine') == 0) {
|
|
$parameter_list = $call->getChildOfType(1, 'n_CALL_PARAMETER_LIST');
|
|
if (count($parameter_list->getChildren()) !== 2) {
|
|
// Wrong number of parameters, but raise that elsewhere if we want.
|
|
continue;
|
|
}
|
|
|
|
$first = $parameter_list->getChildByIndex(0);
|
|
$second = $parameter_list->getChildByIndex(1);
|
|
|
|
if ($first->getConcreteString() == $second->getConcreteString()) {
|
|
$this->raiseLintAtNode(
|
|
$call,
|
|
self::LINT_ARRAY_COMBINE,
|
|
'Prior to PHP 5.4, array_combine() fails when given empty '.
|
|
'arrays. Prefer to write array_combine(x, x) as array_fuse(x).');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|