| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- /**
- * Materializes values leaving the script vm into plain JSON before they cross the worker
- * boundary, and renders thrown script values without rejecting the run. The walk rejects
- * values that JSON cannot preserve but trusts model-written workflow scripts: getters and proxy traps may
- * run, and the vm is not a security boundary. The worker provides host-loop isolation and
- * forced termination, not hostile-value containment. See
- * .agents/notes/implemented/feature/2026-07-05-dynamic-workflows.md for the isolation rationale.
- * @module @deepseek-ai/dsh-workflow-worker-thread/realm
- */
- /** Thrown by {@link materializeFromRealm}; the caller wraps it into the right `WorkflowError` code. */
- export class MaterializeError extends Error {
- constructor(public readonly path: string, public readonly reason: string) {
- super(`${path}: ${reason}`)
- this.name = 'MaterializeError'
- }
- }
- /**
- * Render a thrown value to failure text without ever throwing: prefer the
- * `stack` (host or realm — a realm error's `stack` is a plain string read),
- * fall back to `message`, then `String()`. Reading those properties MAY run
- * script code (a getter, `toString`) — accepted under the module's trust
- * premise; if that code itself throws, a fixed label is returned instead.
- * @param error - any value thrown in the host or worker realm.
- * @returns human-readable text for the failure report; prefers the stack.
- */
- export function renderThrown(error: unknown): string {
- try {
- const stack = (error as { stack?: unknown } | null | undefined)?.stack
- if (typeof stack === 'string' && stack.length > 0) return stack
- const message = (error as { message?: unknown } | null | undefined)?.message
- if (typeof message === 'string' && message.length > 0) return message
- return String(error)
- } catch {
- // A throwing accessor/toString on the thrown value — rendering must be
- // total (drive()'s never-reject contract), so fall back to a fixed label.
- return '[unrenderable thrown value]'
- }
- }
- /**
- * Whether an object's prototype chain represents a plain data object: `null`, or a prototype
- * whose own prototype is `null` (the realm's `Object.prototype` — which we
- * cannot compare by identity across realms). A `Date`/`Map`/class instance
- * has a longer chain and is rejected.
- */
- function hasPlainPrototype(value: object): boolean {
- const proto: unknown = Object.getPrototypeOf(value)
- if (proto === null) return true
- return Object.getPrototypeOf(proto) === null
- }
- /**
- * Copy `value` (typically from the vm realm) into plain host JSON data. Root `undefined` is
- * returned unchanged; nested `undefined` and values JSON cannot represent losslessly fail
- * with the offending path. Property accessors run normally, and a throwing read is wrapped
- * with its rendered failure.
- *
- * @param value - the realm value to materialize.
- * @param root - the path label for the root value (error messages).
- * @returns the host-realm copy (plain objects/arrays/scalars only).
- * @throws {@link MaterializeError} for unsupported values, cycles, sparse arrays, exotic
- * prototypes, or property reads that throw.
- */
- export function materializeFromRealm(value: unknown, root = 'value'): unknown {
- if (value === undefined) return undefined
- try {
- return materialize(value, root, new Set())
- } catch (error: unknown) {
- if (error instanceof MaterializeError) throw error
- // A property read ran script code that threw; total-ize it so callers can
- // keep the narrow MaterializeError contract.
- throw new MaterializeError(root, `reading the value threw: ${renderThrown(error)}`)
- }
- }
- function materialize(value: unknown, path: string, seen: Set<object>): unknown {
- switch (typeof value) {
- case 'boolean':
- case 'string':
- return value
- case 'number': {
- if (!Number.isFinite(value)) throw new MaterializeError(path, 'non-finite numbers are not JSON data')
- return value
- }
- case 'bigint':
- throw new MaterializeError(path, 'bigints are not JSON data')
- case 'function':
- throw new MaterializeError(path, 'functions are not plain JSON data')
- case 'symbol':
- throw new MaterializeError(path, 'symbols are not plain JSON data')
- case 'undefined':
- throw new MaterializeError(path, 'undefined is not JSON data')
- case 'object':
- break
- }
- if (value === null) return null
- const objectValue: object = value
- if (seen.has(objectValue)) throw new MaterializeError(path, 'circular references are not JSON data')
- seen.add(objectValue)
- try {
- if (Array.isArray(objectValue)) return materializeArray(objectValue, path, seen)
- return materializeObject(objectValue, path, seen)
- } finally {
- seen.delete(objectValue)
- }
- }
- function materializeArray(value: unknown[], path: string, seen: Set<object>): unknown[] {
- const out: unknown[] = []
- for (let index = 0; index < value.length; index++) {
- if (!(index in value)) throw new MaterializeError(`${path}[${index}]`, 'sparse arrays are not JSON data')
- out.push(materialize(value[index], `${path}[${index}]`, seen))
- }
- // Own enumerable props beyond the indices (e.g. `arr.total = 3`) would be
- // silently dropped by JSON — reject them instead.
- for (const key of Object.keys(value)) {
- const index = Number(key)
- if (!Number.isInteger(index) || index < 0 || index >= value.length) {
- throw new MaterializeError(`${path}.${key}`, 'arrays with non-index properties are not JSON data')
- }
- }
- if (Object.getOwnPropertySymbols(value).length > 0) {
- throw new MaterializeError(path, 'symbol-keyed properties are not plain JSON data')
- }
- return out
- }
- function materializeObject(value: object, path: string, seen: Set<object>): Record<string, unknown> {
- if (!hasPlainPrototype(value)) {
- throw new MaterializeError(path, 'only plain objects and arrays are JSON data (exotic prototype)')
- }
- if (Object.getOwnPropertySymbols(value).length > 0) {
- throw new MaterializeError(path, 'symbol-keyed properties are not plain JSON data')
- }
- const out: Record<string, unknown> = {}
- // Object.keys = own enumerable string keys, matching JSON.stringify's
- // property selection exactly (non-enumerable props never reach JSON output).
- for (const key of Object.keys(value)) {
- // defineProperty, never assignment: a "__proto__" key must become an OWN
- // data property of the copy, not a prototype mutation.
- Object.defineProperty(out, key, {
- value: materialize((value as Record<string, unknown>)[key], `${path}.${key}`, seen),
- enumerable: true,
- writable: true,
- configurable: true,
- })
- }
- return out
- }
|