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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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: bridge ACP metadata to session accessors (#96195) · ...
jalehman · 2026-06-24 · via Recent Commits to openclaw:main

@@ -4,7 +4,11 @@ import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/st

44

import type { Insertable, Selectable } from "kysely";

55

import { getRuntimeConfig } from "../../config/config.js";

66

import { resolveStorePath } from "../../config/sessions/paths.js";

7-

import { loadSessionStore } from "../../config/sessions/store-load.js";

7+

import {

8+

listSessionEntries,

9+

patchSessionEntryWithKey,

10+

type SessionEntrySummary,

11+

} from "../../config/sessions/session-accessor.js";

812

import {

913

mergeSessionEntry,

1014

type AcpSessionRuntimeOptions,

@@ -43,30 +47,24 @@ type AcpSessionsTable = OpenClawStateKyselyDatabase["acp_sessions"];

4347

type AcpSessionMetaDatabase = Pick<OpenClawStateKyselyDatabase, "acp_sessions">;

4448

type AcpSessionRow = Selectable<AcpSessionsTable>;

454946-

let sessionStoreRuntimePromise:

47-

| Promise<typeof import("../../config/sessions/store.runtime.js")>

48-

| undefined;

49-50-

function loadSessionStoreRuntime() {

51-

sessionStoreRuntimePromise ??= import("../../config/sessions/store.runtime.js");

52-

return sessionStoreRuntimePromise;

53-

}

54-55-

function resolveStoreSessionKey(store: Record<string, SessionEntry>, sessionKey: string): string {

50+

function resolveStoreSessionKey(

51+

entries: readonly SessionEntrySummary[],

52+

sessionKey: string,

53+

): string {

5654

const normalized = sessionKey.trim();

5755

if (!normalized) {

5856

return "";

5957

}

60-

if (store[normalized]) {

58+

if (entries.some((entry) => entry.sessionKey === normalized)) {

6159

return normalized;

6260

}

6361

const lower = normalizeLowercaseStringOrEmpty(normalized);

64-

if (store[lower]) {

62+

if (entries.some((entry) => entry.sessionKey === lower)) {

6563

return lower;

6664

}

67-

for (const key of Object.keys(store)) {

68-

if (normalizeLowercaseStringOrEmpty(key) === lower) {

69-

return key;

65+

for (const entry of entries) {

66+

if (normalizeLowercaseStringOrEmpty(entry.sessionKey) === lower) {

67+

return entry.sessionKey;

7068

}

7169

}

7270

return lower;

@@ -371,12 +369,13 @@ function readSessionEntryFromStore(params: {

371369

env: params.env,

372370

});

373371

try {

374-

const store = loadSessionStore(

372+

const entries = listSessionEntries({

375373

storePath,

376-

params.clone === false ? { clone: false } : undefined,

377-

);

378-

const storeSessionKey = resolveStoreSessionKey(store, params.sessionKey);

379-

return { cfg, storePath, storeSessionKey, entry: store[storeSessionKey] };

374+

...(params.clone === false ? { clone: false } : {}),

375+

});

376+

const storeSessionKey = resolveStoreSessionKey(entries, params.sessionKey);

377+

const entry = entries.find((candidate) => candidate.sessionKey === storeSessionKey)?.entry;

378+

return { cfg, storePath, storeSessionKey, entry };

380379

} catch {

381380

return {

382381

cfg,

@@ -437,14 +436,19 @@ export async function listAcpSessionEntries(params: {

437436

cfg,

438437

env: params.env,

439438

});

440-

let store: Record<string, SessionEntry>;

439+

let sessionEntries: SessionEntrySummary[];

441440

try {

442-

store = loadSessionStore(storePath, params.clone === false ? { clone: false } : undefined);

441+

sessionEntries = listSessionEntries({

442+

storePath,

443+

...(params.clone === false ? { clone: false } : {}),

444+

});

443445

} catch {

444446

continue;

445447

}

446-

const storeSessionKey = resolveStoreSessionKey(store, sessionKey);

447-

const entry = store[storeSessionKey];

448+

const storeSessionKey = resolveStoreSessionKey(sessionEntries, sessionKey);

449+

const entry = sessionEntries.find(

450+

(candidate) => candidate.sessionKey === storeSessionKey,

451+

)?.entry;

448452

if (!entry || !acpSessionRowMatchesEntry(row, entry)) {

449453

continue;

450454

}

@@ -518,63 +522,86 @@ export async function upsertAcpSessionMeta(params: {

518522

current,

519523

current ? mergeAcpForReturn(preparedEntry, current) : entry,

520524

);

521-

if (nextMeta === null) {

522-

executeSqliteQuerySync(

523-

database.db,

524-

getAcpSessionKysely(database.db)

525-

.deleteFrom("acp_sessions")

526-

.where("session_key", "=", storageSessionKey),

527-

);

528-

return;

529-

}

530-

if (nextMeta !== undefined) {

531-

upsertAcpSessionMetaRow(

532-

database.db,

533-

bindAcpSessionMeta({

534-

sessionKey: storageSessionKey,

535-

sessionId: preparedEntry.sessionId,

536-

meta: nextMeta,

537-

updatedAt,

538-

}),

539-

);

540-

}

541525

},

542526

{ env: params.env, path: params.databasePath },

543527

);

544-

if (nextMeta === undefined) {

528+

const metaToPersist = nextMeta;

529+

if (metaToPersist === undefined) {

545530

return current ? mergeAcpForReturn(entry, current) : (entry ?? null);

546531

}

547-

if (nextMeta === null) {

548-

if (!entry) {

549-

return null;

550-

}

551-

const { updateSessionStore } = await loadSessionStoreRuntime();

552-

return await updateSessionStore(

553-

storeEntry.storePath,

554-

(store) => {

555-

const storeSessionKey = resolveStoreSessionKey(store, storageSessionKey);

556-

const next = { ...(store[storeSessionKey] ?? entry) };

557-

delete next.acp;

558-

store[storeSessionKey] = next;

559-

return next;

532+

if (metaToPersist === null) {

533+

const patched = entry

534+

? await patchSessionEntryWithKey(

535+

{ storePath: storeEntry.storePath, sessionKey: storageSessionKey },

536+

(currentEntry) => {

537+

const next = { ...currentEntry };

538+

delete next.acp;

539+

return next;

540+

},

541+

{

542+

...sessionStoreUpdateOptions({ ...params, sessionKey: storageSessionKey }),

543+

replaceEntry: true,

544+

},

545+

)

546+

: null;

547+

runOpenClawStateWriteTransaction(

548+

(database) => {

549+

const sessionKeysToDelete = new Set([storageSessionKey]);

550+

if (patched?.sessionKey) {

551+

sessionKeysToDelete.add(patched.sessionKey);

552+

}

553+

for (const key of sessionKeysToDelete) {

554+

executeSqliteQuerySync(

555+

database.db,

556+

getAcpSessionKysely(database.db)

557+

.deleteFrom("acp_sessions")

558+

.where("session_key", "=", key),

559+

);

560+

}

560561

},

561-

sessionStoreUpdateOptions({ ...params, sessionKey: storageSessionKey }),

562+

{ env: params.env, path: params.databasePath },

562563

);

564+

return patched?.entry ?? null;

563565

}

564-

const { updateSessionStore } = await loadSessionStoreRuntime();

565-

const persisted = await updateSessionStore(

566-

storeEntry.storePath,

567-

(store) => {

568-

const storeSessionKey = resolveStoreSessionKey(store, storageSessionKey);

569-

const next = mergeSessionEntry(store[storeSessionKey], {

570-

sessionId: preparedEntry?.sessionId,

566+

const persisted = await patchSessionEntryWithKey(

567+

{ storePath: storeEntry.storePath, sessionKey: storageSessionKey },

568+

(currentEntry) => {

569+

const next = mergeSessionEntry(currentEntry, {

571570

updatedAt,

572571

});

573572

delete next.acp;

574-

store[storeSessionKey] = next;

575573

return next;

576574

},

577-

sessionStoreUpdateOptions({ ...params, sessionKey: storageSessionKey }),

575+

{

576+

...sessionStoreUpdateOptions({ ...params, sessionKey: storageSessionKey }),

577+

fallbackEntry: preparedEntry,

578+

replaceEntry: true,

579+

},

580+

);

581+

if (!persisted) {

582+

return null;

583+

}

584+

runOpenClawStateWriteTransaction(

585+

(database) => {

586+

upsertAcpSessionMetaRow(

587+

database.db,

588+

bindAcpSessionMeta({

589+

sessionKey: persisted.sessionKey,

590+

sessionId: persisted.entry.sessionId,

591+

meta: metaToPersist,

592+

updatedAt,

593+

}),

594+

);

595+

if (persisted.sessionKey !== storageSessionKey) {

596+

executeSqliteQuerySync(

597+

database.db,

598+

getAcpSessionKysely(database.db)

599+

.deleteFrom("acp_sessions")

600+

.where("session_key", "=", storageSessionKey),

601+

);

602+

}

603+

},

604+

{ env: params.env, path: params.databasePath },

578605

);

579-

return mergeAcpForReturn(persisted, nextMeta);

606+

return mergeAcpForReturn(persisted.entry, metaToPersist);

580607

}