MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / createExecutionEngine

Function createExecutionEngine

packages/core/execution/src/engine.ts:513–803  ·  view source on GitHub ↗
(
  config: ExecutionEngineConfig<E>,
)

Source from the content-addressed store, hash-verified

511};
512
513export const createExecutionEngine = <E extends Cause.YieldableError = CodeExecutionError>(
514 config: ExecutionEngineConfig<E>,
515): ExecutionEngine<E> => {
516 const { executor, codeExecutor, toolDiscoveryProvider = defaultToolDiscoveryProvider } = config;
517 const pausedExecutions = new Map<string, InternalPausedExecution<E>>();
518 // Every sandbox fiber `startPausableExecution` still has in flight.
519 //
520 // Those fibers are daemons (`Effect.forkDetach`) so a pause can outlive the
521 // caller that observed it. But they close over `executor`, and the executor
522 // closes over the FumaDB handle the host opened for whatever scope built THIS
523 // engine — `makeFumaClient` captures `db` at construction, not per operation.
524 // A host that builds one engine per HTTP request therefore needs a way to end
525 // that fiber's life with the request; otherwise it wakes up after the
526 // request's postgres pool has been closed and every query it makes lands on a
527 // dead pool. `shutdown` below is that seam.
528 const liveSandboxFibers = new Set<Fiber.Fiber<ExecuteResult, E>>();
529 // Outcomes of executions that already settled (resumed to completion, hit a
530 // new pause, or died while paused). MCP clients retry `resume` when a
531 // response gets lost in transit; without this cache the retry of an
532 // already-delivered resume answers "no paused execution" (observed in
533 // production seconds after a successful resume). Bounded FIFO — pause
534 // volume is tiny (human approvals), so a small window is plenty.
535 const settledOutcomes = new Map<string, Exit.Exit<ExecutionResult, E>>();
536 const SETTLED_OUTCOME_LIMIT = 64;
537 const settledExecutionIds = new Set<string>();
538 const SETTLED_EXECUTION_ID_LIMIT = 1024;
539 // Resumes whose outcome is still being computed, so a concurrent duplicate
540 // awaits the same result instead of missing the (already-consumed) pause.
541 const pendingResumes = new Map<string, Deferred.Deferred<ExecutionResult, E>>();
542
543 // Exits (not just successes) so a replayed failure re-fails through the
544 // typed channel — hosts render engine failures opaquely, and a replay must
545 // not bypass that by flattening the cause into result text.
546 const recordSettledOutcome = (executionId: string, exit: Exit.Exit<ExecutionResult, E>): void => {
547 settledExecutionIds.add(executionId);
548 while (settledExecutionIds.size > SETTLED_EXECUTION_ID_LIMIT) {
549 const oldest = settledExecutionIds.keys().next().value;
550 if (oldest === undefined) break;
551 settledExecutionIds.delete(oldest);
552 }
553 settledOutcomes.set(executionId, exit);
554 while (settledOutcomes.size > SETTLED_OUTCOME_LIMIT) {
555 const oldest = settledOutcomes.keys().next().value;
556 if (oldest === undefined) break;
557 settledOutcomes.delete(oldest);
558 }
559 };
560
561 /**
562 * Race a running fiber against the pause queue. Returns when either
563 * the fiber completes or an elicitation handler fires (whichever
564 * comes first). Re-used by both executeWithPause and resume.
565 *
566 * `Effect.raceFirst` (not `Effect.race`) — `race` has prefer-success
567 * semantics in Effect v4 ("first successful result"), which means a
568 * fiber failure waits indefinitely for the pause Deferred to succeed.
569 * For a fast `codeExecutor.execute` failure (e.g. a syntax error
570 * inside the dynamic worker) the pause signal never fires, so the

Callers 11

makeExecutionStackFunction · 0.90
engine.test.tsFile · 0.90
startMcpHarnessFunction · 0.90
createExecutorMcpServerFunction · 0.90
openSessionFunction · 0.90
makeMcpFetchFunction · 0.90
startHarnessFunction · 0.90
createServerHandlersFunction · 0.90
localFixedExecutionLayerFunction · 0.90
startHarnessFunction · 0.90

Calls 12

buildExecuteDescriptionFunction · 0.90
annotateExecuteOutcomeFunction · 0.85
makeFullInvokerFunction · 0.85
recordSettledOutcomeFunction · 0.85
awaitCompletionOrPauseFunction · 0.85
annotateExecutionOutcomeFunction · 0.85
clearMethod · 0.80
executeMethod · 0.65
syncMethod · 0.65
deleteMethod · 0.65
getMethod · 0.65
setMethod · 0.65

Tested by 5

startMcpHarnessFunction · 0.72
openSessionFunction · 0.72
makeMcpFetchFunction · 0.72
startHarnessFunction · 0.72
startHarnessFunction · 0.72