|
|
@@ -1,22 +1,19 @@
|
|
|
-import { EventV2Bridge } from "@/event-v2-bridge"
|
|
|
-import { EventV2 } from "@opencode-ai/core/event"
|
|
|
-import { Config } from "@/config/config"
|
|
|
-import { InstanceState } from "@/effect/instance-state"
|
|
|
-import { EffectBridge } from "@/effect/bridge"
|
|
|
-import { lazy } from "@opencode-ai/core/util/lazy"
|
|
|
-import { Plugin } from "@/plugin"
|
|
|
-import { Shell } from "@/shell/shell"
|
|
|
-import type { Proc } from "#pty"
|
|
|
-import * as Log from "@opencode-ai/core/util/log"
|
|
|
-import { PtyID } from "./schema"
|
|
|
-import { Effect, Layer, Context, Schema, Types } from "effect"
|
|
|
-import { NonNegativeInt, PositiveInt } from "@opencode-ai/core/schema"
|
|
|
+export * as Pty from "./pty"
|
|
|
|
|
|
-const log = Log.create({ service: "pty" })
|
|
|
+import type { Disp, Proc } from "#pty"
|
|
|
+import { Context, Effect, Layer, Schema, Types } from "effect"
|
|
|
+import { EventV2 } from "./event"
|
|
|
+import { Location } from "./location"
|
|
|
+import { NonNegativeInt, PositiveInt } from "./schema"
|
|
|
+import { PtyID } from "./pty/schema"
|
|
|
+import { lazy } from "./util/lazy"
|
|
|
+import * as Log from "./util/log"
|
|
|
|
|
|
+const log = Log.create({ service: "pty" })
|
|
|
const BUFFER_LIMIT = 1024 * 1024 * 2
|
|
|
const BUFFER_CHUNK = 64 * 1024
|
|
|
const encoder = new TextEncoder()
|
|
|
+const pty = lazy(() => import("#pty"))
|
|
|
|
|
|
type Socket = {
|
|
|
readyState: number
|
|
|
@@ -25,8 +22,6 @@ type Socket = {
|
|
|
close: (code?: number, reason?: string) => void
|
|
|
}
|
|
|
|
|
|
-const sock = (ws: Socket) => (ws.data && typeof ws.data === "object" ? ws.data : ws)
|
|
|
-
|
|
|
type Active = {
|
|
|
info: Info
|
|
|
process: Proc
|
|
|
@@ -34,12 +29,10 @@ type Active = {
|
|
|
bufferCursor: number
|
|
|
cursor: number
|
|
|
subscribers: Map<unknown, Socket>
|
|
|
+ listeners: Disp[]
|
|
|
}
|
|
|
|
|
|
-type State = {
|
|
|
- dir: string
|
|
|
- sessions: Map<PtyID, Active>
|
|
|
-}
|
|
|
+const sock = (ws: Socket) => (ws.data && typeof ws.data === "object" ? ws.data : ws)
|
|
|
|
|
|
// WebSocket control frame: 0x00 + UTF-8 JSON.
|
|
|
const meta = (cursor: number) => {
|
|
|
@@ -51,8 +44,6 @@ const meta = (cursor: number) => {
|
|
|
return out
|
|
|
}
|
|
|
|
|
|
-const pty = lazy(() => import("#pty"))
|
|
|
-
|
|
|
export const Info = Schema.Struct({
|
|
|
id: PtyID,
|
|
|
title: Schema.String,
|
|
|
@@ -60,14 +51,11 @@ export const Info = Schema.Struct({
|
|
|
args: Schema.Array(Schema.String),
|
|
|
cwd: Schema.String,
|
|
|
status: Schema.Literals(["running", "exited"]),
|
|
|
- // Windows ConPTY (@lydell/node-pty >= 1.2.0-beta.12) assigns the child pid
|
|
|
- // asynchronously, so `proc.pid` is 0 at the synchronous spawn point and only
|
|
|
- // resolves a tick later. `create` snapshots it immediately, so 0 is a valid
|
|
|
- // "pid not yet assigned" value here.
|
|
|
+ // Windows ConPTY assigns the child pid asynchronously, so 0 is valid at spawn time.
|
|
|
pid: NonNegativeInt,
|
|
|
}).annotate({ identifier: "Pty" })
|
|
|
|
|
|
-export type Info = Types.DeepMutable<Schema.Schema.Type<typeof Info>>
|
|
|
+export type Info = Types.DeepMutable<typeof Info.Type>
|
|
|
|
|
|
export const CreateInput = Schema.Struct({
|
|
|
command: Schema.optional(Schema.String),
|
|
|
@@ -77,7 +65,15 @@ export const CreateInput = Schema.Struct({
|
|
|
env: Schema.optional(Schema.Record(Schema.String, Schema.String)),
|
|
|
})
|
|
|
|
|
|
-export type CreateInput = Types.DeepMutable<Schema.Schema.Type<typeof CreateInput>>
|
|
|
+export type CreateInput = Types.DeepMutable<typeof CreateInput.Type>
|
|
|
+
|
|
|
+export type PreparedCreate = {
|
|
|
+ readonly command: string
|
|
|
+ readonly args: string[]
|
|
|
+ readonly cwd: string
|
|
|
+ readonly title?: string
|
|
|
+ readonly env: Record<string, string>
|
|
|
+}
|
|
|
|
|
|
export const UpdateInput = Schema.Struct({
|
|
|
title: Schema.optional(Schema.String),
|
|
|
@@ -89,7 +85,7 @@ export const UpdateInput = Schema.Struct({
|
|
|
),
|
|
|
})
|
|
|
|
|
|
-export type UpdateInput = Types.DeepMutable<Schema.Schema.Type<typeof UpdateInput>>
|
|
|
+export type UpdateInput = Types.DeepMutable<typeof UpdateInput.Type>
|
|
|
|
|
|
export class NotFoundError extends Schema.TaggedErrorClass<NotFoundError>()("Pty.NotFoundError", {
|
|
|
ptyID: PtyID,
|
|
|
@@ -105,7 +101,7 @@ export const Event = {
|
|
|
export interface Interface {
|
|
|
readonly list: () => Effect.Effect<Info[]>
|
|
|
readonly get: (id: PtyID) => Effect.Effect<Info, NotFoundError>
|
|
|
- readonly create: (input: CreateInput) => Effect.Effect<Info>
|
|
|
+ readonly create: (input: PreparedCreate) => Effect.Effect<Info>
|
|
|
readonly update: (id: PtyID, input: UpdateInput) => Effect.Effect<Info, NotFoundError>
|
|
|
readonly remove: (id: PtyID) => Effect.Effect<void, NotFoundError>
|
|
|
readonly resize: (id: PtyID, cols: number, rows: number) => Effect.Effect<void, NotFoundError>
|
|
|
@@ -120,16 +116,20 @@ export interface Interface {
|
|
|
>
|
|
|
}
|
|
|
|
|
|
-export class Service extends Context.Service<Service, Interface>()("@opencode/Pty") {}
|
|
|
+export class Service extends Context.Service<Service, Interface>()("@opencode/v2/Pty") {}
|
|
|
|
|
|
export const layer = Layer.effect(
|
|
|
Service,
|
|
|
Effect.gen(function* () {
|
|
|
- const config = yield* Config.Service
|
|
|
- const events = yield* EventV2Bridge.Service
|
|
|
- const plugin = yield* Plugin.Service
|
|
|
+ const events = yield* EventV2.Service
|
|
|
+ const location = yield* Location.Service
|
|
|
+ const context = yield* Effect.context()
|
|
|
+ const runFork = Effect.runForkWith(context)
|
|
|
+ const sessions = new Map<PtyID, Active>()
|
|
|
|
|
|
function teardown(session: Active) {
|
|
|
+ for (const listener of session.listeners) listener.dispose()
|
|
|
+ session.listeners.length = 0
|
|
|
try {
|
|
|
session.process.kill()
|
|
|
} catch {}
|
|
|
@@ -141,93 +141,59 @@ export const layer = Layer.effect(
|
|
|
session.subscribers.clear()
|
|
|
}
|
|
|
|
|
|
- const state = yield* InstanceState.make<State>(
|
|
|
- Effect.fn("Pty.state")(function* (ctx) {
|
|
|
- const state = {
|
|
|
- dir: ctx.directory,
|
|
|
- sessions: new Map<PtyID, Active>(),
|
|
|
- }
|
|
|
-
|
|
|
- yield* Effect.addFinalizer(() =>
|
|
|
- Effect.sync(() => {
|
|
|
- for (const session of state.sessions.values()) {
|
|
|
- teardown(session)
|
|
|
- }
|
|
|
- state.sessions.clear()
|
|
|
- }),
|
|
|
- )
|
|
|
-
|
|
|
- return state
|
|
|
+ yield* Effect.addFinalizer(() =>
|
|
|
+ Effect.sync(() => {
|
|
|
+ for (const session of sessions.values()) teardown(session)
|
|
|
+ sessions.clear()
|
|
|
}),
|
|
|
)
|
|
|
|
|
|
const requireSession = Effect.fn("Pty.requireSession")(function* (id: PtyID) {
|
|
|
- const session = (yield* InstanceState.get(state)).sessions.get(id)
|
|
|
+ const session = sessions.get(id)
|
|
|
if (!session) return yield* new NotFoundError({ ptyID: id })
|
|
|
return session
|
|
|
})
|
|
|
|
|
|
- const remove = Effect.fn("Pty.remove")(function* (id: PtyID) {
|
|
|
- const s = yield* InstanceState.get(state)
|
|
|
- const session = yield* requireSession(id)
|
|
|
- s.sessions.delete(id)
|
|
|
+ const removeSession = Effect.fnUntraced(function* (id: PtyID) {
|
|
|
+ const session = sessions.get(id)
|
|
|
+ if (!session) return false
|
|
|
+ sessions.delete(id)
|
|
|
log.info("removing session", { id })
|
|
|
teardown(session)
|
|
|
yield* events.publish(Event.Deleted, { id: session.info.id })
|
|
|
+ return true
|
|
|
+ })
|
|
|
+
|
|
|
+ const remove = Effect.fn("Pty.remove")(function* (id: PtyID) {
|
|
|
+ yield* requireSession(id)
|
|
|
+ yield* removeSession(id)
|
|
|
})
|
|
|
|
|
|
const list = Effect.fn("Pty.list")(function* () {
|
|
|
- const s = yield* InstanceState.get(state)
|
|
|
- return Array.from(s.sessions.values()).map((session) => session.info)
|
|
|
+ return Array.from(sessions.values()).map((session) => session.info)
|
|
|
})
|
|
|
|
|
|
const get = Effect.fn("Pty.get")(function* (id: PtyID) {
|
|
|
return (yield* requireSession(id)).info
|
|
|
})
|
|
|
|
|
|
- const create = Effect.fn("Pty.create")(function* (input: CreateInput) {
|
|
|
- const s = yield* InstanceState.get(state)
|
|
|
- const bridge = yield* EffectBridge.make()
|
|
|
- const cfg = yield* config.get()
|
|
|
+ const create = Effect.fn("Pty.create")(function* (input: PreparedCreate) {
|
|
|
const id = PtyID.ascending()
|
|
|
- const command = input.command || Shell.preferred(cfg.shell)
|
|
|
- const args = input.args || []
|
|
|
- if (Shell.login(command)) {
|
|
|
- args.push("-l")
|
|
|
- }
|
|
|
-
|
|
|
- const cwd = input.cwd || s.dir
|
|
|
- const shell = yield* plugin.trigger("shell.env", { cwd }, { env: {} })
|
|
|
- const env = {
|
|
|
- ...process.env,
|
|
|
- ...input.env,
|
|
|
- ...shell.env,
|
|
|
- TERM: "xterm-256color",
|
|
|
- OPENCODE_TERMINAL: "1",
|
|
|
- } as Record<string, string>
|
|
|
-
|
|
|
- if (process.platform === "win32") {
|
|
|
- env.LC_ALL = "C.UTF-8"
|
|
|
- env.LC_CTYPE = "C.UTF-8"
|
|
|
- env.LANG = "C.UTF-8"
|
|
|
- }
|
|
|
- log.info("creating session", { id, cmd: command, args, cwd })
|
|
|
-
|
|
|
+ log.info("creating session", { id, cmd: input.command, args: input.args, cwd: input.cwd })
|
|
|
const { spawn } = yield* Effect.promise(() => pty())
|
|
|
const proc = yield* Effect.sync(() =>
|
|
|
- spawn(command, args, {
|
|
|
+ spawn(input.command, input.args, {
|
|
|
name: "xterm-256color",
|
|
|
- cwd,
|
|
|
- env,
|
|
|
+ cwd: input.cwd,
|
|
|
+ env: input.env,
|
|
|
}),
|
|
|
)
|
|
|
-
|
|
|
const info = {
|
|
|
id,
|
|
|
title: input.title || `Terminal ${id.slice(-4)}`,
|
|
|
- command,
|
|
|
- args,
|
|
|
- cwd,
|
|
|
+ command: input.command,
|
|
|
+ args: input.args,
|
|
|
+ cwd: input.cwd,
|
|
|
status: "running",
|
|
|
pid: proc.pid,
|
|
|
} as const
|
|
|
@@ -238,113 +204,89 @@ export const layer = Layer.effect(
|
|
|
bufferCursor: 0,
|
|
|
cursor: 0,
|
|
|
subscribers: new Map(),
|
|
|
+ listeners: [],
|
|
|
}
|
|
|
- s.sessions.set(id, session)
|
|
|
- proc.onData((chunk) => {
|
|
|
- session.cursor += chunk.length
|
|
|
-
|
|
|
- for (const [key, ws] of session.subscribers.entries()) {
|
|
|
- if (ws.readyState !== 1) {
|
|
|
- session.subscribers.delete(key)
|
|
|
- continue
|
|
|
- }
|
|
|
- if (sock(ws) !== key) {
|
|
|
- session.subscribers.delete(key)
|
|
|
- continue
|
|
|
- }
|
|
|
- try {
|
|
|
- ws.send(chunk)
|
|
|
- } catch {
|
|
|
- session.subscribers.delete(key)
|
|
|
+ sessions.set(id, session)
|
|
|
+ session.listeners.push(
|
|
|
+ proc.onData((chunk) => {
|
|
|
+ session.cursor += chunk.length
|
|
|
+ for (const [key, ws] of session.subscribers.entries()) {
|
|
|
+ if (ws.readyState !== 1 || sock(ws) !== key) {
|
|
|
+ session.subscribers.delete(key)
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ ws.send(chunk)
|
|
|
+ } catch {
|
|
|
+ session.subscribers.delete(key)
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- session.buffer += chunk
|
|
|
- if (session.buffer.length <= BUFFER_LIMIT) return
|
|
|
- const excess = session.buffer.length - BUFFER_LIMIT
|
|
|
- session.buffer = session.buffer.slice(excess)
|
|
|
- session.bufferCursor += excess
|
|
|
- })
|
|
|
- proc.onExit(({ exitCode }) => {
|
|
|
- if (session.info.status === "exited") return
|
|
|
- log.info("session exited", { id, exitCode })
|
|
|
- session.info.status = "exited"
|
|
|
- bridge.fork(events.publish(Event.Exited, { id, exitCode }))
|
|
|
- bridge.fork(remove(id))
|
|
|
- })
|
|
|
+ session.buffer += chunk
|
|
|
+ if (session.buffer.length <= BUFFER_LIMIT) return
|
|
|
+ const excess = session.buffer.length - BUFFER_LIMIT
|
|
|
+ session.buffer = session.buffer.slice(excess)
|
|
|
+ session.bufferCursor += excess
|
|
|
+ }),
|
|
|
+ proc.onExit(({ exitCode }) => {
|
|
|
+ if (session.info.status === "exited") return
|
|
|
+ runFork(
|
|
|
+ Effect.gen(function* () {
|
|
|
+ log.info("session exited", { id, exitCode })
|
|
|
+ session.info.status = "exited"
|
|
|
+ yield* events.publish(Event.Exited, { id, exitCode })
|
|
|
+ yield* removeSession(id)
|
|
|
+ }),
|
|
|
+ )
|
|
|
+ }),
|
|
|
+ )
|
|
|
yield* events.publish(Event.Created, { info })
|
|
|
return info
|
|
|
})
|
|
|
|
|
|
const update = Effect.fn("Pty.update")(function* (id: PtyID, input: UpdateInput) {
|
|
|
const session = yield* requireSession(id)
|
|
|
- if (input.title) {
|
|
|
- session.info.title = input.title
|
|
|
- }
|
|
|
- if (input.size) {
|
|
|
- session.process.resize(input.size.cols, input.size.rows)
|
|
|
- }
|
|
|
+ if (input.title) session.info.title = input.title
|
|
|
+ if (input.size) session.process.resize(input.size.cols, input.size.rows)
|
|
|
yield* events.publish(Event.Updated, { info: session.info })
|
|
|
return session.info
|
|
|
})
|
|
|
|
|
|
const resize = Effect.fn("Pty.resize")(function* (id: PtyID, cols: number, rows: number) {
|
|
|
const session = yield* requireSession(id)
|
|
|
- if (session.info.status === "running") {
|
|
|
- session.process.resize(cols, rows)
|
|
|
- }
|
|
|
+ if (session.info.status === "running") session.process.resize(cols, rows)
|
|
|
})
|
|
|
|
|
|
const write = Effect.fn("Pty.write")(function* (id: PtyID, data: string) {
|
|
|
const session = yield* requireSession(id)
|
|
|
- if (session.info.status === "running") {
|
|
|
- session.process.write(data)
|
|
|
- }
|
|
|
+ if (session.info.status === "running") session.process.write(data)
|
|
|
})
|
|
|
|
|
|
const connect = Effect.fn("Pty.connect")(function* (id: PtyID, ws: Socket, cursor?: number) {
|
|
|
- const session = yield* requireSession(id).pipe(
|
|
|
- Effect.tapError(() =>
|
|
|
- Effect.sync(() => {
|
|
|
- ws.close()
|
|
|
- }),
|
|
|
- ),
|
|
|
- )
|
|
|
- log.info("client connected to session", { id })
|
|
|
-
|
|
|
+ const session = yield* requireSession(id).pipe(Effect.tapError(() => Effect.sync(() => ws.close())))
|
|
|
+ log.info("client connected to session", { id, directory: location.directory })
|
|
|
const sub = sock(ws)
|
|
|
session.subscribers.delete(sub)
|
|
|
session.subscribers.set(sub, ws)
|
|
|
-
|
|
|
- const cleanup = () => {
|
|
|
- session.subscribers.delete(sub)
|
|
|
- }
|
|
|
-
|
|
|
+ const cleanup = () => session.subscribers.delete(sub)
|
|
|
const start = session.bufferCursor
|
|
|
const end = session.cursor
|
|
|
const from =
|
|
|
cursor === -1 ? end : typeof cursor === "number" && Number.isSafeInteger(cursor) ? Math.max(0, cursor) : 0
|
|
|
-
|
|
|
const data = (() => {
|
|
|
- if (!session.buffer) return ""
|
|
|
- if (from >= end) return ""
|
|
|
+ if (!session.buffer || from >= end) return ""
|
|
|
const offset = Math.max(0, from - start)
|
|
|
if (offset >= session.buffer.length) return ""
|
|
|
return session.buffer.slice(offset)
|
|
|
})()
|
|
|
-
|
|
|
if (data) {
|
|
|
try {
|
|
|
- for (let i = 0; i < data.length; i += BUFFER_CHUNK) {
|
|
|
- ws.send(data.slice(i, i + BUFFER_CHUNK))
|
|
|
- }
|
|
|
+ for (let i = 0; i < data.length; i += BUFFER_CHUNK) ws.send(data.slice(i, i + BUFFER_CHUNK))
|
|
|
} catch {
|
|
|
cleanup()
|
|
|
ws.close()
|
|
|
return
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
try {
|
|
|
ws.send(meta(end))
|
|
|
} catch {
|
|
|
@@ -352,7 +294,6 @@ export const layer = Layer.effect(
|
|
|
ws.close()
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
return {
|
|
|
onMessage: (message: string | ArrayBuffer) => {
|
|
|
session.process.write(typeof message === "string" ? message : new TextDecoder().decode(message))
|
|
|
@@ -368,10 +309,4 @@ export const layer = Layer.effect(
|
|
|
}),
|
|
|
)
|
|
|
|
|
|
-export const defaultLayer = layer.pipe(
|
|
|
- Layer.provide(EventV2Bridge.defaultLayer),
|
|
|
- Layer.provide(Plugin.defaultLayer),
|
|
|
- Layer.provide(Config.defaultLayer),
|
|
|
-)
|
|
|
-
|
|
|
-export * as Pty from "."
|
|
|
+export const locationLayer = layer
|