space-data-module-sdk 0.8.4 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +117 -20
- package/bin/space-data-module.js +263 -0
- package/docs/.nojekyll +1 -0
- package/docs/AGENTS.md +34 -0
- package/docs/architecture.svg +141 -0
- package/docs/browser-wasmedge-isomorphic.md +179 -0
- package/docs/flatsql-streaming-standard.md +341 -0
- package/docs/gpu-module-abi.md +193 -0
- package/docs/index.html +125 -0
- package/docs/isomorphic-pthreads.md +188 -0
- package/docs/isomorphic-sdn-runtime-plan.md +167 -0
- package/docs/language-runtime-matrix.md +82 -0
- package/docs/manifest-structure.svg +114 -0
- package/docs/module-bundle-runtime-plan.md +19 -0
- package/docs/module-lifecycle.svg +70 -0
- package/docs/module-publication-standard.md +540 -0
- package/docs/node-red-default-node-parity.md +88 -0
- package/docs/protocol-installation.md +196 -0
- package/docs/secrets-capability.md +152 -0
- package/docs/styles.css +288 -0
- package/docs/testing-harness.md +408 -0
- package/docs/tri-runtime-parity.md +132 -0
- package/docs/wallet-callback.html +2 -0
- package/package.json +25 -6
- package/schemas/HttpRequestAbi.fbs +41 -0
- package/schemas/HttpResponseAbi.fbs +36 -0
- package/schemas/PluginManifest.fbs +2 -1
- package/src/AGENTS.md +1 -1
- package/src/app/codec.js +548 -0
- package/src/app/index.js +6 -0
- package/src/browser.js +5 -0
- package/src/bundle/constants.js +1 -0
- package/src/bundle/index.js +15 -0
- package/src/bundle/sigdomain.js +179 -0
- package/src/bundle/signing.js +767 -0
- package/src/bundle/wasm.js +3 -2
- package/src/capabilities.js +3 -0
- package/src/compat/index.js +7 -0
- package/src/compat/sdnLegacy.js +449 -0
- package/src/compiler/compileModule.js +556 -55
- package/src/compiler/flatcSupport.js +41 -27
- package/src/compiler/index.d.ts +2 -0
- package/src/compiler/index.js +18 -0
- package/src/compiler/invokeGlue.js +1212 -183
- package/src/compiler/pthreadArtifactGuard.js +910 -0
- package/src/compiler/sdnShimGenerator.js +323 -0
- package/src/compiler/wasiThreadsToolchain.js +150 -0
- package/src/compliance/index.js +11 -1
- package/src/compliance/legacyWildcardPorts.js +228 -0
- package/src/compliance/pluginCompliance.js +1000 -96
- package/src/field-stream/index.d.ts +31 -0
- package/src/field-stream/index.js +119 -0
- package/src/flow/dependencyStreamBridge.js +234 -0
- package/src/flow/flatsqlLinkShim.js +304 -0
- package/src/flow/flowCodec.js +107 -0
- package/src/flow/flowCompiler.js +2900 -0
- package/src/flow/flowRuntimeHost.js +877 -0
- package/src/flow/index.d.ts +117 -0
- package/src/flow/index.js +31 -0
- package/src/flow/isomorphicFlowHost.js +384 -0
- package/src/flow/jsFlowRuntime.js +275 -0
- package/src/flow/normalize.js +294 -0
- package/src/flow/runtime-src/flow_runtime.cpp +1699 -0
- package/src/flow/vendor/sdn-flow/MethodRegistry.js +400 -0
- package/src/flow/vendor/sdn-flow/constants.js +39 -0
- package/src/flow/vendor/sdn-flow/index.js +29 -0
- package/src/flow/vendor/sdn-flow/normalize.js +506 -0
- package/src/flow/vendor/sdn-flow/wasmCompatibility.js +189 -0
- package/src/generated/http/cpp/HttpRequestAbi_generated.h +285 -0
- package/src/generated/http/cpp/HttpResponseAbi_generated.h +192 -0
- package/src/generated/http/sdn/http/http-header.js +53 -0
- package/src/generated/http/sdn/http/http-header.ts +67 -0
- package/src/generated/http/sdn/http/http-request.js +132 -0
- package/src/generated/http/sdn/http/http-request.ts +179 -0
- package/src/generated/http/sdn/http/http-response.js +144 -0
- package/src/generated/http/sdn/http/http-response.ts +168 -0
- package/src/generated/http/sdn/http.js +11 -0
- package/src/generated/http/sdn/http.ts +4 -0
- package/src/generated/orbpro/flow/backpressure-policy.d.ts +12 -0
- package/src/generated/orbpro/flow/backpressure-policy.d.ts.map +1 -0
- package/src/generated/orbpro/flow/backpressure-policy.js +17 -0
- package/src/generated/orbpro/flow/backpressure-policy.js.map +1 -0
- package/src/generated/orbpro/flow/backpressure-policy.ts +15 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.d.ts +142 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.js +304 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.js.map +1 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.ts +399 -0
- package/src/generated/orbpro/flow/flow-edge.d.ts +113 -0
- package/src/generated/orbpro/flow/flow-edge.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-edge.js +221 -0
- package/src/generated/orbpro/flow/flow-edge.js.map +1 -0
- package/src/generated/orbpro/flow/flow-edge.ts +292 -0
- package/src/generated/orbpro/flow/flow-node.d.ts +80 -0
- package/src/generated/orbpro/flow/flow-node.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-node.js +158 -0
- package/src/generated/orbpro/flow/flow-node.js.map +1 -0
- package/src/generated/orbpro/flow/flow-node.ts +202 -0
- package/src/generated/orbpro/flow/flow-program.d.ts +164 -0
- package/src/generated/orbpro/flow/flow-program.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-program.js +350 -0
- package/src/generated/orbpro/flow/flow-program.js.map +1 -0
- package/src/generated/orbpro/flow/flow-program.ts +477 -0
- package/src/generated/orbpro/flow/flow-trigger.d.ts +108 -0
- package/src/generated/orbpro/flow/flow-trigger.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-trigger.js +207 -0
- package/src/generated/orbpro/flow/flow-trigger.js.map +1 -0
- package/src/generated/orbpro/flow/flow-trigger.ts +276 -0
- package/src/generated/orbpro/flow/node-kind.d.ts +13 -0
- package/src/generated/orbpro/flow/node-kind.d.ts.map +1 -0
- package/src/generated/orbpro/flow/node-kind.js +16 -0
- package/src/generated/orbpro/flow/node-kind.js.map +1 -0
- package/src/generated/orbpro/{invoke.ts → flow/node-kind.ts} +12 -2
- package/src/generated/orbpro/flow/plugin-version-binding.d.ts +52 -0
- package/src/generated/orbpro/flow/plugin-version-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/plugin-version-binding.js +85 -0
- package/src/generated/orbpro/flow/plugin-version-binding.js.map +1 -0
- package/src/generated/orbpro/flow/plugin-version-binding.ts +121 -0
- package/src/generated/orbpro/flow/schema-hash-binding.d.ts +70 -0
- package/src/generated/orbpro/flow/schema-hash-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/schema-hash-binding.js +143 -0
- package/src/generated/orbpro/flow/schema-hash-binding.js.map +1 -0
- package/src/generated/orbpro/flow/schema-hash-binding.ts +189 -0
- package/src/generated/orbpro/flow/trigger-binding.d.ts +71 -0
- package/src/generated/orbpro/flow/trigger-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/trigger-binding.js +142 -0
- package/src/generated/orbpro/flow/trigger-binding.js.map +1 -0
- package/src/generated/orbpro/flow/trigger-binding.ts +181 -0
- package/src/generated/orbpro/flow/trigger-kind.d.ts +14 -0
- package/src/generated/orbpro/flow/trigger-kind.d.ts.map +1 -0
- package/src/generated/orbpro/flow/trigger-kind.js +17 -0
- package/src/generated/orbpro/flow/trigger-kind.js.map +1 -0
- package/src/generated/orbpro/flow/trigger-kind.ts +17 -0
- package/src/generated/orbpro/flow.d.ts +21 -0
- package/src/generated/orbpro/flow.d.ts.map +1 -0
- package/src/generated/orbpro/flow.js +23 -0
- package/src/generated/orbpro/flow.js.map +1 -0
- package/src/generated/orbpro/flow.ts +24 -0
- package/src/generated/orbpro/manifest/capability-kind.d.ts +2 -1
- package/src/generated/orbpro/manifest/capability-kind.js +1 -0
- package/src/generated/orbpro/manifest/capability-kind.ts +1 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.d.ts +93 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.js +160 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.ts +211 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.d.ts +99 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.js +175 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.ts +226 -0
- package/src/generated/orbpro/plugin.js +8 -0
- package/src/generated/orbpro/stream.d.ts +12 -0
- package/src/generated/orbpro/stream.js +14 -0
- package/src/generated/orbpro/stream.ts +15 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.d.ts +52 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.js +106 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.ts +162 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.d.ts +90 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.js +189 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.ts +270 -0
- package/src/generated/spacedatastandards/plg/PLG.d.ts +492 -0
- package/src/generated/spacedatastandards/plg/PLG.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLG.js +1139 -0
- package/src/generated/spacedatastandards/plg/PLG.ts +1600 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.d.ts +63 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.js +138 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.ts +189 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.d.ts +41 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.js +104 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.ts +151 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.d.ts +68 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.js +124 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.ts +184 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.d.ts +58 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.js +126 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.ts +161 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.d.ts +82 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.js +164 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.ts +244 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.d.ts +55 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.js +105 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.ts +162 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.d.ts +42 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.js +83 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.ts +127 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.d.ts +36 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.js +90 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.ts +127 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.d.ts +53 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.js +153 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.ts +210 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.d.ts +70 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.js +149 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.ts +212 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.d.ts +73 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.js +199 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.ts +292 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.d.ts +40 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.js +103 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.ts +148 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.d.ts +41 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.js +82 -0
- package/src/generated/spacedatastandards/plg/{plugin-capability.ts → PluginCapability.ts} +55 -18
- package/src/generated/spacedatastandards/plg/PluginDependency.d.ts +42 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.js +80 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.ts +124 -0
- package/src/generated/spacedatastandards/plg/TAB.d.ts +85 -0
- package/src/generated/spacedatastandards/plg/TAB.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/TAB.js +173 -0
- package/src/generated/spacedatastandards/plg/TAB.ts +228 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.js +20 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.ts +23 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.js +20 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.ts +23 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.d.ts +20 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.js +22 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.ts +25 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.d.ts +10 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.js +12 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.ts +13 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.d.ts +51 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.js +53 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.ts +55 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.d.ts +15 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.js +17 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.ts +19 -0
- package/src/generated/spacedatastandards/plg/main.d.ts +29 -0
- package/src/generated/spacedatastandards/plg/main.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/main.js +30 -0
- package/src/generated/spacedatastandards/plg/main.ts +32 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.d.ts +17 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.js +19 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.ts +21 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts +82 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.js +84 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.ts +103 -0
- package/src/generated/spacedatastandards/plg/publicationState.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/publicationState.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/publicationState.js +20 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.js +20 -0
- package/src/host/AGENTS.md +2 -2
- package/src/host/abi.js +53 -66
- package/src/host/browserHost.js +355 -8
- package/src/host/cpp/keyslotClient.hpp +231 -0
- package/src/host/cpp/secretsClient.hpp +583 -0
- package/src/host/hostcallWire.js +183 -0
- package/src/host/index.js +2 -0
- package/src/host/isomorphicLoader.js +44 -7
- package/src/host/nodeHost.js +227 -8
- package/src/host/sabHostcallChannel.js +206 -0
- package/src/host/timerDriver.js +203 -0
- package/src/host/wasiShim.js +41 -1
- package/src/host/wasiThreadBrowserWorker.mjs +48 -0
- package/src/host/wasiThreadHost.js +393 -0
- package/src/host/wasiThreadWorker.mjs +32 -0
- package/src/host/wasiThreadWorkerRuntime.js +93 -0
- package/src/http/index.js +339 -0
- package/src/index.d.ts +725 -11
- package/src/index.js +4 -0
- package/src/invoke/codec.js +1202 -128
- package/src/invoke/index.js +5 -1
- package/src/licensing/index.d.ts +2 -0
- package/src/licensing/index.js +2 -0
- package/src/licensing/records.js +287 -8
- package/src/manifest/codec.js +62 -14
- package/src/manifest/index.js +2 -0
- package/src/manifest/legacyToPlg.js +164 -25
- package/src/manifest/normalize.js +1 -0
- package/src/manifest/plgCodec.js +1303 -62
- package/src/manifest/typeRefs.js +162 -24
- package/src/runtime/compiledRuntimeAbi.js +47 -0
- package/src/runtime/compiledRuntimeAbi.json +33 -0
- package/src/runtime/index.d.ts +32 -0
- package/src/runtime/index.js +1 -0
- package/src/runtime-host/index.js +3 -0
- package/src/runtime-host/methodRegistry.js +55 -0
- package/src/standards/index.js +200 -56
- package/src/standards/sharedCatalog.js +16 -0
- package/src/testing/browserModuleHarness.js +604 -31
- package/src/testing/docker/wasmedge-parity.Dockerfile +39 -0
- package/src/testing/index.d.ts +151 -0
- package/src/testing/index.js +21 -0
- package/src/testing/native/wasmedge_emscripten_pthread_runner.c +25 -1
- package/src/testing/parityBrowserRunner.js +138 -0
- package/src/testing/parityHarness.js +616 -0
- package/src/testing/parityLanes.js +537 -0
- package/src/testing/processInvoke.js +29 -21
- package/src/testing/streamInvokeCodec.js +10 -175
- package/src/testing/wasmedgePin.json +6 -0
- package/src/testing/workerModuleHarness.js +242 -0
- package/src/testing/workerModuleHarnessWorker.js +176 -0
- package/src/transport/index.js +3 -0
- package/src/transport/pki.js +352 -14
- package/src/transport/records.js +16 -7
- package/src/utils/ecdsaDer.js +106 -0
- package/src/utils/wasmCrypto.js +0 -43
- package/templates/gpu-module/README.md +48 -0
- package/templates/gpu-module/include/space_data_gpu_abi.h +122 -0
- package/templates/gpu-module/manifest.json +84 -0
- package/schemas/PluginInvokeRequest.fbs +0 -18
- package/schemas/PluginInvokeResponse.fbs +0 -30
- package/schemas/spacedatastandards/PLG.fbs +0 -191
- package/src/generated/orbpro/invoke/plugin-invoke-request.d.ts +0 -51
- package/src/generated/orbpro/invoke/plugin-invoke-request.d.ts.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-request.js +0 -131
- package/src/generated/orbpro/invoke/plugin-invoke-request.js.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-request.ts +0 -173
- package/src/generated/orbpro/invoke/plugin-invoke-response.d.ts +0 -76
- package/src/generated/orbpro/invoke/plugin-invoke-response.d.ts.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-response.js +0 -184
- package/src/generated/orbpro/invoke/plugin-invoke-response.js.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-response.ts +0 -243
- package/src/generated/orbpro/invoke.d.ts +0 -3
- package/src/generated/orbpro/invoke.js +0 -5
- package/src/generated/spacedatastandards/plg/entry-function.js +0 -86
- package/src/generated/spacedatastandards/plg/entry-function.ts +0 -119
- package/src/generated/spacedatastandards/plg/index.js +0 -16
- package/src/generated/spacedatastandards/plg/index.ts +0 -11
- package/src/generated/spacedatastandards/plg/plg.js +0 -657
- package/src/generated/spacedatastandards/plg/plg.ts +0 -924
- package/src/generated/spacedatastandards/plg/plugin-capability.js +0 -66
- package/src/generated/spacedatastandards/plg/plugin-category.js +0 -15
- package/src/generated/spacedatastandards/plg/plugin-category.ts +0 -53
- package/src/generated/spacedatastandards/plg/plugin-dependency.js +0 -63
- package/src/generated/spacedatastandards/plg/plugin-dependency.ts +0 -86
- package/src/generated/spacedatastandards/plg/publication-state.js +0 -9
- package/src/generated/spacedatastandards/plg/purchase-tier.js +0 -9
- /package/src/generated/spacedatastandards/plg/{publication-state.ts → publicationState.ts} +0 -0
- /package/src/generated/spacedatastandards/plg/{purchase-tier.ts → purchaseTier.ts} +0 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
// automatically generated by the FlatBuffers compiler, do not modify
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
|
3
|
+
import * as flatbuffers from 'flatbuffers';
|
|
4
|
+
/**
|
|
5
|
+
* Binds a trigger to the node + input port it delivers its frame to.
|
|
6
|
+
*/
|
|
7
|
+
export class PLGFlowTriggerBinding {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.bb = null;
|
|
10
|
+
this.bb_pos = 0;
|
|
11
|
+
}
|
|
12
|
+
__init(i, bb) {
|
|
13
|
+
this.bb_pos = i;
|
|
14
|
+
this.bb = bb;
|
|
15
|
+
return this;
|
|
16
|
+
}
|
|
17
|
+
static getRootAsPLGFlowTriggerBinding(bb, obj) {
|
|
18
|
+
return (obj || new PLGFlowTriggerBinding()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
19
|
+
}
|
|
20
|
+
static getSizePrefixedRootAsPLGFlowTriggerBinding(bb, obj) {
|
|
21
|
+
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
22
|
+
return (obj || new PLGFlowTriggerBinding()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
23
|
+
}
|
|
24
|
+
TRIGGER_ID(optionalEncoding) {
|
|
25
|
+
const offset = this.bb.__offset(this.bb_pos, 4);
|
|
26
|
+
return this.bb.__string(this.bb_pos + offset, optionalEncoding);
|
|
27
|
+
}
|
|
28
|
+
TARGET_NODE_ID(optionalEncoding) {
|
|
29
|
+
const offset = this.bb.__offset(this.bb_pos, 6);
|
|
30
|
+
return this.bb.__string(this.bb_pos + offset, optionalEncoding);
|
|
31
|
+
}
|
|
32
|
+
TARGET_PORT_ID(optionalEncoding) {
|
|
33
|
+
const offset = this.bb.__offset(this.bb_pos, 8);
|
|
34
|
+
return this.bb.__string(this.bb_pos + offset, optionalEncoding);
|
|
35
|
+
}
|
|
36
|
+
static startPLGFlowTriggerBinding(builder) {
|
|
37
|
+
builder.startObject(3);
|
|
38
|
+
}
|
|
39
|
+
static addTriggerId(builder, TRIGGER_IDOffset) {
|
|
40
|
+
builder.addFieldOffset(0, TRIGGER_IDOffset, 0);
|
|
41
|
+
}
|
|
42
|
+
static addTargetNodeId(builder, TARGET_NODE_IDOffset) {
|
|
43
|
+
builder.addFieldOffset(1, TARGET_NODE_IDOffset, 0);
|
|
44
|
+
}
|
|
45
|
+
static addTargetPortId(builder, TARGET_PORT_IDOffset) {
|
|
46
|
+
builder.addFieldOffset(2, TARGET_PORT_IDOffset, 0);
|
|
47
|
+
}
|
|
48
|
+
static endPLGFlowTriggerBinding(builder) {
|
|
49
|
+
const offset = builder.endObject();
|
|
50
|
+
builder.requiredField(offset, 4); // TRIGGER_ID
|
|
51
|
+
builder.requiredField(offset, 6); // TARGET_NODE_ID
|
|
52
|
+
builder.requiredField(offset, 8); // TARGET_PORT_ID
|
|
53
|
+
return offset;
|
|
54
|
+
}
|
|
55
|
+
static createPLGFlowTriggerBinding(builder, TRIGGER_IDOffset, TARGET_NODE_IDOffset, TARGET_PORT_IDOffset) {
|
|
56
|
+
PLGFlowTriggerBinding.startPLGFlowTriggerBinding(builder);
|
|
57
|
+
PLGFlowTriggerBinding.addTriggerId(builder, TRIGGER_IDOffset);
|
|
58
|
+
PLGFlowTriggerBinding.addTargetNodeId(builder, TARGET_NODE_IDOffset);
|
|
59
|
+
PLGFlowTriggerBinding.addTargetPortId(builder, TARGET_PORT_IDOffset);
|
|
60
|
+
return PLGFlowTriggerBinding.endPLGFlowTriggerBinding(builder);
|
|
61
|
+
}
|
|
62
|
+
unpack() {
|
|
63
|
+
return new PLGFlowTriggerBindingT(this.TRIGGER_ID(), this.TARGET_NODE_ID(), this.TARGET_PORT_ID());
|
|
64
|
+
}
|
|
65
|
+
unpackTo(_o) {
|
|
66
|
+
_o.TRIGGER_ID = this.TRIGGER_ID();
|
|
67
|
+
_o.TARGET_NODE_ID = this.TARGET_NODE_ID();
|
|
68
|
+
_o.TARGET_PORT_ID = this.TARGET_PORT_ID();
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
export class PLGFlowTriggerBindingT {
|
|
72
|
+
constructor(TRIGGER_ID = null, TARGET_NODE_ID = null, TARGET_PORT_ID = null) {
|
|
73
|
+
this.TRIGGER_ID = TRIGGER_ID;
|
|
74
|
+
this.TARGET_NODE_ID = TARGET_NODE_ID;
|
|
75
|
+
this.TARGET_PORT_ID = TARGET_PORT_ID;
|
|
76
|
+
}
|
|
77
|
+
pack(builder) {
|
|
78
|
+
const TRIGGER_ID = (this.TRIGGER_ID !== null ? builder.createString(this.TRIGGER_ID) : 0);
|
|
79
|
+
const TARGET_NODE_ID = (this.TARGET_NODE_ID !== null ? builder.createString(this.TARGET_NODE_ID) : 0);
|
|
80
|
+
const TARGET_PORT_ID = (this.TARGET_PORT_ID !== null ? builder.createString(this.TARGET_PORT_ID) : 0);
|
|
81
|
+
return PLGFlowTriggerBinding.createPLGFlowTriggerBinding(builder, TRIGGER_ID, TARGET_NODE_ID, TARGET_PORT_ID);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// automatically generated by the FlatBuffers compiler, do not modify
|
|
2
|
+
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
|
4
|
+
|
|
5
|
+
import * as flatbuffers from 'flatbuffers';
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Binds a trigger to the node + input port it delivers its frame to.
|
|
11
|
+
*/
|
|
12
|
+
export class PLGFlowTriggerBinding implements flatbuffers.IUnpackableObject<PLGFlowTriggerBindingT> {
|
|
13
|
+
bb: flatbuffers.ByteBuffer|null = null;
|
|
14
|
+
bb_pos = 0;
|
|
15
|
+
__init(i:number, bb:flatbuffers.ByteBuffer):PLGFlowTriggerBinding {
|
|
16
|
+
this.bb_pos = i;
|
|
17
|
+
this.bb = bb;
|
|
18
|
+
return this;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
static getRootAsPLGFlowTriggerBinding(bb:flatbuffers.ByteBuffer, obj?:PLGFlowTriggerBinding):PLGFlowTriggerBinding {
|
|
22
|
+
return (obj || new PLGFlowTriggerBinding()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static getSizePrefixedRootAsPLGFlowTriggerBinding(bb:flatbuffers.ByteBuffer, obj?:PLGFlowTriggerBinding):PLGFlowTriggerBinding {
|
|
26
|
+
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
27
|
+
return (obj || new PLGFlowTriggerBinding()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Trigger identifier
|
|
32
|
+
*/
|
|
33
|
+
TRIGGER_ID():string
|
|
34
|
+
TRIGGER_ID(optionalEncoding:flatbuffers.Encoding):string|Uint8Array
|
|
35
|
+
TRIGGER_ID(optionalEncoding?:any):string|Uint8Array {
|
|
36
|
+
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
37
|
+
return this.bb!.__string(this.bb_pos + offset, optionalEncoding);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Target node id
|
|
42
|
+
*/
|
|
43
|
+
TARGET_NODE_ID():string
|
|
44
|
+
TARGET_NODE_ID(optionalEncoding:flatbuffers.Encoding):string|Uint8Array
|
|
45
|
+
TARGET_NODE_ID(optionalEncoding?:any):string|Uint8Array {
|
|
46
|
+
const offset = this.bb!.__offset(this.bb_pos, 6);
|
|
47
|
+
return this.bb!.__string(this.bb_pos + offset, optionalEncoding);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Target input port id
|
|
52
|
+
*/
|
|
53
|
+
TARGET_PORT_ID():string
|
|
54
|
+
TARGET_PORT_ID(optionalEncoding:flatbuffers.Encoding):string|Uint8Array
|
|
55
|
+
TARGET_PORT_ID(optionalEncoding?:any):string|Uint8Array {
|
|
56
|
+
const offset = this.bb!.__offset(this.bb_pos, 8);
|
|
57
|
+
return this.bb!.__string(this.bb_pos + offset, optionalEncoding);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
static startPLGFlowTriggerBinding(builder:flatbuffers.Builder) {
|
|
61
|
+
builder.startObject(3);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
static addTriggerId(builder:flatbuffers.Builder, TRIGGER_IDOffset:flatbuffers.Offset) {
|
|
65
|
+
builder.addFieldOffset(0, TRIGGER_IDOffset, 0);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
static addTargetNodeId(builder:flatbuffers.Builder, TARGET_NODE_IDOffset:flatbuffers.Offset) {
|
|
69
|
+
builder.addFieldOffset(1, TARGET_NODE_IDOffset, 0);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
static addTargetPortId(builder:flatbuffers.Builder, TARGET_PORT_IDOffset:flatbuffers.Offset) {
|
|
73
|
+
builder.addFieldOffset(2, TARGET_PORT_IDOffset, 0);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static endPLGFlowTriggerBinding(builder:flatbuffers.Builder):flatbuffers.Offset {
|
|
77
|
+
const offset = builder.endObject();
|
|
78
|
+
builder.requiredField(offset, 4) // TRIGGER_ID
|
|
79
|
+
builder.requiredField(offset, 6) // TARGET_NODE_ID
|
|
80
|
+
builder.requiredField(offset, 8) // TARGET_PORT_ID
|
|
81
|
+
return offset;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
static createPLGFlowTriggerBinding(builder:flatbuffers.Builder, TRIGGER_IDOffset:flatbuffers.Offset, TARGET_NODE_IDOffset:flatbuffers.Offset, TARGET_PORT_IDOffset:flatbuffers.Offset):flatbuffers.Offset {
|
|
85
|
+
PLGFlowTriggerBinding.startPLGFlowTriggerBinding(builder);
|
|
86
|
+
PLGFlowTriggerBinding.addTriggerId(builder, TRIGGER_IDOffset);
|
|
87
|
+
PLGFlowTriggerBinding.addTargetNodeId(builder, TARGET_NODE_IDOffset);
|
|
88
|
+
PLGFlowTriggerBinding.addTargetPortId(builder, TARGET_PORT_IDOffset);
|
|
89
|
+
return PLGFlowTriggerBinding.endPLGFlowTriggerBinding(builder);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
unpack(): PLGFlowTriggerBindingT {
|
|
93
|
+
return new PLGFlowTriggerBindingT(
|
|
94
|
+
this.TRIGGER_ID(),
|
|
95
|
+
this.TARGET_NODE_ID(),
|
|
96
|
+
this.TARGET_PORT_ID()
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
unpackTo(_o: PLGFlowTriggerBindingT): void {
|
|
102
|
+
_o.TRIGGER_ID = this.TRIGGER_ID();
|
|
103
|
+
_o.TARGET_NODE_ID = this.TARGET_NODE_ID();
|
|
104
|
+
_o.TARGET_PORT_ID = this.TARGET_PORT_ID();
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export class PLGFlowTriggerBindingT implements flatbuffers.IGeneratedObject {
|
|
109
|
+
constructor(
|
|
110
|
+
public TRIGGER_ID: string|Uint8Array|null = null,
|
|
111
|
+
public TARGET_NODE_ID: string|Uint8Array|null = null,
|
|
112
|
+
public TARGET_PORT_ID: string|Uint8Array|null = null
|
|
113
|
+
){}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
pack(builder:flatbuffers.Builder): flatbuffers.Offset {
|
|
117
|
+
const TRIGGER_ID = (this.TRIGGER_ID !== null ? builder.createString(this.TRIGGER_ID!) : 0);
|
|
118
|
+
const TARGET_NODE_ID = (this.TARGET_NODE_ID !== null ? builder.createString(this.TARGET_NODE_ID!) : 0);
|
|
119
|
+
const TARGET_PORT_ID = (this.TARGET_PORT_ID !== null ? builder.createString(this.TARGET_PORT_ID!) : 0);
|
|
120
|
+
|
|
121
|
+
return PLGFlowTriggerBinding.createPLGFlowTriggerBinding(builder,
|
|
122
|
+
TRIGGER_ID,
|
|
123
|
+
TARGET_NODE_ID,
|
|
124
|
+
TARGET_PORT_ID
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as flatbuffers from 'flatbuffers';
|
|
2
|
+
import { hostCapabilityKind } from './hostCapabilityKind.js';
|
|
3
|
+
/**
|
|
4
|
+
* One host capability dependency (richer form of PluginCapability).
|
|
5
|
+
*/
|
|
6
|
+
export declare class PLGHostCapability implements flatbuffers.IUnpackableObject<PLGHostCapabilityT> {
|
|
7
|
+
bb: flatbuffers.ByteBuffer | null;
|
|
8
|
+
bb_pos: number;
|
|
9
|
+
__init(i: number, bb: flatbuffers.ByteBuffer): PLGHostCapability;
|
|
10
|
+
static getRootAsPLGHostCapability(bb: flatbuffers.ByteBuffer, obj?: PLGHostCapability): PLGHostCapability;
|
|
11
|
+
static getSizePrefixedRootAsPLGHostCapability(bb: flatbuffers.ByteBuffer, obj?: PLGHostCapability): PLGHostCapability;
|
|
12
|
+
CAPABILITY(): hostCapabilityKind;
|
|
13
|
+
SCOPE(): string | null;
|
|
14
|
+
SCOPE(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
15
|
+
REQUIRED(): boolean;
|
|
16
|
+
DESCRIPTION(): string | null;
|
|
17
|
+
DESCRIPTION(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
18
|
+
static startPLGHostCapability(builder: flatbuffers.Builder): void;
|
|
19
|
+
static addCapability(builder: flatbuffers.Builder, CAPABILITY: hostCapabilityKind): void;
|
|
20
|
+
static addScope(builder: flatbuffers.Builder, SCOPEOffset: flatbuffers.Offset): void;
|
|
21
|
+
static addRequired(builder: flatbuffers.Builder, REQUIRED: boolean): void;
|
|
22
|
+
static addDescription(builder: flatbuffers.Builder, DESCRIPTIONOffset: flatbuffers.Offset): void;
|
|
23
|
+
static endPLGHostCapability(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
24
|
+
static createPLGHostCapability(builder: flatbuffers.Builder, CAPABILITY: hostCapabilityKind, SCOPEOffset: flatbuffers.Offset, REQUIRED: boolean, DESCRIPTIONOffset: flatbuffers.Offset): flatbuffers.Offset;
|
|
25
|
+
unpack(): PLGHostCapabilityT;
|
|
26
|
+
unpackTo(_o: PLGHostCapabilityT): void;
|
|
27
|
+
}
|
|
28
|
+
export declare class PLGHostCapabilityT implements flatbuffers.IGeneratedObject {
|
|
29
|
+
CAPABILITY: hostCapabilityKind;
|
|
30
|
+
SCOPE: string | Uint8Array | null;
|
|
31
|
+
REQUIRED: boolean;
|
|
32
|
+
DESCRIPTION: string | Uint8Array | null;
|
|
33
|
+
constructor(CAPABILITY?: hostCapabilityKind, SCOPE?: string | Uint8Array | null, REQUIRED?: boolean, DESCRIPTION?: string | Uint8Array | null);
|
|
34
|
+
pack(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=PLGHostCapability.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PLGHostCapability.d.ts","sourceRoot":"","sources":["../../../ts/PLG/PLGHostCapability.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,WAAW,MAAM,aAAa,CAAC;AAE3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAG7D;;GAEG;AACH,qBAAa,iBAAkB,YAAW,WAAW,CAAC,iBAAiB,CAAC,kBAAkB,CAAC;IACzF,EAAE,EAAE,WAAW,CAAC,UAAU,GAAC,IAAI,CAAQ;IACvC,MAAM,SAAK;IACX,MAAM,CAAC,CAAC,EAAC,MAAM,EAAE,EAAE,EAAC,WAAW,CAAC,UAAU,GAAE,iBAAiB;IAM/D,MAAM,CAAC,0BAA0B,CAAC,EAAE,EAAC,WAAW,CAAC,UAAU,EAAE,GAAG,CAAC,EAAC,iBAAiB,GAAE,iBAAiB;IAItG,MAAM,CAAC,sCAAsC,CAAC,EAAE,EAAC,WAAW,CAAC,UAAU,EAAE,GAAG,CAAC,EAAC,iBAAiB,GAAE,iBAAiB;IAKlH,UAAU,IAAG,kBAAkB;IAK/B,KAAK,IAAG,MAAM,GAAC,IAAI;IACnB,KAAK,CAAC,gBAAgB,EAAC,WAAW,CAAC,QAAQ,GAAE,MAAM,GAAC,UAAU,GAAC,IAAI;IAMnE,QAAQ,IAAG,OAAO;IAKlB,WAAW,IAAG,MAAM,GAAC,IAAI;IACzB,WAAW,CAAC,gBAAgB,EAAC,WAAW,CAAC,QAAQ,GAAE,MAAM,GAAC,UAAU,GAAC,IAAI;IAMzE,MAAM,CAAC,sBAAsB,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO;IAIzD,MAAM,CAAC,aAAa,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,EAAE,UAAU,EAAC,kBAAkB;IAI/E,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,EAAE,WAAW,EAAC,WAAW,CAAC,MAAM;IAI3E,MAAM,CAAC,WAAW,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,EAAE,QAAQ,EAAC,OAAO;IAIhE,MAAM,CAAC,cAAc,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,EAAE,iBAAiB,EAAC,WAAW,CAAC,MAAM;IAIvF,MAAM,CAAC,oBAAoB,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,GAAE,WAAW,CAAC,MAAM;IAK3E,MAAM,CAAC,uBAAuB,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,EAAE,UAAU,EAAC,kBAAkB,EAAE,WAAW,EAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,EAAC,OAAO,EAAE,iBAAiB,EAAC,WAAW,CAAC,MAAM,GAAE,WAAW,CAAC,MAAM;IASrM,MAAM,IAAI,kBAAkB;IAU5B,QAAQ,CAAC,EAAE,EAAE,kBAAkB,GAAG,IAAI;CAMrC;AAED,qBAAa,kBAAmB,YAAW,WAAW,CAAC,gBAAgB;IAE9D,UAAU,EAAE,kBAAkB;IAC9B,KAAK,EAAE,MAAM,GAAC,UAAU,GAAC,IAAI;IAC7B,QAAQ,EAAE,OAAO;IACjB,WAAW,EAAE,MAAM,GAAC,UAAU,GAAC,IAAI;gBAHnC,UAAU,GAAE,kBAA6C,EACzD,KAAK,GAAE,MAAM,GAAC,UAAU,GAAC,IAAW,EACpC,QAAQ,GAAE,OAAc,EACxB,WAAW,GAAE,MAAM,GAAC,UAAU,GAAC,IAAW;IAInD,IAAI,CAAC,OAAO,EAAC,WAAW,CAAC,OAAO,GAAG,WAAW,CAAC,MAAM;CAWpD"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
// automatically generated by the FlatBuffers compiler, do not modify
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
|
3
|
+
import * as flatbuffers from 'flatbuffers';
|
|
4
|
+
import { hostCapabilityKind } from './hostCapabilityKind.js';
|
|
5
|
+
/**
|
|
6
|
+
* One host capability dependency (richer form of PluginCapability).
|
|
7
|
+
*/
|
|
8
|
+
export class PLGHostCapability {
|
|
9
|
+
constructor() {
|
|
10
|
+
this.bb = null;
|
|
11
|
+
this.bb_pos = 0;
|
|
12
|
+
}
|
|
13
|
+
__init(i, bb) {
|
|
14
|
+
this.bb_pos = i;
|
|
15
|
+
this.bb = bb;
|
|
16
|
+
return this;
|
|
17
|
+
}
|
|
18
|
+
static getRootAsPLGHostCapability(bb, obj) {
|
|
19
|
+
return (obj || new PLGHostCapability()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
20
|
+
}
|
|
21
|
+
static getSizePrefixedRootAsPLGHostCapability(bb, obj) {
|
|
22
|
+
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
23
|
+
return (obj || new PLGHostCapability()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
24
|
+
}
|
|
25
|
+
CAPABILITY() {
|
|
26
|
+
const offset = this.bb.__offset(this.bb_pos, 4);
|
|
27
|
+
return offset ? this.bb.readUint16(this.bb_pos + offset) : hostCapabilityKind.CLOCK;
|
|
28
|
+
}
|
|
29
|
+
SCOPE(optionalEncoding) {
|
|
30
|
+
const offset = this.bb.__offset(this.bb_pos, 6);
|
|
31
|
+
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null;
|
|
32
|
+
}
|
|
33
|
+
REQUIRED() {
|
|
34
|
+
const offset = this.bb.__offset(this.bb_pos, 8);
|
|
35
|
+
return offset ? !!this.bb.readInt8(this.bb_pos + offset) : true;
|
|
36
|
+
}
|
|
37
|
+
DESCRIPTION(optionalEncoding) {
|
|
38
|
+
const offset = this.bb.__offset(this.bb_pos, 10);
|
|
39
|
+
return offset ? this.bb.__string(this.bb_pos + offset, optionalEncoding) : null;
|
|
40
|
+
}
|
|
41
|
+
static startPLGHostCapability(builder) {
|
|
42
|
+
builder.startObject(4);
|
|
43
|
+
}
|
|
44
|
+
static addCapability(builder, CAPABILITY) {
|
|
45
|
+
builder.addFieldInt16(0, CAPABILITY, hostCapabilityKind.CLOCK);
|
|
46
|
+
}
|
|
47
|
+
static addScope(builder, SCOPEOffset) {
|
|
48
|
+
builder.addFieldOffset(1, SCOPEOffset, 0);
|
|
49
|
+
}
|
|
50
|
+
static addRequired(builder, REQUIRED) {
|
|
51
|
+
builder.addFieldInt8(2, +REQUIRED, +true);
|
|
52
|
+
}
|
|
53
|
+
static addDescription(builder, DESCRIPTIONOffset) {
|
|
54
|
+
builder.addFieldOffset(3, DESCRIPTIONOffset, 0);
|
|
55
|
+
}
|
|
56
|
+
static endPLGHostCapability(builder) {
|
|
57
|
+
const offset = builder.endObject();
|
|
58
|
+
return offset;
|
|
59
|
+
}
|
|
60
|
+
static createPLGHostCapability(builder, CAPABILITY, SCOPEOffset, REQUIRED, DESCRIPTIONOffset) {
|
|
61
|
+
PLGHostCapability.startPLGHostCapability(builder);
|
|
62
|
+
PLGHostCapability.addCapability(builder, CAPABILITY);
|
|
63
|
+
PLGHostCapability.addScope(builder, SCOPEOffset);
|
|
64
|
+
PLGHostCapability.addRequired(builder, REQUIRED);
|
|
65
|
+
PLGHostCapability.addDescription(builder, DESCRIPTIONOffset);
|
|
66
|
+
return PLGHostCapability.endPLGHostCapability(builder);
|
|
67
|
+
}
|
|
68
|
+
unpack() {
|
|
69
|
+
return new PLGHostCapabilityT(this.CAPABILITY(), this.SCOPE(), this.REQUIRED(), this.DESCRIPTION());
|
|
70
|
+
}
|
|
71
|
+
unpackTo(_o) {
|
|
72
|
+
_o.CAPABILITY = this.CAPABILITY();
|
|
73
|
+
_o.SCOPE = this.SCOPE();
|
|
74
|
+
_o.REQUIRED = this.REQUIRED();
|
|
75
|
+
_o.DESCRIPTION = this.DESCRIPTION();
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
export class PLGHostCapabilityT {
|
|
79
|
+
constructor(CAPABILITY = hostCapabilityKind.CLOCK, SCOPE = null, REQUIRED = true, DESCRIPTION = null) {
|
|
80
|
+
this.CAPABILITY = CAPABILITY;
|
|
81
|
+
this.SCOPE = SCOPE;
|
|
82
|
+
this.REQUIRED = REQUIRED;
|
|
83
|
+
this.DESCRIPTION = DESCRIPTION;
|
|
84
|
+
}
|
|
85
|
+
pack(builder) {
|
|
86
|
+
const SCOPE = (this.SCOPE !== null ? builder.createString(this.SCOPE) : 0);
|
|
87
|
+
const DESCRIPTION = (this.DESCRIPTION !== null ? builder.createString(this.DESCRIPTION) : 0);
|
|
88
|
+
return PLGHostCapability.createPLGHostCapability(builder, this.CAPABILITY, SCOPE, this.REQUIRED, DESCRIPTION);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// automatically generated by the FlatBuffers compiler, do not modify
|
|
2
|
+
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
|
|
4
|
+
|
|
5
|
+
import * as flatbuffers from 'flatbuffers';
|
|
6
|
+
|
|
7
|
+
import { hostCapabilityKind } from './hostCapabilityKind.js';
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* One host capability dependency (richer form of PluginCapability).
|
|
12
|
+
*/
|
|
13
|
+
export class PLGHostCapability implements flatbuffers.IUnpackableObject<PLGHostCapabilityT> {
|
|
14
|
+
bb: flatbuffers.ByteBuffer|null = null;
|
|
15
|
+
bb_pos = 0;
|
|
16
|
+
__init(i:number, bb:flatbuffers.ByteBuffer):PLGHostCapability {
|
|
17
|
+
this.bb_pos = i;
|
|
18
|
+
this.bb = bb;
|
|
19
|
+
return this;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static getRootAsPLGHostCapability(bb:flatbuffers.ByteBuffer, obj?:PLGHostCapability):PLGHostCapability {
|
|
23
|
+
return (obj || new PLGHostCapability()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
static getSizePrefixedRootAsPLGHostCapability(bb:flatbuffers.ByteBuffer, obj?:PLGHostCapability):PLGHostCapability {
|
|
27
|
+
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
|
|
28
|
+
return (obj || new PLGHostCapability()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
CAPABILITY():hostCapabilityKind {
|
|
32
|
+
const offset = this.bb!.__offset(this.bb_pos, 4);
|
|
33
|
+
return offset ? this.bb!.readUint16(this.bb_pos + offset) : hostCapabilityKind.CLOCK;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
SCOPE():string|null
|
|
37
|
+
SCOPE(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null
|
|
38
|
+
SCOPE(optionalEncoding?:any):string|Uint8Array|null {
|
|
39
|
+
const offset = this.bb!.__offset(this.bb_pos, 6);
|
|
40
|
+
return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
REQUIRED():boolean {
|
|
44
|
+
const offset = this.bb!.__offset(this.bb_pos, 8);
|
|
45
|
+
return offset ? !!this.bb!.readInt8(this.bb_pos + offset) : true;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
DESCRIPTION():string|null
|
|
49
|
+
DESCRIPTION(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null
|
|
50
|
+
DESCRIPTION(optionalEncoding?:any):string|Uint8Array|null {
|
|
51
|
+
const offset = this.bb!.__offset(this.bb_pos, 10);
|
|
52
|
+
return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
static startPLGHostCapability(builder:flatbuffers.Builder) {
|
|
56
|
+
builder.startObject(4);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
static addCapability(builder:flatbuffers.Builder, CAPABILITY:hostCapabilityKind) {
|
|
60
|
+
builder.addFieldInt16(0, CAPABILITY, hostCapabilityKind.CLOCK);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
static addScope(builder:flatbuffers.Builder, SCOPEOffset:flatbuffers.Offset) {
|
|
64
|
+
builder.addFieldOffset(1, SCOPEOffset, 0);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
static addRequired(builder:flatbuffers.Builder, REQUIRED:boolean) {
|
|
68
|
+
builder.addFieldInt8(2, +REQUIRED, +true);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
static addDescription(builder:flatbuffers.Builder, DESCRIPTIONOffset:flatbuffers.Offset) {
|
|
72
|
+
builder.addFieldOffset(3, DESCRIPTIONOffset, 0);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
static endPLGHostCapability(builder:flatbuffers.Builder):flatbuffers.Offset {
|
|
76
|
+
const offset = builder.endObject();
|
|
77
|
+
return offset;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static createPLGHostCapability(builder:flatbuffers.Builder, CAPABILITY:hostCapabilityKind, SCOPEOffset:flatbuffers.Offset, REQUIRED:boolean, DESCRIPTIONOffset:flatbuffers.Offset):flatbuffers.Offset {
|
|
81
|
+
PLGHostCapability.startPLGHostCapability(builder);
|
|
82
|
+
PLGHostCapability.addCapability(builder, CAPABILITY);
|
|
83
|
+
PLGHostCapability.addScope(builder, SCOPEOffset);
|
|
84
|
+
PLGHostCapability.addRequired(builder, REQUIRED);
|
|
85
|
+
PLGHostCapability.addDescription(builder, DESCRIPTIONOffset);
|
|
86
|
+
return PLGHostCapability.endPLGHostCapability(builder);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
unpack(): PLGHostCapabilityT {
|
|
90
|
+
return new PLGHostCapabilityT(
|
|
91
|
+
this.CAPABILITY(),
|
|
92
|
+
this.SCOPE(),
|
|
93
|
+
this.REQUIRED(),
|
|
94
|
+
this.DESCRIPTION()
|
|
95
|
+
);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
unpackTo(_o: PLGHostCapabilityT): void {
|
|
100
|
+
_o.CAPABILITY = this.CAPABILITY();
|
|
101
|
+
_o.SCOPE = this.SCOPE();
|
|
102
|
+
_o.REQUIRED = this.REQUIRED();
|
|
103
|
+
_o.DESCRIPTION = this.DESCRIPTION();
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export class PLGHostCapabilityT implements flatbuffers.IGeneratedObject {
|
|
108
|
+
constructor(
|
|
109
|
+
public CAPABILITY: hostCapabilityKind = hostCapabilityKind.CLOCK,
|
|
110
|
+
public SCOPE: string|Uint8Array|null = null,
|
|
111
|
+
public REQUIRED: boolean = true,
|
|
112
|
+
public DESCRIPTION: string|Uint8Array|null = null
|
|
113
|
+
){}
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
pack(builder:flatbuffers.Builder): flatbuffers.Offset {
|
|
117
|
+
const SCOPE = (this.SCOPE !== null ? builder.createString(this.SCOPE!) : 0);
|
|
118
|
+
const DESCRIPTION = (this.DESCRIPTION !== null ? builder.createString(this.DESCRIPTION!) : 0);
|
|
119
|
+
|
|
120
|
+
return PLGHostCapability.createPLGHostCapability(builder,
|
|
121
|
+
this.CAPABILITY,
|
|
122
|
+
SCOPE,
|
|
123
|
+
this.REQUIRED,
|
|
124
|
+
DESCRIPTION
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import * as flatbuffers from 'flatbuffers';
|
|
2
|
+
import { PLGPortManifest, PLGPortManifestT } from './PLGPortManifest.js';
|
|
3
|
+
import { drainBehavior } from './drainBehavior.js';
|
|
4
|
+
/**
|
|
5
|
+
* Canonical method declaration.
|
|
6
|
+
*/
|
|
7
|
+
export declare class PLGMethodManifest implements flatbuffers.IUnpackableObject<PLGMethodManifestT> {
|
|
8
|
+
bb: flatbuffers.ByteBuffer | null;
|
|
9
|
+
bb_pos: number;
|
|
10
|
+
__init(i: number, bb: flatbuffers.ByteBuffer): PLGMethodManifest;
|
|
11
|
+
static getRootAsPLGMethodManifest(bb: flatbuffers.ByteBuffer, obj?: PLGMethodManifest): PLGMethodManifest;
|
|
12
|
+
static getSizePrefixedRootAsPLGMethodManifest(bb: flatbuffers.ByteBuffer, obj?: PLGMethodManifest): PLGMethodManifest;
|
|
13
|
+
METHOD_ID(): string;
|
|
14
|
+
METHOD_ID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
15
|
+
DISPLAY_NAME(): string | null;
|
|
16
|
+
DISPLAY_NAME(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
17
|
+
INPUT_PORTS(index: number, obj?: PLGPortManifest): PLGPortManifest | null;
|
|
18
|
+
inputPortsLength(): number;
|
|
19
|
+
OUTPUT_PORTS(index: number, obj?: PLGPortManifest): PLGPortManifest | null;
|
|
20
|
+
outputPortsLength(): number;
|
|
21
|
+
MAX_BATCH(): number;
|
|
22
|
+
DRAIN_POLICY(): drainBehavior;
|
|
23
|
+
DESCRIPTION(): string | null;
|
|
24
|
+
DESCRIPTION(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
25
|
+
static startPLGMethodManifest(builder: flatbuffers.Builder): void;
|
|
26
|
+
static addMethodId(builder: flatbuffers.Builder, METHOD_IDOffset: flatbuffers.Offset): void;
|
|
27
|
+
static addDisplayName(builder: flatbuffers.Builder, DISPLAY_NAMEOffset: flatbuffers.Offset): void;
|
|
28
|
+
static addInputPorts(builder: flatbuffers.Builder, INPUT_PORTSOffset: flatbuffers.Offset): void;
|
|
29
|
+
static createInputPortsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
30
|
+
static startInputPortsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
31
|
+
static addOutputPorts(builder: flatbuffers.Builder, OUTPUT_PORTSOffset: flatbuffers.Offset): void;
|
|
32
|
+
static createOutputPortsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
33
|
+
static startOutputPortsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
34
|
+
static addMaxBatch(builder: flatbuffers.Builder, MAX_BATCH: number): void;
|
|
35
|
+
static addDrainPolicy(builder: flatbuffers.Builder, DRAIN_POLICY: drainBehavior): void;
|
|
36
|
+
static addDescription(builder: flatbuffers.Builder, DESCRIPTIONOffset: flatbuffers.Offset): void;
|
|
37
|
+
static endPLGMethodManifest(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
38
|
+
static createPLGMethodManifest(builder: flatbuffers.Builder, METHOD_IDOffset: flatbuffers.Offset, DISPLAY_NAMEOffset: flatbuffers.Offset, INPUT_PORTSOffset: flatbuffers.Offset, OUTPUT_PORTSOffset: flatbuffers.Offset, MAX_BATCH: number, DRAIN_POLICY: drainBehavior, DESCRIPTIONOffset: flatbuffers.Offset): flatbuffers.Offset;
|
|
39
|
+
unpack(): PLGMethodManifestT;
|
|
40
|
+
unpackTo(_o: PLGMethodManifestT): void;
|
|
41
|
+
}
|
|
42
|
+
export declare class PLGMethodManifestT implements flatbuffers.IGeneratedObject {
|
|
43
|
+
METHOD_ID: string | Uint8Array | null;
|
|
44
|
+
DISPLAY_NAME: string | Uint8Array | null;
|
|
45
|
+
INPUT_PORTS: (PLGPortManifestT)[];
|
|
46
|
+
OUTPUT_PORTS: (PLGPortManifestT)[];
|
|
47
|
+
MAX_BATCH: number;
|
|
48
|
+
DRAIN_POLICY: drainBehavior;
|
|
49
|
+
DESCRIPTION: string | Uint8Array | null;
|
|
50
|
+
constructor(METHOD_ID?: string | Uint8Array | null, DISPLAY_NAME?: string | Uint8Array | null, INPUT_PORTS?: (PLGPortManifestT)[], OUTPUT_PORTS?: (PLGPortManifestT)[], MAX_BATCH?: number, DRAIN_POLICY?: drainBehavior, DESCRIPTION?: string | Uint8Array | null);
|
|
51
|
+
pack(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=PLGMethodManifest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PLGMethodManifest.d.ts","sourceRoot":"","sources":["../../../ts/PLG/PLGMethodManifest.ts"],"names":[],"mappings":"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"}
|