Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15424173
D11265.id27094.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D11265.id27094.diff
View Options
diff --git a/src/lint/linter/ArcanistPhpLinter.php b/src/lint/linter/ArcanistPhpLinter.php
--- a/src/lint/linter/ArcanistPhpLinter.php
+++ b/src/lint/linter/ArcanistPhpLinter.php
@@ -5,6 +5,9 @@
*/
final class ArcanistPhpLinter extends ArcanistExternalLinter {
+ const LINT_PARSE_ERROR = 1;
+ const LINT_FATAL_ERROR = 2;
+
public function getInfoName() {
return 'php -l';
}
@@ -14,8 +17,7 @@
}
public function getInfoDescription() {
- return pht(
- 'Checks for syntax errors in php files.');
+ return pht('Checks for syntax errors in PHP files.');
}
public function getLinterName() {
@@ -26,6 +28,13 @@
return 'php';
}
+ public function getLintNameMap() {
+ return array(
+ self::LINT_PARSE_ERROR => pht('Parse Error'),
+ self::LINT_FATAL_ERROR => pht('Fatal Error'),
+ );
+ }
+
protected function getMandatoryFlags() {
return array('-l');
}
@@ -54,28 +63,47 @@
return false;
}
+ protected function canCustomizeLintSeverities() {
+ return false;
+ }
+
protected function parseLinterOutput($path, $err, $stdout, $stderr) {
- // Older versions of php had both on $stdout, newer ones split it
- // Combine $stdout and $stderr for consistency
+ // Older versions of PHP had both on stdout, newer ones split it.
+ // Combine stdout and stderr for consistency.
$stdout = $stderr."\n".$stdout;
$matches = array();
- $regex = '/^(?<type>.+?) error:\s+(?<error>.*?)\s+in\s+(?<file>.*?)'.
- '\s+on line\s+(?<line>\d*)$/m';
+
+ $regex = '/^(PHP )?(?<type>.+) error: +(?<error>.+) in (?<file>.+) '.
+ 'on line (?<line>\d+)$/m';
if (preg_match($regex, $stdout, $matches)) {
- $type = strtolower($matches['type']);
- $message = new ArcanistLintMessage();
- $message->setPath($matches['file']);
- $message->setLine($matches['line']);
- $message->setCode('php.'.$type);
- $message->setDescription('This file contains a '.$type.' error: '.
- $matches['error'].' on line '.$matches['line']);
- $message->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR);
-
- // php -l only returns the first error
+ $code = $this->getLintCodeFromLinterConfigurationKey($matches['type']);
+
+ $message = id(new ArcanistLintMessage())
+ ->setPath($path)
+ ->setLine($matches['line'])
+ ->setCode($this->getLinterName().$code)
+ ->setName($this->getLintMessageName($code))
+ ->setSeverity(ArcanistLintSeverity::SEVERITY_ERROR)
+ ->setDescription($matches['error']);
+
+ // `php -l` only returns the first error.
return array($message);
}
return array();
}
+ protected function getLintCodeFromLinterConfigurationKey($code) {
+ switch (strtolower($code)) {
+ case 'parse':
+ return self::LINT_PARSE_ERROR;
+
+ case 'fatal':
+ return self::LINT_FATAL_ERROR;
+
+ default:
+ throw new Exception(pht('Unrecognized lint message code "%s"', $code));
+ }
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 8:40 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7719012
Default Alt Text
D11265.id27094.diff (2 KB)
Attached To
Mode
D11265: Minor improvements to `ArcanistPhpLinter`
Attached
Detach File
Event Timeline
Log In to Comment