fix: git diff blob excerpt (#38808)

1. refactor the legacy code and add more comments, remove the "+1/-1"
tricks, clarify the BuildBlobExcerptDiffSection behavior
2. fix a line-counting bug (see screenshot below)
This commit is contained in:
wxiaoguang
2026-08-07 10:44:55 +08:00
committed by GitHub
parent 9dac77fdc2
commit a7df0d5f41
5 changed files with 98 additions and 56 deletions
+25 -21
View File
@@ -83,37 +83,41 @@ type DiffLine struct {
cachedDiffInline *DiffInline
}
// DiffLineSectionInfo represents diff line section meta data
// DiffLineSectionInfo represents diff line section metadata
type DiffLineSectionInfo struct {
language *diffVarMutable[string]
Path string
// These line "idx" are 1-based line numbers
// These line "idx" are 1-based line numbers (inclusive)
// Left/Right refer to the left/right side of the diff:
//
// LastLeftIdx | LastRightIdx
// [up/down expander] @@ hunk info @@
// LeftIdx | RightIdx
LastLeftIdx int
LastRightIdx int
LeftIdx int
RightIdx int
// Hunk sizes of the hidden lines
LeftHunkSize int
RightHunkSize int
// LastLeftIdx | LastRightIdx (the last rendered line number before this hunk)
// [up/down/single expander] @@ hunk info @@
// LeftIdx | RightIdx (the next rendered line number after this hunk)
// The hunk has LeftHunkSize lines on left side, RightHunkSize lines on right side.
//
// For example:
// 17 | 31
// [up/down] @@ -40,23 +54,9 @@ ....
// 40 | 54
// 17 | 31 diff line ...
// [up/down] @@ -40,23 +54,7 @@ ....
// 40 | 54 diff line ...
// ... diff line ...
// 62 | 60 diff line ...
// (then file end or another hunk)
//
// In this case:
// LastLeftIdx = 17, LastRightIdx = 31
// LeftHunkSize = 23, RightHunkSize = 9
// LeftIdx = 40, RightIdx = 54
// LastLeftIdx = 17, LastRightIdx = 31
// (left lines 18-39, right lines 31-53 are hidden)
// LeftIdx = 40, RightIdx = 54
// LeftHunkSize = 23, RightHunkSize = 7
// Left hunk ends at line 40+23-1=62 (23 lines), right: 54+7-1=60 (7 lines)
LastLeftIdx int
LastRightIdx int
LeftIdx int
RightIdx int
LeftHunkSize int
RightHunkSize int
HiddenCommentIDs []int64 // IDs of hidden comments in this section
}
+37 -29
View File
@@ -16,6 +16,7 @@ import (
)
type BlobExcerptOptions struct {
// More details in DiffLineSectionInfo struct
LastLeft int
LastRight int
LeftIndex int
@@ -26,11 +27,11 @@ type BlobExcerptOptions struct {
Language string
}
func fillExcerptLines(section *DiffSection, filePath string, reader io.Reader, lang string, idxLeft, idxRight, chunkSize int) error {
func (diffSection *DiffSection) fillExcerptLines(reader io.Reader, leftStart, rightStart, chunkSize int) error {
buf := &bytes.Buffer{}
scanner := bufio.NewScanner(reader)
var diffLines []*DiffLine
for line := 0; line < idxRight+chunkSize; line++ {
for rightLineIdx := 1; rightLineIdx < rightStart+chunkSize; rightLineIdx++ {
if ok := scanner.Scan(); !ok {
break
}
@@ -39,12 +40,12 @@ func fillExcerptLines(section *DiffSection, filePath string, reader io.Reader, l
buf.WriteString(lineText)
buf.WriteByte('\n')
}
if line < idxRight {
if rightLineIdx < rightStart {
continue
}
diffLine := &DiffLine{
LeftIdx: idxLeft + (line - idxRight) + 1,
RightIdx: line + 1,
LeftIdx: leftStart + (rightLineIdx - rightStart),
RightIdx: rightLineIdx,
Type: DiffLinePlain,
Content: " " + lineText,
}
@@ -53,46 +54,53 @@ func fillExcerptLines(section *DiffSection, filePath string, reader io.Reader, l
if err := scanner.Err(); err != nil {
return fmt.Errorf("fillExcerptLines scan: %w", err)
}
section.Lines = diffLines
diffSection.Lines = diffLines
// DiffLinePlain always uses right lines
section.highlightedRightLines.value = highlightCodeLines(filePath, lang, []*DiffSection{section}, false /* right */, buf.Bytes())
diffSection.highlightedRightLines.value = highlightCodeLines(diffSection.FileName, diffSection.language.value, []*DiffSection{diffSection}, false /* right */, buf.Bytes())
return nil
}
func BuildBlobExcerptDiffSection(filePath string, reader io.Reader, opts BlobExcerptOptions) (*DiffSection, error) {
lastLeft, lastRight, idxLeft, idxRight := opts.LastLeft, opts.LastRight, opts.LeftIndex, opts.RightIndex
leftHunkSize, rightHunkSize, direction := opts.LeftHunkSize, opts.RightHunkSize, opts.Direction
language := opts.Language
chunkSize := BlobExcerptChunkSize
expandLimit := BlobExcerptChunkSize
section := &DiffSection{
language: &diffVarMutable[string]{value: language},
language: &diffVarMutable[string]{value: opts.Language},
highlightLexer: &diffVarMutable[chroma.Lexer]{},
highlightedLeftLines: &diffVarMutable[map[int]template.HTML]{},
highlightedRightLines: &diffVarMutable[map[int]template.HTML]{},
FileName: filePath,
}
var err error
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
idxLeft -= chunkSize
idxRight -= chunkSize
leftHunkSize += chunkSize
rightHunkSize += chunkSize
err = fillExcerptLines(section, filePath, reader, language, idxLeft-1, idxRight-1, chunkSize)
} else if direction == "down" && (idxLeft-lastLeft) > chunkSize {
err = fillExcerptLines(section, filePath, reader, language, lastLeft, lastRight, chunkSize)
lastLeft += chunkSize
lastRight += chunkSize
} else {
offset := -1
if direction == "down" {
offset = 0
remainingLines := idxRight - lastRight
if direction == "up" && remainingLines > expandLimit {
idxLeft -= expandLimit
idxRight -= expandLimit
leftHunkSize += expandLimit
rightHunkSize += expandLimit
err = section.fillExcerptLines(reader, idxLeft, idxRight, expandLimit)
} else if direction == "down" && remainingLines > expandLimit {
err = section.fillExcerptLines(reader, lastLeft+1, lastRight+1, expandLimit)
lastLeft += expandLimit
lastRight += expandLimit
} else /* "single" or [ ("up" or "down") and (remainingLines <= expandLimit) ] */ {
if direction == "up" || direction == "single" {
// if the direction is "up" or "single":
// * top: last=0, idx=11, chunk=11: line 11 is already rendered, line 0 can be considered as a "virtually rendered line"
// * then need to expand line 10 lines (1-10), so "-1".
// * middle: last=100, idx=106, chunk=6: line 100 and 106 are both already rendered
// * then need to expand 5 lines (101-105), so "-1".
expandLimit = remainingLines - 1
} else {
// if the direction is "down": either the hidden lines are too many in the middle (otherwise "single"), or are at the bottom
// * "last" line is already rendered, so just render the remaining lines from the next line
expandLimit = remainingLines
}
err = fillExcerptLines(section, filePath, reader, language, lastLeft, lastRight, idxRight-lastRight+offset)
leftHunkSize = 0
rightHunkSize = 0
idxLeft = lastLeft
idxRight = lastRight
err = section.fillExcerptLines(reader, lastLeft+1, lastRight+1, expandLimit)
// now, the hidden lines are fewer than "expand limit", after expand, no hidden lines anymore,
// no need to show new "expand buttons" (setting them to 0 will make GetExpandDirection returns "no direction")
leftHunkSize, rightHunkSize, idxLeft, idxRight = 0, 0, 0, 0
}
if err != nil {
return nil, err
+2 -2
View File
@@ -98,8 +98,8 @@ func TestGetDiffForRender(t *testing.T) {
ExpandDirection: "down",
LastLeftIdx: 76,
LastRightIdx: 73,
LeftIdx: 104,
RightIdx: 101,
LeftIdx: 103, // left has 103 lines
RightIdx: 100, // right has 100 lines
},
}
for idx, exp := range expectedSections {