groove-dev 0.27.93 → 0.27.96
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/CLAUDE.md +7 -0
- package/README.md +25 -52
- package/moe-training/package.json +2 -1
- package/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/api.js +39 -23
- package/node_modules/@groove-dev/daemon/src/introducer.js +21 -6
- package/node_modules/@groove-dev/daemon/src/process.js +20 -2
- package/node_modules/@groove-dev/daemon/src/providers/gemini.js +27 -28
- package/node_modules/@groove-dev/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
- package/node_modules/@groove-dev/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/agents/agent-file-tree.jsx +68 -16
- package/node_modules/@groove-dev/gui/src/components/agents/agent-panel.jsx +2 -0
- package/node_modules/@groove-dev/gui/src/components/agents/code-review.jsx +9 -1
- package/node_modules/@groove-dev/gui/src/components/agents/workspace-mode.jsx +2 -2
- package/node_modules/@groove-dev/gui/src/components/editor/code-editor.jsx +1 -1
- package/node_modules/@groove-dev/gui/src/stores/groove.js +40 -26
- package/node_modules/@groove-dev/gui/src/views/agents.jsx +14 -65
- package/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/base64-js/README.md +34 -0
- package/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/base64-js/index.js +150 -0
- package/node_modules/base64-js/package.json +47 -0
- package/node_modules/better-sqlite3/LICENSE +21 -0
- package/node_modules/better-sqlite3/README.md +99 -0
- package/node_modules/better-sqlite3/binding.gyp +38 -0
- package/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/node_modules/better-sqlite3/deps/defines.gypi +41 -0
- package/node_modules/better-sqlite3/deps/download.sh +122 -0
- package/node_modules/better-sqlite3/deps/patches/1208.patch +15 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +268845 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +14335 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +739 -0
- package/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/node_modules/better-sqlite3/lib/database.js +90 -0
- package/node_modules/better-sqlite3/lib/index.js +3 -0
- package/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/node_modules/better-sqlite3/lib/util.js +12 -0
- package/node_modules/better-sqlite3/package.json +59 -0
- package/node_modules/better-sqlite3/src/addon.cpp +47 -0
- package/node_modules/better-sqlite3/src/better_sqlite3.cpp +74 -0
- package/node_modules/better-sqlite3/src/objects/backup.cpp +120 -0
- package/node_modules/better-sqlite3/src/objects/backup.hpp +36 -0
- package/node_modules/better-sqlite3/src/objects/database.cpp +417 -0
- package/node_modules/better-sqlite3/src/objects/database.hpp +103 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.cpp +113 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.hpp +50 -0
- package/node_modules/better-sqlite3/src/objects/statement.cpp +383 -0
- package/node_modules/better-sqlite3/src/objects/statement.hpp +58 -0
- package/node_modules/better-sqlite3/src/util/bind-map.cpp +73 -0
- package/node_modules/better-sqlite3/src/util/binder.cpp +193 -0
- package/node_modules/better-sqlite3/src/util/constants.cpp +172 -0
- package/node_modules/better-sqlite3/src/util/custom-aggregate.cpp +121 -0
- package/node_modules/better-sqlite3/src/util/custom-function.cpp +59 -0
- package/node_modules/better-sqlite3/src/util/custom-table.cpp +409 -0
- package/node_modules/better-sqlite3/src/util/data-converter.cpp +17 -0
- package/node_modules/better-sqlite3/src/util/data.cpp +194 -0
- package/node_modules/better-sqlite3/src/util/helpers.cpp +109 -0
- package/node_modules/better-sqlite3/src/util/macros.cpp +83 -0
- package/node_modules/better-sqlite3/src/util/query-macros.cpp +71 -0
- package/node_modules/better-sqlite3/src/util/row-builder.cpp +49 -0
- package/node_modules/bindings/LICENSE.md +22 -0
- package/node_modules/bindings/README.md +98 -0
- package/node_modules/bindings/bindings.js +221 -0
- package/node_modules/bindings/package.json +28 -0
- package/node_modules/bl/.travis.yml +17 -0
- package/node_modules/bl/BufferList.js +396 -0
- package/node_modules/bl/LICENSE.md +13 -0
- package/node_modules/bl/README.md +247 -0
- package/node_modules/bl/bl.js +84 -0
- package/node_modules/bl/package.json +37 -0
- package/node_modules/bl/test/convert.js +21 -0
- package/node_modules/bl/test/indexOf.js +492 -0
- package/node_modules/bl/test/isBufferList.js +32 -0
- package/node_modules/bl/test/test.js +869 -0
- package/node_modules/buffer/AUTHORS.md +70 -0
- package/node_modules/buffer/LICENSE +21 -0
- package/node_modules/buffer/README.md +410 -0
- package/node_modules/buffer/index.d.ts +186 -0
- package/node_modules/buffer/index.js +1817 -0
- package/node_modules/buffer/package.json +96 -0
- package/node_modules/decompress-response/index.d.ts +22 -0
- package/node_modules/decompress-response/index.js +58 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/decompress-response/node_modules/mimic-response/index.js +77 -0
- package/node_modules/decompress-response/node_modules/mimic-response/license +9 -0
- package/node_modules/decompress-response/node_modules/mimic-response/package.json +42 -0
- package/node_modules/decompress-response/node_modules/mimic-response/readme.md +78 -0
- package/node_modules/decompress-response/package.json +56 -0
- package/node_modules/decompress-response/readme.md +48 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +62 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +96 -0
- package/node_modules/end-of-stream/package.json +37 -0
- package/node_modules/expand-template/.travis.yml +6 -0
- package/node_modules/expand-template/LICENSE +21 -0
- package/node_modules/expand-template/README.md +43 -0
- package/node_modules/expand-template/index.js +26 -0
- package/node_modules/expand-template/package.json +29 -0
- package/node_modules/expand-template/test.js +67 -0
- package/node_modules/file-uri-to-path/.npmignore +1 -0
- package/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/node_modules/file-uri-to-path/History.md +21 -0
- package/node_modules/file-uri-to-path/LICENSE +20 -0
- package/node_modules/file-uri-to-path/README.md +74 -0
- package/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/node_modules/file-uri-to-path/index.js +66 -0
- package/node_modules/file-uri-to-path/package.json +32 -0
- package/node_modules/file-uri-to-path/test/test.js +24 -0
- package/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/node_modules/fs-constants/LICENSE +21 -0
- package/node_modules/fs-constants/README.md +26 -0
- package/node_modules/fs-constants/browser.js +1 -0
- package/node_modules/fs-constants/index.js +1 -0
- package/node_modules/fs-constants/package.json +19 -0
- package/node_modules/github-from-package/.travis.yml +4 -0
- package/node_modules/github-from-package/LICENSE +18 -0
- package/node_modules/github-from-package/example/package.json +8 -0
- package/node_modules/github-from-package/example/url.js +3 -0
- package/node_modules/github-from-package/index.js +17 -0
- package/node_modules/github-from-package/package.json +30 -0
- package/node_modules/github-from-package/readme.markdown +53 -0
- package/node_modules/github-from-package/test/a.json +8 -0
- package/node_modules/github-from-package/test/b.json +5 -0
- package/node_modules/github-from-package/test/c.json +5 -0
- package/node_modules/github-from-package/test/d.json +7 -0
- package/node_modules/github-from-package/test/e.json +5 -0
- package/node_modules/github-from-package/test/url.js +19 -0
- package/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/ieee754/README.md +51 -0
- package/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/ieee754/index.js +85 -0
- package/node_modules/ieee754/package.json +52 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +206 -0
- package/node_modules/ini/package.json +33 -0
- package/node_modules/minimist/.eslintrc +29 -0
- package/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/node_modules/minimist/.nycrc +14 -0
- package/node_modules/minimist/CHANGELOG.md +298 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/README.md +121 -0
- package/node_modules/minimist/example/parse.js +4 -0
- package/node_modules/minimist/index.js +263 -0
- package/node_modules/minimist/package.json +75 -0
- package/node_modules/minimist/test/all_bool.js +34 -0
- package/node_modules/minimist/test/bool.js +177 -0
- package/node_modules/minimist/test/dash.js +43 -0
- package/node_modules/minimist/test/default_bool.js +37 -0
- package/node_modules/minimist/test/dotted.js +24 -0
- package/node_modules/minimist/test/kv_short.js +32 -0
- package/node_modules/minimist/test/long.js +33 -0
- package/node_modules/minimist/test/num.js +38 -0
- package/node_modules/minimist/test/parse.js +209 -0
- package/node_modules/minimist/test/parse_modified.js +11 -0
- package/node_modules/minimist/test/proto.js +64 -0
- package/node_modules/minimist/test/short.js +69 -0
- package/node_modules/minimist/test/stop_early.js +17 -0
- package/node_modules/minimist/test/unknown.js +104 -0
- package/node_modules/minimist/test/whitespace.js +10 -0
- package/node_modules/mkdirp-classic/LICENSE +21 -0
- package/node_modules/mkdirp-classic/README.md +18 -0
- package/node_modules/mkdirp-classic/index.js +98 -0
- package/node_modules/mkdirp-classic/package.json +18 -0
- package/node_modules/moe-training/DEPLOY_CENTRAL_COMMAND.md +413 -0
- package/node_modules/moe-training/client/consent.js +96 -0
- package/node_modules/moe-training/client/envelope-builder.js +56 -0
- package/node_modules/moe-training/client/index.js +10 -0
- package/node_modules/moe-training/client/parsers/claude-code.js +108 -0
- package/node_modules/moe-training/client/parsers/codex.js +80 -0
- package/node_modules/moe-training/client/parsers/gemini.js +80 -0
- package/node_modules/moe-training/client/parsers/grok.js +16 -0
- package/node_modules/moe-training/client/parsers/index.js +20 -0
- package/node_modules/moe-training/client/scrubber.js +128 -0
- package/node_modules/moe-training/client/session-attestation.js +115 -0
- package/node_modules/moe-training/client/step-classifier.js +68 -0
- package/node_modules/moe-training/client/trajectory-capture.js +307 -0
- package/node_modules/moe-training/client/transmission-queue.js +104 -0
- package/node_modules/moe-training/package.json +21 -0
- package/node_modules/moe-training/server/enrichment.js +24 -0
- package/node_modules/moe-training/server/index.js +119 -0
- package/node_modules/moe-training/server/ledger.js +110 -0
- package/node_modules/moe-training/server/routes/ingest.js +96 -0
- package/node_modules/moe-training/server/routes/sessions.js +43 -0
- package/node_modules/moe-training/server/routes/stats.js +31 -0
- package/node_modules/moe-training/server/scoring.js +63 -0
- package/node_modules/moe-training/server/session-registry.js +156 -0
- package/node_modules/moe-training/server/stats.js +129 -0
- package/node_modules/moe-training/server/stitcher.js +69 -0
- package/node_modules/moe-training/server/storage.js +147 -0
- package/node_modules/moe-training/server/verifier.js +102 -0
- package/node_modules/moe-training/shared/constants.js +30 -0
- package/node_modules/moe-training/shared/crypto.js +45 -0
- package/node_modules/moe-training/shared/envelope-schema.js +220 -0
- package/node_modules/moe-training/test/client/consent.test.js +121 -0
- package/node_modules/moe-training/test/client/envelope-builder.test.js +107 -0
- package/node_modules/moe-training/test/client/parsers/claude-code.test.js +119 -0
- package/node_modules/moe-training/test/client/parsers/codex.test.js +83 -0
- package/node_modules/moe-training/test/client/parsers/gemini.test.js +99 -0
- package/node_modules/moe-training/test/client/scrubber.test.js +143 -0
- package/node_modules/moe-training/test/client/session-attestation-security.test.js +95 -0
- package/node_modules/moe-training/test/client/step-classifier.test.js +135 -0
- package/node_modules/moe-training/test/client/transmission-queue.test.js +33 -0
- package/node_modules/moe-training/test/integration/handshake.test.js +260 -0
- package/node_modules/moe-training/test/server/ingest-security.test.js +166 -0
- package/node_modules/moe-training/test/server/ledger.test.js +131 -0
- package/node_modules/moe-training/test/server/scoring.test.js +242 -0
- package/node_modules/moe-training/test/server/session-registry.test.js +125 -0
- package/node_modules/moe-training/test/server/stitcher.test.js +157 -0
- package/node_modules/moe-training/test/server/verifier.test.js +232 -0
- package/node_modules/moe-training/test/shared/crypto.test.js +87 -0
- package/node_modules/moe-training/test/shared/envelope-schema.test.js +351 -0
- package/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/node_modules/napi-build-utils/LICENSE +21 -0
- package/node_modules/napi-build-utils/README.md +52 -0
- package/node_modules/napi-build-utils/index.js +214 -0
- package/node_modules/napi-build-utils/index.md +0 -0
- package/node_modules/napi-build-utils/package.json +42 -0
- package/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/node_modules/prebuild-install/LICENSE +21 -0
- package/node_modules/prebuild-install/README.md +163 -0
- package/node_modules/prebuild-install/asset.js +44 -0
- package/node_modules/prebuild-install/bin.js +78 -0
- package/node_modules/prebuild-install/download.js +142 -0
- package/node_modules/prebuild-install/error.js +14 -0
- package/node_modules/prebuild-install/help.txt +16 -0
- package/node_modules/prebuild-install/index.js +1 -0
- package/node_modules/prebuild-install/log.js +33 -0
- package/node_modules/prebuild-install/node_modules/node-abi/LICENSE +21 -0
- package/node_modules/prebuild-install/node_modules/node-abi/README.md +54 -0
- package/node_modules/prebuild-install/node_modules/node-abi/abi_registry.json +439 -0
- package/node_modules/prebuild-install/node_modules/node-abi/index.js +179 -0
- package/node_modules/prebuild-install/node_modules/node-abi/package.json +45 -0
- package/node_modules/prebuild-install/node_modules/semver/LICENSE +15 -0
- package/node_modules/prebuild-install/node_modules/semver/README.md +665 -0
- package/node_modules/prebuild-install/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/index.js +7 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/range.js +557 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/major.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/index.js +91 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/re.js +223 -0
- package/node_modules/prebuild-install/node_modules/semver/package.json +78 -0
- package/node_modules/prebuild-install/node_modules/semver/preload.js +4 -0
- package/node_modules/prebuild-install/node_modules/semver/range.bnf +16 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/prebuild-install/package.json +67 -0
- package/node_modules/prebuild-install/proxy.js +35 -0
- package/node_modules/prebuild-install/rc.js +64 -0
- package/node_modules/prebuild-install/util.js +143 -0
- package/node_modules/pump/.github/FUNDING.yml +2 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +74 -0
- package/node_modules/pump/SECURITY.md +5 -0
- package/node_modules/pump/empty.js +1 -0
- package/node_modules/pump/index.js +86 -0
- package/node_modules/pump/package.json +30 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +29 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +68 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +47 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +333 -0
- package/node_modules/simple-get/index.js +108 -0
- package/node_modules/simple-get/package.json +67 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +34 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/tar-fs/.travis.yml +6 -0
- package/node_modules/tar-fs/LICENSE +21 -0
- package/node_modules/tar-fs/README.md +165 -0
- package/node_modules/tar-fs/index.js +363 -0
- package/node_modules/tar-fs/node_modules/chownr/LICENSE +15 -0
- package/node_modules/tar-fs/node_modules/chownr/README.md +3 -0
- package/node_modules/tar-fs/node_modules/chownr/chownr.js +167 -0
- package/node_modules/tar-fs/node_modules/chownr/package.json +29 -0
- package/node_modules/tar-fs/package.json +41 -0
- package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/node_modules/tar-fs/test/index.js +346 -0
- package/node_modules/tar-stream/LICENSE +21 -0
- package/node_modules/tar-stream/README.md +168 -0
- package/node_modules/tar-stream/extract.js +257 -0
- package/node_modules/tar-stream/headers.js +295 -0
- package/node_modules/tar-stream/index.js +2 -0
- package/node_modules/tar-stream/pack.js +255 -0
- package/node_modules/tar-stream/package.json +58 -0
- package/node_modules/tar-stream/sandbox.js +11 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +466 -0
- package/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/uuid/package.json +135 -0
- package/node_modules/uuid/wrapper.mjs +10 -0
- package/package.json +5 -3
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/api.js +39 -23
- package/packages/daemon/src/introducer.js +21 -6
- package/packages/daemon/src/process.js +20 -2
- package/packages/daemon/src/providers/gemini.js +27 -28
- package/packages/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
- package/packages/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/agents/agent-file-tree.jsx +68 -16
- package/packages/gui/src/components/agents/agent-panel.jsx +2 -0
- package/packages/gui/src/components/agents/code-review.jsx +9 -1
- package/packages/gui/src/components/agents/workspace-mode.jsx +2 -2
- package/packages/gui/src/components/editor/code-editor.jsx +1 -1
- package/packages/gui/src/stores/groove.js +40 -26
- package/packages/gui/src/views/agents.jsx +14 -65
- package/workspace.png +0 -0
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
class CustomTable {
|
|
2
|
+
public:
|
|
3
|
+
|
|
4
|
+
explicit CustomTable(
|
|
5
|
+
v8::Isolate* isolate,
|
|
6
|
+
Database* db,
|
|
7
|
+
const char* name,
|
|
8
|
+
v8::Local<v8::Function> factory
|
|
9
|
+
) :
|
|
10
|
+
addon(db->GetAddon()),
|
|
11
|
+
isolate(isolate),
|
|
12
|
+
db(db),
|
|
13
|
+
name(name),
|
|
14
|
+
factory(isolate, factory) {}
|
|
15
|
+
|
|
16
|
+
static void Destructor(void* self) {
|
|
17
|
+
delete static_cast<CustomTable*>(self);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static sqlite3_module MODULE;
|
|
21
|
+
static sqlite3_module EPONYMOUS_MODULE;
|
|
22
|
+
|
|
23
|
+
private:
|
|
24
|
+
|
|
25
|
+
// This nested class is instantiated on each CREATE VIRTUAL TABLE statement.
|
|
26
|
+
class VTab { friend class CustomTable;
|
|
27
|
+
explicit VTab(
|
|
28
|
+
CustomTable* parent,
|
|
29
|
+
v8::Local<v8::Function> generator,
|
|
30
|
+
std::vector<std::string> parameter_names,
|
|
31
|
+
bool safe_ints
|
|
32
|
+
) :
|
|
33
|
+
parent(parent),
|
|
34
|
+
parameter_count(parameter_names.size()),
|
|
35
|
+
safe_ints(safe_ints),
|
|
36
|
+
generator(parent->isolate, generator),
|
|
37
|
+
parameter_names(parameter_names) {
|
|
38
|
+
((void)base);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static inline CustomTable::VTab* Upcast(sqlite3_vtab* vtab) {
|
|
42
|
+
return reinterpret_cast<VTab*>(vtab);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
inline sqlite3_vtab* Downcast() {
|
|
46
|
+
return reinterpret_cast<sqlite3_vtab*>(this);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
sqlite3_vtab base;
|
|
50
|
+
CustomTable * const parent;
|
|
51
|
+
const int parameter_count;
|
|
52
|
+
const bool safe_ints;
|
|
53
|
+
const v8::Global<v8::Function> generator;
|
|
54
|
+
const std::vector<std::string> parameter_names;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
// This nested class is instantiated each time a virtual table is scanned.
|
|
58
|
+
class Cursor { friend class CustomTable;
|
|
59
|
+
static inline CustomTable::Cursor* Upcast(sqlite3_vtab_cursor* cursor) {
|
|
60
|
+
return reinterpret_cast<Cursor*>(cursor);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
inline sqlite3_vtab_cursor* Downcast() {
|
|
64
|
+
return reinterpret_cast<sqlite3_vtab_cursor*>(this);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
inline CustomTable::VTab* GetVTab() {
|
|
68
|
+
return VTab::Upcast(base.pVtab);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
sqlite3_vtab_cursor base;
|
|
72
|
+
v8::Global<v8::Object> iterator;
|
|
73
|
+
v8::Global<v8::Function> next;
|
|
74
|
+
v8::Global<v8::Array> row;
|
|
75
|
+
bool done;
|
|
76
|
+
sqlite_int64 rowid;
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
// This nested class is used by Data::ResultValueFromJS to report errors.
|
|
80
|
+
class TempDataConverter : DataConverter { friend class CustomTable;
|
|
81
|
+
explicit TempDataConverter(CustomTable* parent) :
|
|
82
|
+
parent(parent),
|
|
83
|
+
status(SQLITE_OK) {}
|
|
84
|
+
|
|
85
|
+
void PropagateJSError(sqlite3_context* invocation) {
|
|
86
|
+
status = SQLITE_ERROR;
|
|
87
|
+
parent->PropagateJSError();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
std::string GetDataErrorPrefix() {
|
|
91
|
+
return std::string("Virtual table module \"") + parent->name + "\" yielded";
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
CustomTable * const parent;
|
|
95
|
+
int status;
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
// Although this function does nothing, we cannot use xConnect directly,
|
|
99
|
+
// because that would cause SQLite to register an eponymous virtual table.
|
|
100
|
+
static int xCreate(sqlite3* db_handle, void* _self, int argc, const char* const * argv, sqlite3_vtab** output, char** errOutput) {
|
|
101
|
+
return xConnect(db_handle, _self, argc, argv, output, errOutput);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// This method uses the factory function to instantiate a new virtual table.
|
|
105
|
+
static int xConnect(sqlite3* db_handle, void* _self, int argc, const char* const * argv, sqlite3_vtab** output, char** errOutput) {
|
|
106
|
+
CustomTable* self = static_cast<CustomTable*>(_self);
|
|
107
|
+
v8::Isolate* isolate = self->isolate;
|
|
108
|
+
v8::HandleScope scope(isolate);
|
|
109
|
+
UseContext;
|
|
110
|
+
|
|
111
|
+
v8::Local<v8::Value>* args = ALLOC_ARRAY<v8::Local<v8::Value>>(argc);
|
|
112
|
+
for (int i = 0; i < argc; ++i) {
|
|
113
|
+
args[i] = StringFromUtf8(isolate, argv[i], -1);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Run the factory function to receive a new virtual table definition.
|
|
117
|
+
v8::MaybeLocal<v8::Value> maybeReturnValue = self->factory.Get(isolate)->Call(ctx, v8::Undefined(isolate), argc, args);
|
|
118
|
+
delete[] args;
|
|
119
|
+
|
|
120
|
+
if (maybeReturnValue.IsEmpty()) {
|
|
121
|
+
self->PropagateJSError();
|
|
122
|
+
return SQLITE_ERROR;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// Extract each part of the virtual table definition.
|
|
126
|
+
v8::Local<v8::Array> returnValue = maybeReturnValue.ToLocalChecked().As<v8::Array>();
|
|
127
|
+
v8::Local<v8::String> sqlString = returnValue->Get(ctx, 0).ToLocalChecked().As<v8::String>();
|
|
128
|
+
v8::Local<v8::Function> generator = returnValue->Get(ctx, 1).ToLocalChecked().As<v8::Function>();
|
|
129
|
+
v8::Local<v8::Array> parameterNames = returnValue->Get(ctx, 2).ToLocalChecked().As<v8::Array>();
|
|
130
|
+
int safe_ints = returnValue->Get(ctx, 3).ToLocalChecked().As<v8::Int32>()->Value();
|
|
131
|
+
bool direct_only = returnValue->Get(ctx, 4).ToLocalChecked().As<v8::Boolean>()->Value();
|
|
132
|
+
|
|
133
|
+
v8::String::Utf8Value sql(isolate, sqlString);
|
|
134
|
+
safe_ints = safe_ints < 2 ? safe_ints : static_cast<int>(self->db->GetState()->safe_ints);
|
|
135
|
+
|
|
136
|
+
// Copy the parameter names into a std::vector.
|
|
137
|
+
std::vector<std::string> parameter_names;
|
|
138
|
+
for (int i = 0, len = parameterNames->Length(); i < len; ++i) {
|
|
139
|
+
v8::Local<v8::String> parameterName = parameterNames->Get(ctx, i).ToLocalChecked().As<v8::String>();
|
|
140
|
+
v8::String::Utf8Value parameter_name(isolate, parameterName);
|
|
141
|
+
parameter_names.emplace_back(*parameter_name);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// Pass our SQL table definition to SQLite (this should never fail).
|
|
145
|
+
if (sqlite3_declare_vtab(db_handle, *sql) != SQLITE_OK) {
|
|
146
|
+
*errOutput = sqlite3_mprintf("failed to declare virtual table \"%s\"", argv[2]);
|
|
147
|
+
return SQLITE_ERROR;
|
|
148
|
+
}
|
|
149
|
+
if (direct_only && sqlite3_vtab_config(db_handle, SQLITE_VTAB_DIRECTONLY) != SQLITE_OK) {
|
|
150
|
+
*errOutput = sqlite3_mprintf("failed to configure virtual table \"%s\"", argv[2]);
|
|
151
|
+
return SQLITE_ERROR;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// Return the successfully created virtual table.
|
|
155
|
+
*output = (new VTab(self, generator, parameter_names, safe_ints))->Downcast();
|
|
156
|
+
return SQLITE_OK;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
static int xDisconnect(sqlite3_vtab* vtab) {
|
|
160
|
+
delete VTab::Upcast(vtab);
|
|
161
|
+
return SQLITE_OK;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
static int xOpen(sqlite3_vtab* vtab, sqlite3_vtab_cursor** output) {
|
|
165
|
+
*output = (new Cursor())->Downcast();
|
|
166
|
+
return SQLITE_OK;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
static int xClose(sqlite3_vtab_cursor* cursor) {
|
|
170
|
+
delete Cursor::Upcast(cursor);
|
|
171
|
+
return SQLITE_OK;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// This method uses a fresh cursor to start a new scan of a virtual table.
|
|
175
|
+
// The args and idxNum are provided by xBestIndex (idxStr is unused).
|
|
176
|
+
// idxNum is a bitmap that provides the proper indices of the received args.
|
|
177
|
+
static int xFilter(sqlite3_vtab_cursor* _cursor, int idxNum, const char* idxStr, int argc, sqlite3_value** argv) {
|
|
178
|
+
Cursor* cursor = Cursor::Upcast(_cursor);
|
|
179
|
+
VTab* vtab = cursor->GetVTab();
|
|
180
|
+
CustomTable* self = vtab->parent;
|
|
181
|
+
Addon* addon = self->addon;
|
|
182
|
+
v8::Isolate* isolate = self->isolate;
|
|
183
|
+
v8::HandleScope scope(isolate);
|
|
184
|
+
UseContext;
|
|
185
|
+
|
|
186
|
+
// Convert the SQLite arguments into JavaScript arguments. Note that
|
|
187
|
+
// the values in argv may be in the wrong order, so we fix that here.
|
|
188
|
+
v8::Local<v8::Value> args_fast[4];
|
|
189
|
+
v8::Local<v8::Value>* args = NULL;
|
|
190
|
+
int parameter_count = vtab->parameter_count;
|
|
191
|
+
if (parameter_count != 0) {
|
|
192
|
+
args = parameter_count <= 4 ? args_fast : ALLOC_ARRAY<v8::Local<v8::Value>>(parameter_count);
|
|
193
|
+
int argn = 0;
|
|
194
|
+
bool safe_ints = vtab->safe_ints;
|
|
195
|
+
for (int i = 0; i < parameter_count; ++i) {
|
|
196
|
+
if (idxNum & 1 << i) {
|
|
197
|
+
args[i] = Data::GetValueJS(isolate, argv[argn++], safe_ints);
|
|
198
|
+
// If any arguments are NULL, the result set is necessarily
|
|
199
|
+
// empty, so don't bother to run the generator function.
|
|
200
|
+
if (args[i]->IsNull()) {
|
|
201
|
+
if (args != args_fast) delete[] args;
|
|
202
|
+
cursor->done = true;
|
|
203
|
+
return SQLITE_OK;
|
|
204
|
+
}
|
|
205
|
+
} else {
|
|
206
|
+
args[i] = v8::Undefined(isolate);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// Invoke the generator function to create a new iterator.
|
|
212
|
+
v8::MaybeLocal<v8::Value> maybeIterator = vtab->generator.Get(isolate)->Call(ctx, v8::Undefined(isolate), parameter_count, args);
|
|
213
|
+
if (args != args_fast) delete[] args;
|
|
214
|
+
|
|
215
|
+
if (maybeIterator.IsEmpty()) {
|
|
216
|
+
self->PropagateJSError();
|
|
217
|
+
return SQLITE_ERROR;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// Store the iterator and its next() method; we'll be using it a lot.
|
|
221
|
+
v8::Local<v8::Object> iterator = maybeIterator.ToLocalChecked().As<v8::Object>();
|
|
222
|
+
v8::Local<v8::Function> next = iterator->Get(ctx, addon->cs.next.Get(isolate)).ToLocalChecked().As<v8::Function>();
|
|
223
|
+
cursor->iterator.Reset(isolate, iterator);
|
|
224
|
+
cursor->next.Reset(isolate, next);
|
|
225
|
+
cursor->rowid = 0;
|
|
226
|
+
|
|
227
|
+
// Advance the iterator/cursor to the first row.
|
|
228
|
+
return xNext(cursor->Downcast());
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
// This method advances a virtual table's cursor to the next row.
|
|
232
|
+
// SQLite will call this method repeatedly, driving the generator function.
|
|
233
|
+
static int xNext(sqlite3_vtab_cursor* _cursor) {
|
|
234
|
+
Cursor* cursor = Cursor::Upcast(_cursor);
|
|
235
|
+
CustomTable* self = cursor->GetVTab()->parent;
|
|
236
|
+
Addon* addon = self->addon;
|
|
237
|
+
v8::Isolate* isolate = self->isolate;
|
|
238
|
+
v8::HandleScope scope(isolate);
|
|
239
|
+
UseContext;
|
|
240
|
+
|
|
241
|
+
v8::Local<v8::Object> iterator = cursor->iterator.Get(isolate);
|
|
242
|
+
v8::Local<v8::Function> next = cursor->next.Get(isolate);
|
|
243
|
+
|
|
244
|
+
v8::MaybeLocal<v8::Value> maybeRecord = next->Call(ctx, iterator, 0, NULL);
|
|
245
|
+
if (maybeRecord.IsEmpty()) {
|
|
246
|
+
self->PropagateJSError();
|
|
247
|
+
return SQLITE_ERROR;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
v8::Local<v8::Object> record = maybeRecord.ToLocalChecked().As<v8::Object>();
|
|
251
|
+
bool done = record->Get(ctx, addon->cs.done.Get(isolate)).ToLocalChecked().As<v8::Boolean>()->Value();
|
|
252
|
+
if (!done) {
|
|
253
|
+
cursor->row.Reset(isolate, record->Get(ctx, addon->cs.value.Get(isolate)).ToLocalChecked().As<v8::Array>());
|
|
254
|
+
}
|
|
255
|
+
cursor->done = done;
|
|
256
|
+
cursor->rowid += 1;
|
|
257
|
+
|
|
258
|
+
return SQLITE_OK;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
// If this method returns 1, SQLite will stop scanning the virtual table.
|
|
262
|
+
static int xEof(sqlite3_vtab_cursor* cursor) {
|
|
263
|
+
return Cursor::Upcast(cursor)->done;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// This method extracts some column from the cursor's current row.
|
|
267
|
+
static int xColumn(sqlite3_vtab_cursor* _cursor, sqlite3_context* invocation, int column) {
|
|
268
|
+
Cursor* cursor = Cursor::Upcast(_cursor);
|
|
269
|
+
CustomTable* self = cursor->GetVTab()->parent;
|
|
270
|
+
TempDataConverter temp_data_converter(self);
|
|
271
|
+
v8::Isolate* isolate = self->isolate;
|
|
272
|
+
v8::HandleScope scope(isolate);
|
|
273
|
+
|
|
274
|
+
v8::Local<v8::Array> row = cursor->row.Get(isolate);
|
|
275
|
+
v8::MaybeLocal<v8::Value> maybeColumnValue = row->Get(OnlyContext, column);
|
|
276
|
+
if (maybeColumnValue.IsEmpty()) {
|
|
277
|
+
temp_data_converter.PropagateJSError(NULL);
|
|
278
|
+
} else {
|
|
279
|
+
Data::ResultValueFromJS(isolate, invocation, maybeColumnValue.ToLocalChecked(), &temp_data_converter);
|
|
280
|
+
}
|
|
281
|
+
return temp_data_converter.status;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
// This method outputs the rowid of the cursor's current row.
|
|
285
|
+
static int xRowid(sqlite3_vtab_cursor* cursor, sqlite_int64* output) {
|
|
286
|
+
*output = Cursor::Upcast(cursor)->rowid;
|
|
287
|
+
return SQLITE_OK;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// This method tells SQLite how to *plan* queries on our virtual table.
|
|
291
|
+
// It gets invoked (typically multiple times) during db.prepare().
|
|
292
|
+
static int xBestIndex(sqlite3_vtab* vtab, sqlite3_index_info* output) {
|
|
293
|
+
int parameter_count = VTab::Upcast(vtab)->parameter_count;
|
|
294
|
+
int argument_count = 0;
|
|
295
|
+
std::vector<std::pair<int, int>> forwarded;
|
|
296
|
+
|
|
297
|
+
for (int i = 0, len = output->nConstraint; i < len; ++i) {
|
|
298
|
+
auto item = output->aConstraint[i];
|
|
299
|
+
|
|
300
|
+
// The SQLITE_INDEX_CONSTRAINT_LIMIT and SQLITE_INDEX_CONSTRAINT_OFFSET
|
|
301
|
+
// operators have no left-hand operand, and so for those operators the
|
|
302
|
+
// corresponding item.iColumn is meaningless.
|
|
303
|
+
// We don't care those constraints.
|
|
304
|
+
if (item.op == SQLITE_INDEX_CONSTRAINT_LIMIT || item.op == SQLITE_INDEX_CONSTRAINT_OFFSET) {
|
|
305
|
+
continue;
|
|
306
|
+
}
|
|
307
|
+
// We only care about constraints on parameters, not regular columns.
|
|
308
|
+
if (item.iColumn >= 0 && item.iColumn < parameter_count) {
|
|
309
|
+
if (item.op != SQLITE_INDEX_CONSTRAINT_EQ) {
|
|
310
|
+
sqlite3_free(vtab->zErrMsg);
|
|
311
|
+
vtab->zErrMsg = sqlite3_mprintf(
|
|
312
|
+
"virtual table parameter \"%s\" can only be constrained by the '=' operator",
|
|
313
|
+
VTab::Upcast(vtab)->parameter_names.at(item.iColumn).c_str());
|
|
314
|
+
return SQLITE_ERROR;
|
|
315
|
+
}
|
|
316
|
+
if (!item.usable) {
|
|
317
|
+
// Don't allow SQLite to make plans that ignore arguments.
|
|
318
|
+
// Otherwise, a user could pass arguments, but then they
|
|
319
|
+
// could appear undefined in the generator function.
|
|
320
|
+
return SQLITE_CONSTRAINT;
|
|
321
|
+
}
|
|
322
|
+
forwarded.emplace_back(item.iColumn, i);
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// Tell SQLite to forward arguments to xFilter.
|
|
327
|
+
std::sort(forwarded.begin(), forwarded.end());
|
|
328
|
+
for (std::pair<int, int> pair : forwarded) {
|
|
329
|
+
int bit = 1 << pair.first;
|
|
330
|
+
if (!(output->idxNum & bit)) {
|
|
331
|
+
output->idxNum |= bit;
|
|
332
|
+
output->aConstraintUsage[pair.second].argvIndex = ++argument_count;
|
|
333
|
+
output->aConstraintUsage[pair.second].omit = 1;
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
// Use a very high estimated cost so SQLite is not tempted to invoke the
|
|
338
|
+
// generator function within a loop, if it can be avoided.
|
|
339
|
+
output->estimatedCost = output->estimatedRows = 1000000000 / (argument_count + 1);
|
|
340
|
+
return SQLITE_OK;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
void PropagateJSError() {
|
|
344
|
+
assert(db->GetState()->was_js_error == false);
|
|
345
|
+
db->GetState()->was_js_error = true;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
Addon* const addon;
|
|
349
|
+
v8::Isolate* const isolate;
|
|
350
|
+
Database* const db;
|
|
351
|
+
const std::string name;
|
|
352
|
+
const v8::Global<v8::Function> factory;
|
|
353
|
+
};
|
|
354
|
+
|
|
355
|
+
sqlite3_module CustomTable::MODULE = {
|
|
356
|
+
0, /* iVersion */
|
|
357
|
+
xCreate, /* xCreate */
|
|
358
|
+
xConnect, /* xConnect */
|
|
359
|
+
xBestIndex, /* xBestIndex */
|
|
360
|
+
xDisconnect, /* xDisconnect */
|
|
361
|
+
xDisconnect, /* xDestroy */
|
|
362
|
+
xOpen, /* xOpen */
|
|
363
|
+
xClose, /* xClose */
|
|
364
|
+
xFilter, /* xFilter */
|
|
365
|
+
xNext, /* xNext */
|
|
366
|
+
xEof, /* xEof */
|
|
367
|
+
xColumn, /* xColumn */
|
|
368
|
+
xRowid, /* xRowid */
|
|
369
|
+
NULL, /* xUpdate */
|
|
370
|
+
NULL, /* xBegin */
|
|
371
|
+
NULL, /* xSync */
|
|
372
|
+
NULL, /* xCommit */
|
|
373
|
+
NULL, /* xRollback */
|
|
374
|
+
NULL, /* xFindMethod */
|
|
375
|
+
NULL, /* xRename */
|
|
376
|
+
NULL, /* xSavepoint */
|
|
377
|
+
NULL, /* xRelease */
|
|
378
|
+
NULL, /* xRollbackTo */
|
|
379
|
+
NULL, /* xShadowName */
|
|
380
|
+
NULL /* xIntegrity */
|
|
381
|
+
};
|
|
382
|
+
|
|
383
|
+
sqlite3_module CustomTable::EPONYMOUS_MODULE = {
|
|
384
|
+
0, /* iVersion */
|
|
385
|
+
NULL, /* xCreate */
|
|
386
|
+
xConnect, /* xConnect */
|
|
387
|
+
xBestIndex, /* xBestIndex */
|
|
388
|
+
xDisconnect, /* xDisconnect */
|
|
389
|
+
xDisconnect, /* xDestroy */
|
|
390
|
+
xOpen, /* xOpen */
|
|
391
|
+
xClose, /* xClose */
|
|
392
|
+
xFilter, /* xFilter */
|
|
393
|
+
xNext, /* xNext */
|
|
394
|
+
xEof, /* xEof */
|
|
395
|
+
xColumn, /* xColumn */
|
|
396
|
+
xRowid, /* xRowid */
|
|
397
|
+
NULL, /* xUpdate */
|
|
398
|
+
NULL, /* xBegin */
|
|
399
|
+
NULL, /* xSync */
|
|
400
|
+
NULL, /* xCommit */
|
|
401
|
+
NULL, /* xRollback */
|
|
402
|
+
NULL, /* xFindMethod */
|
|
403
|
+
NULL, /* xRename */
|
|
404
|
+
NULL, /* xSavepoint */
|
|
405
|
+
NULL, /* xRelease */
|
|
406
|
+
NULL, /* xRollbackTo */
|
|
407
|
+
NULL, /* xShadowName */
|
|
408
|
+
NULL /* xIntegrity */
|
|
409
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
class DataConverter {
|
|
2
|
+
public:
|
|
3
|
+
|
|
4
|
+
void ThrowDataConversionError(sqlite3_context* invocation, bool isBigInt) {
|
|
5
|
+
if (isBigInt) {
|
|
6
|
+
ThrowRangeError((GetDataErrorPrefix() + " a bigint that was too big").c_str());
|
|
7
|
+
} else {
|
|
8
|
+
ThrowTypeError((GetDataErrorPrefix() + " an invalid value").c_str());
|
|
9
|
+
}
|
|
10
|
+
PropagateJSError(invocation);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
protected:
|
|
14
|
+
|
|
15
|
+
virtual void PropagateJSError(sqlite3_context* invocation) = 0;
|
|
16
|
+
virtual std::string GetDataErrorPrefix() = 0;
|
|
17
|
+
};
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
#define JS_VALUE_TO_SQLITE(to, value, isolate, ...) \
|
|
2
|
+
if (value->IsNumber()) { \
|
|
3
|
+
return sqlite3_##to##_double( \
|
|
4
|
+
__VA_ARGS__, \
|
|
5
|
+
value.As<v8::Number>()->Value() \
|
|
6
|
+
); \
|
|
7
|
+
} else if (value->IsBigInt()) { \
|
|
8
|
+
bool lossless; \
|
|
9
|
+
int64_t v = value.As<v8::BigInt>()->Int64Value(&lossless); \
|
|
10
|
+
if (lossless) { \
|
|
11
|
+
return sqlite3_##to##_int64(__VA_ARGS__, v); \
|
|
12
|
+
} \
|
|
13
|
+
} else if (value->IsString()) { \
|
|
14
|
+
v8::String::Utf8Value utf8(isolate, value.As<v8::String>()); \
|
|
15
|
+
return sqlite3_##to##_text( \
|
|
16
|
+
__VA_ARGS__, \
|
|
17
|
+
*utf8, \
|
|
18
|
+
utf8.length(), \
|
|
19
|
+
SQLITE_TRANSIENT \
|
|
20
|
+
); \
|
|
21
|
+
} else if (node::Buffer::HasInstance(value)) { \
|
|
22
|
+
const char* data = node::Buffer::Data(value); \
|
|
23
|
+
return sqlite3_##to##_blob( \
|
|
24
|
+
__VA_ARGS__, \
|
|
25
|
+
data ? data : "", \
|
|
26
|
+
node::Buffer::Length(value), \
|
|
27
|
+
SQLITE_TRANSIENT \
|
|
28
|
+
); \
|
|
29
|
+
} else if (value->IsNull() || value->IsUndefined()) { \
|
|
30
|
+
return sqlite3_##to##_null(__VA_ARGS__); \
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
#define SQLITE_VALUE_TO_JS(from, isolate, safe_ints, ...) \
|
|
34
|
+
switch (sqlite3_##from##_type(__VA_ARGS__)) { \
|
|
35
|
+
case SQLITE_INTEGER: \
|
|
36
|
+
if (safe_ints) { \
|
|
37
|
+
return v8::BigInt::New( \
|
|
38
|
+
isolate, \
|
|
39
|
+
sqlite3_##from##_int64(__VA_ARGS__) \
|
|
40
|
+
); \
|
|
41
|
+
} \
|
|
42
|
+
case SQLITE_FLOAT: \
|
|
43
|
+
return v8::Number::New( \
|
|
44
|
+
isolate, \
|
|
45
|
+
sqlite3_##from##_double(__VA_ARGS__) \
|
|
46
|
+
); \
|
|
47
|
+
case SQLITE_TEXT: \
|
|
48
|
+
return StringFromUtf8( \
|
|
49
|
+
isolate, \
|
|
50
|
+
reinterpret_cast<const char*>(sqlite3_##from##_text(__VA_ARGS__)), \
|
|
51
|
+
sqlite3_##from##_bytes(__VA_ARGS__) \
|
|
52
|
+
); \
|
|
53
|
+
case SQLITE_BLOB: \
|
|
54
|
+
return node::Buffer::Copy( \
|
|
55
|
+
isolate, \
|
|
56
|
+
static_cast<const char*>(sqlite3_##from##_blob(__VA_ARGS__)), \
|
|
57
|
+
sqlite3_##from##_bytes(__VA_ARGS__) \
|
|
58
|
+
).ToLocalChecked(); \
|
|
59
|
+
default: \
|
|
60
|
+
assert(sqlite3_##from##_type(__VA_ARGS__) == SQLITE_NULL); \
|
|
61
|
+
return v8::Null(isolate); \
|
|
62
|
+
} \
|
|
63
|
+
assert(false);
|
|
64
|
+
|
|
65
|
+
namespace Data {
|
|
66
|
+
|
|
67
|
+
static const char FLAT = 0;
|
|
68
|
+
static const char PLUCK = 1;
|
|
69
|
+
static const char EXPAND = 2;
|
|
70
|
+
static const char RAW = 3;
|
|
71
|
+
|
|
72
|
+
v8::Local<v8::Value> GetValueJS(v8::Isolate* isolate, sqlite3_stmt* handle, int column, bool safe_ints) {
|
|
73
|
+
SQLITE_VALUE_TO_JS(column, isolate, safe_ints, handle, column);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
v8::Local<v8::Value> GetValueJS(v8::Isolate* isolate, sqlite3_value* value, bool safe_ints) {
|
|
77
|
+
SQLITE_VALUE_TO_JS(value, isolate, safe_ints, value);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
v8::Local<v8::Value> GetExpandedRowJS(v8::Isolate* isolate, v8::Local<v8::Context> ctx, sqlite3_stmt* handle, bool safe_ints) {
|
|
81
|
+
v8::Local<v8::Object> row = v8::Object::New(isolate);
|
|
82
|
+
int column_count = sqlite3_column_count(handle);
|
|
83
|
+
for (int i = 0; i < column_count; ++i) {
|
|
84
|
+
const char* table_raw = sqlite3_column_table_name(handle, i);
|
|
85
|
+
v8::Local<v8::String> table = InternalizedFromUtf8(isolate, table_raw == NULL ? "$" : table_raw, -1);
|
|
86
|
+
v8::Local<v8::String> column = InternalizedFromUtf8(isolate, sqlite3_column_name(handle, i), -1);
|
|
87
|
+
v8::Local<v8::Value> value = Data::GetValueJS(isolate, handle, i, safe_ints);
|
|
88
|
+
if (row->HasOwnProperty(ctx, table).FromJust()) {
|
|
89
|
+
row->Get(ctx, table).ToLocalChecked().As<v8::Object>()->Set(ctx, column, value).FromJust();
|
|
90
|
+
} else {
|
|
91
|
+
v8::Local<v8::Object> nested = v8::Object::New(isolate);
|
|
92
|
+
row->Set(ctx, table, nested).FromJust();
|
|
93
|
+
nested->Set(ctx, column, value).FromJust();
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return row;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
#if !defined(NODE_MODULE_VERSION) || NODE_MODULE_VERSION < 127
|
|
100
|
+
|
|
101
|
+
v8::Local<v8::Value> GetFlatRowJS(v8::Isolate* isolate, v8::Local<v8::Context> ctx, sqlite3_stmt* handle, bool safe_ints) {
|
|
102
|
+
v8::Local<v8::Object> row = v8::Object::New(isolate);
|
|
103
|
+
int column_count = sqlite3_column_count(handle);
|
|
104
|
+
for (int i = 0; i < column_count; ++i) {
|
|
105
|
+
row->Set(ctx,
|
|
106
|
+
InternalizedFromUtf8(isolate, sqlite3_column_name(handle, i), -1),
|
|
107
|
+
Data::GetValueJS(isolate, handle, i, safe_ints)
|
|
108
|
+
).FromJust();
|
|
109
|
+
}
|
|
110
|
+
return row;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
v8::Local<v8::Value> GetRawRowJS(v8::Isolate* isolate, v8::Local<v8::Context> ctx, sqlite3_stmt* handle, bool safe_ints) {
|
|
114
|
+
v8::Local<v8::Array> row = v8::Array::New(isolate);
|
|
115
|
+
int column_count = sqlite3_column_count(handle);
|
|
116
|
+
for (int i = 0; i < column_count; ++i) {
|
|
117
|
+
row->Set(ctx, i, Data::GetValueJS(isolate, handle, i, safe_ints)).FromJust();
|
|
118
|
+
}
|
|
119
|
+
return row;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
v8::Local<v8::Value> GetRowJS(v8::Isolate* isolate, v8::Local<v8::Context> ctx, sqlite3_stmt* handle, bool safe_ints, char mode) {
|
|
123
|
+
if (mode == FLAT) return GetFlatRowJS(isolate, ctx, handle, safe_ints);
|
|
124
|
+
if (mode == PLUCK) return GetValueJS(isolate, handle, 0, safe_ints);
|
|
125
|
+
if (mode == EXPAND) return GetExpandedRowJS(isolate, ctx, handle, safe_ints);
|
|
126
|
+
if (mode == RAW) return GetRawRowJS(isolate, ctx, handle, safe_ints);
|
|
127
|
+
assert(false);
|
|
128
|
+
return v8::Local<v8::Value>();
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
#else
|
|
132
|
+
|
|
133
|
+
v8::Local<v8::Value> GetFlatRowJS(v8::Isolate* isolate, sqlite3_stmt* handle, bool safe_ints) {
|
|
134
|
+
int column_count = sqlite3_column_count(handle);
|
|
135
|
+
v8::LocalVector<v8::Name> keys(isolate);
|
|
136
|
+
v8::LocalVector<v8::Value> values(isolate);
|
|
137
|
+
keys.reserve(column_count);
|
|
138
|
+
values.reserve(column_count);
|
|
139
|
+
for (int i = 0; i < column_count; ++i) {
|
|
140
|
+
keys.emplace_back(
|
|
141
|
+
InternalizedFromUtf8(isolate, sqlite3_column_name(handle, i), -1).As<v8::Name>()
|
|
142
|
+
);
|
|
143
|
+
values.emplace_back(
|
|
144
|
+
Data::GetValueJS(isolate, handle, i, safe_ints)
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
return v8::Object::New(
|
|
148
|
+
isolate,
|
|
149
|
+
GET_PROTOTYPE(v8::Object::New(isolate)),
|
|
150
|
+
keys.data(),
|
|
151
|
+
values.data(),
|
|
152
|
+
column_count
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
v8::Local<v8::Value> GetRawRowJS(v8::Isolate* isolate, sqlite3_stmt* handle, bool safe_ints) {
|
|
157
|
+
int column_count = sqlite3_column_count(handle);
|
|
158
|
+
v8::LocalVector<v8::Value> row(isolate);
|
|
159
|
+
row.reserve(column_count);
|
|
160
|
+
for (int i = 0; i < column_count; ++i) {
|
|
161
|
+
row.emplace_back(Data::GetValueJS(isolate, handle, i, safe_ints));
|
|
162
|
+
}
|
|
163
|
+
return v8::Array::New(isolate, row.data(), row.size());
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
v8::Local<v8::Value> GetRowJS(v8::Isolate* isolate, v8::Local<v8::Context> ctx, sqlite3_stmt* handle, bool safe_ints, char mode) {
|
|
167
|
+
if (mode == FLAT) return GetFlatRowJS(isolate, handle, safe_ints);
|
|
168
|
+
if (mode == PLUCK) return GetValueJS(isolate, handle, 0, safe_ints);
|
|
169
|
+
if (mode == EXPAND) return GetExpandedRowJS(isolate, ctx, handle, safe_ints);
|
|
170
|
+
if (mode == RAW) return GetRawRowJS(isolate, handle, safe_ints);
|
|
171
|
+
assert(false);
|
|
172
|
+
return v8::Local<v8::Value>();
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
#endif
|
|
176
|
+
|
|
177
|
+
void GetArgumentsJS(v8::Isolate* isolate, v8::Local<v8::Value>* out, sqlite3_value** values, int argument_count, bool safe_ints) {
|
|
178
|
+
assert(argument_count > 0);
|
|
179
|
+
for (int i = 0; i < argument_count; ++i) {
|
|
180
|
+
out[i] = Data::GetValueJS(isolate, values[i], safe_ints);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
int BindValueFromJS(v8::Isolate* isolate, sqlite3_stmt* handle, int index, v8::Local<v8::Value> value) {
|
|
185
|
+
JS_VALUE_TO_SQLITE(bind, value, isolate, handle, index);
|
|
186
|
+
return value->IsBigInt() ? SQLITE_TOOBIG : -1;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
void ResultValueFromJS(v8::Isolate* isolate, sqlite3_context* invocation, v8::Local<v8::Value> value, DataConverter* converter) {
|
|
190
|
+
JS_VALUE_TO_SQLITE(result, value, isolate, invocation);
|
|
191
|
+
converter->ThrowDataConversionError(invocation, value->IsBigInt());
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
}
|