File size: 27,392 Bytes
76289e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 | // Plugin state SQLite helpers persist plugin state in the OpenClaw state database.
import type { DatabaseSync } from "node:sqlite";
import { err, ok, type Result } from "@openclaw/normalization-core/result";
import { executeSqliteQuerySync } from "../infra/kysely-sync.js";
import { requireNodeSqlite } from "../infra/node-sqlite.js";
import { isSqliteCorruptionError } from "../infra/sqlite-error-diagnostics.js";
import { isTerminalSqliteIntegrityError } from "../infra/sqlite-integrity.js";
import { normalizeSqliteNumber } from "../infra/sqlite-number.js";
import { runSqliteImmediateTransactionSync } from "../infra/sqlite-transaction.js";
import { isSqliteSchemaVersionError } from "../infra/sqlite-user-version.js";
import { resolveDatabasePath } from "../state/openclaw-state-db-maintenance.js";
import {
hasOpenClawStateTablesBeyondStartupCheckpoint,
withExistingOpenClawStateDatabaseReadOnly,
} from "../state/openclaw-state-db-readonly.js";
import {
closeOpenClawStateDatabase,
closeOpenClawStateDatabaseAsync,
isOpenClawStateDatabaseOpen,
openOpenClawStateDatabase,
type OpenClawStateDatabaseOptions,
runOpenClawStateWriteTransaction,
} from "../state/openclaw-state-db.js";
import { resolveOpenClawStateSqlitePath } from "../state/openclaw-state-db.paths.js";
import {
createPluginStateError,
resolvePluginStateExpiresAtMs,
parseStoredJson,
getPluginStateKysely,
bindPluginStateEntry,
upsertPluginStateEntry,
selectPluginStateEntry,
selectPluginStateEntriesInKeyRange,
deletePluginStateEntry,
deleteExpiredPluginStateEntries,
countLivePluginStateEntries,
countLivePluginStateNamespaceEntries,
readPluginStateRetention,
enforcePostRegisterLimits,
assertCanInsertPluginStateEntry,
registerPluginStateEntry,
lookupPluginStateEntry,
type PluginStateDatabase,
type PluginStateRegisterEntryParams,
type PluginStateReadRow,
} from "./plugin-state-store.kernel.js";
import {
clearPluginStateNamespace,
consumePluginStateEntry,
registerPluginStateEntryIfAbsent,
} from "./plugin-state-store.mutations.js";
import {
listPluginStateEntries,
lookupPluginStateEntries,
validatePluginStateKeyRange,
type PluginStateKeyRangeParams,
} from "./plugin-state-store.reads.js";
import {
PluginStateStoreError,
type PluginStateEntry,
type PluginStateOverflowPolicy,
type PluginStateStoreErrorCode,
type PluginStateStoreOperation,
type PluginStateStoreProbeResult,
type PluginStateStoreProbeStep,
} from "./plugin-state-store.types.js";
// Plugin-wide fuse only; namespace maxEntries still owns normal cache eviction.
export { MAX_PLUGIN_STATE_VALUE_BYTES } from "./plugin-state-store.kernel.js";
const MAX_PLUGIN_STATE_ENTRIES_PER_PLUGIN = 50_000;
export const MAX_PLUGIN_STATE_BULK_DELETE_ENTRIES = 512;
export const PLUGIN_STATE_DOCTOR_IMPORT_BATCH_ROWS = 500;
let maxPluginStateEntriesPerPluginForTests: number | undefined;
export type PluginDoctorRawStateEntry = Omit<PluginStateEntry<unknown>, "value" | "expiresAt"> & {
valueJson: string;
value?: unknown;
expiresAt: number | null;
};
type PluginStateSeedEntryForTests = {
pluginId: string;
namespace: string;
key: string;
valueJson: string;
createdAt?: number;
expiresAt?: number | null;
};
export function wrapPluginStateError(
error: unknown,
operation: PluginStateStoreOperation,
fallbackCode: PluginStateStoreErrorCode,
message: string,
pathname = resolveOpenClawStateSqlitePath(process.env),
): PluginStateStoreError {
if (error instanceof PluginStateStoreError) {
return error;
}
let publicMessage = message;
// Only owner-classified failures get public hints. Cause messages can contain
// database paths, SQL, or stored values and must stay out of this message.
if (fallbackCode === "PLUGIN_STATE_OPEN_FAILED") {
if (isSqliteSchemaVersionError(error)) {
publicMessage +=
"\nThe state database uses a newer schema. Run an OpenClaw build that supports it.";
} else if (error instanceof Error && isTerminalSqliteIntegrityError(error)) {
publicMessage +=
"\nDatabase integrity verification failed. Restore or repair the state database, then run openclaw doctor --fix.";
}
}
return createPluginStateError({
code: fallbackCode,
operation,
message: publicMessage,
path: pathname,
cause: error,
});
}
function openPluginStateDatabase(
operation: PluginStateStoreOperation = "open",
options: OpenClawStateDatabaseOptions = {},
): PluginStateDatabase {
const env = options.env ?? process.env;
const pathname = resolveOpenClawStateSqlitePath(env);
try {
return openOpenClawStateDatabase(options);
} catch (error) {
throw wrapPluginStateError(
error,
operation,
"PLUGIN_STATE_OPEN_FAILED",
"Failed to open the plugin state database.",
pathname,
);
}
}
function isMissingPluginStateTableError(error: unknown): boolean {
return (
error instanceof Error &&
(error as NodeJS.ErrnoException).code === "ERR_SQLITE_ERROR" &&
error.message === "no such table: plugin_state_entries"
);
}
/** Read plugin state without joining the shared writable database lifecycle. */
export function withPluginStateDatabaseReadOnly<T>(
operationName: PluginStateStoreOperation,
operation: (store: PluginStateDatabase) => T,
options: OpenClawStateDatabaseOptions = {},
): T | undefined {
const pathname = resolveDatabasePath(options);
let operationStarted = false;
try {
return withExistingOpenClawStateDatabaseReadOnly(({ db, path }) => {
operationStarted = true;
try {
return operation({ db, path });
} catch (error) {
if (isMissingPluginStateTableError(error)) {
// The lease bootstrap creates exactly schema_meta + state_leases before the first write;
// any other table means the missing plugin-state table is damage, not fresh state.
if (!hasOpenClawStateTablesBeyondStartupCheckpoint(db)) {
return undefined;
}
}
throw error;
}
}, options);
} catch (error) {
if (!operationStarted) {
throw wrapPluginStateError(
error,
operationName,
"PLUGIN_STATE_OPEN_FAILED",
"Failed to open the plugin state database.",
pathname,
);
}
throw error;
}
}
function envOptions(env?: NodeJS.ProcessEnv): OpenClawStateDatabaseOptions {
return env ? { env } : {};
}
function runWriteTransaction<T>(
operation: PluginStateStoreOperation,
write: (store: PluginStateDatabase) => T,
options: OpenClawStateDatabaseOptions = {},
): T {
// Only cold acquisition failures are open errors. A held owner's ownership or
// transaction failure must remain a write error, with its callback supplying the handle.
if (!isOpenClawStateDatabaseOpen(resolveOpenClawStateSqlitePath(options.env ?? process.env))) {
openPluginStateDatabase(operation, options);
}
return runOpenClawStateWriteTransaction(write, options);
}
export function resolveMaxPluginStateEntriesPerPlugin(): number {
return maxPluginStateEntriesPerPluginForTests ?? MAX_PLUGIN_STATE_ENTRIES_PER_PLUGIN;
}
type PluginStateRegisterParams = PluginStateRegisterEntryParams & { env?: NodeJS.ProcessEnv };
export function pluginStateRegister(params: PluginStateRegisterParams): void {
try {
runWriteTransaction(
"register",
(store) => registerPluginStateEntry(store, params, resolveMaxPluginStateEntriesPerPlugin()),
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"register",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to register plugin state entry.",
);
}
}
/** Prepared doctor rows only: validation and plugin-owned accessors run before BEGIN. */
export function pluginStateImportBatch(
params: Pick<
PluginStateRegisterParams,
"pluginId" | "namespace" | "maxEntries" | "overflowPolicy" | "env"
>,
entries: readonly Pick<
PluginStateRegisterParams,
"key" | "valueJson" | "createdAtMs" | "ttlMs"
>[],
): void {
if (entries.length === 0) {
return;
}
if (entries.length > PLUGIN_STATE_DOCTOR_IMPORT_BATCH_ROWS) {
throw new RangeError("Plugin state doctor import batch exceeds its row limit");
}
try {
const result = runWriteTransaction(
"register",
(store): Result<void, unknown> => {
const retention = readPluginStateRetention(store.db, { ...params, now: Date.now() });
for (const entry of entries) {
try {
// A row can evict before failing. Roll back only that row, then commit
// the successful prefix before reporting failure so Doctor can resume.
runSqliteImmediateTransactionSync(store.db, () =>
registerPluginStateEntry(
store,
{ ...params, ...entry },
resolveMaxPluginStateEntriesPerPlugin(),
retention,
),
);
} catch (error) {
// Only a surviving outer transaction can commit its prefix. Lost
// savepoints close the handle; corruption must still reach its owner.
if (!store.db.isOpen || !store.db.isTransaction || isSqliteCorruptionError(error)) {
throw error;
}
return err(error);
}
}
return ok(undefined);
},
envOptions(params.env),
);
if (!result.ok) {
throw result.error;
}
} catch (error) {
throw wrapPluginStateError(
error,
"register",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to register plugin state entry.",
);
}
}
export function pluginStateRegisterIfAbsent(params: {
pluginId: string;
namespace: string;
key: string;
valueJson: string;
maxEntries: number;
overflowPolicy: PluginStateOverflowPolicy;
ttlMs?: number;
env?: NodeJS.ProcessEnv;
}): boolean {
try {
return runWriteTransaction(
"register",
(store) =>
registerPluginStateEntryIfAbsent(store, params, resolveMaxPluginStateEntriesPerPlugin()),
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"register",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to register plugin state entry.",
);
}
}
export function pluginStateUpdate(params: {
pluginId: string;
namespace: string;
key: string;
maxEntries: number;
overflowPolicy: PluginStateOverflowPolicy;
updateValueJson: (current: unknown) => { valueJson: string; ttlMs?: number } | undefined;
env?: NodeJS.ProcessEnv;
}): boolean {
try {
return runWriteTransaction(
"register",
(store) => {
const now = Date.now();
deleteExpiredPluginStateEntries(store.db, now, {
pluginId: params.pluginId,
namespace: params.namespace,
});
const existing = selectPluginStateEntry(store.db, {
pluginId: params.pluginId,
namespace: params.namespace,
key: params.key,
now,
});
const next = params.updateValueJson(
existing ? parseStoredJson(existing.value_json, "lookup", store.path) : undefined,
);
if (!next) {
return false;
}
if (!existing) {
assertCanInsertPluginStateEntry({
maxPluginEntries: resolveMaxPluginStateEntriesPerPlugin(),
store,
pluginId: params.pluginId,
namespace: params.namespace,
maxEntries: params.maxEntries,
overflowPolicy: params.overflowPolicy,
now,
});
}
const expiresAt = resolvePluginStateExpiresAtMs({
ttlMs: next.ttlMs,
now,
operation: "register",
path: store.path,
});
upsertPluginStateEntry(
store.db,
bindPluginStateEntry({
pluginId: params.pluginId,
namespace: params.namespace,
key: params.key,
valueJson: next.valueJson,
createdAt: now,
expiresAt,
}),
);
enforcePostRegisterLimits({
maxPluginEntries: resolveMaxPluginStateEntriesPerPlugin(),
store,
pluginId: params.pluginId,
namespace: params.namespace,
maxEntries: params.maxEntries,
overflowPolicy: params.overflowPolicy,
now,
protectedKey: params.key,
});
return true;
},
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"register",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to update plugin state entry.",
);
}
}
export function pluginStateLookup(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): unknown {
const pathname = resolveOpenClawStateSqlitePath(params.env ?? process.env);
try {
return withPluginStateDatabaseReadOnly(
"lookup",
(store) => lookupPluginStateEntry(store, params),
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"lookup",
"PLUGIN_STATE_READ_FAILED",
"Failed to read plugin state entry.",
pathname,
);
}
}
export function pluginStateLookupMany(params: {
pluginId: string;
namespace: string;
keys: readonly string[];
env?: NodeJS.ProcessEnv;
}): Array<Result<unknown, PluginStateStoreError>> {
if (params.keys.length === 0) {
return [];
}
const pathname = resolveOpenClawStateSqlitePath(params.env ?? process.env);
try {
return (
withPluginStateDatabaseReadOnly(
"lookup",
(store) => lookupPluginStateEntries(store, params),
envOptions(params.env),
) ?? params.keys.map(() => ok(undefined))
);
} catch (error) {
throw wrapPluginStateError(
error,
"lookup",
"PLUGIN_STATE_READ_FAILED",
"Failed to read plugin state entries.",
pathname,
);
}
}
export function pluginStateConsume(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): unknown {
try {
return runWriteTransaction(
"consume",
(store) => consumePluginStateEntry(store, params),
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"consume",
"PLUGIN_STATE_READ_FAILED",
"Failed to consume plugin state entry.",
);
}
}
export function pluginStateDelete(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): boolean {
try {
return runWriteTransaction(
"delete",
({ db }) => {
return deletePluginStateEntry(db, params) > 0;
},
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"delete",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to delete plugin state entry.",
);
}
}
export function pluginStateDeleteIf(params: {
pluginId: string;
namespace: string;
key: string;
predicate: (current: unknown) => boolean;
env?: NodeJS.ProcessEnv;
}): boolean {
try {
return runWriteTransaction(
"delete",
({ db, path: databasePath }) => {
const row = selectPluginStateEntry(db, {
pluginId: params.pluginId,
namespace: params.namespace,
key: params.key,
now: Date.now(),
});
if (!row || !params.predicate(parseStoredJson(row.value_json, "delete", databasePath))) {
return false;
}
return deletePluginStateEntry(db, params) > 0;
},
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"delete",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to conditionally delete plugin state entry.",
);
}
}
/** Deletes one bounded set of exact observed rows in a single synchronous transaction. */
export function pluginStateDeleteEntriesIfUnchanged(params: {
pluginId: string;
namespace: string;
entries: readonly PluginDoctorRawStateEntry[];
assertOwnedInTransaction: (database: DatabaseSync) => void;
env?: NodeJS.ProcessEnv;
}): { deleted: number; changed: number } {
if (params.entries.length > MAX_PLUGIN_STATE_BULK_DELETE_ENTRIES) {
throw new RangeError(
`Plugin state bulk deletion cannot exceed ${MAX_PLUGIN_STATE_BULK_DELETE_ENTRIES} entries.`,
);
}
if (params.entries.length === 0) {
return { deleted: 0, changed: 0 };
}
// Copy plugin-visible envelopes before BEGIN; no plugin-owned accessors run in the transaction.
const observed = params.entries.map(({ value: _value, ...entry }) => entry);
return runWriteTransaction(
"delete",
({ db }) => {
params.assertOwnedInTransaction(db);
let deleted = 0;
for (const entry of observed) {
let query = getPluginStateKysely(db)
.deleteFrom("plugin_state_entries")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", entry.key)
.where("value_json", "=", entry.valueJson)
.where("created_at", "=", entry.createdAt);
query =
entry.expiresAt === null
? query.where("expires_at", "is", null)
: query.where("expires_at", "=", entry.expiresAt);
deleted += Number(executeSqliteQuerySync(db, query).numAffectedRows ?? 0);
}
return { deleted, changed: observed.length - deleted };
},
envOptions(params.env),
);
}
/** Doctor-only bounded raw read keeps malformed rows visible and preserves exact CAS bytes. */
export function pluginStateDoctorEntriesInKeyRange(params: {
pluginId: string;
namespace: string;
prefix: string;
after?: string;
limit: number;
env?: NodeJS.ProcessEnv;
}): PluginDoctorRawStateEntry[] {
if (
!params.prefix ||
!Number.isSafeInteger(params.limit) ||
params.limit < 1 ||
params.limit > MAX_PLUGIN_STATE_BULK_DELETE_ENTRIES ||
(params.after !== undefined && !params.after.startsWith(params.prefix))
) {
throw new RangeError(
`Plugin doctor state reads require a valid prefix and a limit of 1-${MAX_PLUGIN_STATE_BULK_DELETE_ENTRIES}.`,
);
}
return readPluginStateRowsInKeyRange(
{
...params,
keyStartInclusive: params.after === undefined ? params.prefix : `${params.after}\0`,
keyEndExclusive: `${params.prefix}\uffff`,
},
(row): PluginDoctorRawStateEntry => {
const createdAt = normalizeSqliteNumber(row.created_at);
const expiresAt = normalizeSqliteNumber(row.expires_at);
const entry: PluginDoctorRawStateEntry = {
key: row.entry_key,
valueJson: row.value_json,
createdAt: createdAt ?? 0,
expiresAt: expiresAt ?? null,
};
if (
!Number.isSafeInteger(createdAt) ||
(createdAt ?? -1) < 0 ||
(row.expires_at !== null && !Number.isSafeInteger(expiresAt))
) {
return entry;
}
try {
entry.value = JSON.parse(row.value_json) as unknown;
} catch {
// Keep corrupt rows in the page so Doctor can advance past them safely.
}
return entry;
},
);
}
export function pluginStateCount(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): number {
const pathname = resolveOpenClawStateSqlitePath(params.env ?? process.env);
try {
return (
withPluginStateDatabaseReadOnly(
"count",
({ db }) =>
countLivePluginStateNamespaceEntries(db, {
pluginId: params.pluginId,
namespace: params.namespace,
now: Date.now(),
}),
envOptions(params.env),
) ?? 0
);
} catch (error) {
throw wrapPluginStateError(
error,
"count",
"PLUGIN_STATE_READ_FAILED",
"Failed to count plugin state entries.",
pathname,
);
}
}
export function pluginStateEntries(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): PluginStateEntry<unknown>[] {
const pathname = resolveOpenClawStateSqlitePath(params.env ?? process.env);
try {
return (
withPluginStateDatabaseReadOnly(
"entries",
(store) => listPluginStateEntries(store, params),
envOptions(params.env),
) ?? []
);
} catch (error) {
throw wrapPluginStateError(
error,
"entries",
"PLUGIN_STATE_READ_FAILED",
"Failed to list plugin state entries.",
pathname,
);
}
}
function readPluginStateRowsInKeyRange<T>(
params: PluginStateKeyRangeParams & { env?: NodeJS.ProcessEnv },
mapRow: (row: PluginStateReadRow, databasePath: string) => T,
): T[] {
validatePluginStateKeyRange(params);
const pathname = resolveOpenClawStateSqlitePath(params.env ?? process.env);
try {
return (
withPluginStateDatabaseReadOnly(
"entries",
({ db, path: databasePath }) =>
selectPluginStateEntriesInKeyRange(db, {
pluginId: params.pluginId,
namespace: params.namespace,
keyStartInclusive: params.keyStartInclusive,
keyEndExclusive: params.keyEndExclusive,
limit: params.limit,
order: params.order ?? "asc",
now: Date.now(),
}).map((row) => mapRow(row, databasePath)),
envOptions(params.env),
) ?? []
);
} catch (error) {
throw wrapPluginStateError(
error,
"entries",
"PLUGIN_STATE_READ_FAILED",
"Failed to list plugin state entries by key range.",
pathname,
);
}
}
export function pluginStateClear(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): void {
try {
runWriteTransaction(
"clear",
({ db }) => clearPluginStateNamespace(db, params),
envOptions(params.env),
);
} catch (error) {
throw wrapPluginStateError(
error,
"clear",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to clear plugin state namespace.",
);
}
}
export function sweepExpiredPluginStateEntries(): number {
try {
return runWriteTransaction("sweep", ({ db }) =>
deleteExpiredPluginStateEntries(db, Date.now()),
);
} catch (error) {
throw wrapPluginStateError(
error,
"sweep",
"PLUGIN_STATE_WRITE_FAILED",
"Failed to sweep expired plugin state entries.",
);
}
}
export function clearPluginStateDatabaseForTests(): void {
const store = openPluginStateDatabase("clear");
executeSqliteQuerySync(
store.db,
getPluginStateKysely(store.db).deleteFrom("plugin_state_entries"),
);
}
function setMaxPluginStateEntriesPerPluginForTests(value?: number): void {
maxPluginStateEntriesPerPluginForTests = value;
}
export function countPluginStateLiveEntries(pluginId: string, env?: NodeJS.ProcessEnv): number {
const pathname = resolveOpenClawStateSqlitePath(env ?? process.env);
try {
return (
withPluginStateDatabaseReadOnly(
"entries",
({ db }) => countLivePluginStateEntries(db, { pluginId, now: Date.now() }),
envOptions(env),
) ?? 0
);
} catch (error) {
throw wrapPluginStateError(
error,
"entries",
"PLUGIN_STATE_READ_FAILED",
"Failed to count plugin state entries.",
pathname,
);
}
}
export function getPluginStateCapacity(
pluginId: string,
env?: NodeJS.ProcessEnv,
): { liveEntries: number; maxEntries: number } {
return {
liveEntries: countPluginStateLiveEntries(pluginId, env),
maxEntries: resolveMaxPluginStateEntriesPerPlugin(),
};
}
function seedPluginStateDatabaseEntriesForTests(
entries: readonly PluginStateSeedEntryForTests[],
): void {
if (entries.length === 0) {
return;
}
const now = Date.now();
runWriteTransaction("register", (store) => {
for (const [index, entry] of entries.entries()) {
upsertPluginStateEntry(
store.db,
bindPluginStateEntry({
pluginId: entry.pluginId,
namespace: entry.namespace,
key: entry.key,
valueJson: entry.valueJson,
createdAt: entry.createdAt ?? now + index,
expiresAt: entry.expiresAt ?? null,
}),
);
}
});
}
function probePluginStateStore(): PluginStateStoreProbeResult {
const databasePath = resolveOpenClawStateSqlitePath(process.env);
const steps: PluginStateStoreProbeStep[] = [];
const stateWasOpen = isOpenClawStateDatabaseOpen();
const pushOk = (name: string) => steps.push({ name, ok: true });
const pushFailure = (name: string, error: unknown) => {
const wrapped =
error instanceof PluginStateStoreError
? error
: createPluginStateError({
code: "PLUGIN_STATE_OPEN_FAILED",
operation: "probe",
message: error instanceof Error ? error.message : String(error),
path: databasePath,
cause: error,
});
steps.push({ name, ok: false, code: wrapped.code, message: wrapped.message });
};
try {
requireNodeSqlite();
pushOk("load-sqlite");
} catch (error) {
pushFailure(
"load-sqlite",
createPluginStateError({
code: "PLUGIN_STATE_SQLITE_UNAVAILABLE",
operation: "load-sqlite",
message: "SQLite support is unavailable for plugin state storage.",
path: databasePath,
cause: error,
}),
);
return { ok: false, databasePath, steps };
}
try {
openPluginStateDatabase("probe");
pushOk("open");
pushOk("schema");
runWriteTransaction("probe", ({ db }) => {
const now = Date.now();
const expiresAt = resolvePluginStateExpiresAtMs({
ttlMs: 60_000,
now,
operation: "probe",
path: databasePath,
});
upsertPluginStateEntry(
db,
bindPluginStateEntry({
pluginId: "core:plugin-state-probe",
namespace: "diagnostics",
key: "probe",
valueJson: JSON.stringify({ ok: true }),
createdAt: now,
expiresAt,
}),
);
selectPluginStateEntry(db, {
pluginId: "core:plugin-state-probe",
namespace: "diagnostics",
key: "probe",
now,
});
deletePluginStateEntry(db, {
pluginId: "core:plugin-state-probe",
namespace: "diagnostics",
key: "probe",
});
});
pushOk("write-read-delete");
openOpenClawStateDatabase().walMaintenance.checkpoint();
pushOk("checkpoint");
} catch (error) {
pushFailure("probe", error);
} finally {
if (!stateWasOpen) {
closePluginStateDatabase();
}
}
return { ok: steps.every((step) => step.ok), databasePath, steps };
}
export function closePluginStateDatabase(): void {
closeOpenClawStateDatabase();
}
export async function closePluginStateDatabaseAsync(): Promise<void> {
await closeOpenClawStateDatabaseAsync();
}
if (process.env.VITEST || process.env.NODE_ENV === "test") {
(globalThis as Record<PropertyKey, unknown>)[Symbol.for("openclaw.pluginStateSqliteTestApi")] = {
probePluginStateStore,
seedPluginStateDatabaseEntriesForTests,
setMaxPluginStateEntriesPerPluginForTests,
};
}
/* oxlint-disable max-lines -- TODO: split this grandfathered oversized file. */
|