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

推荐订阅源

T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
博客园 - Franky
The Cloudflare Blog
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
Y
Y Combinator Blog
V
V2EX
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
博客园 - 司徒正美
IT之家
IT之家
G
Google Developers Blog
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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(plugins): reuse unchanged runtime mirrors · openclaw/...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -0,0 +1,219 @@

1+

import { createHash } from "node:crypto";

2+

import fs from "node:fs";

3+

import path from "node:path";

4+5+

const BUNDLED_RUNTIME_MIRROR_METADATA_FILE = ".openclaw-runtime-mirror.json";

6+

const BUNDLED_RUNTIME_MIRROR_METADATA_VERSION = 1;

7+8+

type BundledRuntimeMirrorMetadata = {

9+

version: number;

10+

pluginId: string;

11+

sourceRoot: string;

12+

sourceFingerprint: string;

13+

};

14+15+

export function refreshBundledPluginRuntimeMirrorRoot(params: {

16+

pluginId: string;

17+

sourceRoot: string;

18+

targetRoot: string;

19+

tempDirParent?: string;

20+

}): boolean {

21+

if (path.resolve(params.sourceRoot) === path.resolve(params.targetRoot)) {

22+

return false;

23+

}

24+

const metadata = createBundledRuntimeMirrorMetadata(params);

25+

if (isBundledRuntimeMirrorRootFresh(params.targetRoot, metadata)) {

26+

return false;

27+

}

28+

const tempDir = fs.mkdtempSync(

29+

path.join(

30+

params.tempDirParent ?? path.dirname(params.targetRoot),

31+

`.plugin-${sanitizeBundledRuntimeMirrorTempId(params.pluginId)}-`,

32+

),

33+

);

34+

const stagedRoot = path.join(tempDir, "plugin");

35+

try {

36+

copyBundledPluginRuntimeRoot(params.sourceRoot, stagedRoot);

37+

writeBundledRuntimeMirrorMetadata(stagedRoot, metadata);

38+

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

39+

fs.renameSync(stagedRoot, params.targetRoot);

40+

return true;

41+

} finally {

42+

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

43+

}

44+

}

45+46+

export function copyBundledPluginRuntimeRoot(sourceRoot: string, targetRoot: string): void {

47+

if (path.resolve(sourceRoot) === path.resolve(targetRoot)) {

48+

return;

49+

}

50+

fs.mkdirSync(targetRoot, { recursive: true, mode: 0o755 });

51+

for (const entry of fs.readdirSync(sourceRoot, { withFileTypes: true })) {

52+

if (shouldIgnoreBundledRuntimeMirrorEntry(entry.name)) {

53+

continue;

54+

}

55+

const sourcePath = path.join(sourceRoot, entry.name);

56+

const targetPath = path.join(targetRoot, entry.name);

57+

if (entry.isDirectory()) {

58+

copyBundledPluginRuntimeRoot(sourcePath, targetPath);

59+

continue;

60+

}

61+

if (entry.isSymbolicLink()) {

62+

fs.symlinkSync(fs.readlinkSync(sourcePath), targetPath);

63+

continue;

64+

}

65+

if (!entry.isFile()) {

66+

continue;

67+

}

68+

fs.copyFileSync(sourcePath, targetPath);

69+

try {

70+

const sourceMode = fs.statSync(sourcePath).mode;

71+

fs.chmodSync(targetPath, sourceMode | 0o600);

72+

} catch {

73+

// Readable copied files are enough for plugin loading.

74+

}

75+

}

76+

}

77+78+

function createBundledRuntimeMirrorMetadata(params: {

79+

pluginId: string;

80+

sourceRoot: string;

81+

}): BundledRuntimeMirrorMetadata {

82+

return {

83+

version: BUNDLED_RUNTIME_MIRROR_METADATA_VERSION,

84+

pluginId: params.pluginId,

85+

sourceRoot: resolveBundledRuntimeMirrorSourceRootId(params.sourceRoot),

86+

sourceFingerprint: fingerprintBundledRuntimeMirrorSourceRoot(params.sourceRoot),

87+

};

88+

}

89+90+

function isBundledRuntimeMirrorRootFresh(

91+

targetRoot: string,

92+

expected: BundledRuntimeMirrorMetadata,

93+

): boolean {

94+

try {

95+

if (!fs.lstatSync(targetRoot).isDirectory()) {

96+

return false;

97+

}

98+

} catch {

99+

return false;

100+

}

101+

const actual = readBundledRuntimeMirrorMetadata(targetRoot);

102+

return (

103+

actual?.version === expected.version &&

104+

actual.pluginId === expected.pluginId &&

105+

actual.sourceRoot === expected.sourceRoot &&

106+

actual.sourceFingerprint === expected.sourceFingerprint

107+

);

108+

}

109+110+

function readBundledRuntimeMirrorMetadata(targetRoot: string): BundledRuntimeMirrorMetadata | null {

111+

try {

112+

const parsed = JSON.parse(

113+

fs.readFileSync(path.join(targetRoot, BUNDLED_RUNTIME_MIRROR_METADATA_FILE), "utf8"),

114+

) as Partial<BundledRuntimeMirrorMetadata>;

115+

if (

116+

parsed.version !== BUNDLED_RUNTIME_MIRROR_METADATA_VERSION ||

117+

typeof parsed.pluginId !== "string" ||

118+

typeof parsed.sourceRoot !== "string" ||

119+

typeof parsed.sourceFingerprint !== "string"

120+

) {

121+

return null;

122+

}

123+

return parsed as BundledRuntimeMirrorMetadata;

124+

} catch {

125+

return null;

126+

}

127+

}

128+129+

function writeBundledRuntimeMirrorMetadata(

130+

targetRoot: string,

131+

metadata: BundledRuntimeMirrorMetadata,

132+

): void {

133+

fs.writeFileSync(

134+

path.join(targetRoot, BUNDLED_RUNTIME_MIRROR_METADATA_FILE),

135+

`${JSON.stringify(metadata, null, 2)}\n`,

136+

"utf8",

137+

);

138+

}

139+140+

function fingerprintBundledRuntimeMirrorSourceRoot(sourceRoot: string): string {

141+

const hash = createHash("sha256");

142+

hashBundledRuntimeMirrorDirectory(hash, sourceRoot, sourceRoot);

143+

return hash.digest("hex");

144+

}

145+146+

function hashBundledRuntimeMirrorDirectory(

147+

hash: ReturnType<typeof createHash>,

148+

sourceRoot: string,

149+

directory: string,

150+

): void {

151+

const entries = fs

152+

.readdirSync(directory, { withFileTypes: true })

153+

.filter((entry) => !shouldIgnoreBundledRuntimeMirrorEntry(entry.name))

154+

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

155+156+

for (const entry of entries) {

157+

const sourcePath = path.join(directory, entry.name);

158+

const relativePath = path.relative(sourceRoot, sourcePath).replaceAll(path.sep, "/");

159+

const stat = fs.lstatSync(sourcePath, { bigint: true });

160+

if (entry.isDirectory()) {

161+

updateBundledRuntimeMirrorHash(hash, [

162+

"dir",

163+

relativePath,

164+

formatBundledRuntimeMirrorMode(stat.mode),

165+

]);

166+

hashBundledRuntimeMirrorDirectory(hash, sourceRoot, sourcePath);

167+

continue;

168+

}

169+

if (entry.isSymbolicLink()) {

170+

updateBundledRuntimeMirrorHash(hash, [

171+

"symlink",

172+

relativePath,

173+

formatBundledRuntimeMirrorMode(stat.mode),

174+

stat.ctimeNs.toString(),

175+

fs.readlinkSync(sourcePath),

176+

]);

177+

continue;

178+

}

179+

if (!entry.isFile()) {

180+

continue;

181+

}

182+

updateBundledRuntimeMirrorHash(hash, [

183+

"file",

184+

relativePath,

185+

formatBundledRuntimeMirrorMode(stat.mode),

186+

stat.size.toString(),

187+

stat.mtimeNs.toString(),

188+

stat.ctimeNs.toString(),

189+

]);

190+

}

191+

}

192+193+

function updateBundledRuntimeMirrorHash(

194+

hash: ReturnType<typeof createHash>,

195+

fields: readonly string[],

196+

): void {

197+

hash.update(JSON.stringify(fields));

198+

hash.update("\n");

199+

}

200+201+

function formatBundledRuntimeMirrorMode(mode: bigint): string {

202+

return (mode & 0o7777n).toString(8);

203+

}

204+205+

function resolveBundledRuntimeMirrorSourceRootId(sourceRoot: string): string {

206+

try {

207+

return fs.realpathSync.native(sourceRoot);

208+

} catch {

209+

return path.resolve(sourceRoot);

210+

}

211+

}

212+213+

function shouldIgnoreBundledRuntimeMirrorEntry(name: string): boolean {

214+

return name === "node_modules" || name === BUNDLED_RUNTIME_MIRROR_METADATA_FILE;

215+

}

216+217+

function sanitizeBundledRuntimeMirrorTempId(pluginId: string): string {

218+

return pluginId.replaceAll(/[^a-zA-Z0-9._-]/g, "_");

219+

}