summaryrefslogtreecommitdiffhomepage
path: root/packages/kernel/src/runtime/dispatch.ts
blob: 01f00431e576155c248bec3a346f9e3d975598d8 (plain)
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
import type { ToolDispatchPolicy } from "../contracts/dispatch.js";
import type { Logger, Span } from "../contracts/logging.js";
import type { EventEmitter } from "../contracts/runtime.js";
import type { ToolCall, ToolContract, ToolExecuteContext, ToolResult } from "../contracts/tool.js";
import { toolOutputEvent } from "./events.js";

export interface StepDispatcher {
	submit(call: ToolCall): void;
	drain(): Promise<Map<string, ToolResult>>;
}

export async function executeToolCall(
	call: ToolCall,
	tool: ToolContract | undefined,
	signal: AbortSignal,
	emit: EventEmitter,
	conversationId: string,
	turnId: string,
	toolSpan?: Span,
	cwd?: string,
	computerId?: string,
): Promise<ToolResult> {
	if (tool === undefined) {
		return { content: `Unknown tool: ${call.name}`, isError: true };
	}
	if (signal.aborted) {
		return { content: "Aborted", isError: true };
	}
	const ctx: ToolExecuteContext = {
		toolCallId: call.id,
		signal,
		onOutput: (data, stream) => {
			emit(toolOutputEvent(conversationId, turnId, call.id, data, stream));
		},
		log: toolSpan?.log ?? createNoopLogger(),
		conversationId,
		...(cwd !== undefined ? { cwd } : {}),
		...(computerId !== undefined ? { computerId } : {}),
	};
	// Race the tool's execute promise against the abort signal so a tool
	// that hangs (ignores ctx.signal, or blocks on something the signal
	// can't interrupt) can't keep runTurn from returning. When the signal
	// fires we RESOLVE (not reject) with an "Aborted" result so the step
	// completes normally and the existing signal.aborted → finishReason =
	// "aborted" path seals the turn cleanly (done event), letting the
	// caller's finally clear active state and the FE clear its spinner.
	try {
		const toolPromise = tool.execute(call.input, ctx);
		const abortPromise = new Promise<ToolResult>((resolve) => {
			signal.addEventListener("abort", () => resolve({ content: "Aborted", isError: true }), {
				once: true,
			});
		});
		// Swallow late rejections from the orphaned tool promise: the tool
		// may reject after the race already resolved with "Aborted".
		void toolPromise.catch(() => {});
		return await Promise.race([toolPromise, abortPromise]);
	} catch (err) {
		const message = err instanceof Error ? err.message : String(err);
		return { content: `Tool execution error: ${message}`, isError: true };
	}
}

interface QueueEntry {
	readonly call: ToolCall;
	readonly tool: ToolContract | undefined;
	readonly resolve: (result: ToolResult) => void;
}

export function createStepDispatcher(
	toolMap: Map<string, ToolContract>,
	policy: ToolDispatchPolicy,
	signal: AbortSignal,
	emit: EventEmitter,
	conversationId: string,
	turnId: string,
	toolSpans: Map<string, Span>,
	cwd?: string,
	computerId?: string,
): StepDispatcher {
	let activeCount = 0;
	let unsafeRunning = false;
	const queue: QueueEntry[] = [];
	const allPromises: Array<{ id: string; promise: Promise<ToolResult> }> = [];
	const dedupMap = new Map<string, Promise<ToolResult>>();

	function canStart(isConcurrencySafe: boolean): boolean {
		if (unsafeRunning) return false;
		if (!isConcurrencySafe && activeCount > 0) return false;
		if (policy.maxConcurrent === 0) return true;
		return activeCount < policy.maxConcurrent;
	}

	function tryStartNext(): void {
		while (queue.length > 0) {
			const next = queue[0];
			if (next === undefined) break;
			const isSafe = next.tool?.concurrencySafe !== false;
			if (!canStart(isSafe)) break;
			queue.shift();
			activeCount++;
			if (!isSafe) unsafeRunning = true;
			void runAndResolve(next);
		}
	}

	async function runAndResolve(entry: QueueEntry): Promise<void> {
		const tcSpan = toolSpans.get(entry.call.id);
		const result = await executeToolCall(
			entry.call,
			entry.tool,
			signal,
			emit,
			conversationId,
			turnId,
			tcSpan,
			cwd,
			computerId,
		);
		activeCount--;
		if (entry.tool?.concurrencySafe === false) unsafeRunning = false;
		entry.resolve(result);
		tryStartNext();
	}

	function submit(call: ToolCall): void {
		const tool = toolMap.get(call.name);
		const key = `${call.name}:${JSON.stringify(call.input)}`;

		const existing = dedupMap.get(key);
		if (existing !== undefined) {
			allPromises.push({ id: call.id, promise: existing });
			return;
		}

		const promise = new Promise<ToolResult>((resolve) => {
			queue.push({ call, tool, resolve });
			tryStartNext();
		});

		dedupMap.set(key, promise);
		allPromises.push({ id: call.id, promise });
	}

	async function drain(): Promise<Map<string, ToolResult>> {
		if (signal.aborted) {
			for (const item of queue) {
				item.resolve({ content: "Aborted", isError: true });
			}
			queue.length = 0;
		}

		const results = new Map<string, ToolResult>();
		for (const entry of allPromises) {
			const result = await entry.promise;
			results.set(entry.id, result);
		}
		return results;
	}

	return { submit, drain };
}

function createNoopLogger(): Logger {
	return {
		debug() {},
		info() {},
		warn() {},
		error() {},
		child() {
			return createNoopLogger();
		},
		span() {
			return {
				id: "noop",
				log: createNoopLogger(),
				setAttributes() {},
				addLink() {},
				child() {
					return this;
				},
				end() {},
			};
		},
	};
}