@voxgig/sdkgen 4.10.0 → 4.11.0
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/bin/voxgig-sdkgen +1 -1
- package/package.json +1 -1
- package/project/.sdk/model/feature/secrets.aon +330 -0
- package/project/.sdk/model/target/c.aon +15 -2
- package/project/.sdk/model/target/cpp.aon +18 -0
- package/project/.sdk/model/target/lua.aon +17 -0
- package/project/.sdk/model/target/ocaml.aon +48 -5
- package/project/.sdk/model/target/zig.aon +30 -4
- package/project/.sdk/src/cmp/c/Config_c.ts +338 -1
- package/project/.sdk/src/cmp/c/Main_c.ts +57 -2
- package/project/.sdk/src/cmp/c/Package_c.ts +12 -2
- package/project/.sdk/src/cmp/cpp/Config_cpp.ts +324 -2
- package/project/.sdk/src/cmp/cpp/Gitignore_cpp.ts +2 -0
- package/project/.sdk/src/cmp/cpp/Main_cpp.ts +62 -4
- package/project/.sdk/src/cmp/cpp/Package_cpp.ts +10 -0
- package/project/.sdk/src/cmp/lua/Config_lua.ts +88 -0
- package/project/.sdk/src/cmp/lua/Gitignore_lua.ts +4 -0
- package/project/.sdk/src/cmp/lua/Main_lua.ts +93 -3
- package/project/.sdk/src/cmp/lua/Package_lua.ts +60 -0
- package/project/.sdk/src/cmp/lua/fragment/Main.fragment.lua +10 -0
- package/project/.sdk/src/cmp/ocaml/Config_ocaml.ts +183 -5
- package/project/.sdk/src/cmp/ocaml/Main_ocaml.ts +160 -3
- package/project/.sdk/src/cmp/ocaml/Package_ocaml.ts +25 -1
- package/project/.sdk/src/cmp/zig/Config_zig.ts +130 -9
- package/project/.sdk/src/cmp/zig/Main_zig.ts +208 -4
- package/project/.sdk/{tm/zig/build.zig → src/cmp/zig/fragment/Build.fragment.zig} +7 -0
- package/project/.sdk/src/cmp/zig/fragment/Main.fragment.zig +25 -0
- package/project/.sdk/{tm/zig/root.zig → src/cmp/zig/fragment/Root.fragment.zig} +9 -0
- package/project/.sdk/tm/c/Makefile +58 -9
- package/project/.sdk/tm/c/core/sdk.h +10 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/capability.c +133 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/capability.h +39 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/catalog.c +83 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/catalog.h +48 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/config.c +413 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/config.h +24 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/depend.c +264 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/depend.h +29 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/env.c +220 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/env.h +19 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/export.c +97 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/export.h +19 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/graph.c +237 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/graph.h +17 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/host.c +1494 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/host.h +135 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/order.c +288 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/order.h +18 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/point.c +141 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/point.h +80 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/ref.c +170 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/ref.h +52 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/resolve.c +98 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/resolve.h +18 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/types.c +150 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/types.h +104 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/value.c +649 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/value.h +135 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/version.c +151 -0
- package/project/.sdk/tm/c/feature/secrets/plugin/version.h +34 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/aws.c +281 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/azuresecrets.c +207 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/boru.c +164 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/clock.c +75 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/doppler.c +141 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/encode.c +144 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/gcpsecrets.c +177 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/hashicorp.c +239 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/httpjson.c +599 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/infisical.c +165 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/onepassword.c +194 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/proc.c +233 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/secretspec.c +125 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sekretoplugins.h +125 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sha256.c +270 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/sigv4.c +382 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/support.h +153 -0
- package/project/.sdk/tm/c/feature/secrets/plugins/tls.c +420 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/internal.h +86 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/json.c +721 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/providers.c +813 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/sekreto.c +944 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/sekreto.h +490 -0
- package/project/.sdk/tm/c/feature/secrets/sekreto/util.c +442 -0
- package/project/.sdk/tm/c/feature/secrets.c +797 -0
- package/project/.sdk/tm/c/feature/secrets.h +46 -0
- package/project/.sdk/tm/c/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/c/tests/feature/secrets/secrets_test.c +802 -0
- package/project/.sdk/tm/clojure/feature/secrets/sdk/feature/secrets.clj +38 -11
- package/project/.sdk/tm/clojure/test/sdk/test/feature/secrets.clj +40 -6
- package/project/.sdk/tm/cpp/Makefile +48 -4
- package/project/.sdk/tm/cpp/feature/secrets/plugin/capability.cpp +121 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/capability.hpp +41 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/catalog.cpp +60 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/catalog.hpp +66 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/config.cpp +376 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/config.hpp +29 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/depend.cpp +230 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/depend.hpp +31 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/env.cpp +205 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/env.hpp +25 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/export.cpp +84 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/export.hpp +24 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/graph.cpp +222 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/graph.hpp +21 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/host.cpp +1200 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/host.hpp +250 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/order.cpp +250 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/order.hpp +22 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/point.cpp +110 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/point.hpp +79 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/ref.cpp +136 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/ref.hpp +60 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/resolve.cpp +82 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/resolve.hpp +25 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/types.cpp +90 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/types.hpp +65 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/value.cpp +491 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/value.hpp +120 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/version.cpp +143 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugin/version.hpp +36 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Aws.cpp +248 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Aws.hpp +30 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Azuresecrets.cpp +149 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Azuresecrets.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Boru.cpp +117 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Boru.hpp +27 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Crypto.cpp +180 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Crypto.hpp +52 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Doppler.cpp +87 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Doppler.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Gcpsecrets.cpp +121 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Gcpsecrets.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Hashicorp.cpp +153 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Hashicorp.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Httpjson.cpp +666 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Httpjson.hpp +160 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Infisical.cpp +123 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Infisical.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Onepassword.cpp +125 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Onepassword.hpp +23 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Proc.cpp +223 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Proc.hpp +47 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Secretspec.cpp +104 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Secretspec.hpp +27 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Sigv4.cpp +242 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Sigv4.hpp +58 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Tls.cpp +260 -0
- package/project/.sdk/tm/cpp/feature/secrets/plugins/Tls.hpp +47 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Json.cpp +476 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Json.hpp +89 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Provider.cpp +312 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Provider.hpp +263 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Providers.cpp +354 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Providers.hpp +111 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Sekreto.cpp +613 -0
- package/project/.sdk/tm/cpp/feature/secrets/sekreto/Sekreto.hpp +227 -0
- package/project/.sdk/tm/cpp/feature/secrets.hpp +745 -0
- package/project/.sdk/tm/cpp/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/cpp/test/feature/secrets/secrets_test.cpp +808 -0
- package/project/.sdk/tm/csharp/feature/SecretsFeature.cs +34 -8
- package/project/.sdk/tm/csharp/test/feature/secrets/SecretsFeatureTest.cs +85 -0
- package/project/.sdk/tm/elixir/lib/projectname/feature/secrets.ex +17 -2
- package/project/.sdk/tm/elixir/test/feature/secrets/secrets_test.exs +41 -0
- package/project/.sdk/tm/go/feature/secrets_feature.go +32 -10
- package/project/.sdk/tm/go/test/feature/secrets/secrets_feature_test.go +116 -0
- package/project/.sdk/tm/java/feature/SecretsFeature.java +33 -8
- package/project/.sdk/tm/java/test/feature/secrets/SecretsFeatureTest.java +64 -0
- package/project/.sdk/tm/js/src/feature/secrets/SecretsFeature.js +34 -11
- package/project/.sdk/tm/js/test/feature/secrets/Secrets.test.js +73 -0
- package/project/.sdk/tm/kotlin/feature/SecretsFeature.kt +32 -7
- package/project/.sdk/tm/kotlin/test/feature/secrets/SecretsTest.kt +69 -0
- package/project/.sdk/tm/lua/Makefile +15 -4
- package/project/.sdk/tm/lua/feature/secrets/native/sekretonet.c +806 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/capability.lua +135 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/catalog.lua +63 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/config.lua +361 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/depend.lua +232 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/env.lua +168 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/export.lua +66 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/graph.lua +194 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/host.lua +1190 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/json.lua +169 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/order.lua +207 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/point.lua +106 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/ref.lua +115 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/resolve.lua +78 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/types.lua +275 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin/version.lua +131 -0
- package/project/.sdk/tm/lua/feature/secrets/plugin.lua +76 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/addr.lua +124 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/err.lua +47 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/name.lua +315 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/aws.lua +228 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/azuresecrets.lua +137 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/boru.lua +124 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/crypto.lua +212 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/doppler.lua +89 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/gcpsecrets.lua +129 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/hashicorp.lua +154 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/httpjson.lua +248 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/infisical.lua +113 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/json.lua +449 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/net.lua +198 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/onepassword.lua +126 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/secretspec.lua +93 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/sigv4.lua +269 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/plugins/support.lua +146 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto/providers.lua +346 -0
- package/project/.sdk/tm/lua/feature/secrets/sekreto.lua +479 -0
- package/project/.sdk/tm/lua/feature/secrets_feature.lua +690 -0
- package/project/.sdk/tm/lua/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/lua/test/extend_test.lua +105 -0
- package/project/.sdk/tm/lua/test/feature/secrets/secrets_feature_test.lua +862 -0
- package/project/.sdk/tm/ocaml/Makefile +52 -8
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/capability.ml +106 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/catalog.ml +43 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/config.ml +349 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/defs.ml +143 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/depend.ml +217 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/env.ml +197 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/export.ml +89 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/graph.ml +227 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/host.ml +1112 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/order.ml +202 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/point.ml +138 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/ref.ml +126 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/resolve.ml +62 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/types.ml +97 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/value.ml +387 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugin/version.ml +139 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/aws.ml +171 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/azuresecrets.ml +116 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/boru.ml +95 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/crypto.ml +149 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/doppler.ml +61 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/gcpsecrets.ml +93 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/hashicorp.ml +120 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/http.ml +421 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/httpjson.ml +66 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/infisical.ml +85 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/onepassword.ml +112 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/runcmd.ml +97 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/secretspec.ml +68 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/sigv4.ml +259 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/tls.ml +44 -0
- package/project/.sdk/tm/ocaml/feature/secrets/plugins/tls_stubs.c +358 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/json.ml +376 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/provider.ml +647 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/secret.ml +299 -0
- package/project/.sdk/tm/ocaml/feature/secrets/sekreto/sekreto.ml +347 -0
- package/project/.sdk/tm/ocaml/feature/secrets_feature.ml +453 -0
- package/project/.sdk/tm/ocaml/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/ocaml/test/feature/secrets/t_secrets.ml +670 -0
- package/project/.sdk/tm/perl/feature/secrets_feature.pm +33 -12
- package/project/.sdk/tm/perl/t/feature/secrets/secrets.t +47 -0
- package/project/.sdk/tm/php/feature/SecretsFeature.php +30 -6
- package/project/.sdk/tm/php/test/feature/secrets/SecretsTest.php +98 -0
- package/project/.sdk/tm/py/pkg/feature/secrets_feature.py +28 -6
- package/project/.sdk/tm/py/test/feature/secrets/test_secrets.py +114 -0
- package/project/.sdk/tm/rb/feature/secrets_feature.rb +28 -6
- package/project/.sdk/tm/rb/test/feature/secrets/secrets_feature_test.rb +93 -0
- package/project/.sdk/tm/rust/feature/secrets.rs +33 -10
- package/project/.sdk/tm/rust/tests/feature/secrets/main.rs +96 -0
- package/project/.sdk/tm/scala/feature/SecretsFeature.scala +29 -7
- package/project/.sdk/tm/scala/sdktest/feature/secrets/SecretsTestMain.scala +71 -0
- package/project/.sdk/tm/ts/src/feature/secrets/SecretsFeature.ts +35 -12
- package/project/.sdk/tm/ts/test/feature/secrets/Secrets.test.ts +73 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/capability.zig +137 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/catalog.zig +90 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/config.zig +346 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/depend.zig +244 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/env.zig +201 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/export.zig +83 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/graph.zig +212 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/host.zig +1224 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/inst.zig +126 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/order.zig +228 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/plugin.zig +34 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/point.zig +166 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/ref.zig +147 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/resolve.zig +74 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/types.zig +140 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/value.zig +662 -0
- package/project/.sdk/tm/zig/feature/secrets/plugin/version.zig +139 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/aws.zig +294 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/azuresecrets.zig +222 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/boru.zig +188 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/doppler.zig +135 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/gcpsecrets.zig +170 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/hashicorp.zig +242 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/httpjson.zig +535 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/infisical.zig +167 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/onepassword.zig +202 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/secretspec.zig +160 -0
- package/project/.sdk/tm/zig/feature/secrets/plugins/sigv4.zig +336 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/addr.zig +148 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/builtins.zig +259 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/provider.zig +440 -0
- package/project/.sdk/tm/zig/feature/secrets/sekreto/sekreto.zig +944 -0
- package/project/.sdk/tm/zig/feature/secrets.zig +854 -0
- package/project/.sdk/tm/zig/src/feature/secrets/.gitkeep +0 -0
- package/project/.sdk/tm/zig/test/feature/secrets/secrets_test.zig +891 -0
- package/project/sdkgen-package.json +1 -1
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
// VENDORED: @voxgig/plugin sdk-20260908-1556-0 (c/src/graph.c)
|
|
2
|
+
// Source: https://github.com/voxgig/plugin @ 48392f5e2b6d1434ee9b1a4a9a11f4480aaeb46a [tag: sdk-20260908-1556-0]
|
|
3
|
+
// License: MIT (c) voxgig - see repository LICENSE. Do not edit: resync from upstream.
|
|
4
|
+
/* Whole-graph resolution (§11.4) — a phase, not a discovery.
|
|
5
|
+
*
|
|
6
|
+
* "Activate, and wait in `pending` if you must" is correct and, on its
|
|
7
|
+
* own, produces a terrible experience: apply twenty instances against a
|
|
8
|
+
* registry missing one thing and you get NINETEEN pending rows and no
|
|
9
|
+
* statement of what is actually wrong.
|
|
10
|
+
*
|
|
11
|
+
* `resolvegraph` is a PURE FUNCTION of the registry and the intended
|
|
12
|
+
* activation set. No callbacks run, no state changes, nothing is
|
|
13
|
+
* touched. It answers for the whole graph at once which instances can
|
|
14
|
+
* be live, and for each blocked one THE SPECIFIC REQUIREMENT that is
|
|
15
|
+
* unmet, and why.
|
|
16
|
+
*
|
|
17
|
+
* The failure mode being designed against is a famous one: OSGi's
|
|
18
|
+
* resolver is correct and its diagnostics are legendarily unusable. A
|
|
19
|
+
* resolver that says "blocked" without saying WHY has moved the problem
|
|
20
|
+
* rather than solved it, so `why` is part of the contract. */
|
|
21
|
+
|
|
22
|
+
#include <stdlib.h>
|
|
23
|
+
#include <string.h>
|
|
24
|
+
|
|
25
|
+
#include "graph.h"
|
|
26
|
+
#include "capability.h"
|
|
27
|
+
#include "ref.h"
|
|
28
|
+
#include "version.h"
|
|
29
|
+
|
|
30
|
+
static int bytewise(const void *a, const void *b) {
|
|
31
|
+
return strcmp(*(const char *const *)a, *(const char *const *)b);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static bool inset(Value *set, const char *ref) {
|
|
35
|
+
return vhas(set, ref);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
static Value *candidates(Value *byref, Value *name) {
|
|
39
|
+
Value *out = vlist();
|
|
40
|
+
/* A NODE SATISFIES ITS OWN REF (§11.1), and this is where the graph
|
|
41
|
+
* learned it. Considering only declared capabilities made `resolve`
|
|
42
|
+
* answer `absent` about a provider sitting right there and live —
|
|
43
|
+
* §11.4's whole job is explaining the graph the runtime reconciles,
|
|
44
|
+
* and it was explaining a different one. Canonical (§4 rule 5), and
|
|
45
|
+
* tolerant, because a capability name need not be a well-formed ref. */
|
|
46
|
+
const char *asref = visstr(name) ? tryref(vasstr(name)) : NULL;
|
|
47
|
+
|
|
48
|
+
const char **refs;
|
|
49
|
+
size_t n = vsortedkeys(byref, &refs);
|
|
50
|
+
for (size_t i = 0; i < n; i++) {
|
|
51
|
+
Value *node = vget(byref, refs[i]);
|
|
52
|
+
Value *pos = vget(node, "pos");
|
|
53
|
+
/* The ref match WINS OUTRIGHT for that node, as at runtime: one
|
|
54
|
+
* candidate, not two, for a node both named `b` and providing `b` —
|
|
55
|
+
* without the skip the blocked-chain explanation named it twice. */
|
|
56
|
+
if (NULL != asref && 0 == strcmp(refs[i], asref)) {
|
|
57
|
+
Value *prov = vmap();
|
|
58
|
+
vset(prov, "name", name);
|
|
59
|
+
Value *cand = vmap();
|
|
60
|
+
vset(cand, "ref", vget(node, "ref"));
|
|
61
|
+
vset(cand, "pos", visnum(pos) ? pos : vnum(0));
|
|
62
|
+
vset(cand, "provides", prov);
|
|
63
|
+
vpush(out, cand);
|
|
64
|
+
continue;
|
|
65
|
+
}
|
|
66
|
+
Value *provides = vget(node, "provides");
|
|
67
|
+
for (size_t j = 0; j < vlen(provides); j++) {
|
|
68
|
+
Value *p = vat(provides, j);
|
|
69
|
+
if (vsame(vget(p, "name"), name)) {
|
|
70
|
+
Value *cand = vmap();
|
|
71
|
+
vset(cand, "ref", vget(node, "ref"));
|
|
72
|
+
vset(cand, "pos", visnum(pos) ? pos : vnum(0));
|
|
73
|
+
vset(cand, "provides", p);
|
|
74
|
+
vpush(out, cand);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return out;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
static Value *blockedof(Value *node, Value *unmet, Value *why) {
|
|
82
|
+
Value *out = vmap();
|
|
83
|
+
vset(out, "ref", vget(node, "ref"));
|
|
84
|
+
vset(out, "unmet", unmet);
|
|
85
|
+
vset(out, "why", why);
|
|
86
|
+
return out;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
static Value *why1(const char *kind) {
|
|
90
|
+
Value *w = vmap();
|
|
91
|
+
vset(w, "kind", vstr(kind));
|
|
92
|
+
return w;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* The FIRST unmet requirement, with the most specific explanation
|
|
96
|
+
* available. Order matters: "no provider at all" and "a provider at the
|
|
97
|
+
* wrong version" are different problems and a reader must not have to
|
|
98
|
+
* guess which they have. */
|
|
99
|
+
static Value *firstunmet(Value *node, Value *byref, Value *resolved) {
|
|
100
|
+
Value *requires = vget(node, "requires");
|
|
101
|
+
for (size_t ri = 0; ri < vlen(requires); ri++) {
|
|
102
|
+
Value *req = vat(requires, ri);
|
|
103
|
+
if (vtruthy(vget(req, "optional"))) continue;
|
|
104
|
+
|
|
105
|
+
Value *name = vget(req, "name");
|
|
106
|
+
Value *all = candidates(byref, name);
|
|
107
|
+
if (0 == vlen(all)) {
|
|
108
|
+
return blockedof(node, name, why1("absent"));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
Value *ok = resolvecapability(req, all);
|
|
112
|
+
if (0 < vlen(ok)) {
|
|
113
|
+
/* A provider exists and matches — but if none of them is itself
|
|
114
|
+
* resolved, this node is blocked BEHIND it, and the chain is the
|
|
115
|
+
* useful answer rather than "unmet". */
|
|
116
|
+
bool live = false;
|
|
117
|
+
for (size_t i = 0; i < vlen(ok); i++) {
|
|
118
|
+
if (inset(resolved, vasstr(vget(vat(ok, i), "ref")))) { live = true; break; }
|
|
119
|
+
}
|
|
120
|
+
if (live) continue;
|
|
121
|
+
|
|
122
|
+
size_t n = vlen(ok);
|
|
123
|
+
const char **chain = (const char **)arena_alloc(sizeof(char *) * (n + 1));
|
|
124
|
+
for (size_t i = 0; i < n; i++) chain[i] = vasstr(vget(vat(ok, i), "ref"));
|
|
125
|
+
if (1 < n) qsort((void *)chain, n, sizeof(char *), bytewise);
|
|
126
|
+
Value *list = vlist();
|
|
127
|
+
for (size_t i = 0; i < n; i++) vpush(list, vstr(chain[i]));
|
|
128
|
+
Value *w = why1("blocked");
|
|
129
|
+
vset(w, "chain", list);
|
|
130
|
+
return blockedof(node, name, w);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/* Providers exist and none matched. Say which test failed. */
|
|
134
|
+
Value *range = vget(req, "range");
|
|
135
|
+
if (!visnull(range)) {
|
|
136
|
+
Value *found = vlist();
|
|
137
|
+
for (size_t i = 0; i < vlen(all); i++) {
|
|
138
|
+
Value *prov = vget(vat(all, i), "provides");
|
|
139
|
+
Value *version = vget(prov, "version");
|
|
140
|
+
if (visnull(version) || !satisfiesq(version, range)) {
|
|
141
|
+
vpush(found, visnull(version) ? vstr("(none)") : version);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
if (0 < vlen(found)) {
|
|
145
|
+
size_t n = vlen(found);
|
|
146
|
+
const char **vs = (const char **)arena_alloc(sizeof(char *) * (n + 1));
|
|
147
|
+
for (size_t i = 0; i < n; i++) vs[i] = vasstr(vat(found, i));
|
|
148
|
+
if (1 < n) qsort((void *)vs, n, sizeof(char *), bytewise);
|
|
149
|
+
Value *sorted = vlist();
|
|
150
|
+
for (size_t i = 0; i < n; i++) vpush(sorted, vstr(vs[i]));
|
|
151
|
+
Value *w = why1("version");
|
|
152
|
+
vset(w, "range", range);
|
|
153
|
+
vset(w, "found", sorted);
|
|
154
|
+
return blockedof(node, name, w);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
Value *match = vget(req, "match");
|
|
159
|
+
if (!visnull(match)) {
|
|
160
|
+
for (size_t i = 0; i < vlen(all); i++) {
|
|
161
|
+
Value *prov = vget(vat(all, i), "provides");
|
|
162
|
+
Value *attrs = vget(prov, "attrs");
|
|
163
|
+
if (visnull(attrs)) attrs = vmap();
|
|
164
|
+
const char **keys;
|
|
165
|
+
size_t kn = vsortedkeys(match, &keys);
|
|
166
|
+
for (size_t k = 0; k < kn; k++) {
|
|
167
|
+
/* The same recursive partial match the selection applies, so
|
|
168
|
+
* a nested requirement that FAILED the selection is also the
|
|
169
|
+
* one the diagnosis names (§11.4). */
|
|
170
|
+
if (!vhas(attrs, keys[k]) ||
|
|
171
|
+
!capmatchvalue(vget(match, keys[k]), vget(attrs, keys[k]))) {
|
|
172
|
+
Value *w = why1("match");
|
|
173
|
+
vset(w, "failing", vstr(keys[k]));
|
|
174
|
+
vset(w, "want", vget(match, keys[k]));
|
|
175
|
+
Value *got = vget(attrs, keys[k]);
|
|
176
|
+
vset(w, "found", visnull(got) ? vnull() : got);
|
|
177
|
+
return blockedof(node, name, w);
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
return blockedof(node, name, why1("absent"));
|
|
184
|
+
}
|
|
185
|
+
return NULL;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
Value *resolvegraph(Value *nodes) {
|
|
189
|
+
Value *byref = vmap();
|
|
190
|
+
for (size_t i = 0; i < vlen(nodes); i++) {
|
|
191
|
+
Value *n = vat(nodes, i);
|
|
192
|
+
vset(byref, vasstr(vget(n, "ref")), n);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
Value *resolved = vmap();
|
|
196
|
+
|
|
197
|
+
/* Fixed point: a node resolves when every mandatory requirement is
|
|
198
|
+
* met by an ALREADY-RESOLVED provider. Iterating to a fixed point is
|
|
199
|
+
* what makes a provider that is itself blocked propagate, rather than
|
|
200
|
+
* each node being judged against the raw registry. */
|
|
201
|
+
bool moved = true;
|
|
202
|
+
while (moved) {
|
|
203
|
+
moved = false;
|
|
204
|
+
for (size_t i = 0; i < vlen(nodes); i++) {
|
|
205
|
+
Value *n = vat(nodes, i);
|
|
206
|
+
const char *ref = vasstr(vget(n, "ref"));
|
|
207
|
+
if (inset(resolved, ref)) continue;
|
|
208
|
+
if (NULL == firstunmet(n, byref, resolved)) {
|
|
209
|
+
vset(resolved, ref, vbool(true));
|
|
210
|
+
moved = true;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
Value *blocked = vmap();
|
|
216
|
+
for (size_t i = 0; i < vlen(nodes); i++) {
|
|
217
|
+
Value *n = vat(nodes, i);
|
|
218
|
+
const char *ref = vasstr(vget(n, "ref"));
|
|
219
|
+
if (inset(resolved, ref)) continue;
|
|
220
|
+
Value *why = firstunmet(n, byref, resolved);
|
|
221
|
+
if (NULL != why) vset(blocked, ref, why);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
const char **keys;
|
|
225
|
+
size_t rn = vsortedkeys(resolved, &keys);
|
|
226
|
+
Value *resolvedlist = vlist();
|
|
227
|
+
for (size_t i = 0; i < rn; i++) vpush(resolvedlist, vstr(keys[i]));
|
|
228
|
+
|
|
229
|
+
size_t bn = vsortedkeys(blocked, &keys);
|
|
230
|
+
Value *blockedlist = vlist();
|
|
231
|
+
for (size_t i = 0; i < bn; i++) vpush(blockedlist, vget(blocked, keys[i]));
|
|
232
|
+
|
|
233
|
+
Value *out = vmap();
|
|
234
|
+
vset(out, "resolved", resolvedlist);
|
|
235
|
+
vset(out, "blocked", blockedlist);
|
|
236
|
+
return out;
|
|
237
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// VENDORED: @voxgig/plugin sdk-20260908-1556-0 (c/src/graph.h)
|
|
2
|
+
// Source: https://github.com/voxgig/plugin @ 48392f5e2b6d1434ee9b1a4a9a11f4480aaeb46a [tag: sdk-20260908-1556-0]
|
|
3
|
+
// License: MIT (c) voxgig - see repository LICENSE. Do not edit: resync from upstream.
|
|
4
|
+
/* Whole-graph resolution (§11.4) — a pure function of the registry that
|
|
5
|
+
* answers which instances can be live, and for each blocked one THE
|
|
6
|
+
* SPECIFIC requirement that is unmet, and why. See graph.c. */
|
|
7
|
+
|
|
8
|
+
#ifndef VOXGIG_PLUGIN_GRAPH_H
|
|
9
|
+
#define VOXGIG_PLUGIN_GRAPH_H
|
|
10
|
+
|
|
11
|
+
#include "types.h"
|
|
12
|
+
#include "value.h"
|
|
13
|
+
|
|
14
|
+
/* [{ref, pos, provides?, requires?}] -> {resolved: [ref], blocked: [...]} */
|
|
15
|
+
Value *resolvegraph(Value *nodes);
|
|
16
|
+
|
|
17
|
+
#endif
|