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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

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: share store writer queue · openclaw/openclaw@27...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -5,20 +5,13 @@

55

import fs from "node:fs/promises";

66

import path from "node:path";

77

import { type FileLockOptions, withFileLock } from "../plugin-sdk/file-lock.js";

8+

import {

9+

clearStoreWriterQueuesForTest,

10+

runQueuedStoreWrite,

11+

type StoreWriterQueue,

12+

} from "../shared/store-writer-queue.js";

8139-

type CommitmentsStoreWriterTask = {

10-

fn: () => Promise<unknown>;

11-

resolve: (value: unknown) => void;

12-

reject: (reason: unknown) => void;

13-

};

14-15-

type CommitmentsStoreWriterQueue = {

16-

running: boolean;

17-

pending: CommitmentsStoreWriterTask[];

18-

drainPromise: Promise<void> | null;

19-

};

20-21-

const WRITER_QUEUES = new Map<string, CommitmentsStoreWriterQueue>();

14+

const WRITER_QUEUES = new Map<string, StoreWriterQueue>();

22152316

// Matches src/plugin-sdk/persistent-dedupe.ts so both lock-protected stores share tuning.

2417

const DEFAULT_COMMITMENTS_LOCK_OPTIONS: FileLockOptions = {

@@ -32,67 +25,6 @@ const DEFAULT_COMMITMENTS_LOCK_OPTIONS: FileLockOptions = {

3225

stale: 60_000,

3326

};

342735-

function getOrCreateWriterQueue(storePath: string): CommitmentsStoreWriterQueue {

36-

const existing = WRITER_QUEUES.get(storePath);

37-

if (existing) {

38-

return existing;

39-

}

40-

const created: CommitmentsStoreWriterQueue = {

41-

running: false,

42-

pending: [],

43-

drainPromise: null,

44-

};

45-

WRITER_QUEUES.set(storePath, created);

46-

return created;

47-

}

48-49-

async function drainCommitmentsStoreWriterQueue(storePath: string): Promise<void> {

50-

const queue = WRITER_QUEUES.get(storePath);

51-

if (!queue) {

52-

return;

53-

}

54-

if (queue.drainPromise) {

55-

await queue.drainPromise;

56-

return;

57-

}

58-

queue.running = true;

59-

queue.drainPromise = (async () => {

60-

try {

61-

while (queue.pending.length > 0) {

62-

const task = queue.pending.shift();

63-

if (!task) {

64-

continue;

65-

}

66-

let result: unknown;

67-

let failed: unknown;

68-

let hasFailure = false;

69-

try {

70-

result = await task.fn();

71-

} catch (err) {

72-

hasFailure = true;

73-

failed = err;

74-

}

75-

if (hasFailure) {

76-

task.reject(failed);

77-

continue;

78-

}

79-

task.resolve(result);

80-

}

81-

} finally {

82-

queue.running = false;

83-

queue.drainPromise = null;

84-

if (queue.pending.length === 0) {

85-

WRITER_QUEUES.delete(storePath);

86-

} else {

87-

queueMicrotask(() => {

88-

void drainCommitmentsStoreWriterQueue(storePath);

89-

});

90-

}

91-

}

92-

})();

93-

await queue.drainPromise;

94-

}

95-9628

// The advisory lockfile lives next to the data file; create the parent dir up

9729

// front so acquireFileLock does not ENOENT before the user fn ever runs.

9830

async function ensureCommitmentsStoreDir(storePath: string): Promise<void> {

@@ -103,33 +35,17 @@ export async function runExclusiveCommitmentsStoreWrite<T>(

10335

storePath: string,

10436

fn: () => Promise<T>,

10537

): Promise<T> {

106-

if (!storePath || typeof storePath !== "string") {

107-

throw new Error(

108-

`runExclusiveCommitmentsStoreWrite: storePath must be a non-empty string, got ${JSON.stringify(

109-

storePath,

110-

)}`,

111-

);

112-

}

113-

const queue = getOrCreateWriterQueue(storePath);

114-

return await new Promise<T>((resolve, reject) => {

115-

const task: CommitmentsStoreWriterTask = {

116-

fn: async () => {

117-

await ensureCommitmentsStoreDir(storePath);

118-

return await withFileLock(storePath, DEFAULT_COMMITMENTS_LOCK_OPTIONS, fn);

119-

},

120-

resolve: (value) => resolve(value as T),

121-

reject,

122-

};

123-

queue.pending.push(task);

124-

void drainCommitmentsStoreWriterQueue(storePath);

38+

return await runQueuedStoreWrite({

39+

queues: WRITER_QUEUES,

40+

storePath,

41+

label: "runExclusiveCommitmentsStoreWrite",

42+

fn: async () => {

43+

await ensureCommitmentsStoreDir(storePath);

44+

return await withFileLock(storePath, DEFAULT_COMMITMENTS_LOCK_OPTIONS, fn);

45+

},

12546

});

12647

}

1274812849

export function clearCommitmentsStoreWriterQueuesForTest(): void {

129-

for (const queue of WRITER_QUEUES.values()) {

130-

for (const task of queue.pending) {

131-

task.reject(new Error("commitments store writer queue cleared for test"));

132-

}

133-

}

134-

WRITER_QUEUES.clear();

50+

clearStoreWriterQueuesForTest(WRITER_QUEUES, "commitments store writer queue cleared for test");

13551

}