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

推荐订阅源

U
Unit 42
T
The Blog of Author Tim Ferriss
H
Help Net Security
博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
博客园 - 聂微东
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog
Engineering at Meta
Engineering at Meta
V
V2EX
Hugging Face - Blog
Hugging Face - 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(state): remove unused audit writers · openclaw/o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
11

// OpenClaw state database manages shared persisted state and migrations.

2-

import { randomUUID } from "node:crypto";

32

import { existsSync, mkdirSync } from "node:fs";

43

import path from "node:path";

54

import type { DatabaseSync } from "node:sqlite";

@@ -50,56 +49,14 @@ export type OpenClawStateDatabaseOptions = {

5049

path?: string;

5150

};

525153-

/** Status stored for a state migration run. */

54-

export type OpenClawMigrationRunStatus = "completed" | "warning" | "failed";

55-

/** Status stored for a state backup run. */

56-

export type OpenClawBackupRunStatus = "completed" | "failed";

57-5852

export type OpenClawStateDatabaseSchemaMigration = {

5953

kind: "agent-databases-composite-primary-key";

6054

path: string;

6155

};

625663-

/** Input for recording one state migration run summary. */

64-

export type RecordOpenClawStateMigrationRunOptions = OpenClawStateDatabaseOptions & {

65-

id?: string;

66-

startedAt: number;

67-

finishedAt?: number;

68-

status: OpenClawMigrationRunStatus;

69-

report: Record<string, unknown>;

70-

};

71-72-

/** Input for recording one migrated source file/table pair. */

73-

export type RecordOpenClawStateMigrationSourceOptions = OpenClawStateDatabaseOptions & {

74-

runId: string;

75-

migrationKind: string;

76-

sourceKey: string;

77-

sourcePath: string;

78-

targetTable: string;

79-

status: OpenClawMigrationRunStatus;

80-

importedAt: number;

81-

removedSource: boolean;

82-

sourceSha256?: string;

83-

sourceSizeBytes?: number;

84-

sourceRecordCount?: number;

85-

report: Record<string, unknown>;

86-

};

87-88-

/** Input for recording one state backup archive. */

89-

export type RecordOpenClawStateBackupRunOptions = OpenClawStateDatabaseOptions & {

90-

id?: string;

91-

createdAt: number;

92-

archivePath: string;

93-

status: OpenClawBackupRunStatus;

94-

manifest: Record<string, unknown>;

95-

};

96-9757

const cachedDatabases = new Map<string, OpenClawStateDatabase>();

985899-

type OpenClawStateMetadataDatabase = Pick<

100-

OpenClawStateKyselyDatabase,

101-

"backup_runs" | "migration_runs" | "migration_sources" | "schema_meta"

102-

>;

59+

type OpenClawStateMetadataDatabase = Pick<OpenClawStateKyselyDatabase, "schema_meta">;

1036010461

function readSqliteUserVersion(db: DatabaseSync): number {

10562

const row = db.prepare("PRAGMA user_version").get() as { user_version?: unknown } | undefined;

@@ -964,89 +921,6 @@ export function runOpenClawStateWriteTransaction<T>(

964921

return result;

965922

}

966923967-

/** Record a state migration run and return its stable run id. */

968-

export function recordOpenClawStateMigrationRun(

969-

options: RecordOpenClawStateMigrationRunOptions,

970-

): string {

971-

const id = options.id ?? randomUUID();

972-

runOpenClawStateWriteTransaction((database) => {

973-

const db = getNodeSqliteKysely<OpenClawStateMetadataDatabase>(database.db);

974-

executeSqliteQuerySync(

975-

database.db,

976-

db.insertInto("migration_runs").values({

977-

id,

978-

started_at: options.startedAt,

979-

finished_at: options.finishedAt ?? null,

980-

status: options.status,

981-

report_json: JSON.stringify(options.report),

982-

}),

983-

);

984-

}, options);

985-

return id;

986-

}

987-988-

/** Upsert the per-source audit row for a state migration. */

989-

export function recordOpenClawStateMigrationSource(

990-

options: RecordOpenClawStateMigrationSourceOptions,

991-

): void {

992-

runOpenClawStateWriteTransaction((database) => {

993-

const db = getNodeSqliteKysely<OpenClawStateMetadataDatabase>(database.db);

994-

executeSqliteQuerySync(

995-

database.db,

996-

db

997-

.insertInto("migration_sources")

998-

.values({

999-

source_key: options.sourceKey,

1000-

migration_kind: options.migrationKind,

1001-

source_path: options.sourcePath,

1002-

target_table: options.targetTable,

1003-

source_sha256: options.sourceSha256 ?? null,

1004-

source_size_bytes: options.sourceSizeBytes ?? null,

1005-

source_record_count: options.sourceRecordCount ?? null,

1006-

last_run_id: options.runId,

1007-

status: options.status,

1008-

imported_at: options.importedAt,

1009-

removed_source: options.removedSource ? 1 : 0,

1010-

report_json: JSON.stringify(options.report),

1011-

})

1012-

.onConflict((conflict) =>

1013-

conflict.column("source_key").doUpdateSet({

1014-

migration_kind: (eb) => eb.ref("excluded.migration_kind"),

1015-

source_path: (eb) => eb.ref("excluded.source_path"),

1016-

target_table: (eb) => eb.ref("excluded.target_table"),

1017-

source_sha256: (eb) => eb.ref("excluded.source_sha256"),

1018-

source_size_bytes: (eb) => eb.ref("excluded.source_size_bytes"),

1019-

source_record_count: (eb) => eb.ref("excluded.source_record_count"),

1020-

last_run_id: (eb) => eb.ref("excluded.last_run_id"),

1021-

status: (eb) => eb.ref("excluded.status"),

1022-

imported_at: (eb) => eb.ref("excluded.imported_at"),

1023-

removed_source: (eb) => eb.ref("excluded.removed_source"),

1024-

report_json: (eb) => eb.ref("excluded.report_json"),

1025-

}),

1026-

),

1027-

);

1028-

}, options);

1029-

}

1030-1031-

/** Record a state backup archive and return its stable backup id. */

1032-

export function recordOpenClawStateBackupRun(options: RecordOpenClawStateBackupRunOptions): string {

1033-

const id = options.id ?? randomUUID();

1034-

runOpenClawStateWriteTransaction((database) => {

1035-

const db = getNodeSqliteKysely<OpenClawStateMetadataDatabase>(database.db);

1036-

executeSqliteQuerySync(

1037-

database.db,

1038-

db.insertInto("backup_runs").values({

1039-

id,

1040-

created_at: options.createdAt,

1041-

archive_path: options.archivePath,

1042-

status: options.status,

1043-

manifest_json: JSON.stringify(options.manifest),

1044-

}),

1045-

);

1046-

}, options);

1047-

return id;

1048-

}

1049-1050924

/** Close all cached shared state database handles. */

1051925

export function closeOpenClawStateDatabase(): void {

1052926

for (const database of cachedDatabases.values()) {