Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15445144
D9317.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D9317.id.diff
View Options
diff --git a/src/lint/linter/ArcanistBaseXHPASTLinter.php b/src/lint/linter/ArcanistBaseXHPASTLinter.php
--- a/src/lint/linter/ArcanistBaseXHPASTLinter.php
+++ b/src/lint/linter/ArcanistBaseXHPASTLinter.php
@@ -9,6 +9,19 @@
private $trees = array();
private $exceptions = array();
+ final public function getCacheVersion() {
+ $parts = array();
+
+ $parts[] = $this->getVersion();
+
+ $path = xhpast_get_binary_path();
+ if (Filesystem::pathExists($path)) {
+ $parts[] = md5_file($path);
+ }
+
+ return implode('-', $parts);
+ }
+
final protected function raiseLintAtToken(
XHPASTToken $token,
$code,
diff --git a/src/lint/linter/ArcanistPhutilXHPASTLinter.php b/src/lint/linter/ArcanistPhutilXHPASTLinter.php
--- a/src/lint/linter/ArcanistPhutilXHPASTLinter.php
+++ b/src/lint/linter/ArcanistPhutilXHPASTLinter.php
@@ -60,13 +60,9 @@
return 'phutil-xhpast';
}
- public function getCacheVersion() {
- $version = '2';
- $path = xhpast_get_binary_path();
- if (Filesystem::pathExists($path)) {
- $version .= '-'.md5_file($path);
- }
- return $version;
+ public function getVersion() {
+ // The version number should be incremented whenever a new rule is added.
+ return '2';
}
public function getLinterConfigurationOptions() {
diff --git a/src/lint/linter/ArcanistXHPASTLinter.php b/src/lint/linter/ArcanistXHPASTLinter.php
--- a/src/lint/linter/ArcanistXHPASTLinter.php
+++ b/src/lint/linter/ArcanistXHPASTLinter.php
@@ -186,13 +186,9 @@
return parent::setLinterConfigurationValue($key, $value);
}
- public function getCacheVersion() {
- $version = '5';
- $path = xhpast_get_binary_path();
- if (Filesystem::pathExists($path)) {
- $version .= '-'.md5_file($path);
- }
- return $version;
+ public function getVersion() {
+ // The version number should be incremented whenever a new rule is added.
+ return '5';
}
protected function resolveFuture($path, Future $future) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 12:34 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7711422
Default Alt Text
D9317.id.diff (1 KB)
Attached To
Mode
D9317: Add a version number to `ArcanistXHPASTLinter`.
Attached
Detach File
Event Timeline
Log In to Comment