2011-01-24 22:18:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DifferentialDiffTableOfContentsView extends AphrontView {
|
|
|
|
|
|
|
|
private $changesets = array();
|
2012-03-15 18:45:35 +01:00
|
|
|
private $visibleChangesets = array();
|
2012-05-01 21:09:50 +02:00
|
|
|
private $references = array();
|
2012-03-01 08:16:45 +01:00
|
|
|
private $repository;
|
|
|
|
private $diff;
|
2011-04-15 23:25:23 +02:00
|
|
|
private $renderURI = '/differential/changeset/';
|
|
|
|
private $revisionID;
|
2011-04-28 06:16:35 +02:00
|
|
|
private $whitespace;
|
2012-03-13 01:06:55 +01:00
|
|
|
private $unitTestData;
|
2011-01-24 22:18:41 +01:00
|
|
|
|
|
|
|
public function setChangesets($changesets) {
|
|
|
|
$this->changesets = $changesets;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-15 18:45:35 +01:00
|
|
|
public function setVisibleChangesets($visible_changesets) {
|
|
|
|
$this->visibleChangesets = $visible_changesets;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-05-01 21:09:50 +02:00
|
|
|
public function setRenderingReferences(array $references) {
|
|
|
|
$this->references = $references;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-01 08:16:45 +01:00
|
|
|
public function setRepository(PhabricatorRepository $repository) {
|
|
|
|
$this->repository = $repository;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setDiff(DifferentialDiff $diff) {
|
|
|
|
$this->diff = $diff;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-13 01:06:55 +01:00
|
|
|
public function setUnitTestData($unit_test_data) {
|
|
|
|
$this->unitTestData = $unit_test_data;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-04-15 23:25:23 +02:00
|
|
|
public function setRevisionID($revision_id) {
|
|
|
|
$this->revisionID = $revision_id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-04-28 06:16:35 +02:00
|
|
|
public function setWhitespace($whitespace) {
|
|
|
|
$this->whitespace = $whitespace;
|
|
|
|
return $this;
|
|
|
|
}
|
2011-04-15 23:25:23 +02:00
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
public function render() {
|
2011-01-27 23:55:52 +01:00
|
|
|
|
|
|
|
require_celerity_resource('differential-core-view-css');
|
2011-01-25 20:57:47 +01:00
|
|
|
require_celerity_resource('differential-table-of-contents-css');
|
2011-01-24 22:18:41 +01:00
|
|
|
|
|
|
|
$rows = array();
|
|
|
|
|
2012-03-13 01:06:55 +01:00
|
|
|
$coverage = array();
|
|
|
|
if ($this->unitTestData) {
|
|
|
|
$coverage_by_file = array();
|
|
|
|
foreach ($this->unitTestData as $result) {
|
|
|
|
$test_coverage = idx($result, 'coverage');
|
|
|
|
if (!$test_coverage) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
foreach ($test_coverage as $file => $results) {
|
|
|
|
$coverage_by_file[$file][] = $results;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($coverage_by_file as $file => $coverages) {
|
|
|
|
$coverage[$file] = ArcanistUnitTestResult::mergeCoverage($coverages);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
$changesets = $this->changesets;
|
2012-03-01 08:16:45 +01:00
|
|
|
$paths = array();
|
2012-03-15 18:45:35 +01:00
|
|
|
foreach ($changesets as $id => $changeset) {
|
2011-01-24 22:18:41 +01:00
|
|
|
$type = $changeset->getChangeType();
|
|
|
|
$ftype = $changeset->getFileType();
|
2012-05-01 21:09:50 +02:00
|
|
|
$ref = idx($this->references, $id);
|
|
|
|
$link = $this->renderChangesetLink($changeset, $ref);
|
2012-01-16 07:43:54 +01:00
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
if (DifferentialChangeType::isOldLocationChangeType($type)) {
|
|
|
|
$away = $changeset->getAwayPaths();
|
|
|
|
if (count($away) > 1) {
|
|
|
|
$meta = array();
|
|
|
|
if ($type == DifferentialChangeType::TYPE_MULTICOPY) {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta[] = pht('Deleted after being copied to multiple locations:');
|
2011-01-24 22:18:41 +01:00
|
|
|
} else {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta[] = pht('Copied to multiple locations:');
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
foreach ($away as $path) {
|
2012-01-16 07:25:53 +01:00
|
|
|
$meta[] = phutil_escape_html($path);
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
$meta = implode('<br />', $meta);
|
|
|
|
} else {
|
|
|
|
if ($type == DifferentialChangeType::TYPE_MOVE_AWAY) {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta = pht('Moved to %s', phutil_escape_html(reset($away)));
|
2011-01-24 22:18:41 +01:00
|
|
|
} else {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta = pht('Copied to %s', phutil_escape_html(reset($away)));
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
}
|
2012-01-16 07:43:54 +01:00
|
|
|
} else if ($type == DifferentialChangeType::TYPE_MOVE_HERE) {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta = pht('Moved from %s',
|
|
|
|
phutil_escape_html($changeset->getOldFile()));
|
2012-01-16 07:43:54 +01:00
|
|
|
} else if ($type == DifferentialChangeType::TYPE_COPY_HERE) {
|
2013-01-24 22:18:44 +01:00
|
|
|
$meta = pht('Copied from %s',
|
|
|
|
phutil_escape_html($changeset->getOldFile()));
|
2011-01-24 22:18:41 +01:00
|
|
|
} else {
|
2012-01-16 07:43:54 +01:00
|
|
|
$meta = null;
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$line_count = $changeset->getAffectedLineCount();
|
|
|
|
if ($line_count == 0) {
|
|
|
|
$lines = null;
|
|
|
|
} else {
|
2012-06-14 22:43:09 +02:00
|
|
|
$lines = ' '.pht('(%d line(s))', $line_count);
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$char = DifferentialChangeType::getSummaryCharacterForChangeType($type);
|
|
|
|
$chartitle = DifferentialChangeType::getFullNameForChangeType($type);
|
|
|
|
$desc = DifferentialChangeType::getShortNameForFileType($ftype);
|
|
|
|
if ($desc) {
|
|
|
|
$desc = '('.$desc.')';
|
|
|
|
}
|
|
|
|
$pchar =
|
|
|
|
($changeset->getOldProperties() === $changeset->getNewProperties())
|
|
|
|
? null
|
2013-01-24 22:18:44 +01:00
|
|
|
: '<span title="'.pht('Properties Changed').'">M</span>';
|
2011-01-24 22:18:41 +01:00
|
|
|
|
2012-03-13 01:06:55 +01:00
|
|
|
$fname = $changeset->getFilename();
|
|
|
|
$cov = $this->renderCoverage($coverage, $fname);
|
|
|
|
if ($cov === null) {
|
|
|
|
$mcov = $cov = '<em>-</em>';
|
|
|
|
} else {
|
|
|
|
$mcov = phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'id' => 'differential-mcoverage-'.md5($fname),
|
|
|
|
'class' => 'differential-mcoverage-loading',
|
|
|
|
),
|
2012-03-15 18:45:35 +01:00
|
|
|
(isset($this->visibleChangesets[$id]) ? 'Loading...' : '?'));
|
2012-03-13 01:06:55 +01:00
|
|
|
}
|
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
$rows[] =
|
|
|
|
'<tr>'.
|
2012-04-06 10:32:05 +02:00
|
|
|
phutil_render_tag(
|
|
|
|
'td',
|
|
|
|
array(
|
|
|
|
'class' => 'differential-toc-char',
|
|
|
|
'title' => $chartitle,
|
|
|
|
),
|
|
|
|
$char).
|
2011-01-24 22:18:41 +01:00
|
|
|
'<td class="differential-toc-prop">'.$pchar.'</td>'.
|
|
|
|
'<td class="differential-toc-ftype">'.$desc.'</td>'.
|
|
|
|
'<td class="differential-toc-file">'.$link.$lines.'</td>'.
|
2012-03-13 01:06:55 +01:00
|
|
|
'<td class="differential-toc-cov">'.$cov.'</td>'.
|
|
|
|
'<td class="differential-toc-mcov">'.$mcov.'</td>'.
|
2011-01-24 22:18:41 +01:00
|
|
|
'</tr>';
|
|
|
|
if ($meta) {
|
|
|
|
$rows[] =
|
|
|
|
'<tr>'.
|
2011-01-26 00:19:06 +01:00
|
|
|
'<td colspan="3"></td>'.
|
2011-01-24 22:18:41 +01:00
|
|
|
'<td class="differential-toc-meta">'.$meta.'</td>'.
|
|
|
|
'</tr>';
|
|
|
|
}
|
2012-03-01 08:16:45 +01:00
|
|
|
if ($this->diff && $this->repository) {
|
|
|
|
$paths[] =
|
2012-04-10 08:42:12 +02:00
|
|
|
$changeset->getAbsoluteRepositoryPath($this->repository, $this->diff);
|
2012-03-01 08:16:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$editor_link = null;
|
|
|
|
if ($paths && $this->user) {
|
|
|
|
$editor_link = $this->user->loadEditorLink(
|
2012-12-04 00:51:18 +01:00
|
|
|
$paths,
|
2012-03-01 08:16:45 +01:00
|
|
|
1, // line number
|
2012-04-05 02:53:16 +02:00
|
|
|
$this->repository->getCallsign());
|
2012-03-01 08:16:45 +01:00
|
|
|
if ($editor_link) {
|
2012-12-13 06:00:35 +01:00
|
|
|
$editor_link =
|
|
|
|
phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $editor_link,
|
|
|
|
'class' => 'button differential-toc-edit-all',
|
|
|
|
),
|
2013-01-24 22:18:44 +01:00
|
|
|
pht('Open All in Editor'));
|
2012-03-01 08:16:45 +01:00
|
|
|
}
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|
|
|
|
|
2012-12-13 06:00:35 +01:00
|
|
|
$reveal_link =
|
|
|
|
javelin_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'sigil' => 'differential-reveal-all',
|
|
|
|
'mustcapture' => true,
|
|
|
|
'class' => 'button differential-toc-reveal-all',
|
|
|
|
),
|
2013-01-24 22:18:44 +01:00
|
|
|
pht('Show All Context')
|
2012-12-13 06:00:35 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$buttons =
|
|
|
|
'<tr><td colspan="7">'.
|
|
|
|
$editor_link.$reveal_link.
|
|
|
|
'</td></tr>';
|
2012-05-30 03:20:11 +02:00
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
return
|
2012-08-22 00:01:20 +02:00
|
|
|
id(new PhabricatorAnchorView())
|
|
|
|
->setAnchorName('toc')
|
|
|
|
->setNavigationMarker(true)
|
|
|
|
->render().
|
2012-12-13 06:00:35 +01:00
|
|
|
id(new PhabricatorHeaderView())
|
|
|
|
->setHeader(pht('Table of Contents'))
|
|
|
|
->render().
|
2012-08-22 00:01:20 +02:00
|
|
|
'<div class="differential-toc differential-panel">'.
|
2011-01-24 22:18:41 +01:00
|
|
|
'<table>'.
|
2012-03-13 01:06:55 +01:00
|
|
|
'<tr>'.
|
|
|
|
'<th></th>'.
|
|
|
|
'<th></th>'.
|
|
|
|
'<th></th>'.
|
|
|
|
'<th>Path</th>'.
|
2013-01-24 22:18:44 +01:00
|
|
|
'<th class="differential-toc-cov">'.
|
|
|
|
pht('Coverage (All)').
|
|
|
|
'</th>'.
|
|
|
|
'<th class="differential-toc-mcov">'.
|
|
|
|
pht('Coverage (Touched)').
|
|
|
|
'</th>'.
|
2012-03-13 01:06:55 +01:00
|
|
|
'</tr>'.
|
2011-01-24 22:18:41 +01:00
|
|
|
implode("\n", $rows).
|
2012-12-13 06:00:35 +01:00
|
|
|
$buttons.
|
2011-01-24 22:18:41 +01:00
|
|
|
'</table>'.
|
|
|
|
'</div>';
|
|
|
|
}
|
2012-01-24 09:37:50 +01:00
|
|
|
|
2012-03-13 01:06:55 +01:00
|
|
|
private function renderCoverage(array $coverage, $file) {
|
|
|
|
$info = idx($coverage, $file);
|
|
|
|
if (!$info) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$not_covered = substr_count($info, 'U');
|
|
|
|
$covered = substr_count($info, 'C');
|
|
|
|
|
|
|
|
if (!$not_covered && !$covered) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sprintf('%d%%', 100 * ($covered / ($covered + $not_covered)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-01 21:09:50 +02:00
|
|
|
private function renderChangesetLink(DifferentialChangeset $changeset, $ref) {
|
2012-01-24 09:37:50 +01:00
|
|
|
$display_file = $changeset->getDisplayFilename();
|
|
|
|
|
2012-05-01 21:09:50 +02:00
|
|
|
return javelin_render_tag(
|
2012-01-24 09:37:50 +01:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => '#'.$changeset->getAnchorName(),
|
2012-05-01 21:09:50 +02:00
|
|
|
'meta' => array(
|
|
|
|
'id' => 'diff-'.$changeset->getAnchorName(),
|
|
|
|
'ref' => $ref,
|
|
|
|
),
|
|
|
|
'sigil' => 'differential-load',
|
2012-01-24 09:37:50 +01:00
|
|
|
),
|
|
|
|
phutil_escape_html($display_file));
|
|
|
|
}
|
2012-03-30 19:13:08 +02:00
|
|
|
|
2011-01-24 22:18:41 +01:00
|
|
|
}
|