mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
# Conflicts: # docs/config-catalog.md # docs/event-producer-consumer.md # docs/rfc/implemented/feature/2026-07-05-dynamic-workflows.md # examples/acp-agent/tests/acp.snapshot.ts # packages/code-runtime/code-runtime-worker/tests/built-lib.e2e.ts # packages/code-runtime/code-runtime-worker/tsdown.config.ts
224 lines
7.4 KiB
TypeScript
224 lines
7.4 KiB
TypeScript
/**
|
|
* Newline-delimited JSON-RPC 2.0 over byte streams. Frames with `id` and
|
|
* `method` are requests, `id` alone is a response, and `method` alone is a
|
|
* notification. Malformed lines are ignored; handler failures become error frames.
|
|
*
|
|
* @module @deepseek-ai/dsh-jsonrpc/transport
|
|
*/
|
|
|
|
import { randomUUID } from 'node:crypto'
|
|
import type { Readable, Writable } from 'node:stream'
|
|
import { StringDecoder } from 'node:string_decoder'
|
|
|
|
type JsonRpcId = string | number
|
|
type RequestHandler = (method: string, params: Record<string, unknown>) => Promise<unknown>
|
|
type NotificationHandler = (method: string, params: Record<string, unknown>) => void
|
|
|
|
/**
|
|
* Outbound request and notification surface used by {@link HarnessSdkServer}.
|
|
*/
|
|
export interface JsonRpcTransportPeer {
|
|
/**
|
|
* Send a request and await its response.
|
|
* @param method - the JSON-RPC method name.
|
|
* @param params - the request parameters object.
|
|
* @returns the result; rejects on an error response, write failure, or closure.
|
|
*/
|
|
request(method: string, params: Record<string, unknown>): Promise<unknown>
|
|
/**
|
|
* Send a notification; omitted params produce no `params` member.
|
|
* @param method - the JSON-RPC method name.
|
|
* @param params - the optional notification parameters object.
|
|
*/
|
|
notify(method: string, params?: Record<string, unknown>): void
|
|
}
|
|
|
|
interface PendingRequest {
|
|
resolve: (value: unknown) => void
|
|
reject: (error: Error) => void
|
|
}
|
|
|
|
/**
|
|
* Line-delimited endpoint over caller-owned streams. {@link start} attaches
|
|
* listeners; {@link close} detaches them and rejects pending requests without
|
|
* destroying the streams. Missing request handlers return `-32601`; handler
|
|
* failures return `-32603`. Notifications without a handler are dropped.
|
|
*/
|
|
export class JsonRpcLineTransport implements JsonRpcTransportPeer {
|
|
private buffer = ''
|
|
private readonly decoder = new StringDecoder('utf8')
|
|
private started = false
|
|
private requestHandler: RequestHandler | undefined
|
|
private notificationHandler: NotificationHandler | undefined
|
|
private readonly pending = new Map<JsonRpcId, PendingRequest>()
|
|
|
|
constructor(
|
|
private readonly input: Readable,
|
|
private readonly output: Writable,
|
|
) {}
|
|
|
|
/** Attach the input listeners and begin reading frames. Idempotent. */
|
|
start(): void {
|
|
if (this.started) return
|
|
this.started = true
|
|
this.input.on('data', this.onData)
|
|
this.input.on('error', this.onInputError)
|
|
this.input.on('end', this.onInputEnd)
|
|
}
|
|
|
|
/**
|
|
* Detach listeners and reject pending requests. Safe before {@link start}.
|
|
*/
|
|
close(): void {
|
|
this.input.off('data', this.onData)
|
|
this.input.off('error', this.onInputError)
|
|
this.input.off('end', this.onInputEnd)
|
|
this.failPending(new Error('JSON-RPC transport closed'))
|
|
}
|
|
|
|
/**
|
|
* Install the request handler, replacing any prior handler.
|
|
* @param handler - resolves to the response `result`; a rejection becomes a
|
|
* `-32603` error response carrying the message.
|
|
*/
|
|
onRequest(handler: RequestHandler): void {
|
|
this.requestHandler = handler
|
|
}
|
|
|
|
/**
|
|
* Install the notification handler, replacing any prior handler.
|
|
* @param handler - invoked per notification with the method and normalized
|
|
* params object.
|
|
*/
|
|
onNotification(handler: NotificationHandler): void {
|
|
this.notificationHandler = handler
|
|
}
|
|
|
|
request(method: string, params: Record<string, unknown>): Promise<unknown> {
|
|
const id = `req_${randomUUID().replaceAll('-', '')}`
|
|
const message = { jsonrpc: '2.0', id, method, params }
|
|
return new Promise((resolve, reject) => {
|
|
this.pending.set(id, { resolve, reject })
|
|
try {
|
|
this.write(message)
|
|
} catch (error) {
|
|
this.pending.delete(id)
|
|
reject(error instanceof Error ? error : new Error(String(error)))
|
|
}
|
|
})
|
|
}
|
|
|
|
notify(method: string, params?: Record<string, unknown>): void {
|
|
this.write(params === undefined ? { jsonrpc: '2.0', method } : { jsonrpc: '2.0', method, params })
|
|
}
|
|
|
|
/**
|
|
* Wait for prior frame write callbacks. The empty barrier emits no bytes.
|
|
* @returns a promise that settles with the output write callback.
|
|
*/
|
|
flush(): Promise<void> {
|
|
return new Promise<void>((resolve, reject) => {
|
|
this.output.write('', (error) => {
|
|
if (error) reject(error)
|
|
else resolve()
|
|
})
|
|
})
|
|
}
|
|
|
|
private readonly onData = (chunk: Buffer | string): void => {
|
|
this.buffer += typeof chunk === 'string' ? chunk : this.decoder.write(chunk)
|
|
this.drainLines()
|
|
}
|
|
|
|
private drainLines(): void {
|
|
for (;;) {
|
|
const newline = this.buffer.indexOf('\n')
|
|
if (newline < 0) break
|
|
const line = this.buffer.slice(0, newline).trim()
|
|
this.buffer = this.buffer.slice(newline + 1)
|
|
if (!line) continue
|
|
void this.handleLine(line)
|
|
}
|
|
}
|
|
|
|
private readonly onInputError = (error: Error): void => {
|
|
this.failPending(error)
|
|
}
|
|
|
|
private readonly onInputEnd = (): void => {
|
|
this.buffer += this.decoder.end()
|
|
this.drainLines()
|
|
this.failPending(new Error('JSON-RPC input closed'))
|
|
}
|
|
|
|
private async handleLine(line: string): Promise<void> {
|
|
let message: unknown
|
|
try {
|
|
message = JSON.parse(line)
|
|
} catch {
|
|
// Only JSON syntax errors reach this catch; malformed peer lines are ignored.
|
|
return
|
|
}
|
|
if (!message || typeof message !== 'object') return
|
|
const frame = message as Record<string, unknown>
|
|
const id = frame.id
|
|
const method = frame.method
|
|
if ((typeof id === 'string' || typeof id === 'number') && typeof method === 'string') {
|
|
await this.handleIncomingRequest(id, method, objectParams(frame.params))
|
|
return
|
|
}
|
|
if (typeof id === 'string' || typeof id === 'number') {
|
|
this.handleIncomingResponse(id, frame)
|
|
return
|
|
}
|
|
if (typeof method === 'string') {
|
|
this.notificationHandler?.(method, objectParams(frame.params))
|
|
}
|
|
}
|
|
|
|
private async handleIncomingRequest(id: JsonRpcId, method: string, params: Record<string, unknown>): Promise<void> {
|
|
const handler = this.requestHandler
|
|
if (!handler) {
|
|
this.writeError(id, -32601, `method not found: ${method}`)
|
|
return
|
|
}
|
|
try {
|
|
const result = await handler(method, params)
|
|
this.write({ jsonrpc: '2.0', id, result })
|
|
} catch (error) {
|
|
this.writeError(id, -32603, error instanceof Error ? error.message : String(error))
|
|
}
|
|
}
|
|
|
|
private handleIncomingResponse(id: JsonRpcId, frame: Record<string, unknown>): void {
|
|
const pending = this.pending.get(id)
|
|
if (!pending) return
|
|
this.pending.delete(id)
|
|
if (frame.error && typeof frame.error === 'object') {
|
|
const error = frame.error as Record<string, unknown>
|
|
pending.reject(new Error(typeof error.message === 'string' ? error.message : 'JSON-RPC error'))
|
|
return
|
|
}
|
|
pending.resolve(frame.result)
|
|
}
|
|
|
|
private writeError(id: JsonRpcId, code: number, message: string): void {
|
|
this.write({ jsonrpc: '2.0', id, error: { code, message } })
|
|
}
|
|
|
|
private write(message: Record<string, unknown>): void {
|
|
this.output.write(`${JSON.stringify(message)}\n`)
|
|
}
|
|
|
|
private failPending(error: Error): void {
|
|
const pending = [...this.pending.values()]
|
|
this.pending.clear()
|
|
for (const waiter of pending) waiter.reject(error)
|
|
}
|
|
}
|
|
|
|
/** Normalize JSON-RPC `params` to a plain object (arrays and scalars collapse to `{}`). */
|
|
function objectParams(params: unknown): Record<string, unknown> {
|
|
return params && typeof params === 'object' && !Array.isArray(params) ? params as Record<string, unknown> : {}
|
|
}
|