quickjs-emscripten • quickjs-emscripten-core • Readme | Exports
quickjs-emscripten / quickjs-emscripten-core / QuickJSAsyncRuntime
A runtime represents a Javascript runtime corresponding to an object heap. Several runtimes can exist at the same time but they cannot exchange objects. Inside a given runtime, no multi-threading is supported.
You can think of separate runtimes like different domains in a browser, and the contexts within a runtime like the different windows open to the same domain.
Create a runtime via QuickJSWASMModule.newRuntime.
You should create separate runtime instances for untrusted code from different sources for isolation. However, stronger isolation is also available (at the cost of memory usage), by creating separate WebAssembly modules to further isolate untrusted code. See newQuickJSWASMModule.
Implement memory and CPU constraints with setInterruptHandler (called regularly while the interpreter runs), setMemoryLimit, and setMaxStackSize. Use computeMemoryUsage or dumpMemoryUsage to guide memory limit tuning.
Configure ES module loading with setModuleLoader.
context:
undefined
|QuickJSAsyncContext
If this runtime was created as as part of a context, points to the context associated with the runtime.
If this runtime was created stand-alone, this may or may not contain a context. A context here may be allocated if one is needed by the runtime, eg for computeMemoryUsage.
quickjs-emscripten-core.QuickJSRuntime.context
packages/quickjs-emscripten-core/src/runtime-asyncify.ts:26
get
alive():boolean
boolean
true if the object is alive
false after the object has been disposed
packages/quickjs-emscripten-core/src/runtime.ts:125
[dispose]():
void
Just calls the standard .dispose() method of this class.
void
quickjs-emscripten-core.QuickJSRuntime.[dispose]
packages/quickjs-emscripten-core/src/lifetime.ts:47
assertOwned(
handle
):void
Assert that handle
is owned by this runtime.
• handle: QuickJSHandle
void
quickjs-emscripten-core.QuickJSRuntime.assertOwned
QuickJSWrongOwner if owned by a different runtime.
packages/quickjs-emscripten-core/src/runtime.ts:327
computeMemoryUsage():
QuickJSHandle
Compute memory usage for this runtime. Returns the result as a handle to a
JSValue object. Use QuickJSContext#dump to convert to a native object.
Calling this method will allocate more memory inside the runtime. The information
is accurate as of just before the call to computeMemoryUsage
.
For a human-digestible representation, see dumpMemoryUsage.
quickjs-emscripten-core.QuickJSRuntime.computeMemoryUsage
packages/quickjs-emscripten-core/src/runtime.ts:296
debugLog(...
msg
):void
In debug mode, log the result of calling msg()
.
We take a function instead of a log message to avoid expensive string manipulation if debug logging is disabled.
• ...msg: unknown
[]
void
quickjs-emscripten-core.QuickJSRuntime.debugLog
packages/quickjs-emscripten-core/src/runtime.ts:363
dispose():
void
Dispose of the underlying resources used by this object.
void
quickjs-emscripten-core.QuickJSRuntime.dispose
packages/quickjs-emscripten-core/src/runtime.ts:129
dumpMemoryUsage():
string
string
a human-readable description of memory usage in this runtime. For programmatic access to this information, see computeMemoryUsage.
quickjs-emscripten-core.QuickJSRuntime.dumpMemoryUsage
packages/quickjs-emscripten-core/src/runtime.ts:307
executePendingJobs(
maxJobsToExecute
):ExecutePendingJobsResult
Execute pendingJobs on the runtime until maxJobsToExecute
jobs are
executed (default all pendingJobs), the queue is exhausted, or the runtime
encounters an exception.
In QuickJS, promises and async functions inside the runtime create pendingJobs. These do not execute immediately and need to triggered to run.
• maxJobsToExecute: number
| void
= -1
When negative, run all pending jobs. Otherwise execute
at most maxJobsToExecute
before returning.
On success, the number of executed jobs. On error, the exception that stopped execution, and the context it occurred in. Note that executePendingJobs will not normally return errors thrown inside async functions or rejected promises. Those errors are available by calling QuickJSContext#resolvePromise on the promise handle returned by the async function.
quickjs-emscripten-core.QuickJSRuntime.executePendingJobs
packages/quickjs-emscripten-core/src/runtime.ts:243
hasPendingJob():
boolean
In QuickJS, promises and async functions create pendingJobs. These do not execute immediately and need to be run by calling executePendingJobs.
boolean
true if there is at least one pendingJob queued up.
quickjs-emscripten-core.QuickJSRuntime.hasPendingJob
packages/quickjs-emscripten-core/src/runtime.ts:194
isDebugMode():
boolean
boolean
true if debug logging is enabled
quickjs-emscripten-core.QuickJSRuntime.isDebugMode
packages/quickjs-emscripten-core/src/runtime.ts:353
newContext(
options
):QuickJSAsyncContext
Create a new context within this runtime. Contexts have isolated globals, but you can explicitly share objects between contexts with the same runtime.
You should dispose a created context before disposing this runtime.
• options: ContextOptions
= {}
quickjs-emscripten-core.QuickJSRuntime.newContext
packages/quickjs-emscripten-core/src/runtime-asyncify.ts:49
removeInterruptHandler():
void
Remove the interrupt handler, if any. See setInterruptHandler.
void
quickjs-emscripten-core.QuickJSRuntime.removeInterruptHandler
packages/quickjs-emscripten-core/src/runtime.ts:219
removeModuleLoader():
void
Remove the the loader set by setModuleLoader. This disables module loading.
void
quickjs-emscripten-core.QuickJSRuntime.removeModuleLoader
packages/quickjs-emscripten-core/src/runtime.ts:181
setDebugMode(
enabled
):void
Enable or disable debug logging.
If this module is a DEBUG variant, more logs will be printed from the C code.
• enabled: boolean
void
quickjs-emscripten-core.QuickJSRuntime.setDebugMode
packages/quickjs-emscripten-core/src/runtime.ts:343
setInterruptHandler(
cb
):void
Set a callback which is regularly called by the QuickJS engine when it is executing code. This callback can be used to implement an execution timeout.
The interrupt handler can be removed with removeInterruptHandler.
• cb: InterruptHandler
void
quickjs-emscripten-core.QuickJSRuntime.setInterruptHandler
packages/quickjs-emscripten-core/src/runtime.ts:207
setMaxStackSize(
stackSize
):void
Set the max stack size for this runtime in bytes.
To remove the limit, set to 0
.
Setting this limit also adjusts the global ASYNCIFY_STACK_SIZE
for the entire QuickJSAsyncWASMModule.
See the pull request for more details.
• stackSize: number
void
quickjs-emscripten-core.QuickJSRuntime.setMaxStackSize
packages/quickjs-emscripten-core/src/runtime-asyncify.ts:92
setMemoryLimit(
limitBytes
):void
Set the max memory this runtime can allocate.
To remove the limit, set to -1
.
• limitBytes: number
void
quickjs-emscripten-core.QuickJSRuntime.setMemoryLimit
packages/quickjs-emscripten-core/src/runtime.ts:281
setModuleLoader(
moduleLoader
,moduleNormalizer
?):void
Set the loader for EcmaScript modules requested by any context in this runtime.
The loader can be removed with removeModuleLoader.
• moduleLoader: JSModuleLoaderAsync
• moduleNormalizer?: JSModuleNormalizerAsync
void
quickjs-emscripten-core.QuickJSRuntime.setModuleLoader
packages/quickjs-emscripten-core/src/runtime-asyncify.ts:75
Generated using typedoc-plugin-markdown and TypeDoc