mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Revert "Revert "Make DifferentialChangesetParser explicitly map display to storage for comments""
This reverts commit 1c2222f26f
.
This commit is contained in:
parent
162f34b8c8
commit
3ee7b5380e
2 changed files with 137 additions and 26 deletions
|
@ -154,8 +154,12 @@ class DifferentialChangesetViewController extends DifferentialController {
|
||||||
$parser->setLeftSideCommentMapping($left_source, $left_new);
|
$parser->setLeftSideCommentMapping($left_source, $left_new);
|
||||||
$parser->setWhitespaceMode($request->getStr('whitespace'));
|
$parser->setWhitespaceMode($request->getStr('whitespace'));
|
||||||
|
|
||||||
|
// Load both left-side and right-side inline comments.
|
||||||
|
$inlines = $this->loadInlineComments(
|
||||||
|
array($left_source, $right_source),
|
||||||
|
$author_phid);
|
||||||
|
|
||||||
$phids = array();
|
$phids = array();
|
||||||
$inlines = $this->loadInlineComments($id, $author_phid);
|
|
||||||
foreach ($inlines as $inline) {
|
foreach ($inlines as $inline) {
|
||||||
$parser->parseInlineComment($inline);
|
$parser->parseInlineComment($inline);
|
||||||
$phids[$inline->getAuthorPHID()] = true;
|
$phids[$inline->getAuthorPHID()] = true;
|
||||||
|
@ -228,10 +232,15 @@ class DifferentialChangesetViewController extends DifferentialController {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
private function loadInlineComments($changeset_id, $author_phid) {
|
private function loadInlineComments(array $changeset_ids, $author_phid) {
|
||||||
|
$changeset_ids = array_unique(array_filter($changeset_ids));
|
||||||
|
if (!$changeset_ids) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
return id(new DifferentialInlineComment())->loadAllWhere(
|
return id(new DifferentialInlineComment())->loadAllWhere(
|
||||||
'changesetID = %d AND (commentID IS NOT NULL OR authorPHID = %s)',
|
'changesetID IN (%Ld) AND (commentID IS NOT NULL OR authorPHID = %s)',
|
||||||
$changeset_id,
|
$changeset_ids,
|
||||||
$author_phid);
|
$author_phid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ class DifferentialChangesetParser {
|
||||||
protected $whitespaceMode = null;
|
protected $whitespaceMode = null;
|
||||||
|
|
||||||
protected $subparser;
|
protected $subparser;
|
||||||
protected $oldChangesetID = null;
|
|
||||||
protected $noHighlight;
|
protected $noHighlight;
|
||||||
|
|
||||||
protected $renderCacheKey = null;
|
protected $renderCacheKey = null;
|
||||||
|
@ -47,6 +46,12 @@ class DifferentialChangesetParser {
|
||||||
private $handles;
|
private $handles;
|
||||||
private $user;
|
private $user;
|
||||||
|
|
||||||
|
private $leftSideChangesetID;
|
||||||
|
private $leftSideAttachesToNewFile;
|
||||||
|
|
||||||
|
private $rightSideChangesetID;
|
||||||
|
private $rightSideAttachesToNewFile;
|
||||||
|
|
||||||
const CACHE_VERSION = 4;
|
const CACHE_VERSION = 4;
|
||||||
|
|
||||||
const ATTR_GENERATED = 'attr:generated';
|
const ATTR_GENERATED = 'attr:generated';
|
||||||
|
@ -60,12 +65,38 @@ class DifferentialChangesetParser {
|
||||||
const WHITESPACE_IGNORE_TRAILING = 'ignore-trailing';
|
const WHITESPACE_IGNORE_TRAILING = 'ignore-trailing';
|
||||||
const WHITESPACE_IGNORE_ALL = 'ignore-all';
|
const WHITESPACE_IGNORE_ALL = 'ignore-all';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configure which Changeset comments added to the right side of the visible
|
||||||
|
* diff will be attached to. The ID must be the ID of a real Differential
|
||||||
|
* Changeset.
|
||||||
|
*
|
||||||
|
* The complexity here is that we may show an arbitrary side of an arbitrary
|
||||||
|
* changeset as either the left or right part of a diff. This method allows
|
||||||
|
* the left and right halves of the displayed diff to be correctly mapped to
|
||||||
|
* storage changesets.
|
||||||
|
*
|
||||||
|
* @param id The Differential Changeset ID that comments added to the right
|
||||||
|
* side of the visible diff should be attached to.
|
||||||
|
* @param bool If true, attach new comments to the right side of the storage
|
||||||
|
* changeset. Note that this may be false, if the left side of
|
||||||
|
* some storage changeset is being shown as the right side of
|
||||||
|
* a display diff.
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
public function setRightSideCommentMapping($id, $is_new) {
|
public function setRightSideCommentMapping($id, $is_new) {
|
||||||
|
$this->rightSideChangesetID = $id;
|
||||||
|
$this->rightSideAttachesToNewFile = $is_new;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* See setRightSideCommentMapping(), but this sets information for the left
|
||||||
|
* side of the display diff.
|
||||||
|
*/
|
||||||
public function setLeftSideCommentMapping($id, $is_new) {
|
public function setLeftSideCommentMapping($id, $is_new) {
|
||||||
|
$this->leftSideChangesetID = $id;
|
||||||
|
$this->leftSideAttachesToNewFile = $is_new;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -104,11 +135,6 @@ class DifferentialChangesetParser {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setOldChangesetID($old_changeset_id) {
|
|
||||||
$this->oldChangesetID = $old_changeset_id;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setChangesetID($changeset_id) {
|
public function setChangesetID($changeset_id) {
|
||||||
$this->changesetID = $changeset_id;
|
$this->changesetID = $changeset_id;
|
||||||
return $this;
|
return $this;
|
||||||
|
@ -236,7 +262,10 @@ class DifferentialChangesetParser {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function parseInlineComment(DifferentialInlineComment $comment) {
|
public function parseInlineComment(DifferentialInlineComment $comment) {
|
||||||
$this->comments[] = $comment;
|
// Parse only comments which are actually visible.
|
||||||
|
if ($this->isCommentVisibleOnRenderedDiff($comment)) {
|
||||||
|
$this->comments[] = $comment;
|
||||||
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -837,7 +866,7 @@ EOSYNTHETIC;
|
||||||
$end = $comment->getLineNumber() +
|
$end = $comment->getLineNumber() +
|
||||||
$comment->getLineLength() +
|
$comment->getLineLength() +
|
||||||
self::LINES_CONTEXT;
|
self::LINES_CONTEXT;
|
||||||
$new = $this->isCommentInNewFile($comment);
|
$new = $this->isCommentOnRightSideWhenDisplayed($comment);
|
||||||
for ($ii = $start; $ii <= $end; $ii++) {
|
for ($ii = $start; $ii <= $end; $ii++) {
|
||||||
if ($new) {
|
if ($new) {
|
||||||
$new_mask[$ii] = true;
|
$new_mask[$ii] = true;
|
||||||
|
@ -862,7 +891,7 @@ EOSYNTHETIC;
|
||||||
foreach ($this->comments as $comment) {
|
foreach ($this->comments as $comment) {
|
||||||
$final = $comment->getLineNumber() +
|
$final = $comment->getLineNumber() +
|
||||||
$comment->getLineLength();
|
$comment->getLineLength();
|
||||||
if ($this->isCommentInNewFile($comment)) {
|
if ($this->isCommentOnRightSideWhenDisplayed($comment)) {
|
||||||
$new_comments[$final][] = $comment;
|
$new_comments[$final][] = $comment;
|
||||||
} else {
|
} else {
|
||||||
$old_comments[$final][] = $comment;
|
$old_comments[$final][] = $comment;
|
||||||
|
@ -881,12 +910,58 @@ EOSYNTHETIC;
|
||||||
return $this->renderChangesetTable($this->changeset, $html);
|
return $this->renderChangesetTable($this->changeset, $html);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function isCommentInNewFile(DifferentialInlineComment $comment) {
|
/**
|
||||||
if ($this->oldChangesetID) {
|
* Determine if an inline comment will appear on the rendered diff,
|
||||||
return ($comment->getChangesetID() != $this->oldChangesetID);
|
* taking into consideration which halves of which changesets will actually
|
||||||
} else {
|
* be shown.
|
||||||
return $comment->getIsNewFile();
|
*
|
||||||
|
* @param DifferentialInlineComment Comment to test for visibility.
|
||||||
|
* @return bool True if the comment is visible on the rendered diff.
|
||||||
|
*/
|
||||||
|
private function isCommentVisibleOnRenderedDiff(
|
||||||
|
DifferentialInlineComment $comment) {
|
||||||
|
|
||||||
|
$changeset_id = $comment->getChangesetID();
|
||||||
|
$is_new = $comment->getIsNewFile();
|
||||||
|
|
||||||
|
if ($changeset_id == $this->rightSideChangesetID &&
|
||||||
|
$is_new == $this->rightSideAttachesToNewFile) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($changeset_id == $this->leftSideChangesetID &&
|
||||||
|
$is_new == $this->leftSideAttachesToNewFile) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if a comment will appear on the right side of the display diff.
|
||||||
|
* Note that the comment must appear somewhere on the rendered changeset, as
|
||||||
|
* per isCommentVisibleOnRenderedDiff().
|
||||||
|
*
|
||||||
|
* @param DifferentialInlineComment Comment to test for display location.
|
||||||
|
* @return bool True for right, false for left.
|
||||||
|
*/
|
||||||
|
private function isCommentOnRightSideWhenDisplayed(
|
||||||
|
DifferentialInlineComment $comment) {
|
||||||
|
|
||||||
|
if (!$this->isCommentVisibleOnRenderedDiff($comment)) {
|
||||||
|
throw new Exception("Comment is not visible on changeset!");
|
||||||
|
}
|
||||||
|
|
||||||
|
$changeset_id = $comment->getChangesetID();
|
||||||
|
$is_new = $comment->getIsNewFile();
|
||||||
|
|
||||||
|
if ($changeset_id == $this->rightSideChangesetID &&
|
||||||
|
$is_new == $this->rightSideAttachesToNewFile) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function renderShield($message, $more) {
|
protected function renderShield($message, $more) {
|
||||||
|
@ -961,6 +1036,15 @@ EOSYNTHETIC;
|
||||||
|
|
||||||
$range_len = min($range_len, $rows - $range_start);
|
$range_len = min($range_len, $rows - $range_start);
|
||||||
|
|
||||||
|
// Gaps - compute gaps in the visible display diff, where we will render
|
||||||
|
// "Show more context" spacers. This builds an aggregate $mask of all the
|
||||||
|
// lines we must show (because they are near changed lines, near inline
|
||||||
|
// comments, or the request has explicitly asked for them, i.e. resulting
|
||||||
|
// from the user clicking "show more") and then finds all the gaps between
|
||||||
|
// visible lines. If a gap is smaller than the context size, we just
|
||||||
|
// display it. Otherwise, we record it into $gaps and will render a
|
||||||
|
// "show more context" element instead of diff text below.
|
||||||
|
|
||||||
$gaps = array();
|
$gaps = array();
|
||||||
$gap_start = 0;
|
$gap_start = 0;
|
||||||
$in_gap = false;
|
$in_gap = false;
|
||||||
|
@ -989,11 +1073,29 @@ EOSYNTHETIC;
|
||||||
|
|
||||||
$gaps = array_reverse($gaps);
|
$gaps = array_reverse($gaps);
|
||||||
|
|
||||||
$changeset = $this->changesetID;
|
|
||||||
$reference = $this->getChangeset()->getRenderingReference();
|
$reference = $this->getChangeset()->getRenderingReference();
|
||||||
|
|
||||||
|
$left_id = $this->leftSideChangesetID;
|
||||||
|
$right_id = $this->rightSideChangesetID;
|
||||||
|
|
||||||
|
// "N" stands for 'new' and means the comment should attach to the new file
|
||||||
|
// when stored, i.e. DifferentialInlineComment->setIsNewFile().
|
||||||
|
// "O" stands for 'old' and means the comment should attach to the old file.
|
||||||
|
|
||||||
|
$left_char = $this->leftSideAttachesToNewFile
|
||||||
|
? 'N'
|
||||||
|
: 'O';
|
||||||
|
$right_char = $this->rightSideAttachesToNewFile
|
||||||
|
? 'N'
|
||||||
|
: 'O';
|
||||||
|
|
||||||
for ($ii = $range_start; $ii < $range_start + $range_len; $ii++) {
|
for ($ii = $range_start; $ii < $range_start + $range_len; $ii++) {
|
||||||
if (empty($mask[$ii])) {
|
if (empty($mask[$ii])) {
|
||||||
|
// If we aren't going to show this line, we've just entered a gap.
|
||||||
|
// Pop information about the next gap off the $gaps stack and render
|
||||||
|
// an appropriate "Show more context" element. This branch eventually
|
||||||
|
// increments $ii by the entire size of the gap and then continues
|
||||||
|
// the loop.
|
||||||
$gap = array_pop($gaps);
|
$gap = array_pop($gaps);
|
||||||
$top = $gap[0];
|
$top = $gap[0];
|
||||||
$len = $gap[1];
|
$len = $gap[1];
|
||||||
|
@ -1100,14 +1202,14 @@ EOSYNTHETIC;
|
||||||
$html[] = $context_not_available;
|
$html[] = $context_not_available;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($o_num && $changeset) {
|
if ($o_num && $left_id) {
|
||||||
$o_id = ' id="C'.$changeset.'OL'.$o_num.'"';
|
$o_id = ' id="C'.$left_id.$left_char.'L'.$o_num.'"';
|
||||||
} else {
|
} else {
|
||||||
$o_id = null;
|
$o_id = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($n_num && $changeset) {
|
if ($n_num && $right_id) {
|
||||||
$n_id = ' id="C'.$changeset.'NL'.$n_num.'"';
|
$n_id = ' id="C'.$right_id.$right_char.'L'.$n_num.'"';
|
||||||
} else {
|
} else {
|
||||||
$n_id = null;
|
$n_id = null;
|
||||||
}
|
}
|
||||||
|
@ -1156,7 +1258,7 @@ EOSYNTHETIC;
|
||||||
($comment->getAuthorPHID() == $user->getPHID()) &&
|
($comment->getAuthorPHID() == $user->getPHID()) &&
|
||||||
(!$comment->getCommentID());
|
(!$comment->getCommentID());
|
||||||
|
|
||||||
$on_right = $this->isCommentInNewFile($comment);
|
$on_right = $this->isCommentOnRightSideWhenDisplayed($comment);
|
||||||
|
|
||||||
return id(new DifferentialInlineCommentView())
|
return id(new DifferentialInlineCommentView())
|
||||||
->setInlineComment($comment)
|
->setInlineComment($comment)
|
||||||
|
|
Loading…
Reference in a new issue