1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 06:42:41 +01:00

Expand ArcanistDiffParser to accept awkward Diffusion + SVN workflows.

This commit is contained in:
epriestley 2011-03-30 19:33:50 -07:00
parent 11e25f5840
commit 4bce8732e5

View file

@ -30,6 +30,7 @@ class ArcanistDiffParser {
protected $detectBinaryFiles = false;
protected $changes = array();
private $forcePath;
protected function setRepositoryAPI(ArcanistRepositoryAPI $api) {
$this->api = $api;
@ -45,6 +46,16 @@ class ArcanistDiffParser {
return $this;
}
public function forcePath($path) {
$this->forcePath = $path;
return $this;
}
public function setChanges(array $changes) {
$this->changes = mpull($changes, null, 'getCurrentPath');
return $this;
}
public function parseSubversionDiff(ArcanistSubversionAPI $api, $paths) {
$this->setRepositoryAPI($api);
@ -732,6 +743,10 @@ class ArcanistDiffParser {
}
}
if ($this->forcePath) {
return $this->changes[$this->forcePath];
}
$change = new ArcanistDiffChange();
if ($path !== null) {
$change->setCurrentPath($path);