File size: 8,913 Bytes
064bfd6 | 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 | import type {
AsyncHookJSONOutput,
HookEvent,
SyncHookJSONOutput,
} from 'src/entrypoints/agentSdkTypes.js'
import { logForDebugging } from '../debug.js'
import type { ShellCommand } from '../ShellCommand.js'
import { invalidateSessionEnvCache } from '../sessionEnvironment.js'
import { jsonParse, jsonStringify } from '../slowOperations.js'
import { emitHookResponse, startHookProgressInterval } from './hookEvents.js'
export type PendingAsyncHook = {
processId: string
hookId: string
hookName: string
hookEvent: HookEvent | 'StatusLine' | 'FileSuggestion'
toolName?: string
pluginId?: string
startTime: number
timeout: number
command: string
responseAttachmentSent: boolean
shellCommand?: ShellCommand
stopProgressInterval: () => void
}
// Global registry state
const pendingHooks = new Map<string, PendingAsyncHook>()
export function registerPendingAsyncHook({
processId,
hookId,
asyncResponse,
hookName,
hookEvent,
command,
shellCommand,
toolName,
pluginId,
}: {
processId: string
hookId: string
asyncResponse: AsyncHookJSONOutput
hookName: string
hookEvent: HookEvent | 'StatusLine' | 'FileSuggestion'
command: string
shellCommand: ShellCommand
toolName?: string
pluginId?: string
}): void {
const timeout = asyncResponse.asyncTimeout || 15000 // Default 15s
logForDebugging(
`Hooks: Registering async hook ${processId} (${hookName}) with timeout ${timeout}ms`,
)
const stopProgressInterval = startHookProgressInterval({
hookId,
hookName,
hookEvent,
getOutput: async () => {
const taskOutput = pendingHooks.get(processId)?.shellCommand?.taskOutput
if (!taskOutput) {
return { stdout: '', stderr: '', output: '' }
}
const stdout = await taskOutput.getStdout()
const stderr = taskOutput.getStderr()
return { stdout, stderr, output: stdout + stderr }
},
})
pendingHooks.set(processId, {
processId,
hookId,
hookName,
hookEvent,
toolName,
pluginId,
command,
startTime: Date.now(),
timeout,
responseAttachmentSent: false,
shellCommand,
stopProgressInterval,
})
}
export function getPendingAsyncHooks(): PendingAsyncHook[] {
return Array.from(pendingHooks.values()).filter(
hook => !hook.responseAttachmentSent,
)
}
async function finalizeHook(
hook: PendingAsyncHook,
exitCode: number,
outcome: 'success' | 'error' | 'cancelled',
): Promise<void> {
hook.stopProgressInterval()
const taskOutput = hook.shellCommand?.taskOutput
const stdout = taskOutput ? await taskOutput.getStdout() : ''
const stderr = taskOutput?.getStderr() ?? ''
hook.shellCommand?.cleanup()
emitHookResponse({
hookId: hook.hookId,
hookName: hook.hookName,
hookEvent: hook.hookEvent,
output: stdout + stderr,
stdout,
stderr,
exitCode,
outcome,
})
}
export async function checkForAsyncHookResponses(): Promise<
Array<{
processId: string
response: SyncHookJSONOutput
hookName: string
hookEvent: HookEvent | 'StatusLine' | 'FileSuggestion'
toolName?: string
pluginId?: string
stdout: string
stderr: string
exitCode?: number
}>
> {
const responses: {
processId: string
response: SyncHookJSONOutput
hookName: string
hookEvent: HookEvent | 'StatusLine' | 'FileSuggestion'
toolName?: string
pluginId?: string
stdout: string
stderr: string
exitCode?: number
}[] = []
const pendingCount = pendingHooks.size
logForDebugging(`Hooks: Found ${pendingCount} total hooks in registry`)
// Snapshot hooks before processing — we'll mutate the map after.
const hooks = Array.from(pendingHooks.values())
const settled = await Promise.allSettled(
hooks.map(async hook => {
const stdout = (await hook.shellCommand?.taskOutput.getStdout()) ?? ''
const stderr = hook.shellCommand?.taskOutput.getStderr() ?? ''
logForDebugging(
`Hooks: Checking hook ${hook.processId} (${hook.hookName}) - attachmentSent: ${hook.responseAttachmentSent}, stdout length: ${stdout.length}`,
)
if (!hook.shellCommand) {
logForDebugging(
`Hooks: Hook ${hook.processId} has no shell command, removing from registry`,
)
hook.stopProgressInterval()
return { type: 'remove' as const, processId: hook.processId }
}
logForDebugging(`Hooks: Hook shell status ${hook.shellCommand.status}`)
if (hook.shellCommand.status === 'killed') {
logForDebugging(
`Hooks: Hook ${hook.processId} is ${hook.shellCommand.status}, removing from registry`,
)
hook.stopProgressInterval()
hook.shellCommand.cleanup()
return { type: 'remove' as const, processId: hook.processId }
}
if (hook.shellCommand.status !== 'completed') {
return { type: 'skip' as const }
}
if (hook.responseAttachmentSent || !stdout.trim()) {
logForDebugging(
`Hooks: Skipping hook ${hook.processId} - already delivered/sent or no stdout`,
)
hook.stopProgressInterval()
return { type: 'remove' as const, processId: hook.processId }
}
const lines = stdout.split('\n')
logForDebugging(
`Hooks: Processing ${lines.length} lines of stdout for ${hook.processId}`,
)
const execResult = await hook.shellCommand.result
const exitCode = execResult.code
let response: SyncHookJSONOutput = {}
for (const line of lines) {
if (line.trim().startsWith('{')) {
logForDebugging(
`Hooks: Found JSON line: ${line.trim().substring(0, 100)}...`,
)
try {
const parsed = jsonParse(line.trim())
if (!('async' in parsed)) {
logForDebugging(
`Hooks: Found sync response from ${hook.processId}: ${jsonStringify(parsed)}`,
)
response = parsed
break
}
} catch {
logForDebugging(
`Hooks: Failed to parse JSON from ${hook.processId}: ${line.trim()}`,
)
}
}
}
hook.responseAttachmentSent = true
await finalizeHook(hook, exitCode, exitCode === 0 ? 'success' : 'error')
return {
type: 'response' as const,
processId: hook.processId,
isSessionStart: hook.hookEvent === 'SessionStart',
payload: {
processId: hook.processId,
response,
hookName: hook.hookName,
hookEvent: hook.hookEvent,
toolName: hook.toolName,
pluginId: hook.pluginId,
stdout,
stderr,
exitCode,
},
}
}),
)
// allSettled — isolate failures so one throwing callback doesn't orphan
// already-applied side effects (responseAttachmentSent, finalizeHook) from others.
let sessionStartCompleted = false
for (const s of settled) {
if (s.status !== 'fulfilled') {
logForDebugging(
`Hooks: checkForAsyncHookResponses callback rejected: ${s.reason}`,
{ level: 'error' },
)
continue
}
const r = s.value
if (r.type === 'remove') {
pendingHooks.delete(r.processId)
} else if (r.type === 'response') {
responses.push(r.payload)
pendingHooks.delete(r.processId)
if (r.isSessionStart) sessionStartCompleted = true
}
}
if (sessionStartCompleted) {
logForDebugging(
`Invalidating session env cache after SessionStart hook completed`,
)
invalidateSessionEnvCache()
}
logForDebugging(
`Hooks: checkForNewResponses returning ${responses.length} responses`,
)
return responses
}
export function removeDeliveredAsyncHooks(processIds: string[]): void {
for (const processId of processIds) {
const hook = pendingHooks.get(processId)
if (hook && hook.responseAttachmentSent) {
logForDebugging(`Hooks: Removing delivered hook ${processId}`)
hook.stopProgressInterval()
pendingHooks.delete(processId)
}
}
}
export async function finalizePendingAsyncHooks(): Promise<void> {
const hooks = Array.from(pendingHooks.values())
await Promise.all(
hooks.map(async hook => {
if (hook.shellCommand?.status === 'completed') {
const result = await hook.shellCommand.result
await finalizeHook(
hook,
result.code,
result.code === 0 ? 'success' : 'error',
)
} else {
if (hook.shellCommand && hook.shellCommand.status !== 'killed') {
hook.shellCommand.kill()
}
await finalizeHook(hook, 1, 'cancelled')
}
}),
)
pendingHooks.clear()
}
// Test utility function to clear all hooks
export function clearAllAsyncHooks(): void {
for (const hook of pendingHooks.values()) {
hook.stopProgressInterval()
}
pendingHooks.clear()
}
|