开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
main
分支 (1)
标签 (1)
main
v0.1.0
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
main
分支 (1)
标签 (1)
main
v0.1.0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
main
分支 (1)
标签 (1)
main
v0.1.0
gitDiff.ts 15.66 KB
一键复制 编辑 原始数据 按行查看 历史
sanbucat 提交于 2026年03月31日 17:08 +08:00 . v2.1.88 反编译源码
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
import type { StructuredPatchHunk } from 'diff'
import { access, readFile } from 'fs/promises'
import { dirname, join, relative, sep } from 'path'
import { getCwd } from './cwd.js'
import { getCachedRepository } from './detectRepository.js'
import { execFileNoThrow, execFileNoThrowWithCwd } from './execFileNoThrow.js'
import { isFileWithinReadSizeLimit } from './file.js'
import {
findGitRoot,
getDefaultBranch,
getGitDir,
getIsGit,
gitExe,
} from './git.js'
export type GitDiffStats = {
filesCount: number
linesAdded: number
linesRemoved: number
}
export type PerFileStats = {
added: number
removed: number
isBinary: boolean
isUntracked?: boolean
}
export type GitDiffResult = {
stats: GitDiffStats
perFileStats: Map<string, PerFileStats>
hunks: Map<string, StructuredPatchHunk[]>
}
const GIT_TIMEOUT_MS = 5000
const MAX_FILES = 50
const MAX_DIFF_SIZE_BYTES = 1_000_000 // 1 MB - skip files larger than this
const MAX_LINES_PER_FILE = 400 // GitHub's auto-load limit
const MAX_FILES_FOR_DETAILS = 500 // Skip per-file details if more files than this
/**
* Fetch git diff stats and hunks comparing working tree to HEAD.
* Returns null if not in a git repo or if git commands fail.
*
* Returns null during merge/rebase/cherry-pick/revert operations since the
* working tree contains incoming changes that weren't intentionally
* made by the user.
*/
export async function fetchGitDiff(): Promise<GitDiffResult | null> {
const isGit = await getIsGit()
if (!isGit) return null
// Skip diff calculation during transient git states since the
// working tree contains incoming changes, not user-intentional edits
if (await isInTransientGitState()) {
return null
}
// Quick probe: use --shortstat to get totals without loading all content.
// This is O(1) memory and lets us detect massive diffs (e.g., jj workspaces)
// before committing to expensive operations.
const { stdout: shortstatOut, code: shortstatCode } = await execFileNoThrow(
gitExe(),
['--no-optional-locks', 'diff', 'HEAD', '--shortstat'],
{ timeout: GIT_TIMEOUT_MS, preserveOutputOnError: false },
)
if (shortstatCode === 0) {
const quickStats = parseShortstat(shortstatOut)
if (quickStats && quickStats.filesCount > MAX_FILES_FOR_DETAILS) {
// Too many files - return accurate totals but skip per-file details
// to avoid loading hundreds of MB into memory
return {
stats: quickStats,
perFileStats: new Map(),
hunks: new Map(),
}
}
}
// Get stats via --numstat (all uncommitted changes vs HEAD)
const { stdout: numstatOut, code: numstatCode } = await execFileNoThrow(
gitExe(),
['--no-optional-locks', 'diff', 'HEAD', '--numstat'],
{ timeout: GIT_TIMEOUT_MS, preserveOutputOnError: false },
)
if (numstatCode !== 0) return null
const { stats, perFileStats } = parseGitNumstat(numstatOut)
// Include untracked files (new files not yet staged)
// Just filenames - no content reading for performance
const remainingSlots = MAX_FILES - perFileStats.size
if (remainingSlots > 0) {
const untrackedStats = await fetchUntrackedFiles(remainingSlots)
if (untrackedStats) {
stats.filesCount += untrackedStats.size
for (const [path, fileStats] of untrackedStats) {
perFileStats.set(path, fileStats)
}
}
}
// Return stats only - hunks are fetched on-demand via fetchGitDiffHunks()
// to avoid expensive git diff HEAD call on every poll
return { stats, perFileStats, hunks: new Map() }
}
/**
* Fetch git diff hunks on-demand (for DiffDialog).
* Separated from fetchGitDiff() to avoid expensive calls during polling.
*/
export async function fetchGitDiffHunks(): Promise<
Map<string, StructuredPatchHunk[]>
> {
const isGit = await getIsGit()
if (!isGit) return new Map()
if (await isInTransientGitState()) {
return new Map()
}
const { stdout: diffOut, code: diffCode } = await execFileNoThrow(
gitExe(),
['--no-optional-locks', 'diff', 'HEAD'],
{ timeout: GIT_TIMEOUT_MS, preserveOutputOnError: false },
)
if (diffCode !== 0) {
return new Map()
}
return parseGitDiff(diffOut)
}
export type NumstatResult = {
stats: GitDiffStats
perFileStats: Map<string, PerFileStats>
}
/**
* Parse git diff --numstat output into stats.
* Format: <added>\t<removed>\t<filename>
* Binary files show '-' for counts.
* Only stores first MAX_FILES entries in perFileStats.
*/
export function parseGitNumstat(stdout: string): NumstatResult {
const lines = stdout.trim().split('\n').filter(Boolean)
let added = 0
let removed = 0
let validFileCount = 0
const perFileStats = new Map<string, PerFileStats>()
for (const line of lines) {
const parts = line.split('\t')
// Valid numstat lines have exactly 3 tab-separated parts: added, removed, filename
if (parts.length < 3) continue
validFileCount++
const addStr = parts[0]
const remStr = parts[1]
const filePath = parts.slice(2).join('\t') // filename may contain tabs
const isBinary = addStr === '-' || remStr === '-'
const fileAdded = isBinary ? 0 : parseInt(addStr ?? '0', 10) || 0
const fileRemoved = isBinary ? 0 : parseInt(remStr ?? '0', 10) || 0
added += fileAdded
removed += fileRemoved
// Only store first MAX_FILES entries
if (perFileStats.size < MAX_FILES) {
perFileStats.set(filePath, {
added: fileAdded,
removed: fileRemoved,
isBinary,
})
}
}
return {
stats: {
filesCount: validFileCount,
linesAdded: added,
linesRemoved: removed,
},
perFileStats,
}
}
/**
* Parse unified diff output into per-file hunks.
* Splits by "diff --git" and parses each file's hunks.
*
* Applies limits:
* - MAX_FILES: stop after this many files
* - Files >1MB: skipped entirely (not in result map)
* - Files ≤1MB: parsed but limited to MAX_LINES_PER_FILE lines
*/
export function parseGitDiff(
stdout: string,
): Map<string, StructuredPatchHunk[]> {
const result = new Map<string, StructuredPatchHunk[]>()
if (!stdout.trim()) return result
// Split by file diffs
const fileDiffs = stdout.split(/^diff --git /m).filter(Boolean)
for (const fileDiff of fileDiffs) {
// Stop after MAX_FILES
if (result.size >= MAX_FILES) break
// Skip files larger than 1MB
if (fileDiff.length > MAX_DIFF_SIZE_BYTES) {
continue
}
const lines = fileDiff.split('\n')
// Extract filename from first line: "a/path/to/file b/path/to/file"
const headerMatch = lines[0]?.match(/^a\/(.+?) b\/(.+)$/)
if (!headerMatch) continue
const filePath = headerMatch[2] ?? headerMatch[1] ?? ''
// Find and parse hunks
const fileHunks: StructuredPatchHunk[] = []
let currentHunk: StructuredPatchHunk | null = null
let lineCount = 0
for (let i = 1; i < lines.length; i++) {
const line = lines[i] ?? ''
// StructuredPatchHunk header: @@ -oldStart,oldLines +newStart,newLines @@
const hunkMatch = line.match(
/^@@ -(\d+)(?:,(\d+))?\+(\d+)(?:,(\d+))? @@/,
)
if (hunkMatch) {
if (currentHunk) {
fileHunks.push(currentHunk)
}
currentHunk = {
oldStart: parseInt(hunkMatch[1] ?? '0', 10),
oldLines: parseInt(hunkMatch[2] ?? '1', 10),
newStart: parseInt(hunkMatch[3] ?? '0', 10),
newLines: parseInt(hunkMatch[4] ?? '1', 10),
lines: [],
}
continue
}
// Skip binary file markers and other metadata
if (
line.startsWith('index ') ||
line.startsWith('---') ||
line.startsWith('+++') ||
line.startsWith('new file') ||
line.startsWith('deleted file') ||
line.startsWith('old mode') ||
line.startsWith('new mode') ||
line.startsWith('Binary files')
) {
continue
}
// Add diff lines to current hunk (with line limit)
if (
currentHunk &&
(line.startsWith('+') ||
line.startsWith('-') ||
line.startsWith('') ||
line === '')
) {
// Stop adding lines once we hit the limit
if (lineCount >= MAX_LINES_PER_FILE) {
continue
}
// Force a flat string copy to break V8 sliced string references.
// When split() creates lines, V8 creates "sliced strings" that reference
// the parent. This keeps the entire parent string (~MBs) alive as long as
// any line is retained. Using '' + line forces a new flat string allocation,
// unlike slice(0) which V8 may optimize to return the same reference.
currentHunk.lines.push('' + line)
lineCount++
}
}
// Don't forget the last hunk
if (currentHunk) {
fileHunks.push(currentHunk)
}
if (fileHunks.length > 0) {
result.set(filePath, fileHunks)
}
}
return result
}
/**
* Check if we're in a transient git state (merge, rebase, cherry-pick, or revert).
* During these operations, we skip diff calculation since the working
* tree contains incoming changes that weren't intentionally made.
*
* Uses fs.access to check for transient ref files, avoiding process spawns.
*/
async function isInTransientGitState(): Promise<boolean> {
const gitDir = await getGitDir(getCwd())
if (!gitDir) return false
const transientFiles = [
'MERGE_HEAD',
'REBASE_HEAD',
'CHERRY_PICK_HEAD',
'REVERT_HEAD',
]
const results = await Promise.all(
transientFiles.map(file =>
access(join(gitDir, file))
.then(() => true)
.catch(() => false),
),
)
return results.some(Boolean)
}
/**
* Fetch untracked file names (no content reading).
* Returns file paths only - they'll be displayed with a note to stage them.
*
* @param maxFiles Maximum number of untracked files to include
*/
async function fetchUntrackedFiles(
maxFiles: number,
): Promise<Map<string, PerFileStats> | null> {
// Get list of untracked files (excludes gitignored)
const { stdout, code } = await execFileNoThrow(
gitExe(),
['--no-optional-locks', 'ls-files', '--others', '--exclude-standard'],
{ timeout: GIT_TIMEOUT_MS, preserveOutputOnError: false },
)
if (code !== 0 || !stdout.trim()) return null
const untrackedPaths = stdout.trim().split('\n').filter(Boolean)
if (untrackedPaths.length === 0) return null
const perFileStats = new Map<string, PerFileStats>()
// Just record filenames, no content reading
for (const filePath of untrackedPaths.slice(0, maxFiles)) {
perFileStats.set(filePath, {
added: 0,
removed: 0,
isBinary: false,
isUntracked: true,
})
}
return perFileStats
}
/**
* Parse git diff --shortstat output into stats.
* Format: " 1648 files changed, 52341 insertions(+), 8123 deletions(-)"
*
* This is O(1) memory regardless of diff size - git computes totals without
* loading all content. Used as a quick probe before expensive operations.
*/
export function parseShortstat(stdout: string): GitDiffStats | null {
// Match: "N files changed" with optional ", N insertions(+)" and ", N deletions(-)"
const match = stdout.match(
/(\d+)\s+files?\s+changed(?:,\s+(\d+)\s+insertions?\(\+\))?(?:,\s+(\d+)\s+deletions?\(-\))?/,
)
if (!match) return null
return {
filesCount: parseInt(match[1] ?? '0', 10),
linesAdded: parseInt(match[2] ?? '0', 10),
linesRemoved: parseInt(match[3] ?? '0', 10),
}
}
const SINGLE_FILE_DIFF_TIMEOUT_MS = 3000
export type ToolUseDiff = {
filename: string
status: 'modified' | 'added'
additions: number
deletions: number
changes: number
patch: string
/** GitHub "owner/repo" when available (null for non-github.com or unknown repos) */
repository: string | null
}
/**
* Fetch a structured diff for a single file against the merge base with the
* default branch. This produces a PR-like diff showing all changes since
* the branch diverged. Falls back to diffing against HEAD if the merge base
* cannot be determined (e.g., on the default branch itself).
* For untracked files, generates a synthetic diff showing all additions.
* Returns null if not in a git repo or if git commands fail.
*/
export async function fetchSingleFileGitDiff(
absoluteFilePath: string,
): Promise<ToolUseDiff | null> {
const gitRoot = findGitRoot(dirname(absoluteFilePath))
if (!gitRoot) return null
const gitPath = relative(gitRoot, absoluteFilePath).split(sep).join('/')
const repository = getCachedRepository()
// Check if the file is tracked by git
const { code: lsFilesCode } = await execFileNoThrowWithCwd(
gitExe(),
['--no-optional-locks', 'ls-files', '--error-unmatch', gitPath],
{ cwd: gitRoot, timeout: SINGLE_FILE_DIFF_TIMEOUT_MS },
)
if (lsFilesCode === 0) {
// File is tracked - diff against merge base for PR-like view
const diffRef = await getDiffRef(gitRoot)
const { stdout, code } = await execFileNoThrowWithCwd(
gitExe(),
['--no-optional-locks', 'diff', diffRef, '--', gitPath],
{ cwd: gitRoot, timeout: SINGLE_FILE_DIFF_TIMEOUT_MS },
)
if (code !== 0) return null
if (!stdout) return null
return {
...parseRawDiffToToolUseDiff(gitPath, stdout, 'modified'),
repository,
}
}
// File is untracked - generate synthetic diff
const syntheticDiff = await generateSyntheticDiff(gitPath, absoluteFilePath)
if (!syntheticDiff) return null
return { ...syntheticDiff, repository }
}
/**
* Parse raw unified diff output into the structured ToolUseDiff format.
* Extracts only the hunk content (starting from @@) as the patch,
* and counts additions/deletions.
*/
function parseRawDiffToToolUseDiff(
filename: string,
rawDiff: string,
status: 'modified' | 'added',
): Omit<ToolUseDiff, 'repository'> {
const lines = rawDiff.split('\n')
const patchLines: string[] = []
let inHunks = false
let additions = 0
let deletions = 0
for (const line of lines) {
if (line.startsWith('@@')) {
inHunks = true
}
if (inHunks) {
patchLines.push(line)
if (line.startsWith('+') && !line.startsWith('+++')) {
additions++
} else if (line.startsWith('-') && !line.startsWith('---')) {
deletions++
}
}
}
return {
filename,
status,
additions,
deletions,
changes: additions + deletions,
patch: patchLines.join('\n'),
}
}
/**
* Determine the best ref to diff against for a PR-like diff.
* Priority:
* 1. CLAUDE_CODE_BASE_REF env var (set externally, e.g. by CCR managed containers)
* 2. Merge base with the default branch (best guess)
* 3. HEAD (fallback if merge-base fails)
*/
async function getDiffRef(gitRoot: string): Promise<string> {
const baseBranch =
process.env.CLAUDE_CODE_BASE_REF || (await getDefaultBranch())
const { stdout, code } = await execFileNoThrowWithCwd(
gitExe(),
['--no-optional-locks', 'merge-base', 'HEAD', baseBranch],
{ cwd: gitRoot, timeout: SINGLE_FILE_DIFF_TIMEOUT_MS },
)
if (code === 0 && stdout.trim()) {
return stdout.trim()
}
return 'HEAD'
}
async function generateSyntheticDiff(
gitPath: string,
absoluteFilePath: string,
): Promise<Omit<ToolUseDiff, 'repository'> | null> {
try {
if (!isFileWithinReadSizeLimit(absoluteFilePath, MAX_DIFF_SIZE_BYTES)) {
return null
}
const content = await readFile(absoluteFilePath, 'utf-8')
const lines = content.split('\n')
// Remove trailing empty line from split if file ends with newline
if (lines.length > 0 && lines.at(-1) === '') {
lines.pop()
}
const lineCount = lines.length
const addedLines = lines.map(line => `+${line}`).join('\n')
const patch = `@@ -0,0 +1,${lineCount} @@\n${addedLines}`
return {
filename: gitPath,
status: 'added',
additions: lineCount,
deletions: 0,
changes: lineCount,
patch,
}
} catch {
return null
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/up/claude-code-source-code.git
git@gitee.com:up/claude-code-source-code.git
up
claude-code-source-code
claude-code-source-code
main
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /