File size: 21,817 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 | // SQLite persistence for plugin-owned byte blobs and JSON metadata.
import type { DatabaseSync } from "node:sqlite";
import { resolveExpiresAtMsFromDurationMs } from "@openclaw/normalization-core/number-coercion";
import type { Insertable, Selectable } from "kysely";
import { hasErrnoCode } from "../infra/errno.js";
import {
executeSqliteQuerySync,
executeSqliteQueryTakeFirstSync,
getNodeSqliteKysely,
iterateSqliteQuerySync,
} from "../infra/kysely-sync.js";
import {
coerceRequiredSqliteNumber as sqliteNumber,
normalizeSqliteNumber,
} from "../infra/sqlite-number.js";
import {
hasOpenClawStateTablesBeyondStartupCheckpoint,
withExistingOpenClawStateDatabaseReadOnly,
} from "../state/openclaw-state-db-readonly.js";
import type { DB as OpenClawStateKyselyDatabase } from "../state/openclaw-state-db.generated.js";
import {
openOpenClawStateDatabase,
runOpenClawStateWriteTransaction,
} from "../state/openclaw-state-db.js";
import { resolveOpenClawStateSqlitePath } from "../state/openclaw-state-db.paths.js";
import type {
PluginBlobEntry,
PluginBlobEntryInfo,
PluginBlobOverflowPolicy,
PluginBlobStoreErrorCode,
PluginBlobStoreOperation,
} from "./plugin-blob-store.types.js";
import { PluginBlobStoreError } from "./plugin-blob-store.types.js";
export const MAX_PLUGIN_BLOB_BYTES_PER_ENTRY = 100 * 1024 * 1024;
export const MAX_PLUGIN_BLOB_BYTES_PER_PLUGIN = 512 * 1024 * 1024;
export const MAX_PLUGIN_BLOB_ENTRIES_PER_PLUGIN = 50_000;
type PluginBlobTable = OpenClawStateKyselyDatabase["plugin_blob_entries"];
type PluginBlobDatabase = Pick<OpenClawStateKyselyDatabase, "plugin_blob_entries">;
type PluginBlobRow = Selectable<PluginBlobTable>;
type PluginBlobStoredInfo = Pick<
PluginBlobRow,
"entry_key" | "metadata_json" | "created_at" | "expires_at"
> & { size_bytes: number | bigint };
type BlobUsage = {
namespaceCount: number;
namespaceBytes: number;
pluginCount: number;
pluginBytes: number;
};
type BlobWriteParams = {
pluginId: string;
namespace: string;
key: string;
bytes: Uint8Array;
metadataJson: string;
maxEntries: number;
maxBytesPerNamespace: number;
overflowPolicy: PluginBlobOverflowPolicy;
ttlMs?: number;
env?: NodeJS.ProcessEnv;
};
function createError(params: {
code: PluginBlobStoreErrorCode;
operation: PluginBlobStoreOperation;
message: string;
env?: NodeJS.ProcessEnv;
cause?: unknown;
}): PluginBlobStoreError {
return new PluginBlobStoreError(params.message, {
code: params.code,
operation: params.operation,
path: resolveOpenClawStateSqlitePath(params.env ?? process.env),
cause: params.cause,
});
}
function wrapError(
error: unknown,
operation: PluginBlobStoreOperation,
fallbackCode: PluginBlobStoreErrorCode,
message: string,
env?: NodeJS.ProcessEnv,
): PluginBlobStoreError {
return error instanceof PluginBlobStoreError
? error
: createError({ code: fallbackCode, operation, message, env, cause: error });
}
function openDatabase(operation: PluginBlobStoreOperation, env?: NodeJS.ProcessEnv) {
try {
const database = openOpenClawStateDatabase(env ? { env } : {});
return database;
} catch (error) {
throw wrapError(
error,
operation,
"PLUGIN_BLOB_OPEN_FAILED",
"Failed to open plugin blob store.",
env,
);
}
}
function readDatabase<T>(
operation: "lookup" | "entries",
read: (db: DatabaseSync) => T,
env?: NodeJS.ProcessEnv,
): T | undefined {
let readStarted = false;
try {
return withExistingOpenClawStateDatabaseReadOnly(
({ db }) => {
readStarted = true;
try {
return read(db);
} catch (error) {
if (
error instanceof Error &&
hasErrnoCode(error, "ERR_SQLITE_ERROR") &&
error.message === "no such table: plugin_blob_entries" &&
!hasOpenClawStateTablesBeyondStartupCheckpoint(db)
) {
return undefined;
}
throw error;
}
},
env ? { env } : {},
);
} catch (error) {
throw wrapError(
error,
operation,
readStarted ? "PLUGIN_BLOB_READ_FAILED" : "PLUGIN_BLOB_OPEN_FAILED",
readStarted
? operation === "lookup"
? "Failed to read plugin blob entry."
: "Failed to list plugin blob entries."
: "Failed to open plugin blob store.",
env,
);
}
}
function kysely(db: DatabaseSync) {
return getNodeSqliteKysely<PluginBlobDatabase>(db);
}
function decodeBlobInfo<TMetadata>(
row: PluginBlobStoredInfo,
operation: PluginBlobStoreOperation,
env?: NodeJS.ProcessEnv,
): PluginBlobEntryInfo<TMetadata> {
let metadata: TMetadata;
try {
// SAFETY: The typed plugin namespace owns the metadata shape; storage validates JSON syntax.
metadata = JSON.parse(row.metadata_json) as TMetadata;
} catch (error) {
throw createError({
code: "PLUGIN_BLOB_CORRUPT",
operation,
message: "Plugin blob entry contains corrupt metadata JSON.",
env,
cause: error,
});
}
const expiresAt = normalizeSqliteNumber(row.expires_at);
return {
key: row.entry_key,
metadata,
sizeBytes: sqliteNumber(row.size_bytes),
createdAt: normalizeSqliteNumber(row.created_at) ?? 0,
...(expiresAt != null ? { expiresAt } : {}),
};
}
function selectLiveBlob(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string; now: number },
) {
return executeSqliteQueryTakeFirstSync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select(["entry_key", "metadata_json", "blob", "created_at", "expires_at"])
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", params.key)
.where((eb) => eb.or([eb("expires_at", "is", null), eb("expires_at", ">", params.now)])),
);
}
function blobKeyExists(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string },
): boolean {
return (
executeSqliteQueryTakeFirstSync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select("entry_key")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", params.key),
) !== undefined
);
}
function selectLiveInfo(
db: DatabaseSync,
params: { pluginId: string; namespace: string; now: number },
): PluginBlobStoredInfo[] {
return executeSqliteQuerySync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select(["entry_key", "metadata_json", "created_at", "expires_at"])
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where((eb) => eb.or([eb("expires_at", "is", null), eb("expires_at", ">", params.now)]))
.orderBy("created_at", "asc")
.orderBy("entry_key", "asc"),
).rows;
}
function selectExpiredKeyInfo(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string; now: number },
): PluginBlobStoredInfo | undefined {
return executeSqliteQueryTakeFirstSync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select(["entry_key", "metadata_json", "created_at", "expires_at"])
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", params.key)
.where("expires_at", "is not", null)
.where("expires_at", "<=", params.now),
);
}
function selectEvictionCandidates(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string; now: number },
) {
return iterateSqliteQuerySync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select("entry_key")
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "!=", params.key)
.where((eb) => eb.or([eb("expires_at", "is", null), eb("expires_at", ">", params.now)]))
.orderBy("created_at", "asc")
.orderBy("entry_key", "asc"),
);
}
function readStoredUsage(
db: DatabaseSync,
params: { pluginId: string; namespace: string },
): BlobUsage {
// Expired rows retain cleanup metadata, so physical accounting includes them.
const row = executeSqliteQueryTakeFirstSync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select((eb) => [
eb.fn.countAll<number | bigint>().as("plugin_count"),
eb.fn
.countAll<number | bigint>()
.filterWhere("namespace", "=", params.namespace)
.as("namespace_count"),
eb.fn.sum<number | bigint | null>(eb.fn("length", ["blob"])).as("plugin_bytes"),
eb.fn
.sum<number | bigint | null>(eb.fn("length", ["blob"]))
.filterWhere("namespace", "=", params.namespace)
.as("namespace_bytes"),
])
.where("plugin_id", "=", params.pluginId),
);
return {
namespaceCount: sqliteNumber(row?.namespace_count ?? 0),
namespaceBytes: sqliteNumber(row?.namespace_bytes ?? 0),
pluginCount: sqliteNumber(row?.plugin_count ?? 0),
pluginBytes: sqliteNumber(row?.plugin_bytes ?? 0),
};
}
function readStoredKeySize(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string },
): number | undefined {
const row = executeSqliteQueryTakeFirstSync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", params.key),
);
return row ? sqliteNumber(row.size_bytes) : undefined;
}
function deleteKey(
db: DatabaseSync,
params: { pluginId: string; namespace: string; key: string },
): number {
const result = executeSqliteQuerySync(
db,
kysely(db)
.deleteFrom("plugin_blob_entries")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "=", params.key),
);
return Number(result.numAffectedRows ?? 0);
}
function deleteKeys(
db: DatabaseSync,
params: { pluginId: string; namespace: string; keys: readonly string[] },
): void {
// Stay below conservative SQLite bind-variable limits while avoiding one
// DELETE and one array rebuild per evicted row inside the write transaction.
const batchSize = 500;
for (let offset = 0; offset < params.keys.length; offset += batchSize) {
const keys = params.keys.slice(offset, offset + batchSize);
executeSqliteQuerySync(
db,
kysely(db)
.deleteFrom("plugin_blob_entries")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("entry_key", "in", keys),
);
}
}
function deleteExpiredNamespace(
db: DatabaseSync,
params: { pluginId: string; namespace: string; now: number },
): number {
const result = executeSqliteQuerySync(
db,
kysely(db)
.deleteFrom("plugin_blob_entries")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("expires_at", "is not", null)
.where("expires_at", "<=", params.now),
);
return Number(result.numAffectedRows ?? 0);
}
function limitError(message: string, env?: NodeJS.ProcessEnv): PluginBlobStoreError {
return createError({
code: "PLUGIN_BLOB_LIMIT_EXCEEDED",
operation: "register",
message,
env,
});
}
function assertProjectedLimits(params: {
db: DatabaseSync;
write: BlobWriteParams;
existingBytes?: number;
}): void {
const usage = readStoredUsage(params.db, params.write);
const previousBytes = params.existingBytes ?? 0;
const rowDelta = params.existingBytes === undefined ? 1 : 0;
if (usage.namespaceCount + rowDelta > params.write.maxEntries) {
throw limitError("Plugin blob namespace reached its stored row limit.", params.write.env);
}
if (
usage.namespaceBytes - previousBytes + params.write.bytes.byteLength >
params.write.maxBytesPerNamespace
) {
throw limitError("Plugin blob namespace reached its stored byte limit.", params.write.env);
}
if (usage.pluginCount + rowDelta > MAX_PLUGIN_BLOB_ENTRIES_PER_PLUGIN) {
throw limitError("Plugin blob store reached its per-plugin row limit.", params.write.env);
}
if (
usage.pluginBytes - previousBytes + params.write.bytes.byteLength >
MAX_PLUGIN_BLOB_BYTES_PER_PLUGIN
) {
throw limitError("Plugin blob store reached its per-plugin byte limit.", params.write.env);
}
}
function deleteOldestUntilWithinLimits(params: {
db: DatabaseSync;
write: BlobWriteParams;
now: number;
}): void {
const usage = readStoredUsage(params.db, params.write);
const withinLimits = () =>
usage.namespaceCount <= params.write.maxEntries &&
usage.namespaceBytes <= params.write.maxBytesPerNamespace &&
usage.pluginCount <= MAX_PLUGIN_BLOB_ENTRIES_PER_PLUGIN &&
usage.pluginBytes <= MAX_PLUGIN_BLOB_BYTES_PER_PLUGIN;
if (withinLimits()) {
return;
}
// Only this namespace's live rows may be evicted. Expired rows still own
// external cleanup, and sibling namespaces never pay for this write.
const candidates = selectEvictionCandidates(params.db, {
pluginId: params.write.pluginId,
namespace: params.write.namespace,
now: params.now,
key: params.write.key,
});
const keysToDelete: string[] = [];
for (const row of candidates) {
keysToDelete.push(row.entry_key);
const sizeBytes = sqliteNumber(row.size_bytes);
usage.namespaceCount -= 1;
usage.namespaceBytes -= sizeBytes;
usage.pluginCount -= 1;
usage.pluginBytes -= sizeBytes;
if (withinLimits()) {
break;
}
}
if (
usage.namespaceCount > params.write.maxEntries ||
usage.namespaceBytes > params.write.maxBytesPerNamespace
) {
throw limitError(
"Plugin blob namespace cannot satisfy its configured limits.",
params.write.env,
);
}
if (
usage.pluginCount > MAX_PLUGIN_BLOB_ENTRIES_PER_PLUGIN ||
usage.pluginBytes > MAX_PLUGIN_BLOB_BYTES_PER_PLUGIN
) {
throw limitError("Plugin blob store cannot satisfy its per-plugin limits.", params.write.env);
}
deleteKeys(params.db, {
pluginId: params.write.pluginId,
namespace: params.write.namespace,
keys: keysToDelete,
});
}
function upsertBlob(db: DatabaseSync, params: BlobWriteParams, now: number): void {
const expiresAt = (() => {
if (params.ttlMs === undefined) {
return null;
}
const resolved = resolveExpiresAtMsFromDurationMs(params.ttlMs, { nowMs: now });
if (resolved === undefined) {
throw createError({
code: "PLUGIN_BLOB_INVALID_INPUT",
operation: "register",
message: "Plugin blob ttlMs cannot produce a valid expiry timestamp.",
env: params.env,
});
}
return resolved;
})();
const row: Insertable<PluginBlobTable> = {
plugin_id: params.pluginId,
namespace: params.namespace,
entry_key: params.key,
metadata_json: params.metadataJson,
blob: params.bytes,
created_at: now,
expires_at: expiresAt,
};
executeSqliteQuerySync(
db,
kysely(db)
.insertInto("plugin_blob_entries")
.values(row)
.onConflict((conflict) =>
conflict.columns(["plugin_id", "namespace", "entry_key"]).doUpdateSet({
metadata_json: (eb) => eb.ref("excluded.metadata_json"),
blob: (eb) => eb.ref("excluded.blob"),
created_at: (eb) => eb.ref("excluded.created_at"),
expires_at: (eb) => eb.ref("excluded.expires_at"),
}),
),
);
}
function writeBlob(params: BlobWriteParams, ifAbsent: boolean): boolean {
try {
openDatabase("register", params.env);
return runOpenClawStateWriteTransaction(
({ db }) => {
const now = Date.now();
if (ifAbsent && blobKeyExists(db, params)) {
// Expired rows remain owner-managed until explicitly claimed. Treat
// them as occupied so stable-key reuse cannot discard cleanup metadata.
return false;
}
if (params.overflowPolicy === "reject-new") {
const existingBytes = ifAbsent ? undefined : readStoredKeySize(db, params);
assertProjectedLimits({ db, write: params, existingBytes });
}
upsertBlob(db, params, now);
if (params.overflowPolicy === "evict-oldest") {
deleteOldestUntilWithinLimits({ db, write: params, now });
}
return true;
},
params.env ? { env: params.env } : {},
);
} catch (error) {
throw wrapError(
error,
"register",
"PLUGIN_BLOB_WRITE_FAILED",
"Failed to register plugin blob entry.",
params.env,
);
}
}
export function pluginBlobRegister(params: BlobWriteParams): void {
writeBlob(params, false);
}
export function pluginBlobRegisterIfAbsent(params: BlobWriteParams): boolean {
return writeBlob(params, true);
}
export function pluginBlobLookup<TMetadata>(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): PluginBlobEntry<TMetadata> | undefined {
return readDatabase(
"lookup",
(db) => {
const row = selectLiveBlob(db, { ...params, now: Date.now() });
return row
? {
...decodeBlobInfo<TMetadata>(row, "lookup", params.env),
bytes: row.blob,
}
: undefined;
},
params.env,
);
}
export function pluginBlobEntries<TMetadata>(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): PluginBlobEntryInfo<TMetadata>[] {
return (
readDatabase(
"entries",
(db) =>
selectLiveInfo(db, { ...params, now: Date.now() }).map((row) =>
decodeBlobInfo<TMetadata>(row, "entries", params.env),
),
params.env,
) ?? []
);
}
export function pluginBlobDelete(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): boolean {
try {
openDatabase("delete", params.env);
return runOpenClawStateWriteTransaction(
({ db }) => deleteKey(db, params) > 0,
params.env ? { env: params.env } : {},
);
} catch (error) {
throw wrapError(
error,
"delete",
"PLUGIN_BLOB_WRITE_FAILED",
"Failed to delete plugin blob entry.",
params.env,
);
}
}
export function pluginBlobDeleteExpiredKey<TMetadata>(params: {
pluginId: string;
namespace: string;
key: string;
env?: NodeJS.ProcessEnv;
}): PluginBlobEntryInfo<TMetadata> | undefined {
try {
openDatabase("sweep", params.env);
return runOpenClawStateWriteTransaction(
({ db }) => {
const row = selectExpiredKeyInfo(db, { ...params, now: Date.now() });
if (!row) {
return undefined;
}
// Decode before deletion so corrupt metadata cannot orphan external artifacts.
const entry = decodeBlobInfo<TMetadata>(row, "sweep", params.env);
deleteKey(db, params);
return entry;
},
params.env ? { env: params.env } : {},
);
} catch (error) {
throw wrapError(
error,
"sweep",
"PLUGIN_BLOB_WRITE_FAILED",
"Failed to delete expired plugin blob.",
params.env,
);
}
}
export function pluginBlobDeleteExpired<TMetadata>(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): PluginBlobEntryInfo<TMetadata>[] {
try {
openDatabase("sweep", params.env);
return runOpenClawStateWriteTransaction(
({ db }) => {
const now = Date.now();
const rows = executeSqliteQuerySync(
db,
kysely(db)
.selectFrom("plugin_blob_entries")
.select(["entry_key", "metadata_json", "created_at", "expires_at"])
.select((eb) => eb.fn<number | bigint>("length", ["blob"]).as("size_bytes"))
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace)
.where("expires_at", "is not", null)
.where("expires_at", "<=", now)
.orderBy("created_at", "asc")
.orderBy("entry_key", "asc"),
).rows;
// Return all cleanup metadata only after every row decodes and the claim commits.
const entries = rows.map((row) => decodeBlobInfo<TMetadata>(row, "sweep", params.env));
deleteExpiredNamespace(db, { ...params, now });
return entries;
},
params.env ? { env: params.env } : {},
);
} catch (error) {
throw wrapError(
error,
"sweep",
"PLUGIN_BLOB_WRITE_FAILED",
"Failed to delete expired plugin blobs.",
params.env,
);
}
}
export function pluginBlobClear(params: {
pluginId: string;
namespace: string;
env?: NodeJS.ProcessEnv;
}): void {
try {
openDatabase("clear", params.env);
runOpenClawStateWriteTransaction(
({ db }) => {
executeSqliteQuerySync(
db,
kysely(db)
.deleteFrom("plugin_blob_entries")
.where("plugin_id", "=", params.pluginId)
.where("namespace", "=", params.namespace),
);
},
params.env ? { env: params.env } : {},
);
} catch (error) {
throw wrapError(
error,
"clear",
"PLUGIN_BLOB_WRITE_FAILED",
"Failed to clear plugin blob entries.",
params.env,
);
}
}
|