@walkhi/code-relax 0.1.0-beta.1
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 +83 -0
- package/dist/bin/codex-remote.mjs +262 -0
- package/dist/bin/self-relay-demo.mjs +33 -0
- package/dist/bin/self-relay-server.mjs +50 -0
- package/dist/get-lan-networks.ps1 +40 -0
- package/dist/get-shared-service-url.ps1 +6 -0
- package/dist/shared/app-server-events.cjs +266 -0
- package/dist/shared/p2p-diagnostics.cjs +28 -0
- package/dist/shared/server-requests.cjs +67 -0
- package/dist/shared/timeline-sync.cjs +67 -0
- package/dist/skills/code-relax/SKILL.md +17 -0
- package/dist/src/app-server-client.mjs +468 -0
- package/dist/src/app-server-tasks.mjs +355 -0
- package/dist/src/background-process.mjs +18 -0
- package/dist/src/debug-ui.mjs +131 -0
- package/dist/src/desktop-launcher.mjs +51 -0
- package/dist/src/execution-health.mjs +26 -0
- package/dist/src/lan-socket-server.mjs +103 -0
- package/dist/src/managed-app-server.mjs +207 -0
- package/dist/src/message-images.mjs +27 -0
- package/dist/src/onboarding.mjs +31 -0
- package/dist/src/platform/README.md +12 -0
- package/dist/src/platform/linux/README.md +3 -0
- package/dist/src/platform/macos/README.md +3 -0
- package/dist/src/platform/windows/IsolatedProcess.cs +75 -0
- package/dist/src/platform/windows/background-process.mjs +25 -0
- package/dist/src/platform/windows/credential-store.mjs +27 -0
- package/dist/src/platform/windows/credential-store.ps1 +49 -0
- package/dist/src/platform/windows/desktop-host.mjs +38 -0
- package/dist/src/platform/windows/desktop-info.ps1 +16 -0
- package/dist/src/platform/windows/desktop-monitor.mjs +34 -0
- package/dist/src/platform/windows/desktop-shortcut-run.ps1 +5 -0
- package/dist/src/platform/windows/desktop-shortcuts.ps1 +28 -0
- package/dist/src/platform/windows/desktop-tools.mjs +48 -0
- package/dist/src/platform/windows/launch-worker.ps1 +13 -0
- package/dist/src/platform/windows/network-info.mjs +34 -0
- package/dist/src/platform/windows/resident-start.ps1 +7 -0
- package/dist/src/platform/windows/resident-startup.ps1 +27 -0
- package/dist/src/platform/windows/resolve-state-root.ps1 +14 -0
- package/dist/src/platform/windows/runtime-paths.mjs +20 -0
- package/dist/src/platform/windows/service-host.mjs +43 -0
- package/dist/src/platform/windows/start-hidden-console.ps1 +39 -0
- package/dist/src/platform/windows/stop-desktop.ps1 +19 -0
- package/dist/src/platform/windows/user-environment.mjs +50 -0
- package/dist/src/platform/windows/user-environment.ps1 +41 -0
- package/dist/src/self-relay/client.mjs +59 -0
- package/dist/src/self-relay/connector.mjs +147 -0
- package/dist/src/self-relay/debug-allowlist.mjs +33 -0
- package/dist/src/self-relay/demo.mjs +38 -0
- package/dist/src/self-relay/device-store.mjs +84 -0
- package/dist/src/self-relay/lan-authorizations.mjs +29 -0
- package/dist/src/self-relay/lifecycle.mjs +281 -0
- package/dist/src/self-relay/p2p-probe.mjs +83 -0
- package/dist/src/self-relay/server.mjs +340 -0
- package/dist/src/self-relay/windows-route-helper.mjs +75 -0
- package/dist/src/self-relay/wire.mjs +36 -0
- package/dist/src/server.mjs +2086 -0
- package/dist/src/service-control.mjs +72 -0
- package/dist/src/service-doctor.mjs +63 -0
- package/dist/src/service-health.mjs +33 -0
- package/dist/src/service-install.mjs +91 -0
- package/dist/src/service-lifecycle.mjs +130 -0
- package/dist/src/service-restart.mjs +48 -0
- package/dist/src/shared-app-server.mjs +356 -0
- package/dist/src/shared-catalog.mjs +60 -0
- package/dist/src/shared-recovery.mjs +142 -0
- package/dist/src/shared-thread-stream.mjs +80 -0
- package/dist/src/skill-install.mjs +64 -0
- package/dist/src/thread-catalog.mjs +42 -0
- package/dist/src/thread-title-generation.mjs +150 -0
- package/dist/tools/find-desktop-pipe.mjs +10 -0
- package/dist/tools/rtc-route-helper.ps1 +99 -0
- package/dist/tools/start-rtc-route-helper.ps1 +15 -0
- package/dist/web/approval-ui.js +188 -0
- package/dist/web/capabilities.js +57 -0
- package/dist/web/chat-transport.js +196 -0
- package/dist/web/chat.css +736 -0
- package/dist/web/chat.js +5149 -0
- package/dist/web/client-platform.js +11 -0
- package/dist/web/harmony-platform.js +51 -0
- package/dist/web/highlight-powershell.min.js +39 -0
- package/dist/web/highlight.min.js +1262 -0
- package/dist/web/history-cache.js +146 -0
- package/dist/web/index.html +222 -0
- package/dist/web/lan-session.js +122 -0
- package/dist/web/p2p-diagnostics.js +28 -0
- package/dist/web/p2p-probe.js +83 -0
- package/dist/web/resources.json +1 -0
- package/dist/web/self-relay-session.js +119 -0
- package/dist/web/server-requests.js +67 -0
- package/dist/web/timeline-sync.js +67 -0
- package/dist/web/vendor/README.md +14 -0
- package/dist/web/vendor/highlight-powershell.min.js +39 -0
- package/dist/web/vendor/highlight.LICENSE.txt +29 -0
- package/dist/web/vendor/highlight.min.js +1262 -0
- package/dist/web/vendor/markdown-it.LICENSE.txt +22 -0
- package/dist/web/vendor/markdown-it.umd.min.js +14 -0
- package/node_modules/@img/colour/LICENSE.md +82 -0
- package/node_modules/@img/colour/README.md +15 -0
- package/node_modules/@img/colour/color.cjs +1596 -0
- package/node_modules/@img/colour/index.cjs +1 -0
- package/node_modules/@img/colour/index.d.ts +929 -0
- package/node_modules/@img/colour/package.json +58 -0
- package/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
- package/node_modules/@img/sharp-win32-x64/README.md +59 -0
- package/node_modules/@img/sharp-win32-x64/index.cjs +1 -0
- package/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
- package/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.18.6.dll +0 -0
- package/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64-0.35.4.node +0 -0
- package/node_modules/@img/sharp-win32-x64/package.json +40 -0
- package/node_modules/@img/sharp-win32-x64/versions.json +30 -0
- package/node_modules/@node-datachannel/win32-x64-msvc/node_datachannel.node +0 -0
- package/node_modules/@node-datachannel/win32-x64-msvc/package.json +20 -0
- package/node_modules/ansi-regex/index.d.ts +37 -0
- package/node_modules/ansi-regex/index.js +10 -0
- package/node_modules/ansi-regex/license +9 -0
- package/node_modules/ansi-regex/package.json +55 -0
- package/node_modules/ansi-regex/readme.md +78 -0
- package/node_modules/ansi-styles/index.d.ts +345 -0
- package/node_modules/ansi-styles/index.js +163 -0
- package/node_modules/ansi-styles/license +9 -0
- package/node_modules/ansi-styles/package.json +56 -0
- package/node_modules/ansi-styles/readme.md +152 -0
- package/node_modules/camelcase/index.d.ts +63 -0
- package/node_modules/camelcase/index.js +76 -0
- package/node_modules/camelcase/license +9 -0
- package/node_modules/camelcase/package.json +43 -0
- package/node_modules/camelcase/readme.md +99 -0
- package/node_modules/cliui/CHANGELOG.md +76 -0
- package/node_modules/cliui/LICENSE.txt +14 -0
- package/node_modules/cliui/README.md +115 -0
- package/node_modules/cliui/index.js +354 -0
- package/node_modules/cliui/package.json +65 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/color-convert/LICENSE +21 -0
- package/node_modules/color-convert/README.md +68 -0
- package/node_modules/color-convert/conversions.js +839 -0
- package/node_modules/color-convert/index.js +81 -0
- package/node_modules/color-convert/package.json +48 -0
- package/node_modules/color-convert/route.js +97 -0
- package/node_modules/color-name/LICENSE +8 -0
- package/node_modules/color-name/README.md +11 -0
- package/node_modules/color-name/index.js +152 -0
- package/node_modules/color-name/package.json +28 -0
- package/node_modules/decamelize/index.js +13 -0
- package/node_modules/decamelize/license +21 -0
- package/node_modules/decamelize/package.json +38 -0
- package/node_modules/decamelize/readme.md +48 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +163 -0
- package/node_modules/detect-libc/index.d.ts +14 -0
- package/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/node_modules/detect-libc/lib/elf.js +39 -0
- package/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/node_modules/detect-libc/lib/process.js +24 -0
- package/node_modules/detect-libc/package.json +44 -0
- package/node_modules/dijkstrajs/.travis.yml +4 -0
- package/node_modules/dijkstrajs/CONTRIBUTING.md +8 -0
- package/node_modules/dijkstrajs/LICENSE.md +19 -0
- package/node_modules/dijkstrajs/README.md +18 -0
- package/node_modules/dijkstrajs/dijkstra.js +165 -0
- package/node_modules/dijkstrajs/package.json +60 -0
- package/node_modules/dijkstrajs/test/dijkstra.test.js +96 -0
- package/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/node_modules/emoji-regex/README.md +73 -0
- package/node_modules/emoji-regex/es2015/index.js +6 -0
- package/node_modules/emoji-regex/es2015/text.js +6 -0
- package/node_modules/emoji-regex/index.d.ts +23 -0
- package/node_modules/emoji-regex/index.js +6 -0
- package/node_modules/emoji-regex/package.json +50 -0
- package/node_modules/emoji-regex/text.js +6 -0
- package/node_modules/find-up/index.d.ts +137 -0
- package/node_modules/find-up/index.js +89 -0
- package/node_modules/find-up/license +9 -0
- package/node_modules/find-up/package.json +53 -0
- package/node_modules/find-up/readme.md +156 -0
- package/node_modules/get-caller-file/LICENSE.md +6 -0
- package/node_modules/get-caller-file/README.md +41 -0
- package/node_modules/get-caller-file/index.d.ts +2 -0
- package/node_modules/get-caller-file/index.js +22 -0
- package/node_modules/get-caller-file/index.js.map +1 -0
- package/node_modules/get-caller-file/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/node_modules/is-fullwidth-code-point/license +9 -0
- package/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/node_modules/locate-path/index.d.ts +83 -0
- package/node_modules/locate-path/index.js +65 -0
- package/node_modules/locate-path/license +9 -0
- package/node_modules/locate-path/package.json +45 -0
- package/node_modules/locate-path/readme.md +122 -0
- package/node_modules/node-datachannel/.clang-format +17 -0
- package/node_modules/node-datachannel/.editorconfig +12 -0
- package/node_modules/node-datachannel/.eslintignore +8 -0
- package/node_modules/node-datachannel/.eslintrc.json +27 -0
- package/node_modules/node-datachannel/.gitmodules +3 -0
- package/node_modules/node-datachannel/.prettierignore +7 -0
- package/node_modules/node-datachannel/.prettierrc +13 -0
- package/node_modules/node-datachannel/API.md +247 -0
- package/node_modules/node-datachannel/BULDING.md +26 -0
- package/node_modules/node-datachannel/CMakeLists.txt +153 -0
- package/node_modules/node-datachannel/LICENSE +373 -0
- package/node_modules/node-datachannel/README.md +129 -0
- package/node_modules/node-datachannel/dist/cjs/index.cjs +11 -0
- package/node_modules/node-datachannel/dist/cjs/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs +101 -0
- package/node_modules/node-datachannel/dist/cjs/lib/datachannel-stream.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/index.cjs +91 -0
- package/node_modules/node-datachannel/dist/cjs/lib/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs +94 -0
- package/node_modules/node-datachannel/dist/cjs/lib/node-datachannel.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs +45 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket-server.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs +8 -0
- package/node_modules/node-datachannel/dist/cjs/lib/websocket.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs +86 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Events.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs +34 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/Exception.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs +34 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCCertificate.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs +214 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDataChannel.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs +53 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCDtlsTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs +83 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCError.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs +132 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceCandidate.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs +94 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCIceTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs +434 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCPeerConnection.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs +59 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSctpTransport.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs +45 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/RTCSessionDescription.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs +42 -0
- package/node_modules/node-datachannel/dist/cjs/polyfill/index.cjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/index.mjs +8 -0
- package/node_modules/node-datachannel/dist/esm/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs +78 -0
- package/node_modules/node-datachannel/dist/esm/lib/datachannel-stream.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/index.mjs +64 -0
- package/node_modules/node-datachannel/dist/esm/lib/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs +78 -0
- package/node_modules/node-datachannel/dist/esm/lib/node-datachannel.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs +43 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket-server.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs +6 -0
- package/node_modules/node-datachannel/dist/esm/lib/websocket.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs +82 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Events.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs +28 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/Exception.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs +30 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCCertificate.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs +210 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDataChannel.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs +49 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCDtlsTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs +79 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCError.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs +128 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceCandidate.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs +89 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCIceTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs +430 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCPeerConnection.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs +55 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSctpTransport.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs +41 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/RTCSessionDescription.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs +27 -0
- package/node_modules/node-datachannel/dist/esm/polyfill/index.mjs.map +1 -0
- package/node_modules/node-datachannel/dist/types/lib/datachannel-stream.d.ts +24 -0
- package/node_modules/node-datachannel/dist/types/lib/index.d.ts +241 -0
- package/node_modules/node-datachannel/dist/types/lib/types.d.ts +119 -0
- package/node_modules/node-datachannel/dist/types/lib/websocket-server.d.ts +13 -0
- package/node_modules/node-datachannel/dist/types/lib/websocket.d.ts +25 -0
- package/node_modules/node-datachannel/dist/types/polyfill/Events.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCCertificate.d.ts +9 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCDataChannel.d.ts +29 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCDtlsTransport.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCError.d.ts +17 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCIceCandidate.d.ts +21 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCIceTransport.d.ts +30 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCPeerConnection.d.ts +64 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCSctpTransport.d.ts +15 -0
- package/node_modules/node-datachannel/dist/types/polyfill/RTCSessionDescription.d.ts +10 -0
- package/node_modules/node-datachannel/dist/types/polyfill/index.d.ts +26 -0
- package/node_modules/node-datachannel/jest.config.ts +14 -0
- package/node_modules/node-datachannel/package.json +133 -0
- package/node_modules/node-datachannel/rollup.config.mjs +67 -0
- package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.cpp +530 -0
- package/node_modules/node-datachannel/src/cpp/data-channel-wrapper.h +63 -0
- package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.cpp +172 -0
- package/node_modules/node-datachannel/src/cpp/ice-udp-mux-listener-wrapper.h +43 -0
- package/node_modules/node-datachannel/src/cpp/main.cpp +58 -0
- package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.cpp +457 -0
- package/node_modules/node-datachannel/src/cpp/media-audio-wrapper.h +52 -0
- package/node_modules/node-datachannel/src/cpp/media-av1packetization.cpp +24 -0
- package/node_modules/node-datachannel/src/cpp/media-av1packetization.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-av1rtppacketizer-wrapper.h +29 -0
- package/node_modules/node-datachannel/src/cpp/media-direction.cpp +43 -0
- package/node_modules/node-datachannel/src/cpp/media-direction.h +10 -0
- package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-h264rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.cpp +126 -0
- package/node_modules/node-datachannel/src/cpp/media-h265rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-h26xseparator.cpp +32 -0
- package/node_modules/node-datachannel/src/cpp/media-h26xseparator.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.cpp +31 -0
- package/node_modules/node-datachannel/src/cpp/media-mediahandler-helper.h +11 -0
- package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.cpp +79 -0
- package/node_modules/node-datachannel/src/cpp/media-pacinghandler-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.cpp +68 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpnackresponder-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.cpp +57 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpreceivingsession-wrapper.h +28 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.cpp +93 -0
- package/node_modules/node-datachannel/src/cpp/media-rtcpsrreporter-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.cpp +167 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizationconfig-wrapper.h +35 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.cpp +95 -0
- package/node_modules/node-datachannel/src/cpp/media-rtppacketizer-wrapper.h +30 -0
- package/node_modules/node-datachannel/src/cpp/media-track-wrapper.cpp +458 -0
- package/node_modules/node-datachannel/src/cpp/media-track-wrapper.h +61 -0
- package/node_modules/node-datachannel/src/cpp/media-video-wrapper.cpp +526 -0
- package/node_modules/node-datachannel/src/cpp/media-video-wrapper.h +56 -0
- package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.cpp +1298 -0
- package/node_modules/node-datachannel/src/cpp/peer-connection-wrapper.h +89 -0
- package/node_modules/node-datachannel/src/cpp/rtc-wrapper.cpp +205 -0
- package/node_modules/node-datachannel/src/cpp/rtc-wrapper.h +24 -0
- package/node_modules/node-datachannel/src/cpp/thread-safe-callback.cpp +57 -0
- package/node_modules/node-datachannel/src/cpp/thread-safe-callback.h +47 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.cpp +275 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-server-wrapper.h +41 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.cpp +796 -0
- package/node_modules/node-datachannel/src/cpp/web-socket-wrapper.h +63 -0
- package/node_modules/node-datachannel/src/index.ts +9 -0
- package/node_modules/node-datachannel/src/lib/datachannel-stream.ts +100 -0
- package/node_modules/node-datachannel/src/lib/index.ts +290 -0
- package/node_modules/node-datachannel/src/lib/node-datachannel.ts +84 -0
- package/node_modules/node-datachannel/src/lib/types.ts +169 -0
- package/node_modules/node-datachannel/src/lib/websocket-server.ts +37 -0
- package/node_modules/node-datachannel/src/lib/websocket.ts +26 -0
- package/node_modules/node-datachannel/src/polyfill/Events.ts +82 -0
- package/node_modules/node-datachannel/src/polyfill/Exception.ts +37 -0
- package/node_modules/node-datachannel/src/polyfill/README.md +41 -0
- package/node_modules/node-datachannel/src/polyfill/RTCCertificate.ts +21 -0
- package/node_modules/node-datachannel/src/polyfill/RTCDataChannel.ts +225 -0
- package/node_modules/node-datachannel/src/polyfill/RTCDtlsTransport.ts +46 -0
- package/node_modules/node-datachannel/src/polyfill/RTCError.ts +78 -0
- package/node_modules/node-datachannel/src/polyfill/RTCIceCandidate.ts +128 -0
- package/node_modules/node-datachannel/src/polyfill/RTCIceTransport.ts +90 -0
- package/node_modules/node-datachannel/src/polyfill/RTCPeerConnection.ts +527 -0
- package/node_modules/node-datachannel/src/polyfill/RTCSctpTransport.ts +51 -0
- package/node_modules/node-datachannel/src/polyfill/RTCSessionDescription.ts +41 -0
- package/node_modules/node-datachannel/src/polyfill/index.ts +38 -0
- package/node_modules/node-datachannel/tsconfig.json +21 -0
- package/node_modules/p-limit/index.d.ts +38 -0
- package/node_modules/p-limit/index.js +57 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +52 -0
- package/node_modules/p-limit/readme.md +101 -0
- package/node_modules/p-locate/index.d.ts +64 -0
- package/node_modules/p-locate/index.js +52 -0
- package/node_modules/p-locate/license +9 -0
- package/node_modules/p-locate/package.json +53 -0
- package/node_modules/p-locate/readme.md +90 -0
- package/node_modules/p-try/index.d.ts +39 -0
- package/node_modules/p-try/index.js +9 -0
- package/node_modules/p-try/license +9 -0
- package/node_modules/p-try/package.json +42 -0
- package/node_modules/p-try/readme.md +58 -0
- package/node_modules/path-exists/index.d.ts +28 -0
- package/node_modules/path-exists/index.js +23 -0
- package/node_modules/path-exists/license +9 -0
- package/node_modules/path-exists/package.json +39 -0
- package/node_modules/path-exists/readme.md +52 -0
- package/node_modules/pngjs/.eslintignore +2 -0
- package/node_modules/pngjs/.eslintrc.json +19 -0
- package/node_modules/pngjs/.prettierignore +3 -0
- package/node_modules/pngjs/LICENSE +20 -0
- package/node_modules/pngjs/README.md +429 -0
- package/node_modules/pngjs/browser.js +16096 -0
- package/node_modules/pngjs/coverage/lcov-report/base.css +354 -0
- package/node_modules/pngjs/coverage/lcov-report/bitmapper.js.html +881 -0
- package/node_modules/pngjs/coverage/lcov-report/bitpacker.js.html +554 -0
- package/node_modules/pngjs/coverage/lcov-report/block-navigation.js +77 -0
- package/node_modules/pngjs/coverage/lcov-report/chunkstream.js.html +647 -0
- package/node_modules/pngjs/coverage/lcov-report/constants.js.html +176 -0
- package/node_modules/pngjs/coverage/lcov-report/crc.js.html +200 -0
- package/node_modules/pngjs/coverage/lcov-report/favicon.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-pack.js.html +593 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-async.js.html +152 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse-sync.js.html +143 -0
- package/node_modules/pngjs/coverage/lcov-report/filter-parse.js.html +611 -0
- package/node_modules/pngjs/coverage/lcov-report/format-normaliser.js.html +359 -0
- package/node_modules/pngjs/coverage/lcov-report/index.html +426 -0
- package/node_modules/pngjs/coverage/lcov-report/interlace.js.html +365 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-async.js.html +230 -0
- package/node_modules/pngjs/coverage/lcov-report/packer-sync.js.html +248 -0
- package/node_modules/pngjs/coverage/lcov-report/packer.js.html +467 -0
- package/node_modules/pngjs/coverage/lcov-report/paeth-predictor.js.html +128 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-async.js.html +575 -0
- package/node_modules/pngjs/coverage/lcov-report/parser-sync.js.html +404 -0
- package/node_modules/pngjs/coverage/lcov-report/parser.js.html +950 -0
- package/node_modules/pngjs/coverage/lcov-report/png-sync.js.html +116 -0
- package/node_modules/pngjs/coverage/lcov-report/png.js.html +662 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.css +101 -0
- package/node_modules/pngjs/coverage/lcov-report/prettify.js +1007 -0
- package/node_modules/pngjs/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/node_modules/pngjs/coverage/lcov-report/sorter.js +169 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-inflate.js.html +584 -0
- package/node_modules/pngjs/coverage/lcov-report/sync-reader.js.html +215 -0
- package/node_modules/pngjs/coverage/lcov.info +2177 -0
- package/node_modules/pngjs/lib/bitmapper.js +267 -0
- package/node_modules/pngjs/lib/bitpacker.js +158 -0
- package/node_modules/pngjs/lib/chunkstream.js +189 -0
- package/node_modules/pngjs/lib/constants.js +32 -0
- package/node_modules/pngjs/lib/crc.js +40 -0
- package/node_modules/pngjs/lib/filter-pack.js +171 -0
- package/node_modules/pngjs/lib/filter-parse-async.js +24 -0
- package/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
- package/node_modules/pngjs/lib/filter-parse.js +177 -0
- package/node_modules/pngjs/lib/format-normaliser.js +93 -0
- package/node_modules/pngjs/lib/interlace.js +95 -0
- package/node_modules/pngjs/lib/packer-async.js +50 -0
- package/node_modules/pngjs/lib/packer-sync.js +56 -0
- package/node_modules/pngjs/lib/packer.js +129 -0
- package/node_modules/pngjs/lib/paeth-predictor.js +16 -0
- package/node_modules/pngjs/lib/parser-async.js +165 -0
- package/node_modules/pngjs/lib/parser-sync.js +108 -0
- package/node_modules/pngjs/lib/parser.js +290 -0
- package/node_modules/pngjs/lib/png-sync.js +12 -0
- package/node_modules/pngjs/lib/png.js +194 -0
- package/node_modules/pngjs/lib/sync-inflate.js +168 -0
- package/node_modules/pngjs/lib/sync-reader.js +45 -0
- package/node_modules/pngjs/package.json +73 -0
- package/node_modules/qrcode/README.md +770 -0
- package/node_modules/qrcode/bin/qrcode +159 -0
- package/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
- package/node_modules/qrcode/helper/to-sjis.js +105 -0
- package/node_modules/qrcode/lib/browser.js +76 -0
- package/node_modules/qrcode/lib/can-promise.js +7 -0
- package/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
- package/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
- package/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
- package/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
- package/node_modules/qrcode/lib/core/byte-data.js +30 -0
- package/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
- package/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
- package/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
- package/node_modules/qrcode/lib/core/format-info.js +29 -0
- package/node_modules/qrcode/lib/core/galois-field.js +69 -0
- package/node_modules/qrcode/lib/core/kanji-data.js +54 -0
- package/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
- package/node_modules/qrcode/lib/core/mode.js +167 -0
- package/node_modules/qrcode/lib/core/numeric-data.js +43 -0
- package/node_modules/qrcode/lib/core/polynomial.js +62 -0
- package/node_modules/qrcode/lib/core/qrcode.js +495 -0
- package/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
- package/node_modules/qrcode/lib/core/regex.js +31 -0
- package/node_modules/qrcode/lib/core/segments.js +330 -0
- package/node_modules/qrcode/lib/core/utils.js +63 -0
- package/node_modules/qrcode/lib/core/version-check.js +9 -0
- package/node_modules/qrcode/lib/core/version.js +163 -0
- package/node_modules/qrcode/lib/index.js +12 -0
- package/node_modules/qrcode/lib/renderer/canvas.js +63 -0
- package/node_modules/qrcode/lib/renderer/png.js +78 -0
- package/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
- package/node_modules/qrcode/lib/renderer/svg.js +19 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
- package/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
- package/node_modules/qrcode/lib/renderer/terminal.js +9 -0
- package/node_modules/qrcode/lib/renderer/utf8.js +71 -0
- package/node_modules/qrcode/lib/renderer/utils.js +99 -0
- package/node_modules/qrcode/lib/server.js +138 -0
- package/node_modules/qrcode/license +10 -0
- package/node_modules/qrcode/package.json +77 -0
- package/node_modules/require-directory/.jshintrc +67 -0
- package/node_modules/require-directory/.npmignore +1 -0
- package/node_modules/require-directory/.travis.yml +3 -0
- package/node_modules/require-directory/LICENSE +22 -0
- package/node_modules/require-directory/README.markdown +184 -0
- package/node_modules/require-directory/index.js +86 -0
- package/node_modules/require-directory/package.json +40 -0
- package/node_modules/require-main-filename/CHANGELOG.md +26 -0
- package/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/node_modules/require-main-filename/README.md +26 -0
- package/node_modules/require-main-filename/index.js +18 -0
- package/node_modules/require-main-filename/package.json +35 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +680 -0
- package/node_modules/semver/bin/semver.js +195 -0
- package/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/semver/classes/index.js +7 -0
- package/node_modules/semver/classes/range.js +577 -0
- package/node_modules/semver/classes/semver.js +350 -0
- package/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/semver/functions/major.js +5 -0
- package/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/semver/index.js +93 -0
- package/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/semver/internal/re.js +223 -0
- package/node_modules/semver/package.json +78 -0
- package/node_modules/semver/preload.js +4 -0
- package/node_modules/semver/range.bnf +17 -0
- package/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/node_modules/set-blocking/LICENSE.txt +14 -0
- package/node_modules/set-blocking/README.md +31 -0
- package/node_modules/set-blocking/index.js +7 -0
- package/node_modules/set-blocking/package.json +42 -0
- package/node_modules/sharp/LICENSE +191 -0
- package/node_modules/sharp/README.md +112 -0
- package/node_modules/sharp/dist/channel.cjs +177 -0
- package/node_modules/sharp/dist/channel.mjs +177 -0
- package/node_modules/sharp/dist/colour.cjs +199 -0
- package/node_modules/sharp/dist/colour.mjs +199 -0
- package/node_modules/sharp/dist/composite.cjs +213 -0
- package/node_modules/sharp/dist/composite.mjs +213 -0
- package/node_modules/sharp/dist/constructor.cjs +511 -0
- package/node_modules/sharp/dist/constructor.mjs +511 -0
- package/node_modules/sharp/dist/index.cjs +25 -0
- package/node_modules/sharp/dist/index.d.cts +1999 -0
- package/node_modules/sharp/dist/index.d.mts +2046 -0
- package/node_modules/sharp/dist/index.mjs +25 -0
- package/node_modules/sharp/dist/input.cjs +819 -0
- package/node_modules/sharp/dist/input.mjs +819 -0
- package/node_modules/sharp/dist/is.cjs +143 -0
- package/node_modules/sharp/dist/is.mjs +143 -0
- package/node_modules/sharp/dist/libvips.cjs +212 -0
- package/node_modules/sharp/dist/libvips.mjs +212 -0
- package/node_modules/sharp/dist/operation.cjs +1002 -0
- package/node_modules/sharp/dist/operation.mjs +1002 -0
- package/node_modules/sharp/dist/output.cjs +1785 -0
- package/node_modules/sharp/dist/output.mjs +1785 -0
- package/node_modules/sharp/dist/resize.cjs +617 -0
- package/node_modules/sharp/dist/resize.mjs +617 -0
- package/node_modules/sharp/dist/sharp.cjs +174 -0
- package/node_modules/sharp/dist/sharp.mjs +174 -0
- package/node_modules/sharp/dist/utility.cjs +301 -0
- package/node_modules/sharp/dist/utility.mjs +301 -0
- package/node_modules/sharp/install/build.js +38 -0
- package/node_modules/sharp/lib/index.d.ts +1999 -0
- package/node_modules/sharp/package.json +227 -0
- package/node_modules/sharp/src/binding.gyp +303 -0
- package/node_modules/sharp/src/common.cc +1186 -0
- package/node_modules/sharp/src/common.h +421 -0
- package/node_modules/sharp/src/metadata.cc +404 -0
- package/node_modules/sharp/src/metadata.h +95 -0
- package/node_modules/sharp/src/operations.cc +516 -0
- package/node_modules/sharp/src/operations.h +137 -0
- package/node_modules/sharp/src/pipeline.cc +1948 -0
- package/node_modules/sharp/src/pipeline.h +422 -0
- package/node_modules/sharp/src/sharp.cc +43 -0
- package/node_modules/sharp/src/stats.cc +186 -0
- package/node_modules/sharp/src/stats.h +62 -0
- package/node_modules/sharp/src/utilities.cc +289 -0
- package/node_modules/sharp/src/utilities.h +22 -0
- package/node_modules/string-width/index.d.ts +29 -0
- package/node_modules/string-width/index.js +47 -0
- package/node_modules/string-width/license +9 -0
- package/node_modules/string-width/package.json +56 -0
- package/node_modules/string-width/readme.md +50 -0
- package/node_modules/strip-ansi/index.d.ts +17 -0
- package/node_modules/strip-ansi/index.js +4 -0
- package/node_modules/strip-ansi/license +9 -0
- package/node_modules/strip-ansi/package.json +54 -0
- package/node_modules/strip-ansi/readme.md +46 -0
- package/node_modules/which-module/LICENSE +13 -0
- package/node_modules/which-module/README.md +58 -0
- package/node_modules/which-module/index.js +9 -0
- package/node_modules/which-module/package.json +41 -0
- package/node_modules/wrap-ansi/index.js +186 -0
- package/node_modules/wrap-ansi/license +9 -0
- package/node_modules/wrap-ansi/package.json +61 -0
- package/node_modules/wrap-ansi/readme.md +97 -0
- package/node_modules/ws/LICENSE +20 -0
- package/node_modules/ws/README.md +548 -0
- package/node_modules/ws/browser.js +8 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/ws/lib/permessage-deflate.js +530 -0
- package/node_modules/ws/lib/receiver.js +743 -0
- package/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/ws/package.json +74 -0
- package/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/y18n/CHANGELOG.md +35 -0
- package/node_modules/y18n/LICENSE +13 -0
- package/node_modules/y18n/README.md +109 -0
- package/node_modules/y18n/index.js +188 -0
- package/node_modules/y18n/package.json +39 -0
- package/node_modules/yargs/CHANGELOG.md +420 -0
- package/node_modules/yargs/LICENSE +21 -0
- package/node_modules/yargs/README.md +140 -0
- package/node_modules/yargs/build/lib/apply-extends.d.ts +2 -0
- package/node_modules/yargs/build/lib/apply-extends.js +65 -0
- package/node_modules/yargs/build/lib/argsert.d.ts +2 -0
- package/node_modules/yargs/build/lib/argsert.js +65 -0
- package/node_modules/yargs/build/lib/command.d.ts +64 -0
- package/node_modules/yargs/build/lib/command.js +416 -0
- package/node_modules/yargs/build/lib/common-types.d.ts +36 -0
- package/node_modules/yargs/build/lib/common-types.js +25 -0
- package/node_modules/yargs/build/lib/completion-templates.d.ts +2 -0
- package/node_modules/yargs/build/lib/completion-templates.js +50 -0
- package/node_modules/yargs/build/lib/completion.d.ts +21 -0
- package/node_modules/yargs/build/lib/completion.js +135 -0
- package/node_modules/yargs/build/lib/is-promise.d.ts +1 -0
- package/node_modules/yargs/build/lib/is-promise.js +9 -0
- package/node_modules/yargs/build/lib/levenshtein.d.ts +1 -0
- package/node_modules/yargs/build/lib/levenshtein.js +58 -0
- package/node_modules/yargs/build/lib/middleware.d.ts +10 -0
- package/node_modules/yargs/build/lib/middleware.js +57 -0
- package/node_modules/yargs/build/lib/obj-filter.d.ts +1 -0
- package/node_modules/yargs/build/lib/obj-filter.js +14 -0
- package/node_modules/yargs/build/lib/parse-command.d.ts +11 -0
- package/node_modules/yargs/build/lib/parse-command.js +36 -0
- package/node_modules/yargs/build/lib/process-argv.d.ts +2 -0
- package/node_modules/yargs/build/lib/process-argv.js +31 -0
- package/node_modules/yargs/build/lib/usage.d.ts +49 -0
- package/node_modules/yargs/build/lib/usage.js +540 -0
- package/node_modules/yargs/build/lib/validation.d.ts +34 -0
- package/node_modules/yargs/build/lib/validation.js +330 -0
- package/node_modules/yargs/build/lib/yargs.d.ts +274 -0
- package/node_modules/yargs/build/lib/yargs.js +1190 -0
- package/node_modules/yargs/build/lib/yerror.d.ts +4 -0
- package/node_modules/yargs/build/lib/yerror.js +11 -0
- package/node_modules/yargs/index.js +40 -0
- package/node_modules/yargs/locales/be.json +46 -0
- package/node_modules/yargs/locales/de.json +46 -0
- package/node_modules/yargs/locales/en.json +51 -0
- package/node_modules/yargs/locales/es.json +46 -0
- package/node_modules/yargs/locales/fi.json +49 -0
- package/node_modules/yargs/locales/fr.json +53 -0
- package/node_modules/yargs/locales/hi.json +49 -0
- package/node_modules/yargs/locales/hu.json +46 -0
- package/node_modules/yargs/locales/id.json +50 -0
- package/node_modules/yargs/locales/it.json +46 -0
- package/node_modules/yargs/locales/ja.json +51 -0
- package/node_modules/yargs/locales/ko.json +49 -0
- package/node_modules/yargs/locales/nb.json +44 -0
- package/node_modules/yargs/locales/nl.json +49 -0
- package/node_modules/yargs/locales/nn.json +44 -0
- package/node_modules/yargs/locales/pirate.json +13 -0
- package/node_modules/yargs/locales/pl.json +49 -0
- package/node_modules/yargs/locales/pt.json +45 -0
- package/node_modules/yargs/locales/pt_BR.json +48 -0
- package/node_modules/yargs/locales/ru.json +46 -0
- package/node_modules/yargs/locales/th.json +46 -0
- package/node_modules/yargs/locales/tr.json +48 -0
- package/node_modules/yargs/locales/zh_CN.json +48 -0
- package/node_modules/yargs/locales/zh_TW.json +47 -0
- package/node_modules/yargs/package.json +92 -0
- package/node_modules/yargs/yargs.js +14 -0
- package/node_modules/yargs-parser/CHANGELOG.md +601 -0
- package/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/node_modules/yargs-parser/README.md +449 -0
- package/node_modules/yargs-parser/index.js +1032 -0
- package/node_modules/yargs-parser/lib/tokenize-arg-string.js +40 -0
- package/node_modules/yargs-parser/package.json +46 -0
- package/package.json +50 -0
- package/tools/postinstall.mjs +9 -0
|
@@ -0,0 +1,527 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import { DataChannelInitConfig, SelectedCandidateInfo } from '../lib/types';
|
|
3
|
+
import { PeerConnection } from '../lib/index';
|
|
4
|
+
import RTCSessionDescription from './RTCSessionDescription';
|
|
5
|
+
import RTCDataChannel from './RTCDataChannel';
|
|
6
|
+
import RTCIceCandidate from './RTCIceCandidate';
|
|
7
|
+
import { RTCDataChannelEvent, RTCPeerConnectionIceEvent } from './Events';
|
|
8
|
+
import RTCSctpTransport from './RTCSctpTransport';
|
|
9
|
+
import * as exceptions from './Exception';
|
|
10
|
+
import RTCCertificate from './RTCCertificate';
|
|
11
|
+
|
|
12
|
+
// extend RTCConfiguration with peerIdentity
|
|
13
|
+
interface RTCConfiguration extends globalThis.RTCConfiguration {
|
|
14
|
+
peerIdentity?: string;
|
|
15
|
+
peerConnection?: PeerConnection;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default class RTCPeerConnection extends EventTarget implements globalThis.RTCPeerConnection {
|
|
19
|
+
static async generateCertificate(): Promise<RTCCertificate> {
|
|
20
|
+
throw new DOMException('Not implemented');
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#peerConnection: PeerConnection;
|
|
24
|
+
#localOffer: ReturnType<typeof createDeferredPromise>;
|
|
25
|
+
#localAnswer: ReturnType<typeof createDeferredPromise>;
|
|
26
|
+
#dataChannels: Set<globalThis.RTCDataChannel>;
|
|
27
|
+
#dataChannelsClosed = 0;
|
|
28
|
+
#config: globalThis.RTCConfiguration;
|
|
29
|
+
#canTrickleIceCandidates: boolean | null = null;
|
|
30
|
+
#sctp: globalThis.RTCSctpTransport;
|
|
31
|
+
#announceNegotiation = false;
|
|
32
|
+
|
|
33
|
+
#localCandidates: globalThis.RTCIceCandidate[] = [];
|
|
34
|
+
#remoteCandidates: globalThis.RTCIceCandidate[] = [];
|
|
35
|
+
|
|
36
|
+
// events
|
|
37
|
+
onconnectionstatechange: globalThis.RTCPeerConnection['onconnectionstatechange'] = null;
|
|
38
|
+
// For ondatachannel we need to define type manually
|
|
39
|
+
ondatachannel: ((this: globalThis.RTCPeerConnection, ev: RTCDataChannelEvent) => any) | null;
|
|
40
|
+
onicecandidate: globalThis.RTCPeerConnection['onicecandidate'] = null;
|
|
41
|
+
onicecandidateerror: globalThis.RTCPeerConnection['onicecandidateerror'] = null;
|
|
42
|
+
oniceconnectionstatechange: globalThis.RTCPeerConnection['oniceconnectionstatechange'] = null;
|
|
43
|
+
onicegatheringstatechange: globalThis.RTCPeerConnection['onicegatheringstatechange'] = null;
|
|
44
|
+
onnegotiationneeded: globalThis.RTCPeerConnection['onnegotiationneeded'] = null;
|
|
45
|
+
onsignalingstatechange: globalThis.RTCPeerConnection['onsignalingstatechange'] = null;
|
|
46
|
+
ontrack: globalThis.RTCPeerConnection['ontrack'] = null;
|
|
47
|
+
|
|
48
|
+
private _checkConfiguration(config: globalThis.RTCConfiguration): void {
|
|
49
|
+
if (config && config.iceServers === undefined) config.iceServers = [];
|
|
50
|
+
if (config && config.iceTransportPolicy === undefined) config.iceTransportPolicy = 'all';
|
|
51
|
+
|
|
52
|
+
if (config?.iceServers === null) throw new TypeError('IceServers cannot be null');
|
|
53
|
+
|
|
54
|
+
// Check for all the properties of iceServers
|
|
55
|
+
if (Array.isArray(config?.iceServers)) {
|
|
56
|
+
for (let i = 0; i < config.iceServers.length; i++) {
|
|
57
|
+
if (config.iceServers[i] === null) throw new TypeError('IceServers cannot be null');
|
|
58
|
+
if (config.iceServers[i] === undefined)
|
|
59
|
+
throw new TypeError('IceServers cannot be undefined');
|
|
60
|
+
if (Object.keys(config.iceServers[i]).length === 0)
|
|
61
|
+
throw new TypeError('IceServers cannot be empty');
|
|
62
|
+
|
|
63
|
+
// If iceServers is string convert to array
|
|
64
|
+
if (typeof config.iceServers[i].urls === 'string')
|
|
65
|
+
config.iceServers[i].urls = [config.iceServers[i].urls as string];
|
|
66
|
+
|
|
67
|
+
// urls can not be empty
|
|
68
|
+
if ((config.iceServers[i].urls as string[])?.some((url) => url == ''))
|
|
69
|
+
throw new exceptions.SyntaxError('IceServers urls cannot be empty');
|
|
70
|
+
|
|
71
|
+
// urls should be valid URLs and match the protocols "stun:|turn:|turns:"
|
|
72
|
+
if (
|
|
73
|
+
(config.iceServers[i].urls as string[])?.some((url) => {
|
|
74
|
+
try {
|
|
75
|
+
const parsedURL = new URL(url);
|
|
76
|
+
|
|
77
|
+
return !/^(stun:|turn:|turns:)$/.test(parsedURL.protocol);
|
|
78
|
+
} catch (error) {
|
|
79
|
+
return true;
|
|
80
|
+
}
|
|
81
|
+
})
|
|
82
|
+
)
|
|
83
|
+
throw new exceptions.SyntaxError('IceServers urls wrong format');
|
|
84
|
+
|
|
85
|
+
// If this is a turn server check for username and credential
|
|
86
|
+
if ((config.iceServers[i].urls as string[])?.some((url) => url.startsWith('turn'))) {
|
|
87
|
+
if (!config.iceServers[i].username)
|
|
88
|
+
throw new exceptions.InvalidAccessError('IceServers username cannot be null');
|
|
89
|
+
if (!config.iceServers[i].credential)
|
|
90
|
+
throw new exceptions.InvalidAccessError('IceServers username cannot be undefined');
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// length of urls can not be 0
|
|
94
|
+
if (config.iceServers[i].urls?.length === 0)
|
|
95
|
+
throw new exceptions.SyntaxError('IceServers urls cannot be empty');
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (
|
|
100
|
+
config &&
|
|
101
|
+
config.iceTransportPolicy &&
|
|
102
|
+
config.iceTransportPolicy !== 'all' &&
|
|
103
|
+
config.iceTransportPolicy !== 'relay'
|
|
104
|
+
)
|
|
105
|
+
throw new TypeError('IceTransportPolicy must be either "all" or "relay"');
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
setConfiguration(config: globalThis.RTCConfiguration): void {
|
|
109
|
+
this._checkConfiguration(config);
|
|
110
|
+
this.#config = config;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
constructor(config: RTCConfiguration = { iceServers: [], iceTransportPolicy: 'all' }) {
|
|
114
|
+
super();
|
|
115
|
+
|
|
116
|
+
this._checkConfiguration(config);
|
|
117
|
+
this.#config = config;
|
|
118
|
+
this.#localOffer = createDeferredPromise();
|
|
119
|
+
this.#localAnswer = createDeferredPromise();
|
|
120
|
+
this.#dataChannels = new Set();
|
|
121
|
+
this.#canTrickleIceCandidates = null;
|
|
122
|
+
|
|
123
|
+
try {
|
|
124
|
+
const peerIdentity = (config as any)?.peerIdentity ?? `peer-${getRandomString(7)}`;
|
|
125
|
+
this.#peerConnection =
|
|
126
|
+
config?.peerConnection ??
|
|
127
|
+
new PeerConnection(peerIdentity, {
|
|
128
|
+
...config,
|
|
129
|
+
iceServers:
|
|
130
|
+
config?.iceServers
|
|
131
|
+
?.map((server) => {
|
|
132
|
+
const urls = Array.isArray(server.urls) ? server.urls : [server.urls];
|
|
133
|
+
|
|
134
|
+
return urls.map((url) => {
|
|
135
|
+
if (server.username && server.credential) {
|
|
136
|
+
const [protocol, rest] = url.split(/:(.*)/);
|
|
137
|
+
return `${protocol}:${server.username}:${server.credential}@${rest}`;
|
|
138
|
+
}
|
|
139
|
+
return url;
|
|
140
|
+
});
|
|
141
|
+
})
|
|
142
|
+
.flat() ?? [],
|
|
143
|
+
});
|
|
144
|
+
} catch (error) {
|
|
145
|
+
if (!error || !error.message) throw new exceptions.NotFoundError('Unknown error');
|
|
146
|
+
throw new exceptions.SyntaxError(error.message);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// forward peerConnection events
|
|
150
|
+
this.#peerConnection.onStateChange(() => {
|
|
151
|
+
this.dispatchEvent(new Event('connectionstatechange'));
|
|
152
|
+
});
|
|
153
|
+
|
|
154
|
+
this.#peerConnection.onIceStateChange(() => {
|
|
155
|
+
this.dispatchEvent(new Event('iceconnectionstatechange'));
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
this.#peerConnection.onSignalingStateChange(() => {
|
|
159
|
+
this.dispatchEvent(new Event('signalingstatechange'));
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
this.#peerConnection.onGatheringStateChange(() => {
|
|
163
|
+
this.dispatchEvent(new Event('icegatheringstatechange'));
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
this.#peerConnection.onDataChannel((channel) => {
|
|
167
|
+
const dc = new RTCDataChannel(channel);
|
|
168
|
+
this.#dataChannels.add(dc);
|
|
169
|
+
this.dispatchEvent(new RTCDataChannelEvent('datachannel', { channel: dc }));
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
this.#peerConnection.onLocalDescription((sdp, type) => {
|
|
173
|
+
if (type === 'offer') {
|
|
174
|
+
this.#localOffer.resolve(new RTCSessionDescription({ sdp, type }));
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
if (type === 'answer') {
|
|
178
|
+
this.#localAnswer.resolve(new RTCSessionDescription({ sdp, type }));
|
|
179
|
+
}
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
this.#peerConnection.onLocalCandidate((candidate, sdpMid) => {
|
|
183
|
+
if (sdpMid === 'unspec') {
|
|
184
|
+
this.#localAnswer.reject(new Error(`Invalid description type ${sdpMid}`));
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
this.#localCandidates.push(new RTCIceCandidate({ candidate, sdpMid }));
|
|
189
|
+
this.dispatchEvent(new RTCPeerConnectionIceEvent(new RTCIceCandidate({ candidate, sdpMid })));
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
// forward events to properties
|
|
193
|
+
this.addEventListener('connectionstatechange', (e) => {
|
|
194
|
+
this.onconnectionstatechange?.(e);
|
|
195
|
+
});
|
|
196
|
+
this.addEventListener('signalingstatechange', (e) => {
|
|
197
|
+
this.onsignalingstatechange?.(e);
|
|
198
|
+
});
|
|
199
|
+
this.addEventListener('iceconnectionstatechange', (e) => {
|
|
200
|
+
this.oniceconnectionstatechange?.(e);
|
|
201
|
+
});
|
|
202
|
+
this.addEventListener('icegatheringstatechange', (e) => {
|
|
203
|
+
this.onicegatheringstatechange?.(e);
|
|
204
|
+
});
|
|
205
|
+
this.addEventListener('datachannel', (e) => {
|
|
206
|
+
this.ondatachannel?.(e as RTCDataChannelEvent);
|
|
207
|
+
});
|
|
208
|
+
this.addEventListener('icecandidate', (e) => {
|
|
209
|
+
this.onicecandidate?.(e as globalThis.RTCPeerConnectionIceEvent);
|
|
210
|
+
});
|
|
211
|
+
this.addEventListener('track', (e) => {
|
|
212
|
+
this.ontrack?.(e as RTCTrackEvent);
|
|
213
|
+
});
|
|
214
|
+
this.addEventListener('negotiationneeded', (e) => {
|
|
215
|
+
this.#announceNegotiation = true;
|
|
216
|
+
this.onnegotiationneeded?.(e);
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
this.#sctp = new RTCSctpTransport({
|
|
220
|
+
pc: this,
|
|
221
|
+
});
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// Extra FUnctions
|
|
225
|
+
get ext_maxDataChannelId(): number {
|
|
226
|
+
return this.#peerConnection.maxDataChannelId();
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
get ext_maxMessageSize(): number {
|
|
230
|
+
return this.#peerConnection.maxMessageSize();
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
get ext_localCandidates(): globalThis.RTCIceCandidate[] {
|
|
234
|
+
return this.#localCandidates;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
get ext_remoteCandidates(): globalThis.RTCIceCandidate[] {
|
|
238
|
+
return this.#remoteCandidates;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
selectedCandidatePair(): {
|
|
242
|
+
local: SelectedCandidateInfo;
|
|
243
|
+
remote: SelectedCandidateInfo;
|
|
244
|
+
} | null {
|
|
245
|
+
return this.#peerConnection.getSelectedCandidatePair();
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
get canTrickleIceCandidates(): boolean | null {
|
|
249
|
+
return this.#canTrickleIceCandidates;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
get connectionState(): globalThis.RTCPeerConnectionState {
|
|
253
|
+
return this.#peerConnection.state();
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
get iceConnectionState(): globalThis.RTCIceConnectionState {
|
|
257
|
+
let state = this.#peerConnection.iceState();
|
|
258
|
+
// libdatachannel uses 'completed' instead of 'connected'
|
|
259
|
+
// see /webrtc/getstats.html
|
|
260
|
+
if (state == 'completed') state = 'connected';
|
|
261
|
+
return state;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
get iceGatheringState(): globalThis.RTCIceGatheringState {
|
|
265
|
+
return this.#peerConnection.gatheringState();
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
get currentLocalDescription(): globalThis.RTCSessionDescription {
|
|
269
|
+
return new RTCSessionDescription(this.#peerConnection.localDescription() as any);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
get currentRemoteDescription(): globalThis.RTCSessionDescription {
|
|
273
|
+
return new RTCSessionDescription(this.#peerConnection.remoteDescription() as any);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
get localDescription(): globalThis.RTCSessionDescription {
|
|
277
|
+
return new RTCSessionDescription(this.#peerConnection.localDescription() as any);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
get pendingLocalDescription(): globalThis.RTCSessionDescription {
|
|
281
|
+
return new RTCSessionDescription(this.#peerConnection.localDescription() as any);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
get pendingRemoteDescription(): globalThis.RTCSessionDescription {
|
|
285
|
+
return new RTCSessionDescription(this.#peerConnection.remoteDescription() as any);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
get remoteDescription(): globalThis.RTCSessionDescription {
|
|
289
|
+
return new RTCSessionDescription(this.#peerConnection.remoteDescription() as any);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
get sctp(): globalThis.RTCSctpTransport {
|
|
293
|
+
return this.#sctp;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
get signalingState(): globalThis.RTCSignalingState {
|
|
297
|
+
return this.#peerConnection.signalingState();
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
async addIceCandidate(candidate?: globalThis.RTCIceCandidateInit | null): Promise<void> {
|
|
301
|
+
if (!candidate || !candidate.candidate) {
|
|
302
|
+
return;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
if (candidate.sdpMid === null && candidate.sdpMLineIndex === null) {
|
|
306
|
+
throw new TypeError('sdpMid must be set');
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
if (candidate.sdpMid === undefined && candidate.sdpMLineIndex == undefined) {
|
|
310
|
+
throw new TypeError('sdpMid must be set');
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// Reject if sdpMid format is not valid
|
|
314
|
+
// ??
|
|
315
|
+
if (candidate.sdpMid && candidate.sdpMid.length > 3) {
|
|
316
|
+
// console.log(candidate.sdpMid);
|
|
317
|
+
throw new exceptions.OperationError('Invalid sdpMid format');
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
// We don't care about sdpMLineIndex, just for test
|
|
321
|
+
if (!candidate.sdpMid && candidate.sdpMLineIndex > 1) {
|
|
322
|
+
throw new exceptions.OperationError('This is only for test case.');
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
try {
|
|
326
|
+
this.#peerConnection.addRemoteCandidate(candidate.candidate, candidate.sdpMid ?? '0');
|
|
327
|
+
this.#remoteCandidates.push(
|
|
328
|
+
new RTCIceCandidate({
|
|
329
|
+
candidate: candidate.candidate,
|
|
330
|
+
sdpMid: candidate.sdpMid ?? '0',
|
|
331
|
+
}),
|
|
332
|
+
);
|
|
333
|
+
} catch (error) {
|
|
334
|
+
if (!error || !error.message) throw new exceptions.NotFoundError('Unknown error');
|
|
335
|
+
|
|
336
|
+
// Check error Message if contains specific message
|
|
337
|
+
if (error.message.includes('remote candidate without remote description'))
|
|
338
|
+
throw new exceptions.InvalidStateError(error.message);
|
|
339
|
+
if (error.message.includes('Invalid candidate format'))
|
|
340
|
+
throw new exceptions.OperationError(error.message);
|
|
341
|
+
|
|
342
|
+
throw new exceptions.NotFoundError(error.message);
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
347
|
+
addTrack(_track, ..._streams): globalThis.RTCRtpSender {
|
|
348
|
+
throw new DOMException('Not implemented');
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
352
|
+
addTransceiver(_trackOrKind, _init): globalThis.RTCRtpTransceiver {
|
|
353
|
+
throw new DOMException('Not implemented');
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
close(): void {
|
|
357
|
+
this.#peerConnection.close();
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
createAnswer(): Promise<globalThis.RTCSessionDescriptionInit | any> {
|
|
361
|
+
return this.#localAnswer;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
createDataChannel(label: string, opts: globalThis.RTCDataChannelInit = {}): RTCDataChannel {
|
|
365
|
+
const nativeOpts: DataChannelInitConfig = {
|
|
366
|
+
...opts,
|
|
367
|
+
// libdatachannel uses "unordered", opposite of RTCDataChannelInit.ordered
|
|
368
|
+
unordered: opts.ordered === false ? true : false,
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
const channel = this.#peerConnection.createDataChannel(label, nativeOpts);
|
|
372
|
+
const dataChannel = new RTCDataChannel(channel, opts);
|
|
373
|
+
|
|
374
|
+
// ensure we can close all channels when shutting down
|
|
375
|
+
this.#dataChannels.add(dataChannel);
|
|
376
|
+
dataChannel.addEventListener('close', () => {
|
|
377
|
+
this.#dataChannels.delete(dataChannel);
|
|
378
|
+
this.#dataChannelsClosed++;
|
|
379
|
+
});
|
|
380
|
+
|
|
381
|
+
if (this.#announceNegotiation == null) {
|
|
382
|
+
this.#announceNegotiation = false;
|
|
383
|
+
this.dispatchEvent(new Event('negotiationneeded'));
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
return dataChannel;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
createOffer(): Promise<globalThis.RTCSessionDescriptionInit | any> {
|
|
390
|
+
return this.#localOffer;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
getConfiguration(): globalThis.RTCConfiguration {
|
|
394
|
+
return this.#config;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
getReceivers(): globalThis.RTCRtpReceiver[] {
|
|
398
|
+
throw new DOMException('Not implemented');
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
getSenders(): globalThis.RTCRtpSender[] {
|
|
402
|
+
throw new DOMException('Not implemented');
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
getStats(): Promise<globalThis.RTCStatsReport> | any {
|
|
406
|
+
return new Promise((resolve) => {
|
|
407
|
+
const report = new Map();
|
|
408
|
+
const cp = this.#peerConnection?.getSelectedCandidatePair();
|
|
409
|
+
const bytesSent = this.#peerConnection?.bytesSent();
|
|
410
|
+
const bytesReceived = this.#peerConnection?.bytesReceived();
|
|
411
|
+
const rtt = this.#peerConnection?.rtt();
|
|
412
|
+
|
|
413
|
+
if (!cp) {
|
|
414
|
+
return resolve(report);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
const localIdRs = getRandomString(8);
|
|
418
|
+
const localId = 'RTCIceCandidate_' + localIdRs;
|
|
419
|
+
report.set(localId, {
|
|
420
|
+
id: localId,
|
|
421
|
+
type: 'local-candidate',
|
|
422
|
+
timestamp: Date.now(),
|
|
423
|
+
candidateType: cp.local.type,
|
|
424
|
+
ip: cp.local.address,
|
|
425
|
+
port: cp.local.port,
|
|
426
|
+
});
|
|
427
|
+
|
|
428
|
+
const remoteIdRs = getRandomString(8);
|
|
429
|
+
const remoteId = 'RTCIceCandidate_' + remoteIdRs;
|
|
430
|
+
report.set(remoteId, {
|
|
431
|
+
id: remoteId,
|
|
432
|
+
type: 'remote-candidate',
|
|
433
|
+
timestamp: Date.now(),
|
|
434
|
+
candidateType: cp.remote.type,
|
|
435
|
+
ip: cp.remote.address,
|
|
436
|
+
port: cp.remote.port,
|
|
437
|
+
});
|
|
438
|
+
|
|
439
|
+
const candidateId = 'RTCIceCandidatePair_' + localIdRs + '_' + remoteIdRs;
|
|
440
|
+
report.set(candidateId, {
|
|
441
|
+
id: candidateId,
|
|
442
|
+
type: 'candidate-pair',
|
|
443
|
+
timestamp: Date.now(),
|
|
444
|
+
localCandidateId: localId,
|
|
445
|
+
remoteCandidateId: remoteId,
|
|
446
|
+
state: 'succeeded',
|
|
447
|
+
nominated: true,
|
|
448
|
+
writable: true,
|
|
449
|
+
bytesSent: bytesSent,
|
|
450
|
+
bytesReceived: bytesReceived,
|
|
451
|
+
totalRoundTripTime: rtt,
|
|
452
|
+
currentRoundTripTime: rtt,
|
|
453
|
+
});
|
|
454
|
+
|
|
455
|
+
const transportId = 'RTCTransport_0_1';
|
|
456
|
+
report.set(transportId, {
|
|
457
|
+
id: transportId,
|
|
458
|
+
timestamp: Date.now(),
|
|
459
|
+
type: 'transport',
|
|
460
|
+
bytesSent: bytesSent,
|
|
461
|
+
bytesReceived: bytesReceived,
|
|
462
|
+
dtlsState: 'connected',
|
|
463
|
+
selectedCandidatePairId: candidateId,
|
|
464
|
+
selectedCandidatePairChanges: 1,
|
|
465
|
+
});
|
|
466
|
+
|
|
467
|
+
// peer-connection'
|
|
468
|
+
report.set('P', {
|
|
469
|
+
id: 'P',
|
|
470
|
+
type: 'peer-connection',
|
|
471
|
+
timestamp: Date.now(),
|
|
472
|
+
dataChannelsOpened: this.#dataChannels.size,
|
|
473
|
+
dataChannelsClosed: this.#dataChannelsClosed,
|
|
474
|
+
});
|
|
475
|
+
|
|
476
|
+
return resolve(report);
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
getTransceivers(): globalThis.RTCRtpTransceiver[] {
|
|
481
|
+
return []; // throw new DOMException('Not implemented');
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
removeTrack(): void {
|
|
485
|
+
throw new DOMException('Not implemented');
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
restartIce(): Promise<void> {
|
|
489
|
+
throw new DOMException('Not implemented');
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
async setLocalDescription(description: globalThis.RTCSessionDescriptionInit): Promise<void> {
|
|
493
|
+
if (description?.type !== 'offer') {
|
|
494
|
+
// any other type causes libdatachannel to throw
|
|
495
|
+
return;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
this.#peerConnection.setLocalDescription(description?.type as any);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
async setRemoteDescription(description: globalThis.RTCSessionDescriptionInit): Promise<void> {
|
|
502
|
+
if (description.sdp == null) {
|
|
503
|
+
throw new DOMException('Remote SDP must be set');
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
this.#peerConnection.setRemoteDescription(description.sdp, description.type as any);
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
function createDeferredPromise(): any {
|
|
511
|
+
let resolve: any, reject: any;
|
|
512
|
+
|
|
513
|
+
const promise = new Promise(function (_resolve, _reject) {
|
|
514
|
+
resolve = _resolve;
|
|
515
|
+
reject = _reject;
|
|
516
|
+
});
|
|
517
|
+
|
|
518
|
+
(promise as any).resolve = resolve;
|
|
519
|
+
(promise as any).reject = reject;
|
|
520
|
+
return promise;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
function getRandomString(length: number): string {
|
|
524
|
+
return Math.random()
|
|
525
|
+
.toString(36)
|
|
526
|
+
.substring(2, 2 + length);
|
|
527
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
|
+
import RTCDtlsTransport from './RTCDtlsTransport';
|
|
3
|
+
import RTCPeerConnection from './RTCPeerConnection';
|
|
4
|
+
|
|
5
|
+
export default class RTCSctpTransport extends EventTarget implements globalThis.RTCSctpTransport {
|
|
6
|
+
#pc: RTCPeerConnection = null;
|
|
7
|
+
#transport: globalThis.RTCDtlsTransport = null;
|
|
8
|
+
|
|
9
|
+
onstatechange: globalThis.RTCSctpTransport['onstatechange'] = null;
|
|
10
|
+
|
|
11
|
+
constructor(initial: { pc: RTCPeerConnection }) {
|
|
12
|
+
super();
|
|
13
|
+
this.#pc = initial.pc;
|
|
14
|
+
|
|
15
|
+
this.#transport = new RTCDtlsTransport({
|
|
16
|
+
pc: initial.pc,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
this.#pc.addEventListener('connectionstatechange', () => {
|
|
20
|
+
const e = new Event('statechange');
|
|
21
|
+
this.dispatchEvent(e);
|
|
22
|
+
this.onstatechange?.(e);
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
get maxChannels(): number | null {
|
|
27
|
+
if (this.state !== 'connected') return null;
|
|
28
|
+
return this.#pc.ext_maxDataChannelId;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
get maxMessageSize(): number {
|
|
32
|
+
if (this.state !== 'connected') return null;
|
|
33
|
+
return this.#pc?.ext_maxMessageSize ?? 65536;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
get state(): globalThis.RTCSctpTransportState {
|
|
37
|
+
// reduce state from new, connecting, connected, disconnected, failed, closed, unknown
|
|
38
|
+
// to RTCSctpTransport states connecting, connected, closed
|
|
39
|
+
let state = this.#pc.connectionState;
|
|
40
|
+
if (state === 'new' || state === 'connecting') {
|
|
41
|
+
state = 'connecting';
|
|
42
|
+
} else if (state === 'disconnected' || state === 'failed' || state === 'closed') {
|
|
43
|
+
state = 'closed';
|
|
44
|
+
}
|
|
45
|
+
return state;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
get transport(): globalThis.RTCDtlsTransport {
|
|
49
|
+
return this.#transport;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// https://developer.mozilla.org/docs/Web/API/RTCSessionDescription
|
|
2
|
+
//
|
|
3
|
+
// Example usage
|
|
4
|
+
// const init = {
|
|
5
|
+
// type: 'offer',
|
|
6
|
+
// sdp: 'v=0\r\no=- 1234567890 1234567890 IN IP4 192.168.1.1\r\ns=-\r\nt=0 0\r\na=ice-ufrag:abcd\r\na=ice-pwd:efgh\r\n'
|
|
7
|
+
// };
|
|
8
|
+
|
|
9
|
+
export default class RTCSessionDescription implements globalThis.RTCSessionDescriptionInit {
|
|
10
|
+
#type: globalThis.RTCSdpType;
|
|
11
|
+
#sdp: string;
|
|
12
|
+
|
|
13
|
+
constructor(init: globalThis.RTCSessionDescriptionInit) {
|
|
14
|
+
this.#type = init?.type;
|
|
15
|
+
this.#sdp = init?.sdp ?? '';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
get type(): globalThis.RTCSdpType {
|
|
19
|
+
return this.#type;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
set type(type) {
|
|
23
|
+
if (type !== 'offer' && type !== 'answer' && type !== 'pranswer' && type !== 'rollback') {
|
|
24
|
+
throw new TypeError(
|
|
25
|
+
`Failed to set the 'type' property on 'RTCSessionDescription': The provided value '${type}' is not a valid enum value of type RTCSdpType.`,
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
this.#type = type;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
get sdp(): string {
|
|
32
|
+
return this.#sdp;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
toJSON(): globalThis.RTCSessionDescriptionInit {
|
|
36
|
+
return {
|
|
37
|
+
sdp: this.#sdp,
|
|
38
|
+
type: this.#type,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import RTCCertificate from './RTCCertificate';
|
|
2
|
+
import RTCDataChannel from './RTCDataChannel';
|
|
3
|
+
import RTCDtlsTransport from './RTCDtlsTransport';
|
|
4
|
+
import RTCIceCandidate from './RTCIceCandidate';
|
|
5
|
+
import RTCIceTransport from './RTCIceTransport';
|
|
6
|
+
import RTCPeerConnection from './RTCPeerConnection';
|
|
7
|
+
import RTCSctpTransport from './RTCSctpTransport';
|
|
8
|
+
import RTCSessionDescription from './RTCSessionDescription';
|
|
9
|
+
import { RTCDataChannelEvent, RTCPeerConnectionIceEvent } from './Events';
|
|
10
|
+
import RTCError from './RTCError';
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
RTCCertificate,
|
|
14
|
+
RTCDataChannel,
|
|
15
|
+
RTCDtlsTransport,
|
|
16
|
+
RTCIceCandidate,
|
|
17
|
+
RTCIceTransport,
|
|
18
|
+
RTCPeerConnection,
|
|
19
|
+
RTCSctpTransport,
|
|
20
|
+
RTCSessionDescription,
|
|
21
|
+
RTCDataChannelEvent,
|
|
22
|
+
RTCPeerConnectionIceEvent,
|
|
23
|
+
RTCError,
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default {
|
|
27
|
+
RTCCertificate,
|
|
28
|
+
RTCDataChannel,
|
|
29
|
+
RTCDtlsTransport,
|
|
30
|
+
RTCIceCandidate,
|
|
31
|
+
RTCIceTransport,
|
|
32
|
+
RTCPeerConnection,
|
|
33
|
+
RTCSctpTransport,
|
|
34
|
+
RTCSessionDescription,
|
|
35
|
+
RTCDataChannelEvent,
|
|
36
|
+
RTCPeerConnectionIceEvent,
|
|
37
|
+
RTCError,
|
|
38
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ESNext",
|
|
4
|
+
"moduleResolution": "Node",
|
|
5
|
+
"rootDir": ".",
|
|
6
|
+
"importsNotUsedAsValues": "remove",
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"forceConsistentCasingInFileNames": true,
|
|
10
|
+
"noImplicitAny": false,
|
|
11
|
+
"noImplicitThis": false,
|
|
12
|
+
"noImplicitReturns": true,
|
|
13
|
+
"strictNullChecks": false,
|
|
14
|
+
"noUnusedLocals": true,
|
|
15
|
+
"alwaysStrict": true,
|
|
16
|
+
"outDir": "./dist",
|
|
17
|
+
"module": "CommonJS"
|
|
18
|
+
},
|
|
19
|
+
"include": ["src/**/*", "test/**/*"],
|
|
20
|
+
"exclude": ["node_modules", "dist", "src/cpp", "test/wpt-tests/wpt"]
|
|
21
|
+
}
|