@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,135 @@
|
|
|
1
|
+
const ECLevel = require('./error-correction-level')
|
|
2
|
+
|
|
3
|
+
const EC_BLOCKS_TABLE = [
|
|
4
|
+
// L M Q H
|
|
5
|
+
1, 1, 1, 1,
|
|
6
|
+
1, 1, 1, 1,
|
|
7
|
+
1, 1, 2, 2,
|
|
8
|
+
1, 2, 2, 4,
|
|
9
|
+
1, 2, 4, 4,
|
|
10
|
+
2, 4, 4, 4,
|
|
11
|
+
2, 4, 6, 5,
|
|
12
|
+
2, 4, 6, 6,
|
|
13
|
+
2, 5, 8, 8,
|
|
14
|
+
4, 5, 8, 8,
|
|
15
|
+
4, 5, 8, 11,
|
|
16
|
+
4, 8, 10, 11,
|
|
17
|
+
4, 9, 12, 16,
|
|
18
|
+
4, 9, 16, 16,
|
|
19
|
+
6, 10, 12, 18,
|
|
20
|
+
6, 10, 17, 16,
|
|
21
|
+
6, 11, 16, 19,
|
|
22
|
+
6, 13, 18, 21,
|
|
23
|
+
7, 14, 21, 25,
|
|
24
|
+
8, 16, 20, 25,
|
|
25
|
+
8, 17, 23, 25,
|
|
26
|
+
9, 17, 23, 34,
|
|
27
|
+
9, 18, 25, 30,
|
|
28
|
+
10, 20, 27, 32,
|
|
29
|
+
12, 21, 29, 35,
|
|
30
|
+
12, 23, 34, 37,
|
|
31
|
+
12, 25, 34, 40,
|
|
32
|
+
13, 26, 35, 42,
|
|
33
|
+
14, 28, 38, 45,
|
|
34
|
+
15, 29, 40, 48,
|
|
35
|
+
16, 31, 43, 51,
|
|
36
|
+
17, 33, 45, 54,
|
|
37
|
+
18, 35, 48, 57,
|
|
38
|
+
19, 37, 51, 60,
|
|
39
|
+
19, 38, 53, 63,
|
|
40
|
+
20, 40, 56, 66,
|
|
41
|
+
21, 43, 59, 70,
|
|
42
|
+
22, 45, 62, 74,
|
|
43
|
+
24, 47, 65, 77,
|
|
44
|
+
25, 49, 68, 81
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
const EC_CODEWORDS_TABLE = [
|
|
48
|
+
// L M Q H
|
|
49
|
+
7, 10, 13, 17,
|
|
50
|
+
10, 16, 22, 28,
|
|
51
|
+
15, 26, 36, 44,
|
|
52
|
+
20, 36, 52, 64,
|
|
53
|
+
26, 48, 72, 88,
|
|
54
|
+
36, 64, 96, 112,
|
|
55
|
+
40, 72, 108, 130,
|
|
56
|
+
48, 88, 132, 156,
|
|
57
|
+
60, 110, 160, 192,
|
|
58
|
+
72, 130, 192, 224,
|
|
59
|
+
80, 150, 224, 264,
|
|
60
|
+
96, 176, 260, 308,
|
|
61
|
+
104, 198, 288, 352,
|
|
62
|
+
120, 216, 320, 384,
|
|
63
|
+
132, 240, 360, 432,
|
|
64
|
+
144, 280, 408, 480,
|
|
65
|
+
168, 308, 448, 532,
|
|
66
|
+
180, 338, 504, 588,
|
|
67
|
+
196, 364, 546, 650,
|
|
68
|
+
224, 416, 600, 700,
|
|
69
|
+
224, 442, 644, 750,
|
|
70
|
+
252, 476, 690, 816,
|
|
71
|
+
270, 504, 750, 900,
|
|
72
|
+
300, 560, 810, 960,
|
|
73
|
+
312, 588, 870, 1050,
|
|
74
|
+
336, 644, 952, 1110,
|
|
75
|
+
360, 700, 1020, 1200,
|
|
76
|
+
390, 728, 1050, 1260,
|
|
77
|
+
420, 784, 1140, 1350,
|
|
78
|
+
450, 812, 1200, 1440,
|
|
79
|
+
480, 868, 1290, 1530,
|
|
80
|
+
510, 924, 1350, 1620,
|
|
81
|
+
540, 980, 1440, 1710,
|
|
82
|
+
570, 1036, 1530, 1800,
|
|
83
|
+
570, 1064, 1590, 1890,
|
|
84
|
+
600, 1120, 1680, 1980,
|
|
85
|
+
630, 1204, 1770, 2100,
|
|
86
|
+
660, 1260, 1860, 2220,
|
|
87
|
+
720, 1316, 1950, 2310,
|
|
88
|
+
750, 1372, 2040, 2430
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Returns the number of error correction block that the QR Code should contain
|
|
93
|
+
* for the specified version and error correction level.
|
|
94
|
+
*
|
|
95
|
+
* @param {Number} version QR Code version
|
|
96
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
97
|
+
* @return {Number} Number of error correction blocks
|
|
98
|
+
*/
|
|
99
|
+
exports.getBlocksCount = function getBlocksCount (version, errorCorrectionLevel) {
|
|
100
|
+
switch (errorCorrectionLevel) {
|
|
101
|
+
case ECLevel.L:
|
|
102
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 0]
|
|
103
|
+
case ECLevel.M:
|
|
104
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 1]
|
|
105
|
+
case ECLevel.Q:
|
|
106
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 2]
|
|
107
|
+
case ECLevel.H:
|
|
108
|
+
return EC_BLOCKS_TABLE[(version - 1) * 4 + 3]
|
|
109
|
+
default:
|
|
110
|
+
return undefined
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Returns the number of error correction codewords to use for the specified
|
|
116
|
+
* version and error correction level.
|
|
117
|
+
*
|
|
118
|
+
* @param {Number} version QR Code version
|
|
119
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
120
|
+
* @return {Number} Number of error correction codewords
|
|
121
|
+
*/
|
|
122
|
+
exports.getTotalCodewordsCount = function getTotalCodewordsCount (version, errorCorrectionLevel) {
|
|
123
|
+
switch (errorCorrectionLevel) {
|
|
124
|
+
case ECLevel.L:
|
|
125
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 0]
|
|
126
|
+
case ECLevel.M:
|
|
127
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 1]
|
|
128
|
+
case ECLevel.Q:
|
|
129
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 2]
|
|
130
|
+
case ECLevel.H:
|
|
131
|
+
return EC_CODEWORDS_TABLE[(version - 1) * 4 + 3]
|
|
132
|
+
default:
|
|
133
|
+
return undefined
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
exports.L = { bit: 1 }
|
|
2
|
+
exports.M = { bit: 0 }
|
|
3
|
+
exports.Q = { bit: 3 }
|
|
4
|
+
exports.H = { bit: 2 }
|
|
5
|
+
|
|
6
|
+
function fromString (string) {
|
|
7
|
+
if (typeof string !== 'string') {
|
|
8
|
+
throw new Error('Param is not a string')
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const lcStr = string.toLowerCase()
|
|
12
|
+
|
|
13
|
+
switch (lcStr) {
|
|
14
|
+
case 'l':
|
|
15
|
+
case 'low':
|
|
16
|
+
return exports.L
|
|
17
|
+
|
|
18
|
+
case 'm':
|
|
19
|
+
case 'medium':
|
|
20
|
+
return exports.M
|
|
21
|
+
|
|
22
|
+
case 'q':
|
|
23
|
+
case 'quartile':
|
|
24
|
+
return exports.Q
|
|
25
|
+
|
|
26
|
+
case 'h':
|
|
27
|
+
case 'high':
|
|
28
|
+
return exports.H
|
|
29
|
+
|
|
30
|
+
default:
|
|
31
|
+
throw new Error('Unknown EC Level: ' + string)
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
exports.isValid = function isValid (level) {
|
|
36
|
+
return level && typeof level.bit !== 'undefined' &&
|
|
37
|
+
level.bit >= 0 && level.bit < 4
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
exports.from = function from (value, defaultValue) {
|
|
41
|
+
if (exports.isValid(value)) {
|
|
42
|
+
return value
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
try {
|
|
46
|
+
return fromString(value)
|
|
47
|
+
} catch (e) {
|
|
48
|
+
return defaultValue
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const getSymbolSize = require('./utils').getSymbolSize
|
|
2
|
+
const FINDER_PATTERN_SIZE = 7
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Returns an array containing the positions of each finder pattern.
|
|
6
|
+
* Each array's element represent the top-left point of the pattern as (x, y) coordinates
|
|
7
|
+
*
|
|
8
|
+
* @param {Number} version QR Code version
|
|
9
|
+
* @return {Array} Array of coordinates
|
|
10
|
+
*/
|
|
11
|
+
exports.getPositions = function getPositions (version) {
|
|
12
|
+
const size = getSymbolSize(version)
|
|
13
|
+
|
|
14
|
+
return [
|
|
15
|
+
// top-left
|
|
16
|
+
[0, 0],
|
|
17
|
+
// top-right
|
|
18
|
+
[size - FINDER_PATTERN_SIZE, 0],
|
|
19
|
+
// bottom-left
|
|
20
|
+
[0, size - FINDER_PATTERN_SIZE]
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const Utils = require('./utils')
|
|
2
|
+
|
|
3
|
+
const G15 = (1 << 10) | (1 << 8) | (1 << 5) | (1 << 4) | (1 << 2) | (1 << 1) | (1 << 0)
|
|
4
|
+
const G15_MASK = (1 << 14) | (1 << 12) | (1 << 10) | (1 << 4) | (1 << 1)
|
|
5
|
+
const G15_BCH = Utils.getBCHDigit(G15)
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Returns format information with relative error correction bits
|
|
9
|
+
*
|
|
10
|
+
* The format information is a 15-bit sequence containing 5 data bits,
|
|
11
|
+
* with 10 error correction bits calculated using the (15, 5) BCH code.
|
|
12
|
+
*
|
|
13
|
+
* @param {Number} errorCorrectionLevel Error correction level
|
|
14
|
+
* @param {Number} mask Mask pattern
|
|
15
|
+
* @return {Number} Encoded format information bits
|
|
16
|
+
*/
|
|
17
|
+
exports.getEncodedBits = function getEncodedBits (errorCorrectionLevel, mask) {
|
|
18
|
+
const data = ((errorCorrectionLevel.bit << 3) | mask)
|
|
19
|
+
let d = data << 10
|
|
20
|
+
|
|
21
|
+
while (Utils.getBCHDigit(d) - G15_BCH >= 0) {
|
|
22
|
+
d ^= (G15 << (Utils.getBCHDigit(d) - G15_BCH))
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// xor final data with mask pattern in order to ensure that
|
|
26
|
+
// no combination of Error Correction Level and data mask pattern
|
|
27
|
+
// will result in an all-zero data string
|
|
28
|
+
return ((data << 10) | d) ^ G15_MASK
|
|
29
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
const EXP_TABLE = new Uint8Array(512)
|
|
2
|
+
const LOG_TABLE = new Uint8Array(256)
|
|
3
|
+
/**
|
|
4
|
+
* Precompute the log and anti-log tables for faster computation later
|
|
5
|
+
*
|
|
6
|
+
* For each possible value in the galois field 2^8, we will pre-compute
|
|
7
|
+
* the logarithm and anti-logarithm (exponential) of this value
|
|
8
|
+
*
|
|
9
|
+
* ref {@link https://en.wikiversity.org/wiki/Reed%E2%80%93Solomon_codes_for_coders#Introduction_to_mathematical_fields}
|
|
10
|
+
*/
|
|
11
|
+
;(function initTables () {
|
|
12
|
+
let x = 1
|
|
13
|
+
for (let i = 0; i < 255; i++) {
|
|
14
|
+
EXP_TABLE[i] = x
|
|
15
|
+
LOG_TABLE[x] = i
|
|
16
|
+
|
|
17
|
+
x <<= 1 // multiply by 2
|
|
18
|
+
|
|
19
|
+
// The QR code specification says to use byte-wise modulo 100011101 arithmetic.
|
|
20
|
+
// This means that when a number is 256 or larger, it should be XORed with 0x11D.
|
|
21
|
+
if (x & 0x100) { // similar to x >= 256, but a lot faster (because 0x100 == 256)
|
|
22
|
+
x ^= 0x11D
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Optimization: double the size of the anti-log table so that we don't need to mod 255 to
|
|
27
|
+
// stay inside the bounds (because we will mainly use this table for the multiplication of
|
|
28
|
+
// two GF numbers, no more).
|
|
29
|
+
// @see {@link mul}
|
|
30
|
+
for (let i = 255; i < 512; i++) {
|
|
31
|
+
EXP_TABLE[i] = EXP_TABLE[i - 255]
|
|
32
|
+
}
|
|
33
|
+
}())
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Returns log value of n inside Galois Field
|
|
37
|
+
*
|
|
38
|
+
* @param {Number} n
|
|
39
|
+
* @return {Number}
|
|
40
|
+
*/
|
|
41
|
+
exports.log = function log (n) {
|
|
42
|
+
if (n < 1) throw new Error('log(' + n + ')')
|
|
43
|
+
return LOG_TABLE[n]
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Returns anti-log value of n inside Galois Field
|
|
48
|
+
*
|
|
49
|
+
* @param {Number} n
|
|
50
|
+
* @return {Number}
|
|
51
|
+
*/
|
|
52
|
+
exports.exp = function exp (n) {
|
|
53
|
+
return EXP_TABLE[n]
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Multiplies two number inside Galois Field
|
|
58
|
+
*
|
|
59
|
+
* @param {Number} x
|
|
60
|
+
* @param {Number} y
|
|
61
|
+
* @return {Number}
|
|
62
|
+
*/
|
|
63
|
+
exports.mul = function mul (x, y) {
|
|
64
|
+
if (x === 0 || y === 0) return 0
|
|
65
|
+
|
|
66
|
+
// should be EXP_TABLE[(LOG_TABLE[x] + LOG_TABLE[y]) % 255] if EXP_TABLE wasn't oversized
|
|
67
|
+
// @see {@link initTables}
|
|
68
|
+
return EXP_TABLE[LOG_TABLE[x] + LOG_TABLE[y]]
|
|
69
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
const Mode = require('./mode')
|
|
2
|
+
const Utils = require('./utils')
|
|
3
|
+
|
|
4
|
+
function KanjiData (data) {
|
|
5
|
+
this.mode = Mode.KANJI
|
|
6
|
+
this.data = data
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
KanjiData.getBitsLength = function getBitsLength (length) {
|
|
10
|
+
return length * 13
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
KanjiData.prototype.getLength = function getLength () {
|
|
14
|
+
return this.data.length
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
KanjiData.prototype.getBitsLength = function getBitsLength () {
|
|
18
|
+
return KanjiData.getBitsLength(this.data.length)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
KanjiData.prototype.write = function (bitBuffer) {
|
|
22
|
+
let i
|
|
23
|
+
|
|
24
|
+
// In the Shift JIS system, Kanji characters are represented by a two byte combination.
|
|
25
|
+
// These byte values are shifted from the JIS X 0208 values.
|
|
26
|
+
// JIS X 0208 gives details of the shift coded representation.
|
|
27
|
+
for (i = 0; i < this.data.length; i++) {
|
|
28
|
+
let value = Utils.toSJIS(this.data[i])
|
|
29
|
+
|
|
30
|
+
// For characters with Shift JIS values from 0x8140 to 0x9FFC:
|
|
31
|
+
if (value >= 0x8140 && value <= 0x9FFC) {
|
|
32
|
+
// Subtract 0x8140 from Shift JIS value
|
|
33
|
+
value -= 0x8140
|
|
34
|
+
|
|
35
|
+
// For characters with Shift JIS values from 0xE040 to 0xEBBF
|
|
36
|
+
} else if (value >= 0xE040 && value <= 0xEBBF) {
|
|
37
|
+
// Subtract 0xC140 from Shift JIS value
|
|
38
|
+
value -= 0xC140
|
|
39
|
+
} else {
|
|
40
|
+
throw new Error(
|
|
41
|
+
'Invalid SJIS character: ' + this.data[i] + '\n' +
|
|
42
|
+
'Make sure your charset is UTF-8')
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Multiply most significant byte of result by 0xC0
|
|
46
|
+
// and add least significant byte to product
|
|
47
|
+
value = (((value >>> 8) & 0xff) * 0xC0) + (value & 0xff)
|
|
48
|
+
|
|
49
|
+
// Convert result to a 13-bit binary string
|
|
50
|
+
bitBuffer.put(value, 13)
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
module.exports = KanjiData
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Data mask pattern reference
|
|
3
|
+
* @type {Object}
|
|
4
|
+
*/
|
|
5
|
+
exports.Patterns = {
|
|
6
|
+
PATTERN000: 0,
|
|
7
|
+
PATTERN001: 1,
|
|
8
|
+
PATTERN010: 2,
|
|
9
|
+
PATTERN011: 3,
|
|
10
|
+
PATTERN100: 4,
|
|
11
|
+
PATTERN101: 5,
|
|
12
|
+
PATTERN110: 6,
|
|
13
|
+
PATTERN111: 7
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Weighted penalty scores for the undesirable features
|
|
18
|
+
* @type {Object}
|
|
19
|
+
*/
|
|
20
|
+
const PenaltyScores = {
|
|
21
|
+
N1: 3,
|
|
22
|
+
N2: 3,
|
|
23
|
+
N3: 40,
|
|
24
|
+
N4: 10
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Check if mask pattern value is valid
|
|
29
|
+
*
|
|
30
|
+
* @param {Number} mask Mask pattern
|
|
31
|
+
* @return {Boolean} true if valid, false otherwise
|
|
32
|
+
*/
|
|
33
|
+
exports.isValid = function isValid (mask) {
|
|
34
|
+
return mask != null && mask !== '' && !isNaN(mask) && mask >= 0 && mask <= 7
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Returns mask pattern from a value.
|
|
39
|
+
* If value is not valid, returns undefined
|
|
40
|
+
*
|
|
41
|
+
* @param {Number|String} value Mask pattern value
|
|
42
|
+
* @return {Number} Valid mask pattern or undefined
|
|
43
|
+
*/
|
|
44
|
+
exports.from = function from (value) {
|
|
45
|
+
return exports.isValid(value) ? parseInt(value, 10) : undefined
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Find adjacent modules in row/column with the same color
|
|
50
|
+
* and assign a penalty value.
|
|
51
|
+
*
|
|
52
|
+
* Points: N1 + i
|
|
53
|
+
* i is the amount by which the number of adjacent modules of the same color exceeds 5
|
|
54
|
+
*/
|
|
55
|
+
exports.getPenaltyN1 = function getPenaltyN1 (data) {
|
|
56
|
+
const size = data.size
|
|
57
|
+
let points = 0
|
|
58
|
+
let sameCountCol = 0
|
|
59
|
+
let sameCountRow = 0
|
|
60
|
+
let lastCol = null
|
|
61
|
+
let lastRow = null
|
|
62
|
+
|
|
63
|
+
for (let row = 0; row < size; row++) {
|
|
64
|
+
sameCountCol = sameCountRow = 0
|
|
65
|
+
lastCol = lastRow = null
|
|
66
|
+
|
|
67
|
+
for (let col = 0; col < size; col++) {
|
|
68
|
+
let module = data.get(row, col)
|
|
69
|
+
if (module === lastCol) {
|
|
70
|
+
sameCountCol++
|
|
71
|
+
} else {
|
|
72
|
+
if (sameCountCol >= 5) points += PenaltyScores.N1 + (sameCountCol - 5)
|
|
73
|
+
lastCol = module
|
|
74
|
+
sameCountCol = 1
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
module = data.get(col, row)
|
|
78
|
+
if (module === lastRow) {
|
|
79
|
+
sameCountRow++
|
|
80
|
+
} else {
|
|
81
|
+
if (sameCountRow >= 5) points += PenaltyScores.N1 + (sameCountRow - 5)
|
|
82
|
+
lastRow = module
|
|
83
|
+
sameCountRow = 1
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (sameCountCol >= 5) points += PenaltyScores.N1 + (sameCountCol - 5)
|
|
88
|
+
if (sameCountRow >= 5) points += PenaltyScores.N1 + (sameCountRow - 5)
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return points
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Find 2x2 blocks with the same color and assign a penalty value
|
|
96
|
+
*
|
|
97
|
+
* Points: N2 * (m - 1) * (n - 1)
|
|
98
|
+
*/
|
|
99
|
+
exports.getPenaltyN2 = function getPenaltyN2 (data) {
|
|
100
|
+
const size = data.size
|
|
101
|
+
let points = 0
|
|
102
|
+
|
|
103
|
+
for (let row = 0; row < size - 1; row++) {
|
|
104
|
+
for (let col = 0; col < size - 1; col++) {
|
|
105
|
+
const last = data.get(row, col) +
|
|
106
|
+
data.get(row, col + 1) +
|
|
107
|
+
data.get(row + 1, col) +
|
|
108
|
+
data.get(row + 1, col + 1)
|
|
109
|
+
|
|
110
|
+
if (last === 4 || last === 0) points++
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return points * PenaltyScores.N2
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Find 1:1:3:1:1 ratio (dark:light:dark:light:dark) pattern in row/column,
|
|
119
|
+
* preceded or followed by light area 4 modules wide
|
|
120
|
+
*
|
|
121
|
+
* Points: N3 * number of pattern found
|
|
122
|
+
*/
|
|
123
|
+
exports.getPenaltyN3 = function getPenaltyN3 (data) {
|
|
124
|
+
const size = data.size
|
|
125
|
+
let points = 0
|
|
126
|
+
let bitsCol = 0
|
|
127
|
+
let bitsRow = 0
|
|
128
|
+
|
|
129
|
+
for (let row = 0; row < size; row++) {
|
|
130
|
+
bitsCol = bitsRow = 0
|
|
131
|
+
for (let col = 0; col < size; col++) {
|
|
132
|
+
bitsCol = ((bitsCol << 1) & 0x7FF) | data.get(row, col)
|
|
133
|
+
if (col >= 10 && (bitsCol === 0x5D0 || bitsCol === 0x05D)) points++
|
|
134
|
+
|
|
135
|
+
bitsRow = ((bitsRow << 1) & 0x7FF) | data.get(col, row)
|
|
136
|
+
if (col >= 10 && (bitsRow === 0x5D0 || bitsRow === 0x05D)) points++
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
return points * PenaltyScores.N3
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Calculate proportion of dark modules in entire symbol
|
|
145
|
+
*
|
|
146
|
+
* Points: N4 * k
|
|
147
|
+
*
|
|
148
|
+
* k is the rating of the deviation of the proportion of dark modules
|
|
149
|
+
* in the symbol from 50% in steps of 5%
|
|
150
|
+
*/
|
|
151
|
+
exports.getPenaltyN4 = function getPenaltyN4 (data) {
|
|
152
|
+
let darkCount = 0
|
|
153
|
+
const modulesCount = data.data.length
|
|
154
|
+
|
|
155
|
+
for (let i = 0; i < modulesCount; i++) darkCount += data.data[i]
|
|
156
|
+
|
|
157
|
+
const k = Math.abs(Math.ceil((darkCount * 100 / modulesCount) / 5) - 10)
|
|
158
|
+
|
|
159
|
+
return k * PenaltyScores.N4
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Return mask value at given position
|
|
164
|
+
*
|
|
165
|
+
* @param {Number} maskPattern Pattern reference value
|
|
166
|
+
* @param {Number} i Row
|
|
167
|
+
* @param {Number} j Column
|
|
168
|
+
* @return {Boolean} Mask value
|
|
169
|
+
*/
|
|
170
|
+
function getMaskAt (maskPattern, i, j) {
|
|
171
|
+
switch (maskPattern) {
|
|
172
|
+
case exports.Patterns.PATTERN000: return (i + j) % 2 === 0
|
|
173
|
+
case exports.Patterns.PATTERN001: return i % 2 === 0
|
|
174
|
+
case exports.Patterns.PATTERN010: return j % 3 === 0
|
|
175
|
+
case exports.Patterns.PATTERN011: return (i + j) % 3 === 0
|
|
176
|
+
case exports.Patterns.PATTERN100: return (Math.floor(i / 2) + Math.floor(j / 3)) % 2 === 0
|
|
177
|
+
case exports.Patterns.PATTERN101: return (i * j) % 2 + (i * j) % 3 === 0
|
|
178
|
+
case exports.Patterns.PATTERN110: return ((i * j) % 2 + (i * j) % 3) % 2 === 0
|
|
179
|
+
case exports.Patterns.PATTERN111: return ((i * j) % 3 + (i + j) % 2) % 2 === 0
|
|
180
|
+
|
|
181
|
+
default: throw new Error('bad maskPattern:' + maskPattern)
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* Apply a mask pattern to a BitMatrix
|
|
187
|
+
*
|
|
188
|
+
* @param {Number} pattern Pattern reference number
|
|
189
|
+
* @param {BitMatrix} data BitMatrix data
|
|
190
|
+
*/
|
|
191
|
+
exports.applyMask = function applyMask (pattern, data) {
|
|
192
|
+
const size = data.size
|
|
193
|
+
|
|
194
|
+
for (let col = 0; col < size; col++) {
|
|
195
|
+
for (let row = 0; row < size; row++) {
|
|
196
|
+
if (data.isReserved(row, col)) continue
|
|
197
|
+
data.xor(row, col, getMaskAt(pattern, row, col))
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Returns the best mask pattern for data
|
|
204
|
+
*
|
|
205
|
+
* @param {BitMatrix} data
|
|
206
|
+
* @return {Number} Mask pattern reference number
|
|
207
|
+
*/
|
|
208
|
+
exports.getBestMask = function getBestMask (data, setupFormatFunc) {
|
|
209
|
+
const numPatterns = Object.keys(exports.Patterns).length
|
|
210
|
+
let bestPattern = 0
|
|
211
|
+
let lowerPenalty = Infinity
|
|
212
|
+
|
|
213
|
+
for (let p = 0; p < numPatterns; p++) {
|
|
214
|
+
setupFormatFunc(p)
|
|
215
|
+
exports.applyMask(p, data)
|
|
216
|
+
|
|
217
|
+
// Calculate penalty
|
|
218
|
+
const penalty =
|
|
219
|
+
exports.getPenaltyN1(data) +
|
|
220
|
+
exports.getPenaltyN2(data) +
|
|
221
|
+
exports.getPenaltyN3(data) +
|
|
222
|
+
exports.getPenaltyN4(data)
|
|
223
|
+
|
|
224
|
+
// Undo previously applied mask
|
|
225
|
+
exports.applyMask(p, data)
|
|
226
|
+
|
|
227
|
+
if (penalty < lowerPenalty) {
|
|
228
|
+
lowerPenalty = penalty
|
|
229
|
+
bestPattern = p
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return bestPattern
|
|
234
|
+
}
|