mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 16:38:24 +02:00
Summary: Ref T2683. This field is //almost// entirely redundant with `symbolicCommit`. Improve how some of the diff query stuff works a bit, then remove it. Test Plan: Browsed around in all interfaces, looked at a bunch of diffs, etc. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T2683 Differential Revision: https://secure.phabricator.com/D9099
40 lines
1 KiB
PHP
40 lines
1 KiB
PHP
<?php
|
|
|
|
final class DiffusionMercurialRawDiffQuery extends DiffusionRawDiffQuery {
|
|
|
|
protected function executeQuery() {
|
|
return $this->executeRawDiffCommand();
|
|
}
|
|
|
|
protected function executeRawDiffCommand() {
|
|
$drequest = $this->getRequest();
|
|
$repository = $drequest->getRepository();
|
|
|
|
$commit = $this->getAnchorCommit();
|
|
|
|
// If there's no path, get the entire raw diff.
|
|
$path = nonempty($drequest->getPath(), '.');
|
|
|
|
$against = $this->getAgainstCommit();
|
|
if ($against === null) {
|
|
// If `$commit` has no parents (usually because it's the first commit
|
|
// in the repository), we want to diff against `null`. This revset will
|
|
// do that for us automatically.
|
|
$against = '('.$commit.'^ or null)';
|
|
}
|
|
|
|
$future = $repository->getLocalCommandFuture(
|
|
'diff -U %d --git --rev %s --rev %s -- %s',
|
|
$this->getLinesOfContext(),
|
|
$against,
|
|
$commit,
|
|
$path);
|
|
|
|
$this->configureFuture($future);
|
|
|
|
list($raw_diff) = $future->resolvex();
|
|
|
|
return $raw_diff;
|
|
}
|
|
|
|
}
|