mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-26 17:51:11 +00:00
* refactor(plugins): trim activation and contract exports * test(plugins): restore fixture cleanup * refactor(plugins): trim install and loader exports * test(plugins): fully reset loader caches * refactor(plugins): trim metadata and catalog exports * test(plugins): preserve catalog trust coverage * refactor(plugins): trim provider and plugin exports * refactor(plugins): trim runtime and tool exports * test(plugins): update dead-export consumers * test(plugins): remove empty dead-export suites * refactor(plugins): align exports with split registry * refactor(plugins): trim drifted loader exports * style(plugins): format test fixtures * refactor(scripts): use supported plugin APIs * refactor(plugins): finish dead export cleanup * chore(deadcode): refresh export baseline * test(cli): mock production memory state * chore(deadcode): sync latest export baseline * fix(tests): keep plugin fixtures inside core * chore(deadcode): refresh rebased export baseline * chore(deadcode): sync current ratchets * fix(plugins): retain reserved slot invariant * fix(plugins): preserve dead-export invariants * test(plugins): use neutral catalog query fixture * test(plugins): satisfy catalog lint * test(plugins): preserve integrity drift coverage * fix(ci): register skill experience live proof
461 lines
16 KiB
TypeScript
461 lines
16 KiB
TypeScript
/** Runs plugin cleanup callbacks and clears host-side plugin session/runtime state. */
|
|
import { normalizeOptionalAgentRuntimeId } from "../agents/agent-runtime-id.js";
|
|
import { getRuntimeConfig } from "../config/config.js";
|
|
import { cleanupPluginHostSessionStore } from "../config/sessions/session-accessor.js";
|
|
import { resolveSqliteTargetFromSessionStorePath } from "../config/sessions/session-sqlite-target.js";
|
|
import {
|
|
resolveAllAgentSessionStoreTargetsSync,
|
|
type SessionStoreTarget,
|
|
} from "../config/sessions/targets.js";
|
|
import type { OpenClawConfig } from "../config/types.openclaw.js";
|
|
import { withPluginHostCleanupTimeout } from "./host-hook-cleanup-timeout.js";
|
|
import {
|
|
cleanupPluginSessionSchedulerJobs,
|
|
clearPluginRunContext,
|
|
makePluginSessionSchedulerJobKey,
|
|
} from "./host-hook-runtime.js";
|
|
import type { PluginHostCleanupReason } from "./host-hooks.js";
|
|
import type { PluginRegistry } from "./registry-types.js";
|
|
import { getActivePluginRegistry } from "./runtime.js";
|
|
import { normalizeSessionEntrySlotKey } from "./session-entry-slot-keys.js";
|
|
|
|
/** Failure captured while running plugin cleanup hooks. */
|
|
/** Failure captured while running one plugin cleanup callback. */
|
|
type PluginHostCleanupFailure = {
|
|
pluginId: string;
|
|
hookId: string;
|
|
error: unknown;
|
|
};
|
|
|
|
/** Aggregate cleanup result for plugin host state. */
|
|
type PluginHostCleanupResult = {
|
|
cleanupCount: number;
|
|
failures: PluginHostCleanupFailure[];
|
|
};
|
|
|
|
type ResolveCleanupSessionStoreTargets = () => readonly SessionStoreTarget[];
|
|
|
|
function shouldCleanPlugin(pluginId: string, filterPluginId?: string): boolean {
|
|
return !filterPluginId || pluginId === filterPluginId;
|
|
}
|
|
|
|
function cleanupTargetKey(target: SessionStoreTarget): string {
|
|
return `${target.agentId}\0${target.storePath}`;
|
|
}
|
|
|
|
function resolveExistingSessionStoreTargets(cfg: OpenClawConfig): SessionStoreTarget[] {
|
|
const targets = new Map<string, SessionStoreTarget>();
|
|
for (const target of resolveAllAgentSessionStoreTargetsSync(cfg)) {
|
|
targets.set(cleanupTargetKey(target), target);
|
|
}
|
|
return [...targets.values()];
|
|
}
|
|
|
|
function createMemoizedCleanupSessionStoreTargetResolver(
|
|
cfg: OpenClawConfig,
|
|
): ResolveCleanupSessionStoreTargets {
|
|
let targets: readonly SessionStoreTarget[] | undefined;
|
|
return () => {
|
|
targets ??= resolveExistingSessionStoreTargets(cfg);
|
|
return targets;
|
|
};
|
|
}
|
|
|
|
function pathsToCleanupTargets(storePaths: readonly string[]): SessionStoreTarget[] {
|
|
return storePaths.map((storePath) => {
|
|
const target = resolveSqliteTargetFromSessionStorePath(storePath);
|
|
return { agentId: target.agentId ?? "main", storePath };
|
|
});
|
|
}
|
|
|
|
function resolveCleanupSessionStoreTargets(params: {
|
|
cfg: OpenClawConfig;
|
|
storePaths?: readonly string[];
|
|
storeTargets?: readonly SessionStoreTarget[];
|
|
resolveStoreTargets?: ResolveCleanupSessionStoreTargets;
|
|
}): readonly SessionStoreTarget[] {
|
|
return (
|
|
params.storeTargets ??
|
|
(params.storePaths ? pathsToCleanupTargets(params.storePaths) : undefined) ??
|
|
params.resolveStoreTargets?.() ??
|
|
resolveExistingSessionStoreTargets(params.cfg)
|
|
);
|
|
}
|
|
|
|
async function clearPluginOwnedSessionStores(params: {
|
|
cfg: OpenClawConfig;
|
|
pluginId?: string;
|
|
sessionKey?: string;
|
|
sessionEntrySlotKeys?: ReadonlySet<string>;
|
|
storePaths?: readonly string[];
|
|
preserveLockedHarnessIds?: ReadonlySet<string>;
|
|
storeTargets?: readonly SessionStoreTarget[];
|
|
resolveStoreTargets?: ResolveCleanupSessionStoreTargets;
|
|
shouldCleanup?: () => boolean;
|
|
}): Promise<number> {
|
|
if (!params.pluginId && !params.sessionKey) {
|
|
return 0;
|
|
}
|
|
const storeTargets = resolveCleanupSessionStoreTargets(params);
|
|
let cleared = 0;
|
|
for (const target of storeTargets) {
|
|
if (params.shouldCleanup && !params.shouldCleanup()) {
|
|
break;
|
|
}
|
|
cleared += await cleanupPluginHostSessionStore({
|
|
agentId: target.agentId,
|
|
storePath: target.storePath,
|
|
mode: "plugin-owned-state",
|
|
pluginId: params.pluginId,
|
|
sessionKey: params.sessionKey,
|
|
sessionEntrySlotKeys: params.sessionEntrySlotKeys,
|
|
preserveLockedHarnessIds: params.preserveLockedHarnessIds,
|
|
shouldCleanup: params.shouldCleanup,
|
|
});
|
|
}
|
|
return cleared;
|
|
}
|
|
|
|
async function clearPromotedSessionEntrySlotStores(params: {
|
|
cfg: OpenClawConfig;
|
|
pluginId?: string;
|
|
sessionKey?: string;
|
|
sessionEntrySlotKeys: ReadonlySet<string>;
|
|
storePaths?: readonly string[];
|
|
storeTargets?: readonly SessionStoreTarget[];
|
|
resolveStoreTargets?: ResolveCleanupSessionStoreTargets;
|
|
shouldCleanup?: () => boolean;
|
|
}): Promise<number> {
|
|
if ((!params.pluginId && !params.sessionKey) || params.sessionEntrySlotKeys.size === 0) {
|
|
return 0;
|
|
}
|
|
const storeTargets = resolveCleanupSessionStoreTargets(params);
|
|
let cleared = 0;
|
|
for (const target of storeTargets) {
|
|
if (params.shouldCleanup && !params.shouldCleanup()) {
|
|
break;
|
|
}
|
|
cleared += await cleanupPluginHostSessionStore({
|
|
agentId: target.agentId,
|
|
storePath: target.storePath,
|
|
mode: "promoted-slots",
|
|
pluginId: params.pluginId,
|
|
sessionKey: params.sessionKey,
|
|
sessionEntrySlotKeys: params.sessionEntrySlotKeys,
|
|
shouldCleanup: params.shouldCleanup,
|
|
});
|
|
}
|
|
return cleared;
|
|
}
|
|
|
|
function collectSessionEntrySlotKeys(
|
|
registry: PluginRegistry | null | undefined,
|
|
pluginId?: string,
|
|
): Set<string> {
|
|
const slotKeys = new Set<string>();
|
|
for (const registration of registry?.sessionExtensions ?? []) {
|
|
if (!shouldCleanPlugin(registration.pluginId, pluginId)) {
|
|
continue;
|
|
}
|
|
const slotKey = registration.extension.sessionEntrySlotKey;
|
|
if (slotKey === undefined) {
|
|
continue;
|
|
}
|
|
const normalized = normalizeSessionEntrySlotKey(slotKey);
|
|
if (normalized.ok) {
|
|
slotKeys.add(normalized.key);
|
|
}
|
|
}
|
|
return slotKeys;
|
|
}
|
|
|
|
function collectAgentHarnessIds(
|
|
registry: PluginRegistry | null | undefined,
|
|
pluginId?: string,
|
|
): Set<string> {
|
|
const harnessIds = new Set<string>();
|
|
for (const registration of registry?.agentHarnesses ?? []) {
|
|
if (!shouldCleanPlugin(registration.pluginId, pluginId)) {
|
|
continue;
|
|
}
|
|
const harnessId = normalizeOptionalAgentRuntimeId(registration.harness.id);
|
|
if (harnessId) {
|
|
harnessIds.add(harnessId);
|
|
}
|
|
}
|
|
return harnessIds;
|
|
}
|
|
|
|
/** Runs persistent and in-memory cleanup for a plugin, session, or host lifecycle event. */
|
|
/** Runs cleanup callbacks for one plugin and returns failures instead of throwing. */
|
|
export async function runPluginHostCleanup(params: {
|
|
cfg?: OpenClawConfig;
|
|
registry?: PluginRegistry | null;
|
|
pluginId?: string;
|
|
reason: PluginHostCleanupReason;
|
|
sessionKey?: string;
|
|
runId?: string;
|
|
preserveSchedulerJobIds?: ReadonlySet<string>;
|
|
shouldCleanup?: () => boolean;
|
|
restartPromotedSessionEntrySlotKeys?: ReadonlySet<string>;
|
|
preserveSchedulerOwnerRegistry?: PluginRegistry | null;
|
|
sessionStorePaths?: readonly string[];
|
|
sessionStoreTargets?: readonly SessionStoreTarget[];
|
|
resolveSessionStoreTargets?: ResolveCleanupSessionStoreTargets;
|
|
skipPersistentSessionState?: boolean;
|
|
}): Promise<PluginHostCleanupResult> {
|
|
const failures: PluginHostCleanupFailure[] = [];
|
|
const shouldCleanup = params.shouldCleanup ?? (() => true);
|
|
if (!shouldCleanup()) {
|
|
return { cleanupCount: 0, failures };
|
|
}
|
|
const registry = params.registry;
|
|
const cleanupRegistry = registry ?? getActivePluginRegistry();
|
|
const sessionEntrySlotKeys = collectSessionEntrySlotKeys(cleanupRegistry, params.pluginId);
|
|
const preserveLockedHarnessIds =
|
|
params.reason === "disable"
|
|
? collectAgentHarnessIds(cleanupRegistry, params.pluginId)
|
|
: undefined;
|
|
const restartPromotedSessionEntrySlotKeys =
|
|
params.restartPromotedSessionEntrySlotKeys ?? sessionEntrySlotKeys;
|
|
let persistentCleanupCount = 0;
|
|
if (!params.skipPersistentSessionState && shouldCleanup()) {
|
|
try {
|
|
persistentCleanupCount =
|
|
params.reason === "restart"
|
|
? await clearPromotedSessionEntrySlotStores({
|
|
cfg: params.cfg ?? getRuntimeConfig(),
|
|
pluginId: params.pluginId,
|
|
sessionKey: params.sessionKey,
|
|
sessionEntrySlotKeys: restartPromotedSessionEntrySlotKeys,
|
|
storePaths: params.sessionStorePaths,
|
|
storeTargets: params.sessionStoreTargets,
|
|
resolveStoreTargets: params.resolveSessionStoreTargets,
|
|
shouldCleanup,
|
|
})
|
|
: await clearPluginOwnedSessionStores({
|
|
cfg: params.cfg ?? getRuntimeConfig(),
|
|
pluginId: params.pluginId,
|
|
sessionKey: params.sessionKey,
|
|
sessionEntrySlotKeys,
|
|
storePaths: params.sessionStorePaths,
|
|
preserveLockedHarnessIds,
|
|
storeTargets: params.sessionStoreTargets,
|
|
resolveStoreTargets: params.resolveSessionStoreTargets,
|
|
shouldCleanup,
|
|
});
|
|
} catch (error) {
|
|
failures.push({
|
|
pluginId: params.pluginId ?? "plugin-host",
|
|
hookId: "session-store",
|
|
error,
|
|
});
|
|
}
|
|
}
|
|
let cleanupCount = persistentCleanupCount;
|
|
if (registry) {
|
|
for (const registration of registry.sessionExtensions) {
|
|
if (!shouldCleanup()) {
|
|
return { cleanupCount, failures };
|
|
}
|
|
if (!shouldCleanPlugin(registration.pluginId, params.pluginId)) {
|
|
continue;
|
|
}
|
|
const cleanup = registration.extension.cleanup;
|
|
if (!cleanup) {
|
|
continue;
|
|
}
|
|
const hookId = `session:${registration.extension.namespace}`;
|
|
try {
|
|
await withPluginHostCleanupTimeout(hookId, () =>
|
|
cleanup({
|
|
reason: params.reason,
|
|
sessionKey: params.sessionKey,
|
|
}),
|
|
);
|
|
cleanupCount += 1;
|
|
} catch (error) {
|
|
failures.push({
|
|
pluginId: registration.pluginId,
|
|
hookId,
|
|
error,
|
|
});
|
|
}
|
|
}
|
|
for (const registration of registry.runtimeLifecycles) {
|
|
if (!shouldCleanup()) {
|
|
return { cleanupCount, failures };
|
|
}
|
|
if (!shouldCleanPlugin(registration.pluginId, params.pluginId)) {
|
|
continue;
|
|
}
|
|
const cleanup = registration.lifecycle.cleanup;
|
|
if (!cleanup) {
|
|
continue;
|
|
}
|
|
const hookId = `runtime:${registration.lifecycle.id}`;
|
|
try {
|
|
await withPluginHostCleanupTimeout(hookId, () =>
|
|
cleanup({
|
|
reason: params.reason,
|
|
sessionKey: params.sessionKey,
|
|
runId: params.runId,
|
|
}),
|
|
);
|
|
cleanupCount += 1;
|
|
} catch (error) {
|
|
failures.push({
|
|
pluginId: registration.pluginId,
|
|
hookId,
|
|
error,
|
|
});
|
|
}
|
|
}
|
|
const schedulerFailures = await cleanupPluginSessionSchedulerJobs({
|
|
pluginId: params.pluginId,
|
|
reason: params.reason,
|
|
sessionKey: params.sessionKey,
|
|
records: registry.sessionSchedulerJobs,
|
|
preserveJobIds: params.preserveSchedulerJobIds,
|
|
preserveOwnerRegistry: params.preserveSchedulerOwnerRegistry,
|
|
shouldCleanup,
|
|
});
|
|
for (const failure of schedulerFailures) {
|
|
failures.push(failure);
|
|
}
|
|
}
|
|
if (params.reason !== "restart" && shouldCleanup()) {
|
|
const registrySchedulerJobKeys = new Set(
|
|
(registry?.sessionSchedulerJobs ?? [])
|
|
.filter((record) => !params.pluginId || record.pluginId === params.pluginId)
|
|
.map((record) => ({
|
|
pluginId: record.pluginId,
|
|
jobId: typeof record.job.id === "string" ? record.job.id.trim() : "",
|
|
}))
|
|
.filter(({ jobId }) => jobId.length > 0)
|
|
.map(({ pluginId, jobId }) => makePluginSessionSchedulerJobKey(pluginId, jobId)),
|
|
);
|
|
const runtimeSchedulerFailures = await cleanupPluginSessionSchedulerJobs({
|
|
pluginId: params.pluginId,
|
|
reason: params.reason,
|
|
sessionKey: params.sessionKey,
|
|
preserveJobIds: params.preserveSchedulerJobIds,
|
|
excludeJobKeys: registrySchedulerJobKeys,
|
|
shouldCleanup,
|
|
});
|
|
for (const failure of runtimeSchedulerFailures) {
|
|
failures.push(failure);
|
|
}
|
|
}
|
|
if (
|
|
shouldCleanup() &&
|
|
(params.pluginId || params.runId) &&
|
|
(params.reason !== "restart" || params.runId)
|
|
) {
|
|
clearPluginRunContext({ pluginId: params.pluginId, runId: params.runId });
|
|
}
|
|
return { cleanupCount, failures };
|
|
}
|
|
|
|
function collectHostHookPluginIds(registry: PluginRegistry): Set<string> {
|
|
const ids = new Set<string>();
|
|
for (const registration of registry.sessionExtensions) {
|
|
ids.add(registration.pluginId);
|
|
}
|
|
for (const registration of registry.runtimeLifecycles) {
|
|
ids.add(registration.pluginId);
|
|
}
|
|
for (const registration of registry.agentEventSubscriptions) {
|
|
ids.add(registration.pluginId);
|
|
}
|
|
for (const registration of registry.sessionSchedulerJobs) {
|
|
ids.add(registration.pluginId);
|
|
}
|
|
return ids;
|
|
}
|
|
|
|
function collectLoadedPluginIds(registry: PluginRegistry): Set<string> {
|
|
return new Set(
|
|
registry.plugins.filter((plugin) => plugin.status === "loaded").map((plugin) => plugin.id),
|
|
);
|
|
}
|
|
|
|
function collectSchedulerJobIds(
|
|
registry: PluginRegistry | null | undefined,
|
|
pluginId: string,
|
|
): Set<string> {
|
|
return new Set(
|
|
(registry?.sessionSchedulerJobs ?? [])
|
|
.filter((registration) => registration.pluginId === pluginId)
|
|
.map((registration) =>
|
|
typeof registration.job.id === "string" ? registration.job.id.trim() : "",
|
|
)
|
|
.filter(Boolean),
|
|
);
|
|
}
|
|
|
|
function collectRestartPromotedSessionEntrySlotKeys(
|
|
previousRegistry: PluginRegistry,
|
|
nextRegistry: PluginRegistry | null | undefined,
|
|
pluginId: string,
|
|
): Set<string> {
|
|
const staleSlotKeys = collectSessionEntrySlotKeys(previousRegistry, pluginId);
|
|
const preservedSlotKeys = collectSessionEntrySlotKeys(nextRegistry, pluginId);
|
|
for (const slotKey of preservedSlotKeys) {
|
|
staleSlotKeys.delete(slotKey);
|
|
}
|
|
return staleSlotKeys;
|
|
}
|
|
|
|
/** Cleans up plugin host state when a registry snapshot is replaced. */
|
|
export async function cleanupReplacedPluginHostRegistry(params: {
|
|
cfg: OpenClawConfig;
|
|
previousRegistry?: PluginRegistry | null;
|
|
nextRegistry?: PluginRegistry | null;
|
|
shouldCleanup?: () => boolean;
|
|
}): Promise<PluginHostCleanupResult> {
|
|
const previousRegistry = params.previousRegistry;
|
|
const shouldCleanup = params.shouldCleanup ?? (() => true);
|
|
if (!previousRegistry || previousRegistry === params.nextRegistry || !shouldCleanup()) {
|
|
return { cleanupCount: 0, failures: [] };
|
|
}
|
|
const nextPluginIds = params.nextRegistry
|
|
? collectLoadedPluginIds(params.nextRegistry)
|
|
: new Set();
|
|
const previousPluginIds = new Set([
|
|
...collectLoadedPluginIds(previousRegistry),
|
|
...collectHostHookPluginIds(previousRegistry),
|
|
]);
|
|
const resolveSessionStoreTargets = createMemoizedCleanupSessionStoreTargetResolver(params.cfg);
|
|
const failures: PluginHostCleanupFailure[] = [];
|
|
let cleanupCount = 0;
|
|
for (const pluginId of previousPluginIds) {
|
|
if (!shouldCleanup()) {
|
|
break;
|
|
}
|
|
const restarted = nextPluginIds.has(pluginId);
|
|
const result = await runPluginHostCleanup({
|
|
cfg: params.cfg,
|
|
registry: previousRegistry,
|
|
pluginId,
|
|
reason: restarted ? "restart" : "disable",
|
|
preserveSchedulerJobIds: restarted
|
|
? collectSchedulerJobIds(params.nextRegistry, pluginId)
|
|
: undefined,
|
|
shouldCleanup,
|
|
restartPromotedSessionEntrySlotKeys: restarted
|
|
? collectRestartPromotedSessionEntrySlotKeys(
|
|
previousRegistry,
|
|
params.nextRegistry,
|
|
pluginId,
|
|
)
|
|
: undefined,
|
|
preserveSchedulerOwnerRegistry: restarted ? params.nextRegistry : undefined,
|
|
resolveSessionStoreTargets,
|
|
});
|
|
cleanupCount += result.cleanupCount;
|
|
failures.push(...result.failures);
|
|
}
|
|
return { cleanupCount, failures };
|
|
}
|