@quantiya/codevibe-codex-plugin 2.0.6 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/{bin/codevibe-codex → libexec/companion-launcher} +37 -76
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +229 -61
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +6 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/keychain-cli.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +50 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/oauth-refresh.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +150 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/encrypt-for-emit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/open-prompt-id.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/open-prompt-id.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-raise.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-raise.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +20 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +4543 -288
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-manager.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-migrate.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-backend.d.ts +105 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +40 -5
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-migrate.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/anchored-fs.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-output.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/durable-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/hosted-class-a-sink.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-identity.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-tree.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/publication-authority-capability.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/snapshot-merge.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority-fixture.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-materializer.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-disposable-repo.d.ts +23 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-resolve.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/anchored-fs.d.ts +243 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-directory.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-helper.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-output.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-emit.d.ts +13 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-directory.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-store.d.ts +217 -25
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/hosted-class-a-sink.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +177 -76
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-identity.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +123 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-runner.d.ts +14 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/snapshot-merge.d.ts +124 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/task-group-types.d.ts +7 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/team-execution-flag.d.ts +2 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/track-registry.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +34 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/build.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/deploy-preflight.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/diff-sanity.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/hostile-grep.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/lint.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/shell-runner.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/source-traceability.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/tests.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/typecheck.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-runner.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-authority.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-materializer.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-shadow.d.ts +378 -85
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachment-journal.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/planner-offer-e1.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/workspace-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/advisory-attachment-journal.d.ts +165 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +53 -8
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +51847 -33465
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/declared-test-runner.d.ts +21 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +41 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-decision-submit.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +78 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +309 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/planner-offer-e1.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +603 -77
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/reducer.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +17 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +47 -29
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +103 -6
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/workspace-shutdown.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/output-parser.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/types.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/verdict-classifier.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +8 -8
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/command-runner.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +14 -32
- package/node_modules/@quantiya/codevibe-core/dist/substrate/index.d.ts +0 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -16
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +39 -5
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/__tests__/reviewer-credential-preflight.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/reviewer-credential-preflight.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/test-publication-authority-setup.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +190 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +29 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/{esm-node → esm}/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +7 -6
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/build/Makefile +347 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/binding.Makefile +6 -0
- package/node_modules/fs-ext/build/config.gypi +504 -0
- package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
- package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/package.json +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/dist/substrate/git-proxy.d.ts +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → appsync/__tests__/refresh-open-prompt-ttl-chunk.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → auth/__tests__/keychain-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{substrate/__tests__/git-proxy.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
|
@@ -0,0 +1,730 @@
|
|
|
1
|
+
/*********************************************************************
|
|
2
|
+
* NAN - Native Abstractions for Node.js
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2018 NAN contributors
|
|
5
|
+
*
|
|
6
|
+
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
|
|
7
|
+
********************************************************************/
|
|
8
|
+
|
|
9
|
+
#ifndef NAN_CALLBACKS_12_INL_H_
|
|
10
|
+
#define NAN_CALLBACKS_12_INL_H_
|
|
11
|
+
|
|
12
|
+
#if defined(V8_MAJOR_VERSION) && \
|
|
13
|
+
(V8_MAJOR_VERSION > 14 || \
|
|
14
|
+
(V8_MAJOR_VERSION == 14 && \
|
|
15
|
+
defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 6))
|
|
16
|
+
# define NAN_HAS_PROPERTY_CALLBACK_INFO_HOLDER_V2 1
|
|
17
|
+
#endif
|
|
18
|
+
|
|
19
|
+
template<typename T>
|
|
20
|
+
class ReturnValue {
|
|
21
|
+
v8::ReturnValue<T> value_;
|
|
22
|
+
|
|
23
|
+
public:
|
|
24
|
+
template <class S>
|
|
25
|
+
explicit inline ReturnValue(const v8::ReturnValue<S> &value) :
|
|
26
|
+
value_(value) {}
|
|
27
|
+
template <class S>
|
|
28
|
+
explicit inline ReturnValue(const ReturnValue<S>& that)
|
|
29
|
+
: value_(that.value_) {
|
|
30
|
+
TYPE_CHECK(T, S);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Handle setters
|
|
34
|
+
template <typename S> inline void Set(const v8::Local<S> &handle) {
|
|
35
|
+
TYPE_CHECK(T, S);
|
|
36
|
+
value_.Set(handle);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
template <typename S> inline void Set(const Global<S> &handle) {
|
|
40
|
+
TYPE_CHECK(T, S);
|
|
41
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \
|
|
42
|
+
(V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && \
|
|
43
|
+
(V8_MINOR_VERSION > 5 || (V8_MINOR_VERSION == 5 && \
|
|
44
|
+
defined(V8_BUILD_NUMBER) && V8_BUILD_NUMBER >= 8))))
|
|
45
|
+
value_.Set(handle);
|
|
46
|
+
#else
|
|
47
|
+
value_.Set(*reinterpret_cast<const v8::Persistent<S>*>(&handle));
|
|
48
|
+
const_cast<Global<S> &>(handle).Reset();
|
|
49
|
+
#endif
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Fast primitive setters
|
|
53
|
+
inline void Set(bool value) {
|
|
54
|
+
TYPE_CHECK(T, v8::Boolean);
|
|
55
|
+
value_.Set(value);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
inline void Set(double i) {
|
|
59
|
+
TYPE_CHECK(T, v8::Number);
|
|
60
|
+
value_.Set(i);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
inline void Set(int32_t i) {
|
|
64
|
+
TYPE_CHECK(T, v8::Integer);
|
|
65
|
+
value_.Set(i);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
inline void Set(uint32_t i) {
|
|
69
|
+
TYPE_CHECK(T, v8::Integer);
|
|
70
|
+
value_.Set(i);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Fast JS primitive setters
|
|
74
|
+
inline void SetNull() {
|
|
75
|
+
TYPE_CHECK(T, v8::Primitive);
|
|
76
|
+
value_.SetNull();
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
inline void SetUndefined() {
|
|
80
|
+
TYPE_CHECK(T, v8::Primitive);
|
|
81
|
+
value_.SetUndefined();
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
inline void SetEmptyString() {
|
|
85
|
+
TYPE_CHECK(T, v8::String);
|
|
86
|
+
value_.SetEmptyString();
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// Convenience getter for isolate
|
|
90
|
+
inline v8::Isolate *GetIsolate() const {
|
|
91
|
+
return value_.GetIsolate();
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Pointer setter: Uncompilable to prevent inadvertent misuse.
|
|
95
|
+
template<typename S>
|
|
96
|
+
inline void Set(S *whatever) { TYPE_CHECK(S*, v8::Primitive); }
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
#if defined(NAN_HAS_PROPERTY_CALLBACK_INFO_HOLDER_V2)
|
|
100
|
+
template<>
|
|
101
|
+
template <typename S>
|
|
102
|
+
inline void ReturnValue<void>::Set(const v8::Local<S> &) {}
|
|
103
|
+
#endif
|
|
104
|
+
|
|
105
|
+
template<typename T>
|
|
106
|
+
class FunctionCallbackInfo {
|
|
107
|
+
const v8::FunctionCallbackInfo<T> &info_;
|
|
108
|
+
const v8::Local<v8::Value> data_;
|
|
109
|
+
|
|
110
|
+
public:
|
|
111
|
+
explicit inline FunctionCallbackInfo(
|
|
112
|
+
const v8::FunctionCallbackInfo<T> &info
|
|
113
|
+
, v8::Local<v8::Value> data) :
|
|
114
|
+
info_(info)
|
|
115
|
+
, data_(data) {}
|
|
116
|
+
|
|
117
|
+
inline ReturnValue<T> GetReturnValue() const {
|
|
118
|
+
return ReturnValue<T>(info_.GetReturnValue());
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
#if NODE_MAJOR_VERSION < 10
|
|
122
|
+
NAN_DEPRECATED inline v8::Local<v8::Function> Callee() const {
|
|
123
|
+
return info_.Callee();
|
|
124
|
+
}
|
|
125
|
+
#endif
|
|
126
|
+
inline v8::Local<v8::Value> Data() const { return data_; }
|
|
127
|
+
inline v8::Local<v8::Object> Holder() const {
|
|
128
|
+
#if defined(V8_MAJOR_VERSION) && \
|
|
129
|
+
(V8_MAJOR_VERSION > 12 || \
|
|
130
|
+
(V8_MAJOR_VERSION == 12 && \
|
|
131
|
+
(defined(V8_MINOR_VERSION) && \
|
|
132
|
+
(V8_MINOR_VERSION > 5 || \
|
|
133
|
+
(V8_MINOR_VERSION == 5 && defined(V8_BUILD_NUMBER) && \
|
|
134
|
+
V8_BUILD_NUMBER >= 214)))))
|
|
135
|
+
return info_.This();
|
|
136
|
+
#else
|
|
137
|
+
return info_.Holder();
|
|
138
|
+
#endif
|
|
139
|
+
}
|
|
140
|
+
inline bool IsConstructCall() const { return info_.IsConstructCall(); }
|
|
141
|
+
inline int Length() const { return info_.Length(); }
|
|
142
|
+
inline v8::Local<v8::Value> operator[](int i) const { return info_[i]; }
|
|
143
|
+
inline v8::Local<v8::Object> This() const { return info_.This(); }
|
|
144
|
+
inline v8::Isolate *GetIsolate() const { return info_.GetIsolate(); }
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
protected:
|
|
148
|
+
static const int kHolderIndex = 0;
|
|
149
|
+
static const int kIsolateIndex = 1;
|
|
150
|
+
static const int kReturnValueDefaultValueIndex = 2;
|
|
151
|
+
static const int kReturnValueIndex = 3;
|
|
152
|
+
static const int kDataIndex = 4;
|
|
153
|
+
static const int kCalleeIndex = 5;
|
|
154
|
+
static const int kContextSaveIndex = 6;
|
|
155
|
+
static const int kArgsLength = 7;
|
|
156
|
+
|
|
157
|
+
private:
|
|
158
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(FunctionCallbackInfo)
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
template<typename T>
|
|
162
|
+
class PropertyCallbackInfo {
|
|
163
|
+
const v8::PropertyCallbackInfo<T> &info_;
|
|
164
|
+
const v8::Local<v8::Value> data_;
|
|
165
|
+
|
|
166
|
+
public:
|
|
167
|
+
explicit inline PropertyCallbackInfo(
|
|
168
|
+
const v8::PropertyCallbackInfo<T> &info
|
|
169
|
+
, const v8::Local<v8::Value> data) :
|
|
170
|
+
info_(info)
|
|
171
|
+
, data_(data) {}
|
|
172
|
+
|
|
173
|
+
inline v8::Isolate* GetIsolate() const { return info_.GetIsolate(); }
|
|
174
|
+
inline v8::Local<v8::Value> Data() const { return data_; }
|
|
175
|
+
inline v8::Local<v8::Object> This() const {
|
|
176
|
+
#if defined(NAN_HAS_PROPERTY_CALLBACK_INFO_HOLDER_V2)
|
|
177
|
+
return info_.HolderV2();
|
|
178
|
+
#else
|
|
179
|
+
return info_.This();
|
|
180
|
+
#endif
|
|
181
|
+
}
|
|
182
|
+
inline v8::Local<v8::Object> Holder() const {
|
|
183
|
+
#if defined(NAN_HAS_PROPERTY_CALLBACK_INFO_HOLDER_V2)
|
|
184
|
+
return info_.HolderV2();
|
|
185
|
+
#else
|
|
186
|
+
return info_.Holder();
|
|
187
|
+
#endif
|
|
188
|
+
}
|
|
189
|
+
inline ReturnValue<T> GetReturnValue() const {
|
|
190
|
+
return ReturnValue<T>(info_.GetReturnValue());
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
protected:
|
|
194
|
+
static const int kHolderIndex = 0;
|
|
195
|
+
static const int kIsolateIndex = 1;
|
|
196
|
+
static const int kReturnValueDefaultValueIndex = 2;
|
|
197
|
+
static const int kReturnValueIndex = 3;
|
|
198
|
+
static const int kDataIndex = 4;
|
|
199
|
+
static const int kThisIndex = 5;
|
|
200
|
+
static const int kArgsLength = 6;
|
|
201
|
+
|
|
202
|
+
private:
|
|
203
|
+
NAN_DISALLOW_ASSIGN_COPY_MOVE(PropertyCallbackInfo)
|
|
204
|
+
};
|
|
205
|
+
|
|
206
|
+
// Gated on V8_EXTERNAL_POINTER_TAG_COUNT (defined alongside the tagged
|
|
207
|
+
// Value() API) rather than a V8_MAJOR_VERSION cutoff, since Node and
|
|
208
|
+
// Chromium/Electron ship divergent V8 snapshots under the same major.
|
|
209
|
+
// Tag must match the one used by imp::NewExternal.
|
|
210
|
+
inline void* GetExternalValue(v8::Local<v8::External> ext) {
|
|
211
|
+
#ifdef V8_EXTERNAL_POINTER_TAG_COUNT
|
|
212
|
+
return ext->Value(v8::kExternalPointerTypeTagDefault);
|
|
213
|
+
#else
|
|
214
|
+
return ext->Value();
|
|
215
|
+
#endif
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
namespace imp {
|
|
219
|
+
|
|
220
|
+
static
|
|
221
|
+
void FunctionCallbackWrapper(const v8::FunctionCallbackInfo<v8::Value> &info) {
|
|
222
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
223
|
+
FunctionCallback callback = reinterpret_cast<FunctionCallback>(
|
|
224
|
+
reinterpret_cast<intptr_t>(
|
|
225
|
+
Nan::GetExternalValue(obj->GetInternalField(kFunctionIndex)
|
|
226
|
+
.As<v8::Value>().As<v8::External>())));
|
|
227
|
+
FunctionCallbackInfo<v8::Value>
|
|
228
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
229
|
+
callback(cbinfo);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
typedef void (*NativeFunction)(const v8::FunctionCallbackInfo<v8::Value> &);
|
|
233
|
+
|
|
234
|
+
#if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
|
|
235
|
+
static
|
|
236
|
+
void GetterCallbackWrapper(
|
|
237
|
+
v8::Local<v8::Name> property
|
|
238
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
239
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
240
|
+
PropertyCallbackInfo<v8::Value>
|
|
241
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
242
|
+
GetterCallback callback = reinterpret_cast<GetterCallback>(
|
|
243
|
+
reinterpret_cast<intptr_t>(
|
|
244
|
+
Nan::GetExternalValue(obj->GetInternalField(kGetterIndex)
|
|
245
|
+
.As<v8::Value>().As<v8::External>())));
|
|
246
|
+
callback(property.As<v8::String>(), cbinfo);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
typedef void (*NativeGetter)
|
|
250
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
251
|
+
|
|
252
|
+
static
|
|
253
|
+
void SetterCallbackWrapper(
|
|
254
|
+
v8::Local<v8::Name> property
|
|
255
|
+
, v8::Local<v8::Value> value
|
|
256
|
+
, const v8::PropertyCallbackInfo<void> &info) {
|
|
257
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
258
|
+
PropertyCallbackInfo<void>
|
|
259
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
260
|
+
SetterCallback callback = reinterpret_cast<SetterCallback>(
|
|
261
|
+
reinterpret_cast<intptr_t>(
|
|
262
|
+
Nan::GetExternalValue(obj->GetInternalField(kSetterIndex)
|
|
263
|
+
.As<v8::Value>().As<v8::External>())));
|
|
264
|
+
callback(property.As<v8::String>(), value, cbinfo);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
typedef void (*NativeSetter)(
|
|
268
|
+
v8::Local<v8::Name>
|
|
269
|
+
, v8::Local<v8::Value>
|
|
270
|
+
, const v8::PropertyCallbackInfo<void> &);
|
|
271
|
+
#else
|
|
272
|
+
static
|
|
273
|
+
void GetterCallbackWrapper(
|
|
274
|
+
v8::Local<v8::String> property
|
|
275
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
276
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
277
|
+
PropertyCallbackInfo<v8::Value>
|
|
278
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
279
|
+
GetterCallback callback = reinterpret_cast<GetterCallback>(
|
|
280
|
+
reinterpret_cast<intptr_t>(
|
|
281
|
+
Nan::GetExternalValue(obj->GetInternalField(kGetterIndex)
|
|
282
|
+
.As<v8::Value>().As<v8::External>())));
|
|
283
|
+
callback(property, cbinfo);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
typedef void (*NativeGetter)
|
|
287
|
+
(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
288
|
+
|
|
289
|
+
static
|
|
290
|
+
void SetterCallbackWrapper(
|
|
291
|
+
v8::Local<v8::String> property
|
|
292
|
+
, v8::Local<v8::Value> value
|
|
293
|
+
, const v8::PropertyCallbackInfo<void> &info) {
|
|
294
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
295
|
+
PropertyCallbackInfo<void>
|
|
296
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
297
|
+
SetterCallback callback = reinterpret_cast<SetterCallback>(
|
|
298
|
+
reinterpret_cast<intptr_t>(
|
|
299
|
+
Nan::GetExternalValue(obj->GetInternalField(kSetterIndex)
|
|
300
|
+
.As<v8::Value>().As<v8::External>())));
|
|
301
|
+
callback(property, value, cbinfo);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
typedef void (*NativeSetter)(
|
|
305
|
+
v8::Local<v8::String>
|
|
306
|
+
, v8::Local<v8::Value>
|
|
307
|
+
, const v8::PropertyCallbackInfo<void> &);
|
|
308
|
+
#endif
|
|
309
|
+
|
|
310
|
+
#if NODE_MODULE_VERSION > NODE_0_12_MODULE_VERSION
|
|
311
|
+
|
|
312
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
313
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
314
|
+
static
|
|
315
|
+
v8::Intercepted PropertyGetterCallbackWrapper(
|
|
316
|
+
v8::Local<v8::Name> property
|
|
317
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
318
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
319
|
+
PropertyCallbackInfo<v8::Value>
|
|
320
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
321
|
+
PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
|
|
322
|
+
reinterpret_cast<intptr_t>(
|
|
323
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyGetterIndex)
|
|
324
|
+
.As<v8::Value>().As<v8::External>())));
|
|
325
|
+
return callback(property.As<v8::String>(), cbinfo);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
typedef v8::Intercepted (*NativePropertyGetter)
|
|
329
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
330
|
+
|
|
331
|
+
static
|
|
332
|
+
v8::Intercepted PropertySetterCallbackWrapper(
|
|
333
|
+
v8::Local<v8::Name> property
|
|
334
|
+
, v8::Local<v8::Value> value
|
|
335
|
+
, const v8::PropertyCallbackInfo<void> &info) {
|
|
336
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
337
|
+
PropertyCallbackInfo<void>
|
|
338
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
339
|
+
PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
|
|
340
|
+
reinterpret_cast<intptr_t>(
|
|
341
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertySetterIndex)
|
|
342
|
+
.As<v8::Value>().As<v8::External>())));
|
|
343
|
+
return callback(property.As<v8::String>(), value, cbinfo);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
typedef v8::Intercepted (*NativePropertySetter)(
|
|
347
|
+
v8::Local<v8::Name>
|
|
348
|
+
, v8::Local<v8::Value>
|
|
349
|
+
, const v8::PropertyCallbackInfo<void> &);
|
|
350
|
+
|
|
351
|
+
#else
|
|
352
|
+
static
|
|
353
|
+
void PropertyGetterCallbackWrapper(
|
|
354
|
+
v8::Local<v8::Name> property
|
|
355
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
356
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
357
|
+
PropertyCallbackInfo<v8::Value>
|
|
358
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
359
|
+
PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
|
|
360
|
+
reinterpret_cast<intptr_t>(
|
|
361
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyGetterIndex)
|
|
362
|
+
.As<v8::Value>().As<v8::External>())));
|
|
363
|
+
callback(property.As<v8::String>(), cbinfo);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
typedef void (*NativePropertyGetter)
|
|
367
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
368
|
+
|
|
369
|
+
static
|
|
370
|
+
void PropertySetterCallbackWrapper(
|
|
371
|
+
v8::Local<v8::Name> property
|
|
372
|
+
, v8::Local<v8::Value> value
|
|
373
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
374
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
375
|
+
PropertyCallbackInfo<v8::Value>
|
|
376
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
377
|
+
PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
|
|
378
|
+
reinterpret_cast<intptr_t>(
|
|
379
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertySetterIndex)
|
|
380
|
+
.As<v8::Value>().As<v8::External>())));
|
|
381
|
+
callback(property.As<v8::String>(), value, cbinfo);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
typedef void (*NativePropertySetter)(
|
|
385
|
+
v8::Local<v8::Name>
|
|
386
|
+
, v8::Local<v8::Value>
|
|
387
|
+
, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
388
|
+
#endif
|
|
389
|
+
|
|
390
|
+
static
|
|
391
|
+
void PropertyEnumeratorCallbackWrapper(
|
|
392
|
+
const v8::PropertyCallbackInfo<v8::Array> &info) {
|
|
393
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
394
|
+
PropertyCallbackInfo<v8::Array>
|
|
395
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
396
|
+
PropertyEnumeratorCallback callback =
|
|
397
|
+
reinterpret_cast<PropertyEnumeratorCallback>(reinterpret_cast<intptr_t>(
|
|
398
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyEnumeratorIndex)
|
|
399
|
+
.As<v8::Value>().As<v8::External>())));
|
|
400
|
+
callback(cbinfo);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
typedef void (*NativePropertyEnumerator)
|
|
404
|
+
(const v8::PropertyCallbackInfo<v8::Array> &);
|
|
405
|
+
|
|
406
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
407
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
408
|
+
static
|
|
409
|
+
v8::Intercepted PropertyDeleterCallbackWrapper(
|
|
410
|
+
v8::Local<v8::Name> property
|
|
411
|
+
, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
|
|
412
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
413
|
+
PropertyCallbackInfo<v8::Boolean>
|
|
414
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
415
|
+
PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
|
|
416
|
+
reinterpret_cast<intptr_t>(
|
|
417
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyDeleterIndex)
|
|
418
|
+
.As<v8::Value>().As<v8::External>())));
|
|
419
|
+
return callback(property.As<v8::String>(), cbinfo);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
typedef v8::Intercepted (NativePropertyDeleter)
|
|
423
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Boolean> &);
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
static
|
|
427
|
+
v8::Intercepted PropertyQueryCallbackWrapper(
|
|
428
|
+
v8::Local<v8::Name> property
|
|
429
|
+
, const v8::PropertyCallbackInfo<v8::Integer> &info) {
|
|
430
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
431
|
+
PropertyCallbackInfo<v8::Integer>
|
|
432
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
433
|
+
PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
|
|
434
|
+
reinterpret_cast<intptr_t>(
|
|
435
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyQueryIndex)
|
|
436
|
+
.As<v8::Value>().As<v8::External>())));
|
|
437
|
+
return callback(property.As<v8::String>(), cbinfo);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
typedef v8::Intercepted (*NativePropertyQuery)
|
|
441
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Integer> &);
|
|
442
|
+
#else
|
|
443
|
+
static
|
|
444
|
+
void PropertyDeleterCallbackWrapper(
|
|
445
|
+
v8::Local<v8::Name> property
|
|
446
|
+
, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
|
|
447
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
448
|
+
PropertyCallbackInfo<v8::Boolean>
|
|
449
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
450
|
+
PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
|
|
451
|
+
reinterpret_cast<intptr_t>(
|
|
452
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyDeleterIndex)
|
|
453
|
+
.As<v8::Value>().As<v8::External>())));
|
|
454
|
+
callback(property.As<v8::String>(), cbinfo);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
typedef void (NativePropertyDeleter)
|
|
458
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Boolean> &);
|
|
459
|
+
|
|
460
|
+
static
|
|
461
|
+
void PropertyQueryCallbackWrapper(
|
|
462
|
+
v8::Local<v8::Name> property
|
|
463
|
+
, const v8::PropertyCallbackInfo<v8::Integer> &info) {
|
|
464
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
465
|
+
PropertyCallbackInfo<v8::Integer>
|
|
466
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
467
|
+
PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
|
|
468
|
+
reinterpret_cast<intptr_t>(
|
|
469
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyQueryIndex)
|
|
470
|
+
.As<v8::Value>().As<v8::External>())));
|
|
471
|
+
callback(property.As<v8::String>(), cbinfo);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
typedef void (*NativePropertyQuery)
|
|
475
|
+
(v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Integer> &);
|
|
476
|
+
#endif
|
|
477
|
+
#else
|
|
478
|
+
static
|
|
479
|
+
void PropertyGetterCallbackWrapper(
|
|
480
|
+
v8::Local<v8::String> property
|
|
481
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
482
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
483
|
+
PropertyCallbackInfo<v8::Value>
|
|
484
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
485
|
+
PropertyGetterCallback callback = reinterpret_cast<PropertyGetterCallback>(
|
|
486
|
+
reinterpret_cast<intptr_t>(
|
|
487
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyGetterIndex)
|
|
488
|
+
.As<v8::Value>().As<v8::External>())));
|
|
489
|
+
callback(property, cbinfo);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
typedef void (*NativePropertyGetter)
|
|
493
|
+
(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
494
|
+
|
|
495
|
+
static
|
|
496
|
+
void PropertySetterCallbackWrapper(
|
|
497
|
+
v8::Local<v8::String> property
|
|
498
|
+
, v8::Local<v8::Value> value
|
|
499
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
500
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
501
|
+
PropertyCallbackInfo<v8::Value>
|
|
502
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
503
|
+
PropertySetterCallback callback = reinterpret_cast<PropertySetterCallback>(
|
|
504
|
+
reinterpret_cast<intptr_t>(
|
|
505
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertySetterIndex)
|
|
506
|
+
.As<v8::Value>().As<v8::External>())));
|
|
507
|
+
callback(property, value, cbinfo);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
typedef void (*NativePropertySetter)(
|
|
511
|
+
v8::Local<v8::String>
|
|
512
|
+
, v8::Local<v8::Value>
|
|
513
|
+
, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
514
|
+
|
|
515
|
+
static
|
|
516
|
+
void PropertyEnumeratorCallbackWrapper(
|
|
517
|
+
const v8::PropertyCallbackInfo<v8::Array> &info) {
|
|
518
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
519
|
+
PropertyCallbackInfo<v8::Array>
|
|
520
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
521
|
+
PropertyEnumeratorCallback callback =
|
|
522
|
+
reinterpret_cast<PropertyEnumeratorCallback>(reinterpret_cast<intptr_t>(
|
|
523
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyEnumeratorIndex)
|
|
524
|
+
.As<v8::Value>().As<v8::External>())));
|
|
525
|
+
callback(cbinfo);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
typedef void (*NativePropertyEnumerator)
|
|
529
|
+
(const v8::PropertyCallbackInfo<v8::Array> &);
|
|
530
|
+
|
|
531
|
+
static
|
|
532
|
+
void PropertyDeleterCallbackWrapper(
|
|
533
|
+
v8::Local<v8::String> property
|
|
534
|
+
, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
|
|
535
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
536
|
+
PropertyCallbackInfo<v8::Boolean>
|
|
537
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
538
|
+
PropertyDeleterCallback callback = reinterpret_cast<PropertyDeleterCallback>(
|
|
539
|
+
reinterpret_cast<intptr_t>(
|
|
540
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyDeleterIndex)
|
|
541
|
+
.As<v8::Value>().As<v8::External>())));
|
|
542
|
+
callback(property, cbinfo);
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
typedef void (NativePropertyDeleter)
|
|
546
|
+
(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Boolean> &);
|
|
547
|
+
|
|
548
|
+
static
|
|
549
|
+
void PropertyQueryCallbackWrapper(
|
|
550
|
+
v8::Local<v8::String> property
|
|
551
|
+
, const v8::PropertyCallbackInfo<v8::Integer> &info) {
|
|
552
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
553
|
+
PropertyCallbackInfo<v8::Integer>
|
|
554
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
555
|
+
PropertyQueryCallback callback = reinterpret_cast<PropertyQueryCallback>(
|
|
556
|
+
reinterpret_cast<intptr_t>(
|
|
557
|
+
Nan::GetExternalValue(obj->GetInternalField(kPropertyQueryIndex)
|
|
558
|
+
.As<v8::Value>().As<v8::External>())));
|
|
559
|
+
callback(property, cbinfo);
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
typedef void (*NativePropertyQuery)
|
|
563
|
+
(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Integer> &);
|
|
564
|
+
#endif
|
|
565
|
+
|
|
566
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
567
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
568
|
+
static
|
|
569
|
+
v8::Intercepted IndexGetterCallbackWrapper(
|
|
570
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
571
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
572
|
+
PropertyCallbackInfo<v8::Value>
|
|
573
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
574
|
+
IndexGetterCallback callback = reinterpret_cast<IndexGetterCallback>(
|
|
575
|
+
reinterpret_cast<intptr_t>(
|
|
576
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertyGetterIndex)
|
|
577
|
+
.As<v8::Value>().As<v8::External>())));
|
|
578
|
+
return callback(index, cbinfo);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
typedef v8::Intercepted (*NativeIndexGetter)
|
|
582
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
583
|
+
|
|
584
|
+
static
|
|
585
|
+
v8::Intercepted IndexSetterCallbackWrapper(
|
|
586
|
+
uint32_t index
|
|
587
|
+
, v8::Local<v8::Value> value
|
|
588
|
+
, const v8::PropertyCallbackInfo<void> &info) {
|
|
589
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
590
|
+
PropertyCallbackInfo<void>
|
|
591
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
592
|
+
IndexSetterCallback callback = reinterpret_cast<IndexSetterCallback>(
|
|
593
|
+
reinterpret_cast<intptr_t>(
|
|
594
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertySetterIndex)
|
|
595
|
+
.As<v8::Value>().As<v8::External>())));
|
|
596
|
+
return callback(index, value, cbinfo);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
typedef v8::Intercepted (*NativeIndexSetter)(
|
|
600
|
+
uint32_t
|
|
601
|
+
, v8::Local<v8::Value>
|
|
602
|
+
, const v8::PropertyCallbackInfo<void> &);
|
|
603
|
+
|
|
604
|
+
#else
|
|
605
|
+
static
|
|
606
|
+
void IndexGetterCallbackWrapper(
|
|
607
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
608
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
609
|
+
PropertyCallbackInfo<v8::Value>
|
|
610
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
611
|
+
IndexGetterCallback callback = reinterpret_cast<IndexGetterCallback>(
|
|
612
|
+
reinterpret_cast<intptr_t>(
|
|
613
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertyGetterIndex)
|
|
614
|
+
.As<v8::Value>().As<v8::External>())));
|
|
615
|
+
callback(index, cbinfo);
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
typedef void (*NativeIndexGetter)
|
|
619
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
620
|
+
static
|
|
621
|
+
void IndexSetterCallbackWrapper(
|
|
622
|
+
uint32_t index
|
|
623
|
+
, v8::Local<v8::Value> value
|
|
624
|
+
, const v8::PropertyCallbackInfo<v8::Value> &info) {
|
|
625
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
626
|
+
PropertyCallbackInfo<v8::Value>
|
|
627
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
628
|
+
IndexSetterCallback callback = reinterpret_cast<IndexSetterCallback>(
|
|
629
|
+
reinterpret_cast<intptr_t>(
|
|
630
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertySetterIndex)
|
|
631
|
+
.As<v8::Value>().As<v8::External>())));
|
|
632
|
+
callback(index, value, cbinfo);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
typedef void (*NativeIndexSetter)(
|
|
636
|
+
uint32_t
|
|
637
|
+
, v8::Local<v8::Value>
|
|
638
|
+
, const v8::PropertyCallbackInfo<v8::Value> &);
|
|
639
|
+
|
|
640
|
+
#endif
|
|
641
|
+
|
|
642
|
+
static
|
|
643
|
+
void IndexEnumeratorCallbackWrapper(
|
|
644
|
+
const v8::PropertyCallbackInfo<v8::Array> &info) {
|
|
645
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
646
|
+
PropertyCallbackInfo<v8::Array>
|
|
647
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
648
|
+
IndexEnumeratorCallback callback = reinterpret_cast<IndexEnumeratorCallback>(
|
|
649
|
+
reinterpret_cast<intptr_t>(
|
|
650
|
+
Nan::GetExternalValue(obj->GetInternalField(
|
|
651
|
+
kIndexPropertyEnumeratorIndex)
|
|
652
|
+
.As<v8::Value>().As<v8::External>())));
|
|
653
|
+
callback(cbinfo);
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
typedef void (*NativeIndexEnumerator)
|
|
657
|
+
(const v8::PropertyCallbackInfo<v8::Array> &);
|
|
658
|
+
|
|
659
|
+
#if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 12 || \
|
|
660
|
+
(V8_MAJOR_VERSION == 12 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION > 4))
|
|
661
|
+
static
|
|
662
|
+
v8::Intercepted IndexDeleterCallbackWrapper(
|
|
663
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
|
|
664
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
665
|
+
PropertyCallbackInfo<v8::Boolean>
|
|
666
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
667
|
+
IndexDeleterCallback callback = reinterpret_cast<IndexDeleterCallback>(
|
|
668
|
+
reinterpret_cast<intptr_t>(
|
|
669
|
+
Nan::GetExternalValue(obj->GetInternalField(
|
|
670
|
+
kIndexPropertyDeleterIndex)
|
|
671
|
+
.As<v8::Value>().As<v8::External>())));
|
|
672
|
+
return callback(index, cbinfo);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
typedef v8::Intercepted (*NativeIndexDeleter)
|
|
676
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Boolean> &);
|
|
677
|
+
|
|
678
|
+
static
|
|
679
|
+
v8::Intercepted IndexQueryCallbackWrapper(
|
|
680
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Integer> &info) {
|
|
681
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
682
|
+
PropertyCallbackInfo<v8::Integer>
|
|
683
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
684
|
+
IndexQueryCallback callback = reinterpret_cast<IndexQueryCallback>(
|
|
685
|
+
reinterpret_cast<intptr_t>(
|
|
686
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertyQueryIndex)
|
|
687
|
+
.As<v8::Value>().As<v8::External>())));
|
|
688
|
+
return callback(index, cbinfo);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
typedef v8::Intercepted (*NativeIndexQuery)
|
|
692
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Integer> &);
|
|
693
|
+
#else
|
|
694
|
+
static
|
|
695
|
+
void IndexDeleterCallbackWrapper(
|
|
696
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Boolean> &info) {
|
|
697
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
698
|
+
PropertyCallbackInfo<v8::Boolean>
|
|
699
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
700
|
+
IndexDeleterCallback callback = reinterpret_cast<IndexDeleterCallback>(
|
|
701
|
+
reinterpret_cast<intptr_t>(
|
|
702
|
+
Nan::GetExternalValue(obj->GetInternalField(
|
|
703
|
+
kIndexPropertyDeleterIndex)
|
|
704
|
+
.As<v8::Value>().As<v8::External>())));
|
|
705
|
+
callback(index, cbinfo);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
typedef void (*NativeIndexDeleter)
|
|
709
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Boolean> &);
|
|
710
|
+
|
|
711
|
+
static
|
|
712
|
+
void IndexQueryCallbackWrapper(
|
|
713
|
+
uint32_t index, const v8::PropertyCallbackInfo<v8::Integer> &info) {
|
|
714
|
+
v8::Local<v8::Object> obj = info.Data().As<v8::Object>();
|
|
715
|
+
PropertyCallbackInfo<v8::Integer>
|
|
716
|
+
cbinfo(info, obj->GetInternalField(kDataIndex).As<v8::Value>());
|
|
717
|
+
IndexQueryCallback callback = reinterpret_cast<IndexQueryCallback>(
|
|
718
|
+
reinterpret_cast<intptr_t>(
|
|
719
|
+
Nan::GetExternalValue(obj->GetInternalField(kIndexPropertyQueryIndex)
|
|
720
|
+
.As<v8::Value>().As<v8::External>())));
|
|
721
|
+
callback(index, cbinfo);
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
typedef void (*NativeIndexQuery)
|
|
725
|
+
(uint32_t, const v8::PropertyCallbackInfo<v8::Integer> &);
|
|
726
|
+
|
|
727
|
+
#endif
|
|
728
|
+
} // end of namespace imp
|
|
729
|
+
|
|
730
|
+
#endif // NAN_CALLBACKS_12_INL_H_
|