开源 企业版 高校版 私有云 模力方舟 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
statsCache.ts 13.57 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
import { feature } from 'bun:bundle'
import { randomBytes } from 'crypto'
import { open } from 'fs/promises'
import { join } from 'path'
import type { ModelUsage } from '../entrypoints/agentSdkTypes.js'
import { logForDebugging } from './debug.js'
import { getClaudeConfigHomeDir } from './envUtils.js'
import { errorMessage } from './errors.js'
import { getFsImplementation } from './fsOperations.js'
import { logError } from './log.js'
import { jsonParse, jsonStringify } from './slowOperations.js'
import type { DailyActivity, DailyModelTokens, SessionStats } from './stats.js'
export const STATS_CACHE_VERSION = 3
const MIN_MIGRATABLE_VERSION = 1
const STATS_CACHE_FILENAME = 'stats-cache.json'
/**
* Simple in-memory lock to prevent concurrent cache operations.
*/
let statsCacheLockPromise: Promise<void> | null = null
/**
* Execute a function while holding the stats cache lock.
* Only one operation can hold the lock at a time.
*/
export async function withStatsCacheLock<T>(fn: () => Promise<T>): Promise<T> {
// Wait for any existing lock to be released
while (statsCacheLockPromise) {
await statsCacheLockPromise
}
// Create our lock
let releaseLock: (() => void) | undefined
statsCacheLockPromise = new Promise<void>(resolve => {
releaseLock = resolve
})
try {
return await fn()
} finally {
// Release the lock
statsCacheLockPromise = null
releaseLock?.()
}
}
/**
* Persisted stats cache stored on disk.
* Contains aggregated historical stats that won't change.
* All fields are bounded to prevent unbounded file growth.
*/
export type PersistedStatsCache = {
version: number
// Last date that was fully computed (YYYY-MM-DD format)
// Stats up to and including this date are considered complete
lastComputedDate: string | null
// Daily aggregates needed for heatmap, streaks, trends (bounded by days)
dailyActivity: DailyActivity[]
dailyModelTokens: DailyModelTokens[]
// Model usage aggregated (bounded by number of models)
modelUsage: { [modelName: string]: ModelUsage }
// Session aggregates (replaces unbounded sessionStats array)
totalSessions: number
totalMessages: number
longestSession: SessionStats | null
// First session date ever recorded
firstSessionDate: string | null
// Hour counts for peak hour calculation (bounded to 24 entries)
hourCounts: { [hour: number]: number }
// Speculation time saved across all sessions
totalSpeculationTimeSavedMs: number
// Shot distribution: map of shot count → number of sessions (ant-only)
shotDistribution?: { [shotCount: number]: number }
}
export function getStatsCachePath(): string {
return join(getClaudeConfigHomeDir(), STATS_CACHE_FILENAME)
}
function getEmptyCache(): PersistedStatsCache {
return {
version: STATS_CACHE_VERSION,
lastComputedDate: null,
dailyActivity: [],
dailyModelTokens: [],
modelUsage: {},
totalSessions: 0,
totalMessages: 0,
longestSession: null,
firstSessionDate: null,
hourCounts: {},
totalSpeculationTimeSavedMs: 0,
shotDistribution: {},
}
}
/**
* Migrate an older cache to the current schema.
* Returns null if the version is unknown or too old to migrate.
*
* Preserves historical aggregates that would otherwise be lost when
* transcript files have already aged out past cleanupPeriodDays.
* Pre-migration days may undercount (e.g. v2 lacked subagent tokens);
* we accept that rather than drop the history.
*/
function migrateStatsCache(
parsed: Partial<PersistedStatsCache> & { version: number },
): PersistedStatsCache | null {
if (
typeof parsed.version !== 'number' ||
parsed.version < MIN_MIGRATABLE_VERSION ||
parsed.version > STATS_CACHE_VERSION
) {
return null
}
if (
!Array.isArray(parsed.dailyActivity) ||
!Array.isArray(parsed.dailyModelTokens) ||
typeof parsed.totalSessions !== 'number' ||
typeof parsed.totalMessages !== 'number'
) {
return null
}
return {
version: STATS_CACHE_VERSION,
lastComputedDate: parsed.lastComputedDate ?? null,
dailyActivity: parsed.dailyActivity,
dailyModelTokens: parsed.dailyModelTokens,
modelUsage: parsed.modelUsage ?? {},
totalSessions: parsed.totalSessions,
totalMessages: parsed.totalMessages,
longestSession: parsed.longestSession ?? null,
firstSessionDate: parsed.firstSessionDate ?? null,
hourCounts: parsed.hourCounts ?? {},
totalSpeculationTimeSavedMs: parsed.totalSpeculationTimeSavedMs ?? 0,
// Preserve undefined (don't default to {}) so the SHOT_STATS recompute
// check in loadStatsCache fires for v1/v2 caches that lacked this field.
shotDistribution: parsed.shotDistribution,
}
}
/**
* Load the stats cache from disk.
* Returns an empty cache if the file doesn't exist or is invalid.
*/
export async function loadStatsCache(): Promise<PersistedStatsCache> {
const fs = getFsImplementation()
const cachePath = getStatsCachePath()
try {
const content = await fs.readFile(cachePath, { encoding: 'utf-8' })
const parsed = jsonParse(content) as PersistedStatsCache
// Validate version
if (parsed.version !== STATS_CACHE_VERSION) {
const migrated = migrateStatsCache(parsed)
if (!migrated) {
logForDebugging(
`Stats cache version ${parsed.version} not migratable (expected ${STATS_CACHE_VERSION}), returning empty cache`,
)
return getEmptyCache()
}
logForDebugging(
`Migrated stats cache from v${parsed.version} to v${STATS_CACHE_VERSION}`,
)
// Persist migration so we don't re-migrate on every load.
// aggregateClaudeCodeStats() skips its save when lastComputedDate is
// already current, so without this the on-disk file stays at the old
// version indefinitely.
await saveStatsCache(migrated)
if (feature('SHOT_STATS') && !migrated.shotDistribution) {
logForDebugging(
'Migrated stats cache missing shotDistribution, forcing recomputation',
)
return getEmptyCache()
}
return migrated
}
// Basic validation
if (
!Array.isArray(parsed.dailyActivity) ||
!Array.isArray(parsed.dailyModelTokens) ||
typeof parsed.totalSessions !== 'number' ||
typeof parsed.totalMessages !== 'number'
) {
logForDebugging(
'Stats cache has invalid structure, returning empty cache',
)
return getEmptyCache()
}
// If SHOT_STATS is enabled but cache doesn't have shotDistribution,
// force full recomputation to get historical shot data
if (feature('SHOT_STATS') && !parsed.shotDistribution) {
logForDebugging(
'Stats cache missing shotDistribution, forcing recomputation',
)
return getEmptyCache()
}
return parsed
} catch (error) {
logForDebugging(`Failed to load stats cache: ${errorMessage(error)}`)
return getEmptyCache()
}
}
/**
* Save the stats cache to disk atomically.
* Uses a temp file + rename pattern to prevent corruption.
*/
export async function saveStatsCache(
cache: PersistedStatsCache,
): Promise<void> {
const fs = getFsImplementation()
const cachePath = getStatsCachePath()
const tempPath = `${cachePath}.${randomBytes(8).toString('hex')}.tmp`
try {
// Ensure the directory exists
const configDir = getClaudeConfigHomeDir()
try {
await fs.mkdir(configDir)
} catch {
// Directory already exists or other error - proceed
}
// Write to temp file with fsync for atomic write safety
const content = jsonStringify(cache, null, 2)
const handle = await open(tempPath, 'w', 0o600)
try {
await handle.writeFile(content, { encoding: 'utf-8' })
await handle.sync()
} finally {
await handle.close()
}
// Atomic rename
await fs.rename(tempPath, cachePath)
logForDebugging(
`Stats cache saved successfully (lastComputedDate: ${cache.lastComputedDate})`,
)
} catch (error) {
logError(error)
// Clean up temp file
try {
await fs.unlink(tempPath)
} catch {
// Ignore cleanup errors
}
}
}
/**
* Merge new stats into an existing cache.
* Used when incrementally adding new days to the cache.
*/
export function mergeCacheWithNewStats(
existingCache: PersistedStatsCache,
newStats: {
dailyActivity: DailyActivity[]
dailyModelTokens: DailyModelTokens[]
modelUsage: { [modelName: string]: ModelUsage }
sessionStats: SessionStats[]
hourCounts: { [hour: number]: number }
totalSpeculationTimeSavedMs: number
shotDistribution?: { [shotCount: number]: number }
},
newLastComputedDate: string,
): PersistedStatsCache {
// Merge daily activity - combine by date
const dailyActivityMap = new Map<string, DailyActivity>()
for (const day of existingCache.dailyActivity) {
dailyActivityMap.set(day.date, { ...day })
}
for (const day of newStats.dailyActivity) {
const existing = dailyActivityMap.get(day.date)
if (existing) {
existing.messageCount += day.messageCount
existing.sessionCount += day.sessionCount
existing.toolCallCount += day.toolCallCount
} else {
dailyActivityMap.set(day.date, { ...day })
}
}
// Merge daily model tokens - combine by date
const dailyModelTokensMap = new Map<string, { [model: string]: number }>()
for (const day of existingCache.dailyModelTokens) {
dailyModelTokensMap.set(day.date, { ...day.tokensByModel })
}
for (const day of newStats.dailyModelTokens) {
const existing = dailyModelTokensMap.get(day.date)
if (existing) {
for (const [model, tokens] of Object.entries(day.tokensByModel)) {
existing[model] = (existing[model] || 0) + tokens
}
} else {
dailyModelTokensMap.set(day.date, { ...day.tokensByModel })
}
}
// Merge model usage
const modelUsage = { ...existingCache.modelUsage }
for (const [model, usage] of Object.entries(newStats.modelUsage)) {
if (modelUsage[model]) {
modelUsage[model] = {
inputTokens: modelUsage[model]!.inputTokens + usage.inputTokens,
outputTokens: modelUsage[model]!.outputTokens + usage.outputTokens,
cacheReadInputTokens:
modelUsage[model]!.cacheReadInputTokens + usage.cacheReadInputTokens,
cacheCreationInputTokens:
modelUsage[model]!.cacheCreationInputTokens +
usage.cacheCreationInputTokens,
webSearchRequests:
modelUsage[model]!.webSearchRequests + usage.webSearchRequests,
costUSD: modelUsage[model]!.costUSD + usage.costUSD,
contextWindow: Math.max(
modelUsage[model]!.contextWindow,
usage.contextWindow,
),
maxOutputTokens: Math.max(
modelUsage[model]!.maxOutputTokens,
usage.maxOutputTokens,
),
}
} else {
modelUsage[model] = { ...usage }
}
}
// Merge hour counts
const hourCounts = { ...existingCache.hourCounts }
for (const [hour, count] of Object.entries(newStats.hourCounts)) {
const hourNum = parseInt(hour, 10)
hourCounts[hourNum] = (hourCounts[hourNum] || 0) + count
}
// Update session aggregates
const totalSessions =
existingCache.totalSessions + newStats.sessionStats.length
const totalMessages =
existingCache.totalMessages +
newStats.sessionStats.reduce((sum, s) => sum + s.messageCount, 0)
// Find longest session (compare existing with new)
let longestSession = existingCache.longestSession
for (const session of newStats.sessionStats) {
if (!longestSession || session.duration > longestSession.duration) {
longestSession = session
}
}
// Find first session date
let firstSessionDate = existingCache.firstSessionDate
for (const session of newStats.sessionStats) {
if (!firstSessionDate || session.timestamp < firstSessionDate) {
firstSessionDate = session.timestamp
}
}
const result: PersistedStatsCache = {
version: STATS_CACHE_VERSION,
lastComputedDate: newLastComputedDate,
dailyActivity: Array.from(dailyActivityMap.values()).sort((a, b) =>
a.date.localeCompare(b.date),
),
dailyModelTokens: Array.from(dailyModelTokensMap.entries())
.map(([date, tokensByModel]) => ({ date, tokensByModel }))
.sort((a, b) => a.date.localeCompare(b.date)),
modelUsage,
totalSessions,
totalMessages,
longestSession,
firstSessionDate,
hourCounts,
totalSpeculationTimeSavedMs:
existingCache.totalSpeculationTimeSavedMs +
newStats.totalSpeculationTimeSavedMs,
}
if (feature('SHOT_STATS')) {
const shotDistribution: { [shotCount: number]: number } = {
...(existingCache.shotDistribution || {}),
}
for (const [count, sessions] of Object.entries(
newStats.shotDistribution || {},
)) {
const key = parseInt(count, 10)
shotDistribution[key] = (shotDistribution[key] || 0) + sessions
}
result.shotDistribution = shotDistribution
}
return result
}
/**
* Extract the date portion (YYYY-MM-DD) from a Date object.
*/
export function toDateString(date: Date): string {
const parts = date.toISOString().split('T')
const dateStr = parts[0]
if (!dateStr) {
throw new Error('Invalid ISO date string')
}
return dateStr
}
/**
* Get today's date in YYYY-MM-DD format.
*/
export function getTodayDateString(): string {
return toDateString(new Date())
}
/**
* Get yesterday's date in YYYY-MM-DD format.
*/
export function getYesterdayDateString(): string {
const yesterday = new Date()
yesterday.setDate(yesterday.getDate() - 1)
return toDateString(yesterday)
}
/**
* Check if a date string is before another date string.
* Both should be in YYYY-MM-DD format.
*/
export function isDateBefore(date1: string, date2: string): boolean {
return date1 < date2
}
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 によって変換されたページ (->オリジナル) /