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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
月光博客
月光博客
腾讯CDC
Engineering at Meta
Engineering at Meta
博客园 - Franky
Vercel News
Vercel News
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
GbyAI
GbyAI
B
Blog
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS 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
fix: serialize bundled runtime dependency repair · opencl...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -49,6 +49,11 @@ const RETAINED_RUNTIME_DEPS_MANIFEST = ".openclaw-runtime-deps.json";

4949

// to the plugin root. Source-checkout installs already have their own cache

5050

// path and keep using it.

5151

const PLUGIN_ROOT_INSTALL_STAGE_DIR = ".openclaw-install-stage";

52+

const BUNDLED_RUNTIME_DEPS_LOCK_DIR = ".openclaw-runtime-deps.lock";

53+

const BUNDLED_RUNTIME_DEPS_LOCK_OWNER_FILE = "owner.json";

54+

const BUNDLED_RUNTIME_DEPS_LOCK_WAIT_MS = 100;

55+

const BUNDLED_RUNTIME_DEPS_LOCK_TIMEOUT_MS = 5 * 60_000;

56+

const BUNDLED_RUNTIME_DEPS_LOCK_STALE_MS = 10 * 60_000;

52575358

export type BundledRuntimeDepsNpmRunner = {

5459

command: string;

@@ -170,6 +175,82 @@ function readJsonObject(filePath: string): JsonObject | null {

170175

}

171176

}

172177178+

function sleepSync(ms: number): void {

179+

Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms);

180+

}

181+182+

function isProcessAlive(pid: number): boolean {

183+

if (!Number.isInteger(pid) || pid <= 0) {

184+

return false;

185+

}

186+

try {

187+

process.kill(pid, 0);

188+

return true;

189+

} catch {

190+

return false;

191+

}

192+

}

193+194+

function readRuntimeDepsLockOwner(lockDir: string): { pid?: number; createdAtMs?: number } {

195+

const owner = readJsonObject(path.join(lockDir, BUNDLED_RUNTIME_DEPS_LOCK_OWNER_FILE));

196+

return {

197+

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

198+

createdAtMs: typeof owner?.createdAtMs === "number" ? owner.createdAtMs : undefined,

199+

};

200+

}

201+202+

function removeRuntimeDepsLockIfStale(lockDir: string, nowMs: number): boolean {

203+

const owner = readRuntimeDepsLockOwner(lockDir);

204+

const createdAtMs = owner.createdAtMs;

205+

const staleByTime =

206+

typeof createdAtMs === "number" && nowMs - createdAtMs > BUNDLED_RUNTIME_DEPS_LOCK_STALE_MS;

207+

const staleByPid = typeof owner.pid === "number" && !isProcessAlive(owner.pid);

208+

if (!staleByTime && !staleByPid) {

209+

return false;

210+

}

211+

try {

212+

fs.rmSync(lockDir, { recursive: true, force: true });

213+

return true;

214+

} catch {

215+

return false;

216+

}

217+

}

218+219+

function withBundledRuntimeDepsInstallRootLock<T>(installRoot: string, run: () => T): T {

220+

fs.mkdirSync(installRoot, { recursive: true });

221+

const lockDir = path.join(installRoot, BUNDLED_RUNTIME_DEPS_LOCK_DIR);

222+

const startedAt = Date.now();

223+

let locked = false;

224+

while (!locked) {

225+

try {

226+

fs.mkdirSync(lockDir);

227+

fs.writeFileSync(

228+

path.join(lockDir, BUNDLED_RUNTIME_DEPS_LOCK_OWNER_FILE),

229+

`${JSON.stringify({ pid: process.pid, createdAtMs: Date.now() }, null, 2)}\n`,

230+

"utf8",

231+

);

232+

locked = true;

233+

} catch (error) {

234+

const code = (error as NodeJS.ErrnoException).code;

235+

if (code !== "EEXIST") {

236+

throw error;

237+

}

238+

removeRuntimeDepsLockIfStale(lockDir, Date.now());

239+

if (Date.now() - startedAt > BUNDLED_RUNTIME_DEPS_LOCK_TIMEOUT_MS) {

240+

throw new Error(`Timed out waiting for bundled runtime deps lock at ${lockDir}`, {

241+

cause: error,

242+

});

243+

}

244+

sleepSync(BUNDLED_RUNTIME_DEPS_LOCK_WAIT_MS);

245+

}

246+

}

247+

try {

248+

return run();

249+

} finally {

250+

fs.rmSync(lockDir, { recursive: true, force: true });

251+

}

252+

}

253+173254

function collectRuntimeDeps(packageJson: JsonObject): Record<string, unknown> {

174255

return {

175256

...(packageJson.dependencies as Record<string, unknown> | undefined),

@@ -935,67 +1016,69 @@ export function ensureBundledPluginRuntimeDeps(params: {

9351016

const installRoot = resolveBundledRuntimeDependencyInstallRoot(params.pluginRoot, {

9361017

env: params.env,

9371018

});

938-

const persistRetainedManifest = shouldPersistRetainedRuntimeDepsManifest({

939-

pluginRoot: params.pluginRoot,

940-

installRoot,

941-

});

942-

if (!persistRetainedManifest) {

943-

removeRetainedRuntimeDepsManifest(installRoot);

944-

}

945-

const dependencySpecs = deps

946-

.map((dep) => `${dep.name}@${dep.version}`)

947-

.toSorted((left, right) => left.localeCompare(right));

948-

const missingSpecs = deps

949-

.filter((dep) => !hasDependencySentinel([installRoot], dep))

950-

.map((dep) => `${dep.name}@${dep.version}`)

951-

.toSorted((left, right) => left.localeCompare(right));

952-

if (missingSpecs.length === 0) {

953-

return { installedSpecs: [], retainSpecs: [] };

954-

}

955-

const retainedManifestSpecs = persistRetainedManifest

956-

? readRetainedRuntimeDepsManifest(installRoot)

957-

: [];

958-

const installSpecs = [

959-

...new Set([...(params.retainSpecs ?? []), ...retainedManifestSpecs, ...dependencySpecs]),

960-

].toSorted((left, right) => left.localeCompare(right));

961-

const cacheDir = resolveSourceCheckoutRuntimeDepsCacheDir({

962-

pluginId: params.pluginId,

963-

pluginRoot: params.pluginRoot,

964-

installSpecs,

965-

});

966-

const isPluginRootInstall = path.resolve(installRoot) === path.resolve(params.pluginRoot);

967-

const sourceCheckoutCacheStage =

968-

cacheDir &&

969-

isPluginRootInstall &&

970-

resolveSourceCheckoutBundledPluginPackageRoot(params.pluginRoot)

971-

? cacheDir

972-

: undefined;

973-

const installExecutionRoot =

974-

sourceCheckoutCacheStage ??

975-

(isPluginRootInstall ? path.join(installRoot, PLUGIN_ROOT_INSTALL_STAGE_DIR) : undefined);

976-

if (

977-

restoreSourceCheckoutRuntimeDepsFromCache({

978-

cacheDir,

979-

deps,

1019+

return withBundledRuntimeDepsInstallRootLock(installRoot, () => {

1020+

const persistRetainedManifest = shouldPersistRetainedRuntimeDepsManifest({

1021+

pluginRoot: params.pluginRoot,

9801022

installRoot,

981-

})

982-

) {

983-

return { installedSpecs: [], retainSpecs: [] };

984-

}

1023+

});

1024+

if (!persistRetainedManifest) {

1025+

removeRetainedRuntimeDepsManifest(installRoot);

1026+

}

1027+

const dependencySpecs = deps

1028+

.map((dep) => `${dep.name}@${dep.version}`)

1029+

.toSorted((left, right) => left.localeCompare(right));

1030+

const missingSpecs = deps

1031+

.filter((dep) => !hasDependencySentinel([installRoot], dep))

1032+

.map((dep) => `${dep.name}@${dep.version}`)

1033+

.toSorted((left, right) => left.localeCompare(right));

1034+

if (missingSpecs.length === 0) {

1035+

return { installedSpecs: [], retainSpecs: [] };

1036+

}

1037+

const retainedManifestSpecs = persistRetainedManifest

1038+

? readRetainedRuntimeDepsManifest(installRoot)

1039+

: [];

1040+

const installSpecs = [

1041+

...new Set([...(params.retainSpecs ?? []), ...retainedManifestSpecs, ...dependencySpecs]),

1042+

].toSorted((left, right) => left.localeCompare(right));

1043+

const cacheDir = resolveSourceCheckoutRuntimeDepsCacheDir({

1044+

pluginId: params.pluginId,

1045+

pluginRoot: params.pluginRoot,

1046+

installSpecs,

1047+

});

1048+

const isPluginRootInstall = path.resolve(installRoot) === path.resolve(params.pluginRoot);

1049+

const sourceCheckoutCacheStage =

1050+

cacheDir &&

1051+

isPluginRootInstall &&

1052+

resolveSourceCheckoutBundledPluginPackageRoot(params.pluginRoot)

1053+

? cacheDir

1054+

: undefined;

1055+

const installExecutionRoot =

1056+

sourceCheckoutCacheStage ??

1057+

(isPluginRootInstall ? path.join(installRoot, PLUGIN_ROOT_INSTALL_STAGE_DIR) : undefined);

1058+

if (

1059+

restoreSourceCheckoutRuntimeDepsFromCache({

1060+

cacheDir,

1061+

deps,

1062+

installRoot,

1063+

})

1064+

) {

1065+

return { installedSpecs: [], retainSpecs: [] };

1066+

}

9851067986-

const install =

987-

params.installDeps ??

988-

((installParams) =>

989-

installBundledRuntimeDeps({

990-

installRoot: installParams.installRoot,

991-

installExecutionRoot: installParams.installExecutionRoot,

992-

missingSpecs: installParams.installSpecs ?? installParams.missingSpecs,

993-

env: params.env,

994-

}));

995-

install({ installRoot, installExecutionRoot, missingSpecs, installSpecs });

996-

if (persistRetainedManifest) {

997-

writeRetainedRuntimeDepsManifest(installRoot, installSpecs);

998-

}

999-

storeSourceCheckoutRuntimeDepsCache({ cacheDir, installRoot });

1000-

return { installedSpecs: missingSpecs, retainSpecs: installSpecs };

1068+

const install =

1069+

params.installDeps ??

1070+

((installParams) =>

1071+

installBundledRuntimeDeps({

1072+

installRoot: installParams.installRoot,

1073+

installExecutionRoot: installParams.installExecutionRoot,

1074+

missingSpecs: installParams.installSpecs ?? installParams.missingSpecs,

1075+

env: params.env,

1076+

}));

1077+

install({ installRoot, installExecutionRoot, missingSpecs, installSpecs });

1078+

if (persistRetainedManifest) {

1079+

writeRetainedRuntimeDepsManifest(installRoot, installSpecs);

1080+

}

1081+

storeSourceCheckoutRuntimeDepsCache({ cacheDir, installRoot });

1082+

return { installedSpecs: missingSpecs, retainSpecs: installSpecs };

1083+

});

10011084

}