File size: 22,563 Bytes
8ab4ccd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 |
package diffview
import (
"fmt"
"image/color"
"strconv"
"strings"
"github.com/alecthomas/chroma/v2"
"github.com/alecthomas/chroma/v2/lexers"
"github.com/aymanbagabas/go-udiff"
"github.com/charmbracelet/lipgloss/v2"
"github.com/charmbracelet/x/ansi"
"github.com/zeebo/xxh3"
)
const (
leadingSymbolsSize = 2
lineNumPadding = 1
)
type file struct {
path string
content string
}
type layout int
const (
layoutUnified layout = iota + 1
layoutSplit
)
// DiffView represents a view for displaying differences between two files.
type DiffView struct {
layout layout
before file
after file
contextLines int
lineNumbers bool
height int
width int
xOffset int
yOffset int
infiniteYScroll bool
style Style
tabWidth int
chromaStyle *chroma.Style
isComputed bool
err error
unified udiff.UnifiedDiff
edits []udiff.Edit
splitHunks []splitHunk
totalLines int
codeWidth int
fullCodeWidth int // with leading symbols
extraColOnAfter bool // add extra column on after panel
beforeNumDigits int
afterNumDigits int
// Cache lexer to avoid expensive file pattern matching on every line
cachedLexer chroma.Lexer
// Cache highlighted lines to avoid re-highlighting the same content
// Key: hash of (content + background color), Value: highlighted string
syntaxCache map[string]string
}
// New creates a new DiffView with default settings.
func New() *DiffView {
dv := &DiffView{
layout: layoutUnified,
contextLines: udiff.DefaultContextLines,
lineNumbers: true,
tabWidth: 8,
syntaxCache: make(map[string]string),
}
dv.style = DefaultDarkStyle()
return dv
}
// Unified sets the layout of the DiffView to unified.
func (dv *DiffView) Unified() *DiffView {
dv.layout = layoutUnified
return dv
}
// Split sets the layout of the DiffView to split (side-by-side).
func (dv *DiffView) Split() *DiffView {
dv.layout = layoutSplit
return dv
}
// Before sets the "before" file for the DiffView.
func (dv *DiffView) Before(path, content string) *DiffView {
dv.before = file{path: path, content: content}
// Clear caches when content changes
dv.clearCaches()
return dv
}
// After sets the "after" file for the DiffView.
func (dv *DiffView) After(path, content string) *DiffView {
dv.after = file{path: path, content: content}
// Clear caches when content changes
dv.clearCaches()
return dv
}
// clearCaches clears all caches when content or major settings change.
func (dv *DiffView) clearCaches() {
dv.cachedLexer = nil
dv.clearSyntaxCache()
dv.isComputed = false
}
// ContextLines sets the number of context lines for the DiffView.
func (dv *DiffView) ContextLines(contextLines int) *DiffView {
dv.contextLines = contextLines
return dv
}
// Style sets the style for the DiffView.
func (dv *DiffView) Style(style Style) *DiffView {
dv.style = style
return dv
}
// LineNumbers sets whether to display line numbers in the DiffView.
func (dv *DiffView) LineNumbers(lineNumbers bool) *DiffView {
dv.lineNumbers = lineNumbers
return dv
}
// Height sets the height of the DiffView.
func (dv *DiffView) Height(height int) *DiffView {
dv.height = height
return dv
}
// Width sets the width of the DiffView.
func (dv *DiffView) Width(width int) *DiffView {
dv.width = width
return dv
}
// XOffset sets the horizontal offset for the DiffView.
func (dv *DiffView) XOffset(xOffset int) *DiffView {
dv.xOffset = xOffset
return dv
}
// YOffset sets the vertical offset for the DiffView.
func (dv *DiffView) YOffset(yOffset int) *DiffView {
dv.yOffset = yOffset
return dv
}
// InfiniteYScroll allows the YOffset to scroll beyond the last line.
func (dv *DiffView) InfiniteYScroll(infiniteYScroll bool) *DiffView {
dv.infiniteYScroll = infiniteYScroll
return dv
}
// TabWidth sets the tab width. Only relevant for code that contains tabs, like
// Go code.
func (dv *DiffView) TabWidth(tabWidth int) *DiffView {
dv.tabWidth = tabWidth
return dv
}
// ChromaStyle sets the chroma style for syntax highlighting.
// If nil, no syntax highlighting will be applied.
func (dv *DiffView) ChromaStyle(style *chroma.Style) *DiffView {
dv.chromaStyle = style
// Clear syntax cache when style changes since highlighting will be different
dv.clearSyntaxCache()
return dv
}
// clearSyntaxCache clears the syntax highlighting cache.
func (dv *DiffView) clearSyntaxCache() {
if dv.syntaxCache != nil {
// Clear the map but keep it allocated
for k := range dv.syntaxCache {
delete(dv.syntaxCache, k)
}
}
}
// String returns the string representation of the DiffView.
func (dv *DiffView) String() string {
dv.normalizeLineEndings()
dv.replaceTabs()
if err := dv.computeDiff(); err != nil {
return err.Error()
}
dv.convertDiffToSplit()
dv.adjustStyles()
dv.detectNumDigits()
dv.detectTotalLines()
dv.preventInfiniteYScroll()
if dv.width <= 0 {
dv.detectCodeWidth()
} else {
dv.resizeCodeWidth()
}
style := lipgloss.NewStyle()
if dv.width > 0 {
style = style.MaxWidth(dv.width)
}
if dv.height > 0 {
style = style.MaxHeight(dv.height)
}
switch dv.layout {
case layoutUnified:
return style.Render(strings.TrimSuffix(dv.renderUnified(), "\n"))
case layoutSplit:
return style.Render(strings.TrimSuffix(dv.renderSplit(), "\n"))
default:
panic("unknown diffview layout")
}
}
// normalizeLineEndings ensures the file contents use Unix-style line endings.
func (dv *DiffView) normalizeLineEndings() {
dv.before.content = strings.ReplaceAll(dv.before.content, "\r\n", "\n")
dv.after.content = strings.ReplaceAll(dv.after.content, "\r\n", "\n")
}
// replaceTabs replaces tabs in the before and after file contents with spaces
// according to the specified tab width.
func (dv *DiffView) replaceTabs() {
spaces := strings.Repeat(" ", dv.tabWidth)
dv.before.content = strings.ReplaceAll(dv.before.content, "\t", spaces)
dv.after.content = strings.ReplaceAll(dv.after.content, "\t", spaces)
}
// computeDiff computes the differences between the "before" and "after" files.
func (dv *DiffView) computeDiff() error {
if dv.isComputed {
return dv.err
}
dv.isComputed = true
dv.edits = udiff.Strings(
dv.before.content,
dv.after.content,
)
dv.unified, dv.err = udiff.ToUnifiedDiff(
dv.before.path,
dv.after.path,
dv.before.content,
dv.edits,
dv.contextLines,
)
return dv.err
}
// convertDiffToSplit converts the unified diff to a split diff if the layout is
// set to split.
func (dv *DiffView) convertDiffToSplit() {
if dv.layout != layoutSplit {
return
}
dv.splitHunks = make([]splitHunk, len(dv.unified.Hunks))
for i, h := range dv.unified.Hunks {
dv.splitHunks[i] = hunkToSplit(h)
}
}
// adjustStyles adjusts adds padding and alignment to the styles.
func (dv *DiffView) adjustStyles() {
setPadding := func(s lipgloss.Style) lipgloss.Style {
return s.Padding(0, lineNumPadding).Align(lipgloss.Right)
}
dv.style.MissingLine.LineNumber = setPadding(dv.style.MissingLine.LineNumber)
dv.style.DividerLine.LineNumber = setPadding(dv.style.DividerLine.LineNumber)
dv.style.EqualLine.LineNumber = setPadding(dv.style.EqualLine.LineNumber)
dv.style.InsertLine.LineNumber = setPadding(dv.style.InsertLine.LineNumber)
dv.style.DeleteLine.LineNumber = setPadding(dv.style.DeleteLine.LineNumber)
}
// detectNumDigits calculates the maximum number of digits needed for before and
// after line numbers.
func (dv *DiffView) detectNumDigits() {
dv.beforeNumDigits = 0
dv.afterNumDigits = 0
for _, h := range dv.unified.Hunks {
dv.beforeNumDigits = max(dv.beforeNumDigits, len(strconv.Itoa(h.FromLine+len(h.Lines))))
dv.afterNumDigits = max(dv.afterNumDigits, len(strconv.Itoa(h.ToLine+len(h.Lines))))
}
}
func (dv *DiffView) detectTotalLines() {
dv.totalLines = 0
switch dv.layout {
case layoutUnified:
for _, h := range dv.unified.Hunks {
dv.totalLines += 1 + len(h.Lines)
}
case layoutSplit:
for _, h := range dv.splitHunks {
dv.totalLines += 1 + len(h.lines)
}
}
}
func (dv *DiffView) preventInfiniteYScroll() {
if dv.infiniteYScroll {
return
}
// clamp yOffset to prevent scrolling beyond the last line
if dv.height > 0 {
maxYOffset := max(0, dv.totalLines-dv.height)
dv.yOffset = min(dv.yOffset, maxYOffset)
} else {
// if no height limit, ensure yOffset doesn't exceed total lines
dv.yOffset = min(dv.yOffset, max(0, dv.totalLines-1))
}
dv.yOffset = max(0, dv.yOffset) // ensure yOffset is not negative
}
// detectCodeWidth calculates the maximum width of code lines in the diff view.
func (dv *DiffView) detectCodeWidth() {
switch dv.layout {
case layoutUnified:
dv.detectUnifiedCodeWidth()
case layoutSplit:
dv.detectSplitCodeWidth()
}
dv.fullCodeWidth = dv.codeWidth + leadingSymbolsSize
}
// detectUnifiedCodeWidth calculates the maximum width of code lines in a
// unified diff.
func (dv *DiffView) detectUnifiedCodeWidth() {
dv.codeWidth = 0
for _, h := range dv.unified.Hunks {
shownLines := ansi.StringWidth(dv.hunkLineFor(h))
for _, l := range h.Lines {
lineWidth := ansi.StringWidth(strings.TrimSuffix(l.Content, "\n")) + 1
dv.codeWidth = max(dv.codeWidth, lineWidth, shownLines)
}
}
}
// detectSplitCodeWidth calculates the maximum width of code lines in a
// split diff.
func (dv *DiffView) detectSplitCodeWidth() {
dv.codeWidth = 0
for i, h := range dv.splitHunks {
shownLines := ansi.StringWidth(dv.hunkLineFor(dv.unified.Hunks[i]))
for _, l := range h.lines {
if l.before != nil {
codeWidth := ansi.StringWidth(strings.TrimSuffix(l.before.Content, "\n")) + 1
dv.codeWidth = max(dv.codeWidth, codeWidth, shownLines)
}
if l.after != nil {
codeWidth := ansi.StringWidth(strings.TrimSuffix(l.after.Content, "\n")) + 1
dv.codeWidth = max(dv.codeWidth, codeWidth, shownLines)
}
}
}
}
// resizeCodeWidth resizes the code width to fit within the specified width.
func (dv *DiffView) resizeCodeWidth() {
fullNumWidth := dv.beforeNumDigits + dv.afterNumDigits
fullNumWidth += lineNumPadding * 4 // left and right padding for both line numbers
switch dv.layout {
case layoutUnified:
dv.codeWidth = dv.width - fullNumWidth - leadingSymbolsSize
case layoutSplit:
remainingWidth := dv.width - fullNumWidth - leadingSymbolsSize*2
dv.codeWidth = remainingWidth / 2
dv.extraColOnAfter = isOdd(remainingWidth)
}
dv.fullCodeWidth = dv.codeWidth + leadingSymbolsSize
}
// renderUnified renders the unified diff view as a string.
func (dv *DiffView) renderUnified() string {
var b strings.Builder
fullContentStyle := lipgloss.NewStyle().MaxWidth(dv.fullCodeWidth)
printedLines := -dv.yOffset
shouldWrite := func() bool { return printedLines >= 0 }
getContent := func(in string, ls LineStyle) (content string, leadingEllipsis bool) {
content = strings.TrimSuffix(in, "\n")
content = dv.hightlightCode(content, ls.Code.GetBackground())
content = ansi.GraphemeWidth.Cut(content, dv.xOffset, len(content))
content = ansi.Truncate(content, dv.codeWidth, "…")
leadingEllipsis = dv.xOffset > 0 && strings.TrimSpace(content) != ""
return
}
outer:
for i, h := range dv.unified.Hunks {
if shouldWrite() {
ls := dv.style.DividerLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad("…", dv.afterNumDigits)))
}
content := ansi.Truncate(dv.hunkLineFor(h), dv.fullCodeWidth, "…")
b.WriteString(ls.Code.Width(dv.fullCodeWidth).Render(content))
b.WriteString("\n")
}
printedLines++
beforeLine := h.FromLine
afterLine := h.ToLine
for j, l := range h.Lines {
// print ellipis if we don't have enough space to print the rest of the diff
hasReachedHeight := dv.height > 0 && printedLines+1 == dv.height
isLastHunk := i+1 == len(dv.unified.Hunks)
isLastLine := j+1 == len(h.Lines)
if hasReachedHeight && (!isLastHunk || !isLastLine) {
if shouldWrite() {
ls := dv.lineStyleForType(l.Kind)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad("…", dv.afterNumDigits)))
}
b.WriteString(fullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(" …"),
))
b.WriteRune('\n')
}
break outer
}
switch l.Kind {
case udiff.Equal:
if shouldWrite() {
ls := dv.style.EqualLine
content, leadingEllipsis := getContent(l.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(beforeLine, dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad(afterLine, dv.afterNumDigits)))
}
b.WriteString(fullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(ternary(leadingEllipsis, " …", " ") + content),
))
}
beforeLine++
afterLine++
case udiff.Insert:
if shouldWrite() {
ls := dv.style.InsertLine
content, leadingEllipsis := getContent(l.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad(afterLine, dv.afterNumDigits)))
}
b.WriteString(fullContentStyle.Render(
ls.Symbol.Render(ternary(leadingEllipsis, "+…", "+ ")) +
ls.Code.Width(dv.codeWidth).Render(content),
))
}
afterLine++
case udiff.Delete:
if shouldWrite() {
ls := dv.style.DeleteLine
content, leadingEllipsis := getContent(l.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(beforeLine, dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad(" ", dv.afterNumDigits)))
}
b.WriteString(fullContentStyle.Render(
ls.Symbol.Render(ternary(leadingEllipsis, "-…", "- ")) +
ls.Code.Width(dv.codeWidth).Render(content),
))
}
beforeLine++
}
if shouldWrite() {
b.WriteRune('\n')
}
printedLines++
}
}
for printedLines < dv.height {
if shouldWrite() {
ls := dv.style.MissingLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.beforeNumDigits)))
b.WriteString(ls.LineNumber.Render(pad(" ", dv.afterNumDigits)))
}
b.WriteString(ls.Code.Width(dv.fullCodeWidth).Render(" "))
b.WriteRune('\n')
}
printedLines++
}
return b.String()
}
// renderSplit renders the split (side-by-side) diff view as a string.
func (dv *DiffView) renderSplit() string {
var b strings.Builder
beforeFullContentStyle := lipgloss.NewStyle().MaxWidth(dv.fullCodeWidth)
afterFullContentStyle := lipgloss.NewStyle().MaxWidth(dv.fullCodeWidth + btoi(dv.extraColOnAfter))
printedLines := -dv.yOffset
shouldWrite := func() bool { return printedLines >= 0 }
getContent := func(in string, ls LineStyle) (content string, leadingEllipsis bool) {
content = strings.TrimSuffix(in, "\n")
content = dv.hightlightCode(content, ls.Code.GetBackground())
content = ansi.GraphemeWidth.Cut(content, dv.xOffset, len(content))
content = ansi.Truncate(content, dv.codeWidth, "…")
leadingEllipsis = dv.xOffset > 0 && strings.TrimSpace(content) != ""
return
}
outer:
for i, h := range dv.splitHunks {
if shouldWrite() {
ls := dv.style.DividerLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.beforeNumDigits)))
}
content := ansi.Truncate(dv.hunkLineFor(dv.unified.Hunks[i]), dv.fullCodeWidth, "…")
b.WriteString(ls.Code.Width(dv.fullCodeWidth).Render(content))
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.afterNumDigits)))
}
b.WriteString(ls.Code.Width(dv.fullCodeWidth + btoi(dv.extraColOnAfter)).Render(" "))
b.WriteRune('\n')
}
printedLines++
beforeLine := h.fromLine
afterLine := h.toLine
for j, l := range h.lines {
// print ellipis if we don't have enough space to print the rest of the diff
hasReachedHeight := dv.height > 0 && printedLines+1 == dv.height
isLastHunk := i+1 == len(dv.unified.Hunks)
isLastLine := j+1 == len(h.lines)
if hasReachedHeight && (!isLastHunk || !isLastLine) {
if shouldWrite() {
ls := dv.style.MissingLine
if l.before != nil {
ls = dv.lineStyleForType(l.before.Kind)
}
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.beforeNumDigits)))
}
b.WriteString(beforeFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(" …"),
))
ls = dv.style.MissingLine
if l.after != nil {
ls = dv.lineStyleForType(l.after.Kind)
}
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad("…", dv.afterNumDigits)))
}
b.WriteString(afterFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(" …"),
))
b.WriteRune('\n')
}
break outer
}
switch {
case l.before == nil:
if shouldWrite() {
ls := dv.style.MissingLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.beforeNumDigits)))
}
b.WriteString(beforeFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(" "),
))
}
case l.before.Kind == udiff.Equal:
if shouldWrite() {
ls := dv.style.EqualLine
content, leadingEllipsis := getContent(l.before.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(beforeLine, dv.beforeNumDigits)))
}
b.WriteString(beforeFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth).Render(ternary(leadingEllipsis, " …", " ") + content),
))
}
beforeLine++
case l.before.Kind == udiff.Delete:
if shouldWrite() {
ls := dv.style.DeleteLine
content, leadingEllipsis := getContent(l.before.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(beforeLine, dv.beforeNumDigits)))
}
b.WriteString(beforeFullContentStyle.Render(
ls.Symbol.Render(ternary(leadingEllipsis, "-…", "- ")) +
ls.Code.Width(dv.codeWidth).Render(content),
))
}
beforeLine++
}
switch {
case l.after == nil:
if shouldWrite() {
ls := dv.style.MissingLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.afterNumDigits)))
}
b.WriteString(afterFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth + btoi(dv.extraColOnAfter)).Render(" "),
))
}
case l.after.Kind == udiff.Equal:
if shouldWrite() {
ls := dv.style.EqualLine
content, leadingEllipsis := getContent(l.after.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(afterLine, dv.afterNumDigits)))
}
b.WriteString(afterFullContentStyle.Render(
ls.Code.Width(dv.fullCodeWidth + btoi(dv.extraColOnAfter)).Render(ternary(leadingEllipsis, " …", " ") + content),
))
}
afterLine++
case l.after.Kind == udiff.Insert:
if shouldWrite() {
ls := dv.style.InsertLine
content, leadingEllipsis := getContent(l.after.Content, ls)
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(afterLine, dv.afterNumDigits)))
}
b.WriteString(afterFullContentStyle.Render(
ls.Symbol.Render(ternary(leadingEllipsis, "+…", "+ ")) +
ls.Code.Width(dv.codeWidth+btoi(dv.extraColOnAfter)).Render(content),
))
}
afterLine++
}
if shouldWrite() {
b.WriteRune('\n')
}
printedLines++
}
}
for printedLines < dv.height {
if shouldWrite() {
ls := dv.style.MissingLine
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.beforeNumDigits)))
}
b.WriteString(ls.Code.Width(dv.fullCodeWidth).Render(" "))
if dv.lineNumbers {
b.WriteString(ls.LineNumber.Render(pad(" ", dv.afterNumDigits)))
}
b.WriteString(ls.Code.Width(dv.fullCodeWidth + btoi(dv.extraColOnAfter)).Render(" "))
b.WriteRune('\n')
}
printedLines++
}
return b.String()
}
// hunkLineFor formats the header line for a hunk in the unified diff view.
func (dv *DiffView) hunkLineFor(h *udiff.Hunk) string {
beforeShownLines, afterShownLines := dv.hunkShownLines(h)
return fmt.Sprintf(
" @@ -%d,%d +%d,%d @@ ",
h.FromLine,
beforeShownLines,
h.ToLine,
afterShownLines,
)
}
// hunkShownLines calculates the number of lines shown in a hunk for both before
// and after versions.
func (dv *DiffView) hunkShownLines(h *udiff.Hunk) (before, after int) {
for _, l := range h.Lines {
switch l.Kind {
case udiff.Equal:
before++
after++
case udiff.Insert:
after++
case udiff.Delete:
before++
}
}
return
}
func (dv *DiffView) lineStyleForType(t udiff.OpKind) LineStyle {
switch t {
case udiff.Equal:
return dv.style.EqualLine
case udiff.Insert:
return dv.style.InsertLine
case udiff.Delete:
return dv.style.DeleteLine
default:
return dv.style.MissingLine
}
}
func (dv *DiffView) hightlightCode(source string, bgColor color.Color) string {
if dv.chromaStyle == nil {
return source
}
// Create cache key from content and background color
cacheKey := dv.createSyntaxCacheKey(source, bgColor)
// Check if we already have this highlighted
if cached, exists := dv.syntaxCache[cacheKey]; exists {
return cached
}
l := dv.getChromaLexer()
f := dv.getChromaFormatter(bgColor)
it, err := l.Tokenise(nil, source)
if err != nil {
return source
}
var b strings.Builder
if err := f.Format(&b, dv.chromaStyle, it); err != nil {
return source
}
result := b.String()
// Cache the result for future use
dv.syntaxCache[cacheKey] = result
return result
}
// createSyntaxCacheKey creates a cache key from source content and background color.
// We use a simple hash to keep memory usage reasonable.
func (dv *DiffView) createSyntaxCacheKey(source string, bgColor color.Color) string {
// Convert color to string representation
r, g, b, a := bgColor.RGBA()
colorStr := fmt.Sprintf("%d,%d,%d,%d", r, g, b, a)
// Create a hash of the content + color to use as cache key
h := xxh3.New()
h.Write([]byte(source))
h.Write([]byte(colorStr))
return fmt.Sprintf("%x", h.Sum(nil))
}
func (dv *DiffView) getChromaLexer() chroma.Lexer {
if dv.cachedLexer != nil {
return dv.cachedLexer
}
l := lexers.Match(dv.before.path)
if l == nil {
l = lexers.Analyse(dv.before.content)
}
if l == nil {
l = lexers.Fallback
}
dv.cachedLexer = chroma.Coalesce(l)
return dv.cachedLexer
}
func (dv *DiffView) getChromaFormatter(bgColor color.Color) chroma.Formatter {
return chromaFormatter{
bgColor: bgColor,
}
}
|