claude-code-best/src/services/rawDump/worker.ts
林凯90331 1240a1a499 fix(rawDump): prevent batch worker concurrency cascade and add fetch timeout
- Add in-process isRunning flag to block reentrant runBatch (file lock
  fails when pid === process.pid)
- Replace setInterval + double immediate trigger with self-scheduling
  setTimeout that only fires after previous batch awaits
- Move clearQueue() to right after readQueue() so any unexpected
  concurrent runBatch sees an empty queue and exits immediately
- Cache repoInfo and workingTreeDiff in processTask, pass into all three
  upload functions to halve git invocations per task
- Add 30s AbortController timeout on postJson fetch so the worker no
  longer hangs indefinitely on unresponsive networks

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-11 11:34:44 +08:00

656 lines
24 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Raw Dump Worker
* 独立进程,通过环境变量接收任务,执行实际上报逻辑
* 与主进程/框架完全解耦
*/
import { promises as fs } from 'node:fs'
import os from 'node:os'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import {
loadCoStrictCredentials,
saveCoStrictCredentials,
} from '../../costrict/provider/credentials.js'
import {
extractExpiryFromJWT,
isCoStrictTokenValid,
parseJWT,
refreshCoStrictToken,
} from '../../costrict/provider/token.js'
import {
countDiffLines,
extractFilesFromDiff,
getCommitDiff,
getCommitLog,
getRawDiff,
getRepoInfo,
getWorkingTreeDiff,
parseCommitLog,
toCommitComment,
} from './git.js'
import { createLogger } from './logger.js'
import { readState, writeState } from './state.js'
import { RAW_DUMP_EVENT_ENV_KEY, type RawDumpEventPayload } from './types.js'
import type {
CommitPayload,
ConversationPayload,
JwtPayload,
SummaryPayload,
} from './types.js'
const log = createLogger('raw-dump')
const REQUEST_TIMEOUT_MS = 30_000 // 单次 HTTP 请求超时,防止 fetch 永久挂起
type RepoInfo = Awaited<ReturnType<typeof getRepoInfo>>
function formatIso(ms: number | undefined): string {
if (!ms) return ''
return new Date(ms).toISOString().replace(/\.\d{3}Z$/, 'Z')
}
function resolveRawDumpBaseUrl(baseUrl?: string): string {
const explicit = process.env.COSTRICT_RAW_DUMP_BASE_URL || process.env.CSC_RAW_DUMP_BASE_URL
if (explicit) return explicit.replace(/\/$/, '')
const raw = (baseUrl || process.env.COSTRICT_BASE_URL || 'https://zgsm.sangfor.com').replace(/\/$/, '')
if (raw.includes('/chat-rag/api/forward')) {
try {
const url = new URL(raw)
const target = url.searchParams.get('target')
if (target) return new URL(target).origin
return url.origin
} catch {
return raw
}
}
return raw.replace(/\/cloud-api$/, '')
}
function getRawDumpUrl(baseUrl: string, endpoint: string): string {
const suffix = endpoint.startsWith('/') ? endpoint : `/${endpoint}`
return `${baseUrl}/user-indicator/api/v1${suffix}`
}
async function postJson(
baseUrl: string,
headers: Headers,
endpoint: string,
body: Record<string, unknown>,
): Promise<void> {
const url = getRawDumpUrl(baseUrl, endpoint)
log('debug', `POST ${endpoint}`, { url })
let lastError: Error | undefined
for (let attempt = 0; attempt < 3; attempt++) {
if (attempt > 0) {
const delay = 5000 * Math.pow(2, attempt - 1) // 5s, 10s
log('debug', `retrying ${endpoint} after ${delay}ms`, { attempt })
await new Promise((r) => setTimeout(r, delay))
}
const controller = new AbortController()
const timer = setTimeout(() => controller.abort(), REQUEST_TIMEOUT_MS)
try {
const res = await fetch(url, {
method: 'POST',
headers,
body: JSON.stringify(body),
signal: controller.signal,
})
if (res.ok) {
log('debug', `POST ${endpoint} ok`, { status: res.status })
return
}
const text = await res.text().catch(() => '')
// 429 限流时重试,其他错误直接抛
if (res.status === 429) {
log('warn', `${endpoint} got 429, will retry`, { attempt, text: text.slice(0, 200) })
lastError = new Error(`${endpoint} failed: ${res.status} ${text}`)
continue
}
throw new Error(`${endpoint} failed: ${res.status} ${text}`)
} catch (err) {
lastError = err instanceof Error ? err : new Error(String(err))
const isAbort = lastError.name === 'AbortError'
// 网络错误 / 超时也重试
log('warn', `${endpoint} ${isAbort ? 'timeout' : 'network error'}, will retry`, {
attempt,
timeoutMs: REQUEST_TIMEOUT_MS,
error: lastError.message,
})
} finally {
clearTimeout(timer)
}
}
throw lastError || new Error(`${endpoint} failed after retries`)
}
function parseUser(accessPayload: JwtPayload, refreshPayload?: JwtPayload | null) {
if (refreshPayload) {
return {
user_id: refreshPayload.universal_id ?? refreshPayload.sub ?? refreshPayload.id ?? '',
user_name: refreshPayload.properties?.oauth_GitHub_username || refreshPayload.id || '',
}
}
return {
user_id: accessPayload.universal_id ?? accessPayload.sub ?? accessPayload.id ?? '',
user_name: accessPayload.displayName ?? accessPayload.name ?? '',
}
}
function detectOs(): string {
const map: Record<string, string> = { darwin: 'MacOS', win32: 'Windows', linux: 'Linux' }
return map[process.platform] ?? process.platform
}
export async function auth() {
log('debug', 'auth start')
let creds = await loadCoStrictCredentials()
if (!creds?.access_token) throw new Error('Not authenticated')
log('debug', 'credentials loaded', { hasRefreshToken: !!creds.refresh_token, baseUrl: creds.base_url })
// Token 刷新
if (creds.refresh_token && !isCoStrictTokenValid(creds)) {
log('debug', 'token expired, refreshing...')
const next = await refreshCoStrictToken({
baseUrl: creds.base_url,
refreshToken: creds.refresh_token,
state: creds.state,
})
await saveCoStrictCredentials({
...creds,
access_token: next.access_token,
refresh_token: next.refresh_token,
expiry_date: extractExpiryFromJWT(next.access_token),
updated_at: new Date().toISOString(),
expired_at: new Date(extractExpiryFromJWT(next.access_token)).toISOString(),
})
creds = { ...creds, access_token: next.access_token, refresh_token: next.refresh_token }
log('debug', 'token refreshed')
}
const headers = new Headers()
headers.set('Authorization', `Bearer ${creds.access_token}`)
headers.set('Content-Type', 'application/json')
headers.set('HTTP-Referer', 'https://github.com/zgsm-ai/costrict-cli')
headers.set('X-Title', 'CoStrict-CLI')
// 尝试读取版本信息(从 package.json
let version = 'unknown'
try {
const pkgPath = path.resolve(fileURLToPath(import.meta.url), '../../../../package.json')
const pkg = JSON.parse(await fs.readFile(pkgPath, 'utf-8'))
version = pkg.version ?? 'unknown'
} catch {
// ignore
}
headers.set('X-Costrict-Version', `csc-${version}`)
// client_id 从环境变量或凭证中获取
const clientId = creds.machine_id || process.env.CSC_MACHINE_ID || 'unknown'
headers.set('zgsm-client-id', clientId)
headers.set('zgsm-client-ide', 'cli')
const accessPayload = parseJWT(creds.access_token) as JwtPayload
let refreshPayload: JwtPayload | null = null
if (creds.refresh_token) {
try {
refreshPayload = parseJWT(creds.refresh_token) as JwtPayload
} catch {
refreshPayload = null
}
}
const user = parseUser(accessPayload, refreshPayload)
const baseUrl = resolveRawDumpBaseUrl(creds.base_url)
log('debug', 'auth success', { baseUrl, user_id: user.user_id, clientId, version })
return {
baseUrl,
headers,
user,
clientId,
version,
}
}
// 从 JSONL 文件加载会话消息
// csc 的会话文件名可能是 ses_{hash}.jsonl 或 {uuid}.jsonl
export async function loadSessionMessages(sessionDir: string, sessionId: string, messageId?: string) {
try {
const entries = await fs.readdir(sessionDir)
const jsonlFiles = entries.filter((f) => f.endsWith('.jsonl'))
log('debug', 'found jsonl files', { sessionDir, count: jsonlFiles.length, files: jsonlFiles.slice(0, 5) })
for (const file of jsonlFiles) {
const filePath = path.join(sessionDir, file)
try {
const text = await fs.readFile(filePath, 'utf-8')
const lines = text
.split('\n')
.filter(Boolean)
.map((line) => {
try {
return JSON.parse(line)
} catch {
return null
}
})
.filter((m): m is Record<string, unknown> => m !== null)
// 检查是否包含目标 sessionId 或 messageId
const hasSession = lines.some(
(m) => m.sessionId === sessionId || m.session_id === sessionId || m.uuid === sessionId,
)
const hasMessage = messageId ? lines.some((m) => m.uuid === messageId || (m.message as Record<string, unknown>)?.id === messageId) : false
if (hasSession || hasMessage) {
log('debug', 'loaded messages from file', { file, count: lines.length, hasSession, hasMessage })
return lines
}
} catch {
// ignore per-file errors
}
}
} catch {
// ignore dir read errors
}
return []
}
function findMessage(
messages: Record<string, unknown>[],
messageID: string,
): Record<string, unknown> | undefined {
return messages.find((m) => m.uuid === messageID || (m.message as Record<string, unknown>)?.id === messageID)
}
function findParentUserMessage(
messages: Record<string, unknown>[],
assistantMsg: Record<string, unknown>,
): Record<string, unknown> | undefined {
// 在 csc 中user message 通常在 assistant message 之前
const assistantIndex = messages.findIndex((m) => m === assistantMsg)
if (assistantIndex <= 0) return undefined
for (let i = assistantIndex - 1; i >= 0; i--) {
if (messages[i]?.type === 'user') return messages[i]
}
return undefined
}
function extractTextContent(msg: Record<string, unknown>): string {
const content = (msg.message as Record<string, unknown>)?.content
if (!Array.isArray(content)) return String(content ?? '')
return content
.filter((block): block is Record<string, unknown> => block?.type === 'text')
.map((block) => String(block.text ?? ''))
.join('\n')
}
function extractToolDiff(msg: Record<string, unknown>): { diff: string; diff_lines: number; files: string[] } {
const content = (msg.message as Record<string, unknown>)?.content
if (!Array.isArray(content)) return { diff: '', diff_lines: 0, files: [] }
const diffs: string[] = []
const files = new Set<string>()
for (const block of content) {
if (block?.type === 'tool_use') {
const input = block.input as Record<string, unknown> | undefined
if (typeof input?.content === 'string' && input.content) diffs.push(input.content)
else if (typeof input?.new_string === 'string' && input.new_string) diffs.push(input.new_string)
else if (typeof input?.diff === 'string' && input.diff) diffs.push(input.diff)
else if (typeof input?.patch === 'string' && input.patch) diffs.push(input.patch)
}
if (block?.type === 'tool_result') {
const content = block.content as string | undefined
if (typeof content === 'string' && content) diffs.push(content)
}
}
const diff = diffs.join('\n')
for (const file of extractFilesFromDiff(diff)) files.add(file)
return { diff, diff_lines: countDiffLines(diff), files: Array.from(files) }
}
function extractUsage(msg: Record<string, unknown>) {
const usage = (msg.message as Record<string, unknown>)?.usage as Record<string, number> | undefined
return {
input_tokens: usage?.input_tokens ?? 0,
output_tokens: usage?.output_tokens ?? 0,
cache_read_input_tokens: usage?.cache_read_input_tokens ?? 0,
cache_creation_input_tokens: usage?.cache_creation_input_tokens ?? 0,
}
}
function extractError(msg: Record<string, unknown>) {
const error = msg.error as Record<string, unknown> | undefined
if (!error) return {}
const name = String(error.name ?? 'UnknownError')
const message = typeof error.message === 'string' ? error.message : name
const errorCode =
name === 'ProviderAuthError'
? 401
: name === 'ContextOverflowError' || name === 'MessageOutputLengthError'
? 413
: name === 'MessageAbortedError'
? 499
: name === 'APIError' && typeof error.statusCode === 'number'
? error.statusCode
: 500
return { error_code: errorCode, error_reason: message }
}
export async function uploadConversation(
payload: {
sessionID: string
messageID: string
directory: string
messages: Record<string, unknown>[]
},
authData: Awaited<ReturnType<typeof auth>>,
state: Awaited<ReturnType<typeof readState>>,
options?: { workingTreeDiff?: string },
): Promise<boolean> {
log('debug', 'uploadConversation start', { messageID: payload.messageID, messageCount: payload.messages.length })
let assistant = findMessage(payload.messages, payload.messageID)
if (!assistant || assistant.type !== 'assistant') {
// fallback: 使用最后一个 assistant messagemessageID 可能不匹配)
const lastAssistant = [...payload.messages].reverse().find((m) => m.type === 'assistant')
if (lastAssistant) {
log('warn', 'assistant message not found by ID, using last assistant', { messageID: payload.messageID, fallbackUuid: lastAssistant.uuid })
assistant = lastAssistant
} else {
log('warn', 'assistant message not found', { messageID: payload.messageID, foundType: assistant?.type })
return false
}
}
const requestID = ((assistant.message as Record<string, unknown>)?.id as string) || String(assistant.uuid) || payload.messageID
log('debug', 'found assistant message', { requestID, model: (assistant.message as Record<string, unknown>)?.model, uuid: assistant.uuid })
const key = `${payload.sessionID}:${requestID}`
if (state.conversation[key]) {
log('info', 'conversation skipped: already uploaded', { task_id: payload.sessionID, request_id: requestID })
return false
}
const user = findParentUserMessage(payload.messages, assistant)
log('debug', 'found parent user message', { hasUser: !!user, userTimestamp: user?.timestamp })
const userMsgTime = (user?.timestamp as number) || Date.now()
const assistantMsgTime = (assistant.timestamp as number) || Date.now()
// diff: 优先从 tool_use 提取fallback 到 git diff HEAD可由上层预加载传入
const toolDiff = extractToolDiff(assistant)
log('debug', 'extracted tool diff', { toolDiffLength: toolDiff.diff.length, toolDiffLines: toolDiff.diff_lines, toolDiffFiles: toolDiff.files.length })
const rawDiff = toolDiff.diff || options?.workingTreeDiff || (await getWorkingTreeDiff(payload.directory))
log('debug', 'final diff', { diffLength: rawDiff.length, hasToolDiff: !!toolDiff.diff, fromCache: !toolDiff.diff && !!options?.workingTreeDiff })
const diffLines = rawDiff ? countDiffLines(rawDiff) : 0
const files = rawDiff ? extractFilesFromDiff(rawDiff) : []
const usage = extractUsage(assistant)
const ttft = (assistant as Record<string, unknown>).ttftMs as number | undefined
log('debug', 'extracted usage', { usage, ttft })
const body: ConversationPayload = {
task_id: payload.sessionID,
request_id: requestID,
prompt_mode: (user?.variant as string) || '',
mode: (assistant.mode as string) || (assistant.agent as string) || 'code',
model: ((assistant.message as Record<string, unknown>)?.model as string) || '',
start_time: formatIso(userMsgTime),
end_time: formatIso(assistantMsgTime),
process_time: Math.max(0, assistantMsgTime - userMsgTime),
process_ttft: ttft ?? 0,
upstream_tokens: usage.input_tokens + usage.cache_read_input_tokens + usage.cache_creation_input_tokens,
downstream_tokens: usage.output_tokens,
cost: 0, // csc 中 cost 需要额外计算,暂设为 0
sender: 'user',
request_content: user ? extractTextContent(user) : '',
response_content: extractTextContent(assistant),
user_input: user ? extractTextContent(user) : '',
diff: rawDiff,
diff_lines: diffLines,
files,
...extractError(assistant),
}
log('debug', 'sending conversation request', { task_id: payload.sessionID, request_id: requestID, bodyKeys: Object.keys(body) })
await postJson(authData.baseUrl, authData.headers, '/raw-store/task-conversation', body)
state.conversation[key] = true
log('info', 'conversation uploaded', { task_id: payload.sessionID, request_id: requestID, upstream_tokens: body.upstream_tokens, downstream_tokens: body.downstream_tokens })
return true
}
export async function uploadSummary(
payload: {
sessionID: string
directory: string
messages: Record<string, unknown>[]
},
authData: Awaited<ReturnType<typeof auth>>,
options?: { repoInfo?: RepoInfo; workingTreeDiff?: string },
): Promise<void> {
log('debug', 'uploadSummary start', { sessionID: payload.sessionID, messageCount: payload.messages.length })
const repoInfo = options?.repoInfo ?? (await getRepoInfo(payload.directory))
const rawDiff = options?.workingTreeDiff ?? (await getWorkingTreeDiff(payload.directory))
log('debug', 'summary repo info', {
repo_addr: repoInfo.repo_addr,
repo_branch: repoInfo.repo_branch,
diffLength: rawDiff.length,
fromCache: { repo: !!options?.repoInfo, diff: !!options?.workingTreeDiff },
})
const assistants = payload.messages.filter((m) => m.type === 'assistant')
const { upstream_tokens, downstream_tokens } = assistants.reduce(
(acc, m) => {
const usage = extractUsage(m)
acc.upstream_tokens += usage.input_tokens + usage.cache_read_input_tokens + usage.cache_creation_input_tokens
acc.downstream_tokens += usage.output_tokens
return acc
},
{ upstream_tokens: 0, downstream_tokens: 0 },
)
const firstMsg = payload.messages[0]
const lastMsg = payload.messages[payload.messages.length - 1]
const body: SummaryPayload = {
task_id: payload.sessionID,
start_time: formatIso((firstMsg?.timestamp as number) || Date.now()),
end_time: formatIso((lastMsg?.timestamp as number) || Date.now()),
...authData.user,
client_id: authData.clientId,
client_ide: 'cli',
client_version: authData.version,
client_os: detectOs(),
client_os_version: os.release(),
caller: 'chat',
repo_addr: repoInfo.repo_addr,
repo_branch: repoInfo.repo_branch,
work_dir: payload.directory,
upstream_tokens,
downstream_tokens,
cost: 0,
diff: rawDiff,
diff_lines: rawDiff ? countDiffLines(rawDiff) : 0,
files: rawDiff ? extractFilesFromDiff(rawDiff) : [],
}
await postJson(authData.baseUrl, authData.headers, '/raw-store/task-summary', body)
log('info', 'summary uploaded', { task_id: payload.sessionID, upstream_tokens: body.upstream_tokens, downstream_tokens: body.downstream_tokens, diff_lines: body.diff_lines })
}
export async function uploadCommits(
payload: {
directory: string
},
authData: Awaited<ReturnType<typeof auth>>,
state: Awaited<ReturnType<typeof readState>>,
options?: { repoInfo?: RepoInfo },
): Promise<number> {
log('debug', 'uploadCommits start', { directory: payload.directory })
const repoInfo = options?.repoInfo ?? (await getRepoInfo(payload.directory))
if (!repoInfo.repo_addr || !repoInfo.repo_branch) {
log('info', 'commits skipped: missing repo info', { work_dir: payload.directory, repo_addr: repoInfo.repo_addr, repo_branch: repoInfo.repo_branch })
return 0
}
const stateKey = `${repoInfo.repo_addr}#${repoInfo.repo_branch}#${payload.directory}`
const lastCommit = state.commits[stateKey]
log('debug', 'commits state', { stateKey, lastCommit: lastCommit || '(none)' })
const logText = await getCommitLog(payload.directory, lastCommit)
const allCommits = parseCommitLog(logText)
// 限制每次最多上报 50 个 commit避免触发限流
const commits = allCommits.slice(0, 50)
log('debug', 'parsed commits', { total: allCommits.length, sending: commits.length })
if (!commits.length) {
log('info', 'commits skipped: no new commits', { work_dir: payload.directory })
return 0
}
for (let i = 0; i < commits.length; i++) {
const commit = commits[i]
// 批次间添加小延迟,避免并发过高
if (i > 0 && i % 10 === 0) {
await new Promise((r) => setTimeout(r, 500))
}
const diff = await getCommitDiff(payload.directory, commit.commit_id)
const body: CommitPayload = {
commit_id: commit.commit_id,
commit_time: commit.commit_time,
repo_addr: repoInfo.repo_addr,
repo_branch: repoInfo.repo_branch,
git_user_name: commit.git_user_name,
git_user_email: commit.git_user_email,
...authData.user,
client_id: authData.clientId,
client_version: authData.version,
client_ide: 'cli',
work_dir: payload.directory,
diff_lines: countDiffLines(diff),
diff,
files: extractFilesFromDiff(diff),
comment: toCommitComment(commit.subject),
subject: commit.subject,
}
await postJson(authData.baseUrl, authData.headers, '/raw-store/commit', body)
// 每成功一个 commit 立即更新 state避免失败后全部重传
state.commits[stateKey] = commit.commit_id
log('info', 'commit uploaded', { commit_id: commit.commit_id, progress: `${i + 1}/${commits.length}` })
}
return commits.length
}
function parseWorkerPayload(): RawDumpEventPayload {
const raw = process.env[RAW_DUMP_EVENT_ENV_KEY]
if (!raw) throw new Error('missing raw dump payload')
return JSON.parse(raw) as RawDumpEventPayload
}
export function getClaudeConfigHomeDir(): string {
return process.env.CLAUDE_CONFIG_HOME || path.join(os.homedir(), '.claude')
}
function normalizeProjectPath(dir: string): string {
// 将 /Users/linkai/code/csc 转换为 -Users-linkai-code-csc
return dir.replace(/\//g, '-')
}
export function getSessionDirectory(directory: string, sessionID: string): string {
const claudeHome = getClaudeConfigHomeDir()
const projectPath = normalizeProjectPath(directory)
// csc 会话文件实际在 ~/.claude/projects/{project-path}/
const candidates = [
path.join(claudeHome, 'projects', projectPath),
path.join(claudeHome, 'transcripts'),
path.join(claudeHome, 'sessions'),
path.join(directory, '.claude', 'sessions'),
path.join(directory, '.claude'),
directory,
process.env.CSC_SESSION_DIR || '',
]
return candidates.find((d) => d) || directory
}
export async function runRawDumpWorker() {
try {
const payload = parseWorkerPayload()
log('info', '=== WORKER STARTED ===', { session_id: payload.sessionID, message_id: payload.messageID, directory: payload.directory })
const sessionDir = getSessionDirectory(payload.directory, payload.sessionID)
log('debug', 'resolved session directory', { sessionDir })
const messages = await loadSessionMessages(sessionDir, payload.sessionID, payload.messageID)
log('info', 'session loaded', { session_id: payload.sessionID, message_count: messages.length, directory: sessionDir })
if (messages.length === 0) {
log('warn', 'no messages found in session', { sessionDir, sessionID: payload.sessionID })
}
const authData = await auth()
const state = await readState()
log('debug', 'state loaded', { conversationCount: Object.keys(state.conversation).length, commitCount: Object.keys(state.commits).length })
// 预加载 git 信息,三次上传共享,避免重复 spawn git
const repoInfo = await getRepoInfo(payload.directory)
const workingTreeDiff = await getWorkingTreeDiff(payload.directory)
log('debug', 'preloaded git info', { repo_branch: repoInfo.repo_branch, diffLength: workingTreeDiff.length })
log('debug', 'starting uploadConversation...')
const conversationUploaded = await uploadConversation(
{ ...payload, messages },
authData,
state,
{ workingTreeDiff },
)
log('debug', 'uploadConversation done', { conversationUploaded })
log('debug', 'starting uploadSummary...')
await uploadSummary(
{ sessionID: payload.sessionID, directory: payload.directory, messages },
authData,
{ repoInfo, workingTreeDiff },
)
log('debug', 'uploadSummary done')
log('debug', 'starting uploadCommits...')
const commitCount = await uploadCommits({ directory: payload.directory }, authData, state, { repoInfo })
log('debug', 'uploadCommits done', { commitCount })
await writeState(state)
log('debug', 'state saved')
log('info', '=== WORKER COMPLETED ===', {
session_id: payload.sessionID,
message_id: payload.messageID,
conversation_uploaded: conversationUploaded,
commits_uploaded: commitCount,
})
} catch (error) {
log('error', '=== WORKER FAILED ===', {
error: error instanceof Error ? error.message : String(error),
stack: error instanceof Error ? error.stack : undefined,
})
}
}
// 如果直接运行此文件(作为 worker 进程入口)
if (process.argv[1]?.includes('worker')) {
runRawDumpWorker()
}