惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
The GitHub Blog
The GitHub Blog
小众软件
小众软件
美团技术团队
博客园 - 司徒正美
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
J
Java Code Geeks
Last Week in AI
Last Week in AI
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
V
V2EX
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor(infra): centralize stale lock cleanup · openclaw...
steipete · 2026-05-14 · via Recent Commits to openclaw:main

@@ -1,10 +1,14 @@

11

import "../infra/fs-safe-defaults.js";

2-

import fs from "node:fs/promises";

32

import {

43

acquireFileLock as acquireFsSafeFileLock,

54

drainFileLockManagerForTest,

65

resetFileLockManagerForTest,

76

} from "@openclaw/fs-safe/file-lock";

7+

import {

8+

readLockFileOwnerPayload,

9+

removeReportedStaleLockIfStillStale,

10+

shouldRemoveDeadOwnerOrExpiredLock,

11+

} from "../infra/stale-lock-file.js";

812

import { isPidAlive } from "../shared/pid-alive.js";

9131014

export type FileLockOptions = {

@@ -18,11 +22,6 @@ export type FileLockOptions = {

1822

stale: number;

1923

};

202421-

type LockFilePayload = {

22-

pid?: number;

23-

createdAt?: string;

24-

};

25-2625

export type FileLockHandle = {

2726

lockPath: string;

2827

release: () => Promise<void>;

@@ -43,28 +42,13 @@ export type FileLockStaleError = Error & {

43424443

const FILE_LOCK_MANAGER_KEY = "openclaw.plugin-sdk.file-lock";

454446-

type LockFileSnapshot = {

47-

raw: string;

48-

payload: Record<string, unknown> | null;

49-

};

50-51-

function readLockPayload(value: Record<string, unknown> | null): LockFilePayload | null {

52-

if (!value) {

53-

return null;

54-

}

55-

return {

56-

pid: typeof value.pid === "number" ? value.pid : undefined,

57-

createdAt: typeof value.createdAt === "string" ? value.createdAt : undefined,

58-

};

59-

}

60-6145

async function shouldReclaimPluginLock(params: {

6246

lockPath: string;

6347

payload: Record<string, unknown> | null;

6448

staleMs: number;

6549

nowMs: number;

6650

}): Promise<boolean> {

67-

const payload = readLockPayload(params.payload);

51+

const payload = readLockFileOwnerPayload(params.payload);

6852

if (payload?.pid && !isPidAlive(payload.pid)) {

6953

return true;

7054

}

@@ -79,81 +63,6 @@ function isFileLockError(error: unknown, code: string): boolean {

7963

return (error as { code?: unknown } | null)?.code === code;

8064

}

816582-

async function readLockFileSnapshot(lockPath: string): Promise<LockFileSnapshot | null> {

83-

let raw: string;

84-

try {

85-

raw = await fs.readFile(lockPath, "utf8");

86-

} catch (err) {

87-

if ((err as NodeJS.ErrnoException).code === "ENOENT") {

88-

return null;

89-

}

90-

throw err;

91-

}

92-93-

try {

94-

const parsed = JSON.parse(raw) as unknown;

95-

return {

96-

raw,

97-

payload:

98-

parsed && typeof parsed === "object" && !Array.isArray(parsed)

99-

? (parsed as Record<string, unknown>)

100-

: null,

101-

};

102-

} catch {

103-

return { raw, payload: null };

104-

}

105-

}

106-107-

function shouldRemoveReportedStalePluginLock(params: {

108-

payload: Record<string, unknown> | null;

109-

staleMs: number;

110-

nowMs: number;

111-

}): boolean {

112-

const payload = readLockPayload(params.payload);

113-

if (payload?.pid) {

114-

return !isPidAlive(payload.pid);

115-

}

116-

if (payload?.createdAt) {

117-

const createdAt = Date.parse(payload.createdAt);

118-

return !Number.isFinite(createdAt) || params.nowMs - createdAt > params.staleMs;

119-

}

120-

return true;

121-

}

122-123-

async function removeReportedStaleLockIfStillStale(params: {

124-

lockPath: string;

125-

staleMs: number;

126-

}): Promise<boolean> {

127-

const snapshot = await readLockFileSnapshot(params.lockPath);

128-

if (!snapshot) {

129-

return true;

130-

}

131-

if (

132-

!shouldRemoveReportedStalePluginLock({

133-

payload: snapshot.payload,

134-

staleMs: params.staleMs,

135-

nowMs: Date.now(),

136-

})

137-

) {

138-

return false;

139-

}

140-141-

const current = await readLockFileSnapshot(params.lockPath);

142-

if (!current) {

143-

return true;

144-

}

145-

if (current.raw !== snapshot.raw) {

146-

return false;

147-

}

148-149-

try {

150-

await fs.unlink(params.lockPath);

151-

return true;

152-

} catch (err) {

153-

return (err as NodeJS.ErrnoException).code === "ENOENT";

154-

}

155-

}

156-15766

function normalizeLockError(err: unknown): never {

15867

if ((err as { code?: unknown }).code === FILE_LOCK_TIMEOUT_ERROR_CODE) {

15968

throw Object.assign(new Error((err as Error).message), {

@@ -201,7 +110,11 @@ export async function acquireFileLock(

201110

lockPath &&

202111

(await removeReportedStaleLockIfStillStale({

203112

lockPath,

204-

staleMs: options.stale,

113+

shouldRemove: (snapshot) =>

114+

shouldRemoveDeadOwnerOrExpiredLock({

115+

payload: snapshot.payload,

116+

staleMs: options.stale,

117+

}),

205118

}))

206119

) {

207120

continue;