mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 11:00:50 +00:00
143 lines
4.7 KiB
TypeScript
143 lines
4.7 KiB
TypeScript
import { defaultRuntime } from "../../../runtime.js";
|
|
import {
|
|
buildCollectPrompt,
|
|
beginQueueDrain,
|
|
clearQueueSummaryState,
|
|
drainCollectQueueStep,
|
|
drainNextQueueItem,
|
|
hasCrossChannelItems,
|
|
previewQueueSummaryPrompt,
|
|
waitForQueueDebounce,
|
|
} from "../../../utils/queue-helpers.js";
|
|
import { isRoutableChannel } from "../route-reply.js";
|
|
import { FOLLOWUP_QUEUES } from "./state.js";
|
|
import type { FollowupRun } from "./types.js";
|
|
|
|
export function scheduleFollowupDrain(
|
|
key: string,
|
|
runFollowup: (run: FollowupRun) => Promise<void>,
|
|
): void {
|
|
const queue = beginQueueDrain(FOLLOWUP_QUEUES, key);
|
|
if (!queue) {
|
|
return;
|
|
}
|
|
void (async () => {
|
|
try {
|
|
const collectState = { forceIndividualCollect: false };
|
|
while (queue.items.length > 0 || queue.droppedCount > 0) {
|
|
await waitForQueueDebounce(queue);
|
|
if (queue.mode === "collect") {
|
|
// Once the batch is mixed, never collect again within this drain.
|
|
// Prevents “collect after shift” collapsing different targets.
|
|
//
|
|
// Debug: `pnpm test src/auto-reply/reply/queue.collect-routing.test.ts`
|
|
// Check if messages span multiple channels.
|
|
// If so, process individually to preserve per-message routing.
|
|
const isCrossChannel = hasCrossChannelItems(queue.items, (item) => {
|
|
const channel = item.originatingChannel;
|
|
const to = item.originatingTo;
|
|
const accountId = item.originatingAccountId;
|
|
const threadId = item.originatingThreadId;
|
|
if (!channel && !to && !accountId && threadId == null) {
|
|
return {};
|
|
}
|
|
if (!isRoutableChannel(channel) || !to) {
|
|
return { cross: true };
|
|
}
|
|
const threadKey = threadId != null ? String(threadId) : "";
|
|
return {
|
|
key: [channel, to, accountId || "", threadKey].join("|"),
|
|
};
|
|
});
|
|
|
|
const collectDrainResult = await drainCollectQueueStep({
|
|
collectState,
|
|
isCrossChannel,
|
|
items: queue.items,
|
|
run: runFollowup,
|
|
});
|
|
if (collectDrainResult === "empty") {
|
|
break;
|
|
}
|
|
if (collectDrainResult === "drained") {
|
|
continue;
|
|
}
|
|
|
|
const items = queue.items.slice();
|
|
const summary = previewQueueSummaryPrompt({ state: queue, noun: "message" });
|
|
const run = items.at(-1)?.run ?? queue.lastRun;
|
|
if (!run) {
|
|
break;
|
|
}
|
|
|
|
// Preserve originating channel from items when collecting same-channel.
|
|
const originatingChannel = items.find((i) => i.originatingChannel)?.originatingChannel;
|
|
const originatingTo = items.find((i) => i.originatingTo)?.originatingTo;
|
|
const originatingAccountId = items.find(
|
|
(i) => i.originatingAccountId,
|
|
)?.originatingAccountId;
|
|
const originatingThreadId = items.find(
|
|
(i) => i.originatingThreadId != null,
|
|
)?.originatingThreadId;
|
|
|
|
const prompt = buildCollectPrompt({
|
|
title: "[Queued messages while agent was busy]",
|
|
items,
|
|
summary,
|
|
renderItem: (item, idx) => `---\nQueued #${idx + 1}\n${item.prompt}`.trim(),
|
|
});
|
|
await runFollowup({
|
|
prompt,
|
|
run,
|
|
enqueuedAt: Date.now(),
|
|
originatingChannel,
|
|
originatingTo,
|
|
originatingAccountId,
|
|
originatingThreadId,
|
|
});
|
|
queue.items.splice(0, items.length);
|
|
if (summary) {
|
|
clearQueueSummaryState(queue);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
const summaryPrompt = previewQueueSummaryPrompt({ state: queue, noun: "message" });
|
|
if (summaryPrompt) {
|
|
const run = queue.lastRun;
|
|
if (!run) {
|
|
break;
|
|
}
|
|
if (
|
|
!(await drainNextQueueItem(queue.items, async () => {
|
|
await runFollowup({
|
|
prompt: summaryPrompt,
|
|
run,
|
|
enqueuedAt: Date.now(),
|
|
});
|
|
}))
|
|
) {
|
|
break;
|
|
}
|
|
clearQueueSummaryState(queue);
|
|
continue;
|
|
}
|
|
|
|
if (!(await drainNextQueueItem(queue.items, runFollowup))) {
|
|
break;
|
|
}
|
|
}
|
|
} catch (err) {
|
|
queue.lastEnqueuedAt = Date.now();
|
|
defaultRuntime.error?.(`followup queue drain failed for ${key}: ${String(err)}`);
|
|
} finally {
|
|
queue.draining = false;
|
|
if (queue.items.length === 0 && queue.droppedCount === 0) {
|
|
FOLLOWUP_QUEUES.delete(key);
|
|
} else {
|
|
scheduleFollowupDrain(key, runFollowup);
|
|
}
|
|
}
|
|
})();
|
|
}
|