File size: 11,298 Bytes
f59fbe2 | 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 | import {
createKimiHarness,
type KimiHarness,
type Session,
type SessionSummary,
type ThinkingEffort,
} from "@moonshot-ai/kimi-code-sdk";
import type { RuntimeBroadcast } from "./session-runtime";
import {
corePermissionForLegacyApproval,
legacyApprovalMetadata,
readLegacyApprovalFlags,
readMigratedLegacyApprovalFlags,
withGlobalYoloMode,
type LegacyApprovalFlags,
} from "./legacy-approval";
import { SessionRuntime } from "./session-runtime";
import { areSameFsPath } from "../utils/fs-path";
export interface KimiRuntimeOptions {
readonly version: string;
readonly broadcast: RuntimeBroadcast;
readonly captureBaseline: (
session: Pick<SessionSummary, "id" | "workDir" | "metadata">,
filePath: string,
webviewIds: readonly string[],
) => void;
readonly log: (message: string, error?: unknown) => void;
readonly homeDir?: string;
readonly harness?: KimiHarness;
}
export interface OpenSessionOptions {
readonly webviewId: string;
readonly workDir: string;
readonly sessionId?: string;
readonly model: string;
readonly effort: string;
readonly yoloMode: boolean;
}
/** Extension-host owner for one in-process Node SDK harness. */
export class KimiRuntime {
readonly harness: KimiHarness;
private readonly broadcast: RuntimeBroadcast;
private readonly captureBaseline: KimiRuntimeOptions["captureBaseline"];
private readonly log: KimiRuntimeOptions["log"];
private readonly sessions = new Map<string, SessionRuntime>();
private readonly sessionByView = new Map<string, string>();
private readonly viewChains = new Map<string, Promise<void>>();
private closed = false;
constructor(options: KimiRuntimeOptions) {
this.broadcast = options.broadcast;
this.captureBaseline = options.captureBaseline;
this.log = options.log;
this.harness =
options.harness ??
createKimiHarness({
homeDir: options.homeDir,
identity: {
productName: "kimi-code-vscode",
version: options.version,
platform: "kimi_code_vscode",
},
uiMode: "vscode",
});
}
getSessionForView(webviewId: string): SessionRuntime | undefined {
const id = this.sessionByView.get(webviewId);
return id === undefined ? undefined : this.sessions.get(id);
}
getSession(id: string): SessionRuntime | undefined {
return this.sessions.get(id);
}
async openSession(options: OpenSessionOptions): Promise<SessionRuntime> {
return this.serializeView(options.webviewId, () => this.openSessionInner(options));
}
private async openSessionInner(options: OpenSessionOptions): Promise<SessionRuntime> {
this.ensureOpen();
const current = this.getSessionForView(options.webviewId);
const requestedId = options.sessionId ?? current?.id;
if (
current !== undefined &&
requestedId === current.id &&
areSameFsPath(current.session.workDir, options.workDir)
) {
await applySessionSettings(current.session, options, current.legacyApprovalFlags);
await current.announceStatus(options.webviewId);
return current;
}
let runtime = requestedId === undefined ? undefined : this.sessions.get(requestedId);
if (runtime !== undefined) {
assertSessionWorkDir(runtime.session, options.workDir);
await applySessionSettings(runtime.session, options, runtime.legacyApprovalFlags);
await this.detachViewInner(options.webviewId);
} else {
const defaultApproval: LegacyApprovalFlags = { yolo: options.yoloMode, afk: false };
const session =
requestedId === undefined
? await this.harness.createSession({
workDir: options.workDir,
model: options.model || undefined,
thinking: normalizeEffort(options.effort),
permission: corePermissionForLegacyApproval(defaultApproval),
metadata: legacyApprovalMetadata(defaultApproval),
})
: await this.harness.resumeSession({ id: requestedId, includeSubagents: true });
try {
assertSessionWorkDir(session, options.workDir);
const storedApproval = readLegacyApprovalFlags(session.summary?.metadata);
const restoredApproval =
storedApproval ?? (await this.readMigratedLegacyApproval(session)) ?? defaultApproval;
const approval = withGlobalYoloMode(restoredApproval, options.yoloMode);
if (storedApproval === undefined || flagsDiffer(storedApproval, approval)) {
await session.updateMetadata(legacyApprovalMetadata(approval));
}
await applySessionSettings(session, options, approval);
await this.detachViewInner(options.webviewId);
runtime = this.wrapSession(session, approval);
} catch (error) {
await session.close().catch((closeError: unknown) => {
this.log("Failed to close a rejected session", closeError);
});
throw error;
}
}
runtime.subscribe(options.webviewId);
this.sessionByView.set(options.webviewId, runtime.id);
await runtime.announceStatus(options.webviewId);
return runtime;
}
async attachResumedSession(
webviewId: string,
session: Session,
defaultYoloMode = false,
): Promise<SessionRuntime> {
return this.serializeView(webviewId, () =>
this.attachResumedSessionInner(webviewId, session, defaultYoloMode),
);
}
private async attachResumedSessionInner(
webviewId: string,
session: Session,
defaultYoloMode: boolean,
): Promise<SessionRuntime> {
const existing = this.sessions.get(session.id);
if (existing !== undefined && this.sessionByView.get(webviewId) === session.id) {
existing.subscribe(webviewId);
await existing.announceStatus(webviewId);
return existing;
}
await this.detachViewInner(webviewId);
let runtime = existing ?? this.sessions.get(session.id);
if (runtime === undefined) {
try {
const storedApproval = readLegacyApprovalFlags(session.summary?.metadata);
const restoredApproval =
storedApproval ??
(await this.readMigratedLegacyApproval(session)) ??
{ yolo: defaultYoloMode, afk: false };
const approval = withGlobalYoloMode(restoredApproval, defaultYoloMode);
if (storedApproval === undefined || flagsDiffer(storedApproval, approval)) {
await session.updateMetadata(legacyApprovalMetadata(approval));
}
const status = await session.getStatus();
const permission = corePermissionForLegacyApproval(approval);
if (status.permission !== permission) await session.setPermission(permission);
runtime = this.wrapSession(session, approval);
} catch (error) {
await session.close().catch((closeError: unknown) => {
this.log("Failed to close a rejected session", closeError);
});
throw error;
}
}
runtime.subscribe(webviewId);
this.sessionByView.set(webviewId, runtime.id);
await runtime.announceStatus(webviewId);
return runtime;
}
async detachView(webviewId: string): Promise<void> {
return this.serializeView(webviewId, () => this.detachViewInner(webviewId));
}
private async detachViewInner(webviewId: string): Promise<void> {
const id = this.sessionByView.get(webviewId);
if (id === undefined) return;
this.sessionByView.delete(webviewId);
const runtime = this.sessions.get(id);
if (runtime === undefined) return;
runtime.unsubscribeView(webviewId);
if (runtime.subscribers.length === 0) {
this.sessions.delete(id);
await runtime.close();
}
}
// A view attaches to at most one session, so opens/detaches for one view
// must never overlap: concurrent callers that both miss `this.sessions`
// would wrap the same SDK session twice and double every streamed event.
private serializeView<T>(webviewId: string, work: () => Promise<T>): Promise<T> {
const prev = this.viewChains.get(webviewId) ?? Promise.resolve();
const run = prev.then(work, work);
const next = run.then(
() => undefined,
() => undefined,
);
this.viewChains.set(webviewId, next);
void next.finally(() => {
if (this.viewChains.get(webviewId) === next) this.viewChains.delete(webviewId);
});
return run;
}
async closeSession(id: string): Promise<void> {
const runtime = this.sessions.get(id);
if (runtime === undefined) {
await this.harness.closeSession(id);
return;
}
this.sessions.delete(id);
for (const webviewId of runtime.subscribers) {
this.sessionByView.delete(webviewId);
}
await runtime.close();
}
async deleteSession(id: string): Promise<void> {
await this.closeSession(id);
await this.harness.deleteSession(id);
}
async setYoloModeForActiveSessions(enabled: boolean): Promise<void> {
await Promise.all(
[...this.sessions.values()].map((session) => session.setLegacyYoloMode(enabled)),
);
}
async dispose(): Promise<void> {
if (this.closed) return;
this.closed = true;
await Promise.all([...this.sessions.values()].map((session) => session.close()));
this.sessions.clear();
this.sessionByView.clear();
await this.harness.close();
}
private wrapSession(session: Session, legacyApproval: LegacyApprovalFlags): SessionRuntime {
const runtime = new SessionRuntime({
session,
legacyApproval,
broadcast: this.broadcast,
captureBaseline: this.captureBaseline,
log: this.log,
});
this.sessions.set(session.id, runtime);
return runtime;
}
private async readMigratedLegacyApproval(
session: Session,
): Promise<LegacyApprovalFlags | undefined> {
const metadata = session.summary?.metadata;
try {
return await readMigratedLegacyApprovalFlags(metadata);
} catch (error) {
this.log("Unable to restore legacy session approval settings", error);
return undefined;
}
}
private ensureOpen(): void {
if (this.closed) throw new Error("Kimi runtime is closed.");
}
}
async function applySessionSettings(
session: Session,
options: OpenSessionOptions,
legacyApproval: LegacyApprovalFlags,
): Promise<void> {
const status = await session.getStatus();
// Model and thinking effort are applied only when the session is created
// (see openSession). An existing session keeps its own — the global config
// values are defaults for new sessions, matching CLI/TUI resume semantics.
// Changes made in the pickers reach the active session through the
// SaveConfig handler instead.
const permission = corePermissionForLegacyApproval(legacyApproval);
if (status.permission !== permission) {
await session.setPermission(permission);
}
}
export function normalizeEffort(effort: string): ThinkingEffort {
return (effort.trim() || "off") as ThinkingEffort;
}
function flagsDiffer(a: LegacyApprovalFlags, b: LegacyApprovalFlags): boolean {
return a.yolo !== b.yolo || a.afk !== b.afk;
}
function assertSessionWorkDir(session: Pick<Session, "workDir">, expectedWorkDir: string): void {
if (!areSameFsPath(session.workDir, expectedWorkDir)) {
throw new Error("The selected session belongs to a different working directory.");
}
}
|