d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
139 lines
4.5 KiB
TypeScript
139 lines
4.5 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { generateShortId } from '@sim/utils/id'
|
|
import {
|
|
executeInIsolatedVM,
|
|
type IsolatedVMBrokerHandler,
|
|
type IsolatedVMExecutionRequest,
|
|
} from '@/lib/execution/isolated-vm'
|
|
import type { SandboxBrokerContext, SandboxTaskInput } from '@/lib/execution/sandbox/types'
|
|
import { getSandboxTask, type SandboxTaskId } from '@/sandbox-tasks/registry'
|
|
|
|
const logger = createLogger('SandboxRunTask')
|
|
|
|
export interface RunSandboxTaskOptions {
|
|
/**
|
|
* Owner key used by the isolated-vm pool for fairness + distributed leases.
|
|
* Typically `user:<userId>` or `workspace:<workspaceId>`.
|
|
*/
|
|
ownerKey?: string
|
|
/** Optional AbortSignal to cancel the execution early. */
|
|
signal?: AbortSignal
|
|
}
|
|
|
|
/**
|
|
* Thrown when the sandbox failure is attributable to the caller — user code
|
|
* errors (SyntaxError, ReferenceError, user-thrown exceptions), timeouts from
|
|
* user code, client aborts, or per-owner rate limits. Callers should translate
|
|
* this into a 4xx response so genuine 5xx remains a signal of server health.
|
|
*
|
|
* System-origin failures (worker crash, IPC failure, pool saturation, task
|
|
* misconfig) are tagged with `isSystemError` at the isolated-vm layer and
|
|
* surface as a plain `Error` → 500.
|
|
*/
|
|
export class SandboxUserCodeError extends Error {
|
|
constructor(message: string, name: string, stack?: string) {
|
|
super(message)
|
|
this.name = name || 'SandboxUserCodeError'
|
|
if (stack) this.stack = stack
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Executes a sandbox task inside the shared isolated-vm pool and returns the
|
|
* binary result buffer. Throws with a human-readable message if the task fails
|
|
* so callers can propagate the error verbatim to UI.
|
|
*/
|
|
export async function runSandboxTask<TInput extends SandboxTaskInput>(
|
|
taskId: SandboxTaskId,
|
|
input: TInput,
|
|
options: RunSandboxTaskOptions = {}
|
|
): Promise<Buffer> {
|
|
const task = getSandboxTask(taskId)
|
|
const requestId = generateShortId(12)
|
|
|
|
const brokerContext: SandboxBrokerContext = {
|
|
workspaceId: input.workspaceId,
|
|
requestId,
|
|
}
|
|
const brokers: Record<string, IsolatedVMBrokerHandler> = {}
|
|
for (const broker of task.brokers) {
|
|
brokers[broker.name] = (args) => broker.handle(brokerContext, args)
|
|
}
|
|
|
|
const request: IsolatedVMExecutionRequest = {
|
|
code: input.code,
|
|
params: {},
|
|
envVars: {},
|
|
contextVariables: {},
|
|
timeoutMs: task.timeoutMs,
|
|
requestId,
|
|
ownerKey: options.ownerKey,
|
|
ownerWeight: 1,
|
|
task: {
|
|
id: task.id,
|
|
bundles: [...task.bundles],
|
|
bootstrap: task.bootstrap,
|
|
brokers: task.brokers.map((b) => b.name),
|
|
finalize: task.finalize,
|
|
},
|
|
}
|
|
|
|
const start = Date.now()
|
|
const result = await executeInIsolatedVM(request, { brokers, signal: options.signal })
|
|
const elapsedMs = Date.now() - start
|
|
|
|
// Phase timings come from the worker (see executeTask). `queue` is the
|
|
// gap between client call and worker-side start — useful for diagnosing
|
|
// pool saturation vs. isolate-internal slowness.
|
|
const queueMs = result.timings ? Math.max(0, elapsedMs - result.timings.total) : undefined
|
|
|
|
if (result.error) {
|
|
const isSystemError = result.error.isSystemError === true
|
|
const logFn = isSystemError ? logger.error.bind(logger) : logger.warn.bind(logger)
|
|
logFn('Sandbox task failed', {
|
|
taskId,
|
|
requestId,
|
|
workspaceId: input.workspaceId,
|
|
elapsedMs,
|
|
queueMs,
|
|
timings: result.timings,
|
|
error: result.error.message,
|
|
errorName: result.error.name,
|
|
isSystemError,
|
|
})
|
|
if (isSystemError) {
|
|
const err = new Error(result.error.message)
|
|
err.name = result.error.name || 'SandboxSystemError'
|
|
if (result.error.stack) err.stack = result.error.stack
|
|
throw err
|
|
}
|
|
throw new SandboxUserCodeError(
|
|
result.error.message,
|
|
result.error.name || 'SandboxTaskError',
|
|
result.error.stack
|
|
)
|
|
}
|
|
|
|
if (typeof result.bytesBase64 !== 'string' || result.bytesBase64.length === 0) {
|
|
logger.error('Sandbox task returned no bytes', {
|
|
taskId,
|
|
requestId,
|
|
workspaceId: input.workspaceId,
|
|
timings: result.timings,
|
|
})
|
|
throw new Error(`Sandbox task "${taskId}" finalize did not return any bytes`)
|
|
}
|
|
|
|
const bytes = Buffer.from(result.bytesBase64, 'base64')
|
|
logger.info('Sandbox task completed', {
|
|
taskId,
|
|
requestId,
|
|
workspaceId: input.workspaceId,
|
|
elapsedMs,
|
|
queueMs,
|
|
timings: result.timings,
|
|
bytes: bytes.length,
|
|
})
|
|
return task.toResult(new Uint8Array(bytes.buffer, bytes.byteOffset, bytes.byteLength), input)
|
|
}
|