mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
* Implement FromNapiValue trait as macro Code behavior should remain the same, with much less copy-pasting of the same code. Additionally, this commit adds a unit tests for test for FromNapiValue for tuple trait which appears to be currently missing. * Simplify macro arr_get Rewrite the macro to reduce the size of expanded code of the macro (from 4088 to 2429 lines). Although this is a minor change, this may help reduce the size of compiled library. * Refactor typegen Type::Path Removes the need for keeping mutable variable, as its only assigned once. * [API BREAKING] Update api for calling functions. This commit introduces new type FnArgs, that is created with the goal of distinguishing between calling JS function from rust with tuple as argument and calling with multiple arguments. Currently there is no possibility to add ToNapiValue value, as tuple is used to call callback functions with more than one argument from rust. With this change, callbacks with multiple arguments, should be called, with converting tuple of argument into FnArgs struct, either by calling into() on such tuple, or by creating FnArgs struct directly. * Add support for FnArgs when generating TS types Updated the macro for generating typescript types, to correctly handle FnArgs struct. This is now treated as passthrough type and generates the output from the type inside of FnArgs struct. * Implement ToNapiValue trait for tuple With the changes to callback calling API, it's now possible to safely add this change. This change allows to pass tuple from rust code to JS to match the existing FromNapiValue trait currently existing in the library.
646 lines
26 KiB
JavaScript
646 lines
26 KiB
JavaScript
// prettier-ignore
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
/* auto-generated by NAPI-RS */
|
|
|
|
const { createRequire } = require('node:module')
|
|
require = createRequire(__filename)
|
|
|
|
const { readFileSync } = require('node:fs')
|
|
let nativeBinding = null
|
|
const loadErrors = []
|
|
|
|
const isMusl = () => {
|
|
let musl = false
|
|
if (process.platform === 'linux') {
|
|
musl = isMuslFromFilesystem()
|
|
if (musl === null) {
|
|
musl = isMuslFromReport()
|
|
}
|
|
if (musl === null) {
|
|
musl = isMuslFromChildProcess()
|
|
}
|
|
}
|
|
return musl
|
|
}
|
|
|
|
const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-')
|
|
|
|
const isMuslFromFilesystem = () => {
|
|
try {
|
|
return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl')
|
|
} catch {
|
|
return null
|
|
}
|
|
}
|
|
|
|
const isMuslFromReport = () => {
|
|
const report = typeof process.report.getReport === 'function' ? process.report.getReport() : null
|
|
if (!report) {
|
|
return null
|
|
}
|
|
if (report.header && report.header.glibcVersionRuntime) {
|
|
return false
|
|
}
|
|
if (Array.isArray(report.sharedObjects)) {
|
|
if (report.sharedObjects.some(isFileMusl)) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
const isMuslFromChildProcess = () => {
|
|
try {
|
|
return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl')
|
|
} catch (e) {
|
|
// If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false
|
|
return false
|
|
}
|
|
}
|
|
|
|
function requireNative() {
|
|
if (process.platform === 'android') {
|
|
if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./example.android-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-android-arm64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm') {
|
|
try {
|
|
return require('./example.android-arm-eabi.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-android-arm-eabi')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`))
|
|
}
|
|
} else if (process.platform === 'win32') {
|
|
if (process.arch === 'x64') {
|
|
try {
|
|
return require('./example.win32-x64-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-win32-x64-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'ia32') {
|
|
try {
|
|
return require('./example.win32-ia32-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-win32-ia32-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./example.win32-arm64-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-win32-arm64-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
|
|
}
|
|
} else if (process.platform === 'darwin') {
|
|
try {
|
|
return require('./example.darwin-universal.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-darwin-universal')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
if (process.arch === 'x64') {
|
|
try {
|
|
return require('./example.darwin-x64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-darwin-x64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./example.darwin-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-darwin-arm64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`))
|
|
}
|
|
} else if (process.platform === 'freebsd') {
|
|
if (process.arch === 'x64') {
|
|
try {
|
|
return require('./example.freebsd-x64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-freebsd-x64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./example.freebsd-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-freebsd-arm64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`))
|
|
}
|
|
} else if (process.platform === 'linux') {
|
|
if (process.arch === 'x64') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./example.linux-x64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-x64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./example.linux-x64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-x64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'arm64') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./example.linux-arm64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-arm64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./example.linux-arm64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-arm64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'arm') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./example.linux-arm-musleabihf.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-arm-musleabihf')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./example.linux-arm-gnueabihf.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-arm-gnueabihf')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'riscv64') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./example.linux-riscv64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-riscv64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./example.linux-riscv64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-riscv64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'ppc64') {
|
|
try {
|
|
return require('./example.linux-ppc64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-ppc64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 's390x') {
|
|
try {
|
|
return require('./example.linux-s390x-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@examples/napi-linux-s390x-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`))
|
|
}
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`))
|
|
}
|
|
}
|
|
|
|
nativeBinding = requireNative()
|
|
|
|
if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) {
|
|
try {
|
|
nativeBinding = require('./example.wasi.cjs')
|
|
} catch (err) {
|
|
if (process.env.NAPI_RS_FORCE_WASI) {
|
|
loadErrors.push(err)
|
|
}
|
|
}
|
|
if (!nativeBinding) {
|
|
try {
|
|
nativeBinding = require('@examples/napi-wasm32-wasi')
|
|
} catch (err) {
|
|
if (process.env.NAPI_RS_FORCE_WASI) {
|
|
loadErrors.push(err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!nativeBinding) {
|
|
if (loadErrors.length > 0) {
|
|
// TODO Link to documentation with potential fixes
|
|
// - The package owner could build/publish bindings for this arch
|
|
// - The user may need to bundle the correct files
|
|
// - The user may need to re-install node_modules to get new packages
|
|
throw new Error('Failed to load native binding', { cause: loadErrors })
|
|
}
|
|
throw new Error(`Failed to load native binding`)
|
|
}
|
|
|
|
module.exports.Animal = nativeBinding.Animal
|
|
module.exports.AnimalWithDefaultConstructor = nativeBinding.AnimalWithDefaultConstructor
|
|
module.exports.AnotherClassForEither = nativeBinding.AnotherClassForEither
|
|
module.exports.AnotherCssStyleSheet = nativeBinding.AnotherCssStyleSheet
|
|
module.exports.AnotherCSSStyleSheet = nativeBinding.AnotherCSSStyleSheet
|
|
module.exports.Asset = nativeBinding.Asset
|
|
module.exports.JsAsset = nativeBinding.JsAsset
|
|
module.exports.Assets = nativeBinding.Assets
|
|
module.exports.JsAssets = nativeBinding.JsAssets
|
|
module.exports.Bird = nativeBinding.Bird
|
|
module.exports.Blake2BHasher = nativeBinding.Blake2BHasher
|
|
module.exports.Blake2bHasher = nativeBinding.Blake2bHasher
|
|
module.exports.Blake2BKey = nativeBinding.Blake2BKey
|
|
module.exports.Blake2bKey = nativeBinding.Blake2bKey
|
|
module.exports.CatchOnConstructor = nativeBinding.CatchOnConstructor
|
|
module.exports.CatchOnConstructor2 = nativeBinding.CatchOnConstructor2
|
|
module.exports.ClassWithFactory = nativeBinding.ClassWithFactory
|
|
module.exports.ClassWithLifetime = nativeBinding.ClassWithLifetime
|
|
module.exports.Context = nativeBinding.Context
|
|
module.exports.CssRuleList = nativeBinding.CssRuleList
|
|
module.exports.CSSRuleList = nativeBinding.CSSRuleList
|
|
module.exports.CssStyleSheet = nativeBinding.CssStyleSheet
|
|
module.exports.CSSStyleSheet = nativeBinding.CSSStyleSheet
|
|
module.exports.CustomFinalize = nativeBinding.CustomFinalize
|
|
module.exports.CustomStruct = nativeBinding.CustomStruct
|
|
module.exports.DefaultUseNullableClass = nativeBinding.DefaultUseNullableClass
|
|
module.exports.Dog = nativeBinding.Dog
|
|
module.exports.Fib = nativeBinding.Fib
|
|
module.exports.Fib2 = nativeBinding.Fib2
|
|
module.exports.Fib3 = nativeBinding.Fib3
|
|
module.exports.GetterSetterWithClosures = nativeBinding.GetterSetterWithClosures
|
|
module.exports.JsClassForEither = nativeBinding.JsClassForEither
|
|
module.exports.JsRemote = nativeBinding.JsRemote
|
|
module.exports.JsRepo = nativeBinding.JsRepo
|
|
module.exports.NinjaTurtle = nativeBinding.NinjaTurtle
|
|
module.exports.NotUseNullableClass = nativeBinding.NotUseNullableClass
|
|
module.exports.NotWritableClass = nativeBinding.NotWritableClass
|
|
module.exports.Optional = nativeBinding.Optional
|
|
module.exports.Reader = nativeBinding.Reader
|
|
module.exports.Selector = nativeBinding.Selector
|
|
module.exports.UseNullableClass = nativeBinding.UseNullableClass
|
|
module.exports.Width = nativeBinding.Width
|
|
module.exports.acceptArraybuffer = nativeBinding.acceptArraybuffer
|
|
module.exports.acceptSlice = nativeBinding.acceptSlice
|
|
module.exports.acceptThreadsafeFunction = nativeBinding.acceptThreadsafeFunction
|
|
module.exports.acceptThreadsafeFunctionFatal = nativeBinding.acceptThreadsafeFunctionFatal
|
|
module.exports.acceptThreadsafeFunctionTupleArgs = nativeBinding.acceptThreadsafeFunctionTupleArgs
|
|
module.exports.acceptUint8ClampedSlice = nativeBinding.acceptUint8ClampedSlice
|
|
module.exports.acceptUint8ClampedSliceAndBufferSlice = nativeBinding.acceptUint8ClampedSliceAndBufferSlice
|
|
module.exports.add = nativeBinding.add
|
|
module.exports.ALIAS = nativeBinding.ALIAS
|
|
module.exports.AliasedEnum = nativeBinding.AliasedEnum
|
|
module.exports.appendBuffer = nativeBinding.appendBuffer
|
|
module.exports.apply0 = nativeBinding.apply0
|
|
module.exports.apply1 = nativeBinding.apply1
|
|
module.exports.arrayBufferPassThrough = nativeBinding.arrayBufferPassThrough
|
|
module.exports.asyncBufferToArray = nativeBinding.asyncBufferToArray
|
|
module.exports.asyncMultiTwo = nativeBinding.asyncMultiTwo
|
|
module.exports.asyncPlus100 = nativeBinding.asyncPlus100
|
|
module.exports.asyncReduceBuffer = nativeBinding.asyncReduceBuffer
|
|
module.exports.asyncTaskOptionalReturn = nativeBinding.asyncTaskOptionalReturn
|
|
module.exports.asyncTaskReadFile = nativeBinding.asyncTaskReadFile
|
|
module.exports.asyncTaskVoidReturn = nativeBinding.asyncTaskVoidReturn
|
|
module.exports.bigintAdd = nativeBinding.bigintAdd
|
|
module.exports.bigintFromI128 = nativeBinding.bigintFromI128
|
|
module.exports.bigintFromI64 = nativeBinding.bigintFromI64
|
|
module.exports.bigintGetU64AsString = nativeBinding.bigintGetU64AsString
|
|
module.exports.btreeSetToJs = nativeBinding.btreeSetToJs
|
|
module.exports.btreeSetToRust = nativeBinding.btreeSetToRust
|
|
module.exports.bufferPassThrough = nativeBinding.bufferPassThrough
|
|
module.exports.bufferWithAsyncBlock = nativeBinding.bufferWithAsyncBlock
|
|
module.exports.buildThreadsafeFunctionFromFunction = nativeBinding.buildThreadsafeFunctionFromFunction
|
|
module.exports.buildThreadsafeFunctionFromFunctionCalleeHandle = nativeBinding.buildThreadsafeFunctionFromFunctionCalleeHandle
|
|
module.exports.call0 = nativeBinding.call0
|
|
module.exports.call1 = nativeBinding.call1
|
|
module.exports.call2 = nativeBinding.call2
|
|
module.exports.callbackReturnPromise = nativeBinding.callbackReturnPromise
|
|
module.exports.callbackReturnPromiseAndSpawn = nativeBinding.callbackReturnPromiseAndSpawn
|
|
module.exports.callCatchOnPromise = nativeBinding.callCatchOnPromise
|
|
module.exports.callFinallyOnPromise = nativeBinding.callFinallyOnPromise
|
|
module.exports.callFunction = nativeBinding.callFunction
|
|
module.exports.callFunctionWithArg = nativeBinding.callFunctionWithArg
|
|
module.exports.callFunctionWithArgAndCtx = nativeBinding.callFunctionWithArgAndCtx
|
|
module.exports.callLongThreadsafeFunction = nativeBinding.callLongThreadsafeFunction
|
|
module.exports.callThenOnPromise = nativeBinding.callThenOnPromise
|
|
module.exports.callThreadsafeFunction = nativeBinding.callThreadsafeFunction
|
|
module.exports.captureErrorInCallback = nativeBinding.captureErrorInCallback
|
|
module.exports.chronoDateAdd1Minute = nativeBinding.chronoDateAdd1Minute
|
|
module.exports.chronoDateFixtureReturn1 = nativeBinding.chronoDateFixtureReturn1
|
|
module.exports.chronoDateFixtureReturn2 = nativeBinding.chronoDateFixtureReturn2
|
|
module.exports.chronoDateWithTimezoneReturn = nativeBinding.chronoDateWithTimezoneReturn
|
|
module.exports.chronoDateWithTimezoneToMillis = nativeBinding.chronoDateWithTimezoneToMillis
|
|
module.exports.chronoLocalDateReturn = nativeBinding.chronoLocalDateReturn
|
|
module.exports.chronoLocalDateToMillis = nativeBinding.chronoLocalDateToMillis
|
|
module.exports.chronoNativeDateTime = nativeBinding.chronoNativeDateTime
|
|
module.exports.chronoNativeDateTimeReturn = nativeBinding.chronoNativeDateTimeReturn
|
|
module.exports.chronoUtcDateReturn = nativeBinding.chronoUtcDateReturn
|
|
module.exports.chronoUtcDateToMillis = nativeBinding.chronoUtcDateToMillis
|
|
module.exports.concatLatin1 = nativeBinding.concatLatin1
|
|
module.exports.concatStr = nativeBinding.concatStr
|
|
module.exports.concatUtf16 = nativeBinding.concatUtf16
|
|
module.exports.contains = nativeBinding.contains
|
|
module.exports.convertU32Array = nativeBinding.convertU32Array
|
|
module.exports.createArraybuffer = nativeBinding.createArraybuffer
|
|
module.exports.createBigInt = nativeBinding.createBigInt
|
|
module.exports.createBigIntI64 = nativeBinding.createBigIntI64
|
|
module.exports.createBufferSliceFromCopiedData = nativeBinding.createBufferSliceFromCopiedData
|
|
module.exports.createExternal = nativeBinding.createExternal
|
|
module.exports.createExternalBufferSlice = nativeBinding.createExternalBufferSlice
|
|
module.exports.createExternalString = nativeBinding.createExternalString
|
|
module.exports.createExternalTypedArray = nativeBinding.createExternalTypedArray
|
|
module.exports.createObj = nativeBinding.createObj
|
|
module.exports.createObjectWithClassField = nativeBinding.createObjectWithClassField
|
|
module.exports.createObjWithProperty = nativeBinding.createObjWithProperty
|
|
module.exports.createOptionalExternal = nativeBinding.createOptionalExternal
|
|
module.exports.createReferenceOnFunction = nativeBinding.createReferenceOnFunction
|
|
module.exports.createSymbol = nativeBinding.createSymbol
|
|
module.exports.createSymbolFor = nativeBinding.createSymbolFor
|
|
module.exports.CustomNumEnum = nativeBinding.CustomNumEnum
|
|
module.exports.customStatusCode = nativeBinding.customStatusCode
|
|
module.exports.CustomStringEnum = nativeBinding.CustomStringEnum
|
|
module.exports.dateToNumber = nativeBinding.dateToNumber
|
|
module.exports.DEFAULT_COST = nativeBinding.DEFAULT_COST
|
|
module.exports.derefUint8Array = nativeBinding.derefUint8Array
|
|
module.exports.either3 = nativeBinding.either3
|
|
module.exports.either4 = nativeBinding.either4
|
|
module.exports.eitherBoolOrFunction = nativeBinding.eitherBoolOrFunction
|
|
module.exports.eitherBoolOrTuple = nativeBinding.eitherBoolOrTuple
|
|
module.exports.eitherFromObjects = nativeBinding.eitherFromObjects
|
|
module.exports.eitherFromOption = nativeBinding.eitherFromOption
|
|
module.exports.eitherStringOrNumber = nativeBinding.eitherStringOrNumber
|
|
module.exports.Empty = nativeBinding.Empty
|
|
module.exports.enumToI32 = nativeBinding.enumToI32
|
|
module.exports.errorMessageContainsNullByte = nativeBinding.errorMessageContainsNullByte
|
|
module.exports.f32ArrayToArray = nativeBinding.f32ArrayToArray
|
|
module.exports.f64ArrayToArray = nativeBinding.f64ArrayToArray
|
|
module.exports.fibonacci = nativeBinding.fibonacci
|
|
module.exports.fnReceivedAliased = nativeBinding.fnReceivedAliased
|
|
module.exports.generateFunctionAndCallIt = nativeBinding.generateFunctionAndCallIt
|
|
module.exports.getBtreeMapping = nativeBinding.getBtreeMapping
|
|
module.exports.getBuffer = nativeBinding.getBuffer
|
|
module.exports.getBufferSlice = nativeBinding.getBufferSlice
|
|
module.exports.getCwd = nativeBinding.getCwd
|
|
module.exports.getEmptyBuffer = nativeBinding.getEmptyBuffer
|
|
module.exports.getEmptyTypedArray = nativeBinding.getEmptyTypedArray
|
|
module.exports.getExternal = nativeBinding.getExternal
|
|
module.exports.getGlobal = nativeBinding.getGlobal
|
|
module.exports.getIndexMapping = nativeBinding.getIndexMapping
|
|
module.exports.getIndexMappingWithHasher = nativeBinding.getIndexMappingWithHasher
|
|
module.exports.getMapping = nativeBinding.getMapping
|
|
module.exports.getMappingWithHasher = nativeBinding.getMappingWithHasher
|
|
module.exports.getModuleFileName = nativeBinding.getModuleFileName
|
|
module.exports.getMyVec = nativeBinding.getMyVec
|
|
module.exports.getNestedNumArr = nativeBinding.getNestedNumArr
|
|
module.exports.getNull = nativeBinding.getNull
|
|
module.exports.getNullByteProperty = nativeBinding.getNullByteProperty
|
|
module.exports.getNumArr = nativeBinding.getNumArr
|
|
module.exports.getNums = nativeBinding.getNums
|
|
module.exports.getOptionalExternal = nativeBinding.getOptionalExternal
|
|
module.exports.getPackageJsonName = nativeBinding.getPackageJsonName
|
|
module.exports.getStrFromObject = nativeBinding.getStrFromObject
|
|
module.exports.getterFromObj = nativeBinding.getterFromObj
|
|
module.exports.getTuple = nativeBinding.getTuple
|
|
module.exports.getUndefined = nativeBinding.getUndefined
|
|
module.exports.getWords = nativeBinding.getWords
|
|
module.exports.i16ArrayToArray = nativeBinding.i16ArrayToArray
|
|
module.exports.i32ArrayToArray = nativeBinding.i32ArrayToArray
|
|
module.exports.i64ArrayToArray = nativeBinding.i64ArrayToArray
|
|
module.exports.i8ArrayToArray = nativeBinding.i8ArrayToArray
|
|
module.exports.indexmapPassthrough = nativeBinding.indexmapPassthrough
|
|
module.exports.jsErrorCallback = nativeBinding.jsErrorCallback
|
|
module.exports.Kind = nativeBinding.Kind
|
|
module.exports.KindInValidate = nativeBinding.KindInValidate
|
|
module.exports.listObjKeys = nativeBinding.listObjKeys
|
|
module.exports.mapOption = nativeBinding.mapOption
|
|
module.exports.mutateExternal = nativeBinding.mutateExternal
|
|
module.exports.mutateOptionalExternal = nativeBinding.mutateOptionalExternal
|
|
module.exports.mutateTypedArray = nativeBinding.mutateTypedArray
|
|
module.exports.objectGetNamedPropertyShouldPerformTypecheck = nativeBinding.objectGetNamedPropertyShouldPerformTypecheck
|
|
module.exports.optionEnd = nativeBinding.optionEnd
|
|
module.exports.optionOnly = nativeBinding.optionOnly
|
|
module.exports.optionStart = nativeBinding.optionStart
|
|
module.exports.optionStartEnd = nativeBinding.optionStartEnd
|
|
module.exports.overrideIndividualArgOnFunction = nativeBinding.overrideIndividualArgOnFunction
|
|
module.exports.overrideIndividualArgOnFunctionWithCbArg = nativeBinding.overrideIndividualArgOnFunctionWithCbArg
|
|
module.exports.overrideWholeFunctionType = nativeBinding.overrideWholeFunctionType
|
|
module.exports.panic = nativeBinding.panic
|
|
module.exports.panicInAsync = nativeBinding.panicInAsync
|
|
module.exports.passSetToJs = nativeBinding.passSetToJs
|
|
module.exports.passSetToRust = nativeBinding.passSetToRust
|
|
module.exports.passSetWithHasherToJs = nativeBinding.passSetWithHasherToJs
|
|
module.exports.plusOne = nativeBinding.plusOne
|
|
module.exports.promiseInEither = nativeBinding.promiseInEither
|
|
module.exports.readFile = nativeBinding.readFile
|
|
module.exports.readFileAsync = nativeBinding.readFileAsync
|
|
module.exports.readPackageJson = nativeBinding.readPackageJson
|
|
module.exports.receiveAllOptionalObject = nativeBinding.receiveAllOptionalObject
|
|
module.exports.receiveBufferSliceWithLifetime = nativeBinding.receiveBufferSliceWithLifetime
|
|
module.exports.receiveClassOrNumber = nativeBinding.receiveClassOrNumber
|
|
module.exports.receiveDifferentClass = nativeBinding.receiveDifferentClass
|
|
module.exports.receiveMutClassOrNumber = nativeBinding.receiveMutClassOrNumber
|
|
module.exports.receiveObjectOnlyFromJs = nativeBinding.receiveObjectOnlyFromJs
|
|
module.exports.receiveObjectWithClassField = nativeBinding.receiveObjectWithClassField
|
|
module.exports.receiveStrictObject = nativeBinding.receiveStrictObject
|
|
module.exports.receiveString = nativeBinding.receiveString
|
|
module.exports.referenceAsCallback = nativeBinding.referenceAsCallback
|
|
module.exports.returnCString = nativeBinding.returnCString
|
|
module.exports.returnEither = nativeBinding.returnEither
|
|
module.exports.returnEitherClass = nativeBinding.returnEitherClass
|
|
module.exports.returnFromSharedCrate = nativeBinding.returnFromSharedCrate
|
|
module.exports.returnNull = nativeBinding.returnNull
|
|
module.exports.returnObjectOnlyToJs = nativeBinding.returnObjectOnlyToJs
|
|
module.exports.returnUndefined = nativeBinding.returnUndefined
|
|
module.exports.returnUndefinedIfInvalid = nativeBinding.returnUndefinedIfInvalid
|
|
module.exports.returnUndefinedIfInvalidPromise = nativeBinding.returnUndefinedIfInvalidPromise
|
|
module.exports.roundtripStr = nativeBinding.roundtripStr
|
|
module.exports.runScript = nativeBinding.runScript
|
|
module.exports.setNullByteProperty = nativeBinding.setNullByteProperty
|
|
module.exports.setSymbolInObj = nativeBinding.setSymbolInObj
|
|
module.exports.spawnThreadInThread = nativeBinding.spawnThreadInThread
|
|
module.exports.Status = nativeBinding.Status
|
|
module.exports.StatusInValidate = nativeBinding.StatusInValidate
|
|
module.exports.StringEnum = nativeBinding.StringEnum
|
|
module.exports.sumBtreeMapping = nativeBinding.sumBtreeMapping
|
|
module.exports.sumIndexMapping = nativeBinding.sumIndexMapping
|
|
module.exports.sumMapping = nativeBinding.sumMapping
|
|
module.exports.sumNums = nativeBinding.sumNums
|
|
module.exports.testSerdeBigNumberPrecision = nativeBinding.testSerdeBigNumberPrecision
|
|
module.exports.testSerdeBufferBytes = nativeBinding.testSerdeBufferBytes
|
|
module.exports.testSerdeRoundtrip = nativeBinding.testSerdeRoundtrip
|
|
module.exports.threadsafeFunctionClosureCapture = nativeBinding.threadsafeFunctionClosureCapture
|
|
module.exports.threadsafeFunctionFatalMode = nativeBinding.threadsafeFunctionFatalMode
|
|
module.exports.threadsafeFunctionFatalModeError = nativeBinding.threadsafeFunctionFatalModeError
|
|
module.exports.threadsafeFunctionThrowError = nativeBinding.threadsafeFunctionThrowError
|
|
module.exports.throwAsyncError = nativeBinding.throwAsyncError
|
|
module.exports.throwError = nativeBinding.throwError
|
|
module.exports.throwSyntaxError = nativeBinding.throwSyntaxError
|
|
module.exports.toJsObj = nativeBinding.toJsObj
|
|
module.exports.tsfnAsyncCall = nativeBinding.tsfnAsyncCall
|
|
module.exports.tsfnCallWithCallback = nativeBinding.tsfnCallWithCallback
|
|
module.exports.tsfnInEither = nativeBinding.tsfnInEither
|
|
module.exports.tsfnReturnPromise = nativeBinding.tsfnReturnPromise
|
|
module.exports.tsfnReturnPromiseTimeout = nativeBinding.tsfnReturnPromiseTimeout
|
|
module.exports.tsfnThrowFromJs = nativeBinding.tsfnThrowFromJs
|
|
module.exports.tsRename = nativeBinding.tsRename
|
|
module.exports.u16ArrayToArray = nativeBinding.u16ArrayToArray
|
|
module.exports.u32ArrayToArray = nativeBinding.u32ArrayToArray
|
|
module.exports.u64ArrayToArray = nativeBinding.u64ArrayToArray
|
|
module.exports.u8ArrayToArray = nativeBinding.u8ArrayToArray
|
|
module.exports.uInit8ArrayFromString = nativeBinding.uInit8ArrayFromString
|
|
module.exports.validateArray = nativeBinding.validateArray
|
|
module.exports.validateBigint = nativeBinding.validateBigint
|
|
module.exports.validateBoolean = nativeBinding.validateBoolean
|
|
module.exports.validateBuffer = nativeBinding.validateBuffer
|
|
module.exports.validateBufferSlice = nativeBinding.validateBufferSlice
|
|
module.exports.validateDate = nativeBinding.validateDate
|
|
module.exports.validateDateTime = nativeBinding.validateDateTime
|
|
module.exports.validateEnum = nativeBinding.validateEnum
|
|
module.exports.validateExternal = nativeBinding.validateExternal
|
|
module.exports.validateFunction = nativeBinding.validateFunction
|
|
module.exports.validateHashMap = nativeBinding.validateHashMap
|
|
module.exports.validateNull = nativeBinding.validateNull
|
|
module.exports.validateNumber = nativeBinding.validateNumber
|
|
module.exports.validateOptional = nativeBinding.validateOptional
|
|
module.exports.validatePromise = nativeBinding.validatePromise
|
|
module.exports.validateString = nativeBinding.validateString
|
|
module.exports.validateStringEnum = nativeBinding.validateStringEnum
|
|
module.exports.validateStructuredEnum = nativeBinding.validateStructuredEnum
|
|
module.exports.validateSymbol = nativeBinding.validateSymbol
|
|
module.exports.validateTypedArray = nativeBinding.validateTypedArray
|
|
module.exports.validateTypedArraySlice = nativeBinding.validateTypedArraySlice
|
|
module.exports.validateUint8ClampedSlice = nativeBinding.validateUint8ClampedSlice
|
|
module.exports.validateUndefined = nativeBinding.validateUndefined
|
|
module.exports.withAbortController = nativeBinding.withAbortController
|
|
module.exports.withinAsyncRuntimeIfAvailable = nativeBinding.withinAsyncRuntimeIfAvailable
|
|
module.exports.withoutAbortController = nativeBinding.withoutAbortController
|
|
module.exports.xxh64Alias = nativeBinding.xxh64Alias
|
|
module.exports.xxh2 = nativeBinding.xxh2
|
|
module.exports.xxh3 = nativeBinding.xxh3
|