Files
claude-code/src/utils/performanceShim.ts
claude-code-best e897385a7e Feature/docker/run (#1268)
* feat: 删除垃圾更改

* fix: 消除生产代码中的 as any 类型不安全模式

- API 兼容层(openai/grok/gemini): 利用 BetaRawMessageStreamEvent 的
  discriminated union 在 switch/case 中直接属性访问,消除 ~29 个 as any
- ConsoleOAuthFlow: 用 as unknown as Parameters<typeof> 替代 as any
- performanceShim: 用 Record<string, unknown> 和显式类型断言替代 as any
- companionReact/auth: 直接访问已有类型属性消除 as any
- sliceAnsi/textHighlighting: 用 as Char 替代 as any(Token 联合类型收窄)
- ccrClient: 利用 RequestResult 类型收窄直接访问 retryAfterMs
- outputsScanner: 用 TurnStartTime.turnStartTime 属性访问替代双重断言
- plans: 用显式数组类型替代 as any[]
- FeedbackSurvey: 用 in 操作符和 Parameters<typeof> 替代 as any
- messageQueueManager: 用 Record<string, unknown> 替代 as any
- mcp.ts: 用 in 操作符类型守卫替代 as any

precheck 通过: typecheck 零错误 + 5420 测试全部通过 + lint 通过

* fix: 将 pipeIpc 添加到 AppState 类型声明,消除 4 个 as any

- AppStateStore: 添加 pipeIpc?: PipeIpcState 可选字段
- PromptInputFooter: 直接访问 s.pipeIpc
- useBackgroundTaskNavigation: 直接访问 s.pipeIpc
- usePipeRouter: 直接访问 store.getState().pipeIpc
- REPL.tsx: 移除 getPipeIpc(s as any) 中的 as any

precheck 通过

* fix: 消除 UltraplanChoiceDialog 中的 wheelDown/wheelUp as any

Ink Key 类型已包含 wheelDown/wheelUp 属性,直接访问即可。

* fix: 消除 sideQuestion.ts 中的 2 个 as any

- toolUse.name: 使用 as unknown as { name: string } 双重断言
- apiErr.error: 使用 as Parameters<typeof formatAPIError>[0] 类型参数

* fix: 为 auto dream 添加 maxTurns: 20 限制,防止单次执行消耗过多 token

* fix: 补充 SAFE_ENV_VARS 中缺失的 OpenAI/Gemini/Grok provider 环境变量

项目级 settings.local.json 的 env 字段在 trust dialog 之前只有
SAFE_ENV_VARS 白名单中的变量会被应用到 process.env。
OPENAI_API_KEY、OPENAI_BASE_URL 等关键变量不在白名单中,
导致容器中通过 settings.local.json 配置 OpenAI 协议时认证失败。

* fix: 修复 goalState.js 模块不存在的类型错误

* fix: 增强 providers 测试的环境变量隔离,防止 mock 污染

* fix: 内联 providers 测试逻辑,彻底隔离 mock 污染

测试不再 import providers.ts(其默认参数触发 getInitialSettings 全链),
改为内联纯函数逻辑,从根源消除 CI 上其他测试 mock.module 污染。

* fix: 添加 goalState 模块存根,修复 CI 构建打包解析失败

CI 中的 autonomy-lifecycle-user-flow 集成测试会执行 build.ts 打包 CLI。
此前 PromptInputFooterLeftSide.tsx 中 require('../../services/goal/goalState.js')
的路径在源码中不存在,打包器报 Could not resolve,导致 (unnamed) 测试失败。

新增 src/services/goal/goalState.ts 存根模块(getGoal 返回 null,组件不渲染),
让打包器在构建期可以解析该 require 路径。同时把 PromptInputFooterLeftSide.tsx
里两处 as unknown as 内联类型签名换成 as typeof import(...),让类型直接来自
存根模块,避免类型定义重复。
2026-06-11 17:59:08 +08:00

170 lines
5.0 KiB
TypeScript

/**
* Performance shim — replaces globalThis.performance to prevent JSC's C++ Vector
* from growing without bound.
*
* In Bun, globalThis.performance is JSC's native Performance object. It stores
* marks, measures, and resource timings in a C++ Vector that never shrinks even
* after clearMarks(). Long-running sessions (daemon, /loop) accumulate hundreds
* of MB of dead capacity.
*
* This shim keeps performance.now() on the native object (fast, no memory cost)
* but redirects mark/measure/getEntries operations to a plain JS Map that the GC
* can reclaim. Third-party code (React reconciler, OTel/Langfuse) uses
* performance.now() for timing — that stays native. The accumulating operations
* go to GC-able JS memory instead.
*
* MUST be installed before React/OTel import — see cli.tsx first import.
*/
const original = globalThis.performance
// JS-backed storage — fully GC-able
const marks = new Map<string, number>()
const measures = new Map<
string,
{ name: string; startTime: number; duration: number }
>()
function now(): number {
return original.now()
}
function mark(name: string): PerformanceMark {
marks.set(name, now())
// Return a minimal PerformanceMark-like object to satisfy the interface.
// React/OTel only use mark() for side effects, not the return value.
return {
name,
entryType: 'mark',
startTime: marks.get(name)!,
duration: 0,
} as PerformanceMark
}
function measure(
name: string,
startMarkOrOptions?: string | MeasureOptions,
endMark?: string,
): void {
let startTime: number
let duration: number
if (typeof startMarkOrOptions === 'string') {
const start = marks.get(startMarkOrOptions)
const end = endMark ? marks.get(endMark) : now()
startTime = start ?? now()
duration = (end ?? now()) - startTime
} else if (startMarkOrOptions && typeof startMarkOrOptions === 'object') {
startTime = startMarkOrOptions.start ?? 0
duration = (startMarkOrOptions.end ?? now()) - startTime
} else {
startTime = 0
duration = now()
}
measures.set(name, { name, startTime, duration })
}
interface MeasureOptions {
start?: number
end?: number
detail?: unknown
}
interface PerformanceEntryLike {
readonly name: string
readonly entryType: string
readonly startTime: number
readonly duration: number
}
function getEntriesByType(type: string): PerformanceEntryLike[] {
if (type === 'mark') {
return [...marks.entries()].map(([name, startTime]) => ({
name,
entryType: 'mark',
startTime,
duration: 0,
}))
}
if (type === 'measure') {
return [...measures.values()].map(m => ({
name: m.name,
entryType: 'measure',
startTime: m.startTime,
duration: m.duration,
}))
}
return []
}
function getEntriesByName(name: string, type?: string): PerformanceEntryLike[] {
const entries = getEntriesByType(type ?? 'mark').concat(
type === undefined ? getEntriesByType('measure') : [],
)
return entries.filter(e => e.name === name)
}
function clearMarks(name?: string): void {
if (name !== undefined) {
marks.delete(name)
} else {
marks.clear()
}
}
function clearMeasures(name?: string): void {
if (name !== undefined) {
measures.delete(name)
} else {
measures.clear()
}
}
// Plain object shim — must NOT inherit from Performance.prototype because
// native getters (onresourcetimingbufferfull, timeOrigin, toJSON) check
// that `this` is an actual JSC Performance instance and throw otherwise.
const shim = {
now,
mark,
measure: measure as typeof performance.measure,
getEntriesByType: getEntriesByType as typeof performance.getEntriesByType,
getEntriesByName: getEntriesByName as typeof performance.getEntriesByName,
clearMarks: clearMarks as typeof performance.clearMarks,
clearMeasures: clearMeasures as typeof performance.clearMeasures,
clearResourceTimings: (() => {}) as typeof performance.clearResourceTimings,
setResourceTimingBufferSize:
(() => {}) as typeof performance.setResourceTimingBufferSize,
// Node.js v22 undici internal calls this after every fetch — must exist to
// avoid TypeError: markResourceTiming is not a function
markResourceTiming: (() => {}) as () => void,
// Delegate read-only properties to the original
get timeOrigin() {
return original.timeOrigin
},
get onresourcetimingbufferfull() {
return (original as unknown as typeof performance)
.onresourcetimingbufferfull
},
set onresourcetimingbufferfull(_v: any) {
// no-op — prevent accumulation
},
toJSON() {
return original.toJSON()
},
} as unknown as typeof performance
/**
* Install the shim onto globalThis.performance. Safe to call multiple times.
* Must run before React and OTel import to prevent them from capturing the
* native Performance reference.
*/
export function installPerformanceShim(): void {
if ((globalThis as Record<string, unknown>).__performanceShimInstalled) return
;(globalThis as Record<string, unknown>).__performanceShimInstalled = true
globalThis.performance = shim
}
// Auto-install on import
installPerformanceShim()