lightclaw2 0.0.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 +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/src/channel.d.ts +11 -0
- package/dist/src/channel.d.ts.map +1 -0
- package/dist/src/channel.js +255 -0
- package/dist/src/channel.js.map +1 -0
- package/dist/src/config.d.ts +29 -0
- package/dist/src/config.d.ts.map +1 -0
- package/dist/src/config.js +99 -0
- package/dist/src/config.js.map +1 -0
- package/dist/src/dedup.d.ts +7 -0
- package/dist/src/dedup.d.ts.map +1 -0
- package/dist/src/dedup.js +52 -0
- package/dist/src/dedup.js.map +1 -0
- package/dist/src/gateway.d.ts +16 -0
- package/dist/src/gateway.d.ts.map +1 -0
- package/dist/src/gateway.js +283 -0
- package/dist/src/gateway.js.map +1 -0
- package/dist/src/inbound.d.ts +18 -0
- package/dist/src/inbound.d.ts.map +1 -0
- package/dist/src/inbound.js +252 -0
- package/dist/src/inbound.js.map +1 -0
- package/dist/src/media.d.ts +12 -0
- package/dist/src/media.d.ts.map +1 -0
- package/dist/src/media.js +87 -0
- package/dist/src/media.js.map +1 -0
- package/dist/src/outbound.d.ts +28 -0
- package/dist/src/outbound.d.ts.map +1 -0
- package/dist/src/outbound.js +172 -0
- package/dist/src/outbound.js.map +1 -0
- package/dist/src/runtime.d.ts +4 -0
- package/dist/src/runtime.d.ts.map +1 -0
- package/dist/src/runtime.js +11 -0
- package/dist/src/runtime.js.map +1 -0
- package/dist/src/session-history.d.ts +88 -0
- package/dist/src/session-history.d.ts.map +1 -0
- package/dist/src/session-history.js +545 -0
- package/dist/src/session-history.js.map +1 -0
- package/dist/src/socket-handlers.d.ts +21 -0
- package/dist/src/socket-handlers.d.ts.map +1 -0
- package/dist/src/socket-handlers.js +120 -0
- package/dist/src/socket-handlers.js.map +1 -0
- package/dist/src/socket-registry.d.ts +53 -0
- package/dist/src/socket-registry.d.ts.map +1 -0
- package/dist/src/socket-registry.js +115 -0
- package/dist/src/socket-registry.js.map +1 -0
- package/dist/src/types.d.ts +100 -0
- package/dist/src/types.d.ts.map +1 -0
- package/dist/src/types.js +10 -0
- package/dist/src/types.js.map +1 -0
- package/node_modules/@socket.io/component-emitter/LICENSE +24 -0
- package/node_modules/@socket.io/component-emitter/Readme.md +79 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/index.js +176 -0
- package/node_modules/@socket.io/component-emitter/lib/cjs/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.d.ts +179 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/index.js +169 -0
- package/node_modules/@socket.io/component-emitter/lib/esm/package.json +4 -0
- package/node_modules/@socket.io/component-emitter/package.json +28 -0
- package/node_modules/debug/LICENSE +20 -0
- package/node_modules/debug/README.md +481 -0
- package/node_modules/debug/package.json +64 -0
- package/node_modules/debug/src/browser.js +272 -0
- package/node_modules/debug/src/common.js +292 -0
- package/node_modules/debug/src/index.js +10 -0
- package/node_modules/debug/src/node.js +263 -0
- package/node_modules/engine.io-client/LICENSE +22 -0
- package/node_modules/engine.io-client/README.md +331 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/has-cors.js +14 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseqs.js +38 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/cjs/contrib/parseuri.js +67 -0
- package/node_modules/engine.io-client/build/cjs/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/cjs/globals.js +26 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/cjs/globals.node.js +97 -0
- package/node_modules/engine.io-client/build/cjs/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/index.js +32 -0
- package/node_modules/engine.io-client/build/cjs/package.json +10 -0
- package/node_modules/engine.io-client/build/cjs/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/cjs/socket.js +765 -0
- package/node_modules/engine.io-client/build/cjs/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/cjs/transport.js +153 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/cjs/transports/index.js +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-fetch.js +60 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.js +285 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling-xhr.node.js +44 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/cjs/transports/polling.js +165 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.js +136 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/cjs/transports/websocket.node.js +68 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/cjs/transports/webtransport.js +94 -0
- package/node_modules/engine.io-client/build/cjs/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/cjs/util.js +65 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/index.js +15 -0
- package/node_modules/engine.io-client/build/esm/package.json +10 -0
- package/node_modules/engine.io-client/build/esm/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm/socket.js +727 -0
- package/node_modules/engine.io-client/build/esm/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm/transport.js +142 -0
- package/node_modules/engine.io-client/build/esm/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +271 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm/transports/polling.js +145 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.js +125 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm/transports/webtransport.js +80 -0
- package/node_modules/engine.io-client/build/esm/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm/util.js +59 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.d.ts +3 -0
- package/node_modules/engine.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/has-cors.js +11 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseqs.js +34 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.d.ts +1 -0
- package/node_modules/engine.io-client/build/esm-debug/contrib/parseuri.js +64 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.d.ts +4 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.js +22 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.d.ts +21 -0
- package/node_modules/engine.io-client/build/esm-debug/globals.node.js +91 -0
- package/node_modules/engine.io-client/build/esm-debug/index.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/index.js +15 -0
- package/node_modules/engine.io-client/build/esm-debug/package.json +10 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.d.ts +482 -0
- package/node_modules/engine.io-client/build/esm-debug/socket.js +756 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.d.ts +106 -0
- package/node_modules/engine.io-client/build/esm-debug/transport.js +145 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.d.ts +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/index.js +8 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.d.ts +15 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-fetch.js +56 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.d.ts +108 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.js +276 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.d.ts +11 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling-xhr.node.js +17 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.d.ts +52 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/polling.js +158 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.d.ts +36 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.js +128 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.d.ts +14 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/websocket.node.js +41 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.d.ts +18 -0
- package/node_modules/engine.io-client/build/esm-debug/transports/webtransport.js +87 -0
- package/node_modules/engine.io-client/build/esm-debug/util.d.ts +7 -0
- package/node_modules/engine.io-client/build/esm-debug/util.js +59 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.esm.min.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.js +3064 -0
- package/node_modules/engine.io-client/dist/engine.io.js.map +1 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js +7 -0
- package/node_modules/engine.io-client/dist/engine.io.min.js.map +1 -0
- package/node_modules/engine.io-client/node_modules/ws/LICENSE +20 -0
- package/node_modules/engine.io-client/node_modules/ws/README.md +548 -0
- package/node_modules/engine.io-client/node_modules/ws/browser.js +8 -0
- package/node_modules/engine.io-client/node_modules/ws/index.js +13 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/constants.js +18 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/receiver.js +706 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/sender.js +602 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket-server.js +550 -0
- package/node_modules/engine.io-client/node_modules/ws/lib/websocket.js +1388 -0
- package/node_modules/engine.io-client/node_modules/ws/package.json +69 -0
- package/node_modules/engine.io-client/node_modules/ws/wrapper.mjs +8 -0
- package/node_modules/engine.io-client/package.json +95 -0
- package/node_modules/engine.io-parser/LICENSE +22 -0
- package/node_modules/engine.io-parser/Readme.md +158 -0
- package/node_modules/engine.io-parser/build/cjs/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/cjs/commons.js +19 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.js +48 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.browser.js +66 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/cjs/decodePacket.js +59 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.browser.js +72 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/cjs/encodePacket.js +38 -0
- package/node_modules/engine.io-parser/build/cjs/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/cjs/index.js +164 -0
- package/node_modules/engine.io-parser/build/cjs/package.json +8 -0
- package/node_modules/engine.io-parser/build/esm/commons.d.ts +14 -0
- package/node_modules/engine.io-parser/build/esm/commons.js +14 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +43 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +62 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.d.ts +2 -0
- package/node_modules/engine.io-parser/build/esm/decodePacket.js +55 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts +4 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +68 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.d.ts +3 -0
- package/node_modules/engine.io-parser/build/esm/encodePacket.js +33 -0
- package/node_modules/engine.io-parser/build/esm/index.d.ts +9 -0
- package/node_modules/engine.io-parser/build/esm/index.js +156 -0
- package/node_modules/engine.io-parser/build/esm/package.json +8 -0
- package/node_modules/engine.io-parser/package.json +46 -0
- package/node_modules/ms/index.js +162 -0
- package/node_modules/ms/license.md +21 -0
- package/node_modules/ms/package.json +38 -0
- package/node_modules/ms/readme.md +59 -0
- package/node_modules/socket.io-client/LICENSE +21 -0
- package/node_modules/socket.io-client/README.md +29 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/browser-entrypoint.js +4 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/cjs/contrib/backo2.js +69 -0
- package/node_modules/socket.io-client/build/cjs/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/cjs/index.js +76 -0
- package/node_modules/socket.io-client/build/cjs/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/cjs/manager.js +416 -0
- package/node_modules/socket.io-client/build/cjs/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/cjs/on.js +9 -0
- package/node_modules/socket.io-client/build/cjs/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/cjs/socket.js +909 -0
- package/node_modules/socket.io-client/build/cjs/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/cjs/url.js +69 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm/index.js +58 -0
- package/node_modules/socket.io-client/build/esm/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm/manager.js +367 -0
- package/node_modules/socket.io-client/build/esm/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm/on.js +6 -0
- package/node_modules/socket.io-client/build/esm/package.json +5 -0
- package/node_modules/socket.io-client/build/esm/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm/socket.js +880 -0
- package/node_modules/socket.io-client/build/esm/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm/url.js +59 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/browser-entrypoint.js +2 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.d.ts +12 -0
- package/node_modules/socket.io-client/build/esm-debug/contrib/backo2.js +66 -0
- package/node_modules/socket.io-client/build/esm-debug/index.d.ts +29 -0
- package/node_modules/socket.io-client/build/esm-debug/index.js +62 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.d.ts +295 -0
- package/node_modules/socket.io-client/build/esm-debug/manager.js +386 -0
- package/node_modules/socket.io-client/build/esm-debug/on.d.ts +2 -0
- package/node_modules/socket.io-client/build/esm-debug/on.js +6 -0
- package/node_modules/socket.io-client/build/esm-debug/package.json +5 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.d.ts +593 -0
- package/node_modules/socket.io-client/build/esm-debug/socket.js +902 -0
- package/node_modules/socket.io-client/build/esm-debug/url.d.ts +33 -0
- package/node_modules/socket.io-client/build/esm-debug/url.js +63 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.esm.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.js +4955 -0
- package/node_modules/socket.io-client/dist/socket.io.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.min.js.map +1 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js +7 -0
- package/node_modules/socket.io-client/dist/socket.io.msgpack.min.js.map +1 -0
- package/node_modules/socket.io-client/package.json +101 -0
- package/node_modules/socket.io-parser/LICENSE +20 -0
- package/node_modules/socket.io-parser/Readme.md +81 -0
- package/node_modules/socket.io-parser/build/cjs/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/cjs/binary.js +87 -0
- package/node_modules/socket.io-parser/build/cjs/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/cjs/index.js +359 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/cjs/is-binary.js +54 -0
- package/node_modules/socket.io-parser/build/cjs/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm/index.js +348 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm/package.json +3 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.d.ts +20 -0
- package/node_modules/socket.io-parser/build/esm-debug/binary.js +83 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.d.ts +91 -0
- package/node_modules/socket.io-parser/build/esm-debug/index.js +353 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts +7 -0
- package/node_modules/socket.io-parser/build/esm-debug/is-binary.js +50 -0
- package/node_modules/socket.io-parser/build/esm-debug/package.json +3 -0
- package/node_modules/socket.io-parser/package.json +44 -0
- package/node_modules/xmlhttprequest-ssl/LICENSE +22 -0
- package/node_modules/xmlhttprequest-ssl/README.md +67 -0
- package/node_modules/xmlhttprequest-ssl/lib/XMLHttpRequest.js +689 -0
- package/node_modules/xmlhttprequest-ssl/package.json +40 -0
- package/openclaw.plugin.json +17 -0
- package/package.json +61 -0
- package/skills/lightclaw-cron/SKILL.md +381 -0
|
@@ -0,0 +1,602 @@
|
|
|
1
|
+
/* eslint no-unused-vars: ["error", { "varsIgnorePattern": "^Duplex" }] */
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
|
|
5
|
+
const { Duplex } = require('stream');
|
|
6
|
+
const { randomFillSync } = require('crypto');
|
|
7
|
+
|
|
8
|
+
const PerMessageDeflate = require('./permessage-deflate');
|
|
9
|
+
const { EMPTY_BUFFER, kWebSocket, NOOP } = require('./constants');
|
|
10
|
+
const { isBlob, isValidStatusCode } = require('./validation');
|
|
11
|
+
const { mask: applyMask, toBuffer } = require('./buffer-util');
|
|
12
|
+
|
|
13
|
+
const kByteLength = Symbol('kByteLength');
|
|
14
|
+
const maskBuffer = Buffer.alloc(4);
|
|
15
|
+
const RANDOM_POOL_SIZE = 8 * 1024;
|
|
16
|
+
let randomPool;
|
|
17
|
+
let randomPoolPointer = RANDOM_POOL_SIZE;
|
|
18
|
+
|
|
19
|
+
const DEFAULT = 0;
|
|
20
|
+
const DEFLATING = 1;
|
|
21
|
+
const GET_BLOB_DATA = 2;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* HyBi Sender implementation.
|
|
25
|
+
*/
|
|
26
|
+
class Sender {
|
|
27
|
+
/**
|
|
28
|
+
* Creates a Sender instance.
|
|
29
|
+
*
|
|
30
|
+
* @param {Duplex} socket The connection socket
|
|
31
|
+
* @param {Object} [extensions] An object containing the negotiated extensions
|
|
32
|
+
* @param {Function} [generateMask] The function used to generate the masking
|
|
33
|
+
* key
|
|
34
|
+
*/
|
|
35
|
+
constructor(socket, extensions, generateMask) {
|
|
36
|
+
this._extensions = extensions || {};
|
|
37
|
+
|
|
38
|
+
if (generateMask) {
|
|
39
|
+
this._generateMask = generateMask;
|
|
40
|
+
this._maskBuffer = Buffer.alloc(4);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
this._socket = socket;
|
|
44
|
+
|
|
45
|
+
this._firstFragment = true;
|
|
46
|
+
this._compress = false;
|
|
47
|
+
|
|
48
|
+
this._bufferedBytes = 0;
|
|
49
|
+
this._queue = [];
|
|
50
|
+
this._state = DEFAULT;
|
|
51
|
+
this.onerror = NOOP;
|
|
52
|
+
this[kWebSocket] = undefined;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Frames a piece of data according to the HyBi WebSocket protocol.
|
|
57
|
+
*
|
|
58
|
+
* @param {(Buffer|String)} data The data to frame
|
|
59
|
+
* @param {Object} options Options object
|
|
60
|
+
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
61
|
+
* FIN bit
|
|
62
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
63
|
+
* masking key
|
|
64
|
+
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
65
|
+
* `data`
|
|
66
|
+
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
67
|
+
* key
|
|
68
|
+
* @param {Number} options.opcode The opcode
|
|
69
|
+
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
70
|
+
* modified
|
|
71
|
+
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
72
|
+
* RSV1 bit
|
|
73
|
+
* @return {(Buffer|String)[]} The framed data
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
static frame(data, options) {
|
|
77
|
+
let mask;
|
|
78
|
+
let merge = false;
|
|
79
|
+
let offset = 2;
|
|
80
|
+
let skipMasking = false;
|
|
81
|
+
|
|
82
|
+
if (options.mask) {
|
|
83
|
+
mask = options.maskBuffer || maskBuffer;
|
|
84
|
+
|
|
85
|
+
if (options.generateMask) {
|
|
86
|
+
options.generateMask(mask);
|
|
87
|
+
} else {
|
|
88
|
+
if (randomPoolPointer === RANDOM_POOL_SIZE) {
|
|
89
|
+
/* istanbul ignore else */
|
|
90
|
+
if (randomPool === undefined) {
|
|
91
|
+
//
|
|
92
|
+
// This is lazily initialized because server-sent frames must not
|
|
93
|
+
// be masked so it may never be used.
|
|
94
|
+
//
|
|
95
|
+
randomPool = Buffer.alloc(RANDOM_POOL_SIZE);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
randomFillSync(randomPool, 0, RANDOM_POOL_SIZE);
|
|
99
|
+
randomPoolPointer = 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
mask[0] = randomPool[randomPoolPointer++];
|
|
103
|
+
mask[1] = randomPool[randomPoolPointer++];
|
|
104
|
+
mask[2] = randomPool[randomPoolPointer++];
|
|
105
|
+
mask[3] = randomPool[randomPoolPointer++];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
skipMasking = (mask[0] | mask[1] | mask[2] | mask[3]) === 0;
|
|
109
|
+
offset = 6;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
let dataLength;
|
|
113
|
+
|
|
114
|
+
if (typeof data === 'string') {
|
|
115
|
+
if (
|
|
116
|
+
(!options.mask || skipMasking) &&
|
|
117
|
+
options[kByteLength] !== undefined
|
|
118
|
+
) {
|
|
119
|
+
dataLength = options[kByteLength];
|
|
120
|
+
} else {
|
|
121
|
+
data = Buffer.from(data);
|
|
122
|
+
dataLength = data.length;
|
|
123
|
+
}
|
|
124
|
+
} else {
|
|
125
|
+
dataLength = data.length;
|
|
126
|
+
merge = options.mask && options.readOnly && !skipMasking;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
let payloadLength = dataLength;
|
|
130
|
+
|
|
131
|
+
if (dataLength >= 65536) {
|
|
132
|
+
offset += 8;
|
|
133
|
+
payloadLength = 127;
|
|
134
|
+
} else if (dataLength > 125) {
|
|
135
|
+
offset += 2;
|
|
136
|
+
payloadLength = 126;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const target = Buffer.allocUnsafe(merge ? dataLength + offset : offset);
|
|
140
|
+
|
|
141
|
+
target[0] = options.fin ? options.opcode | 0x80 : options.opcode;
|
|
142
|
+
if (options.rsv1) target[0] |= 0x40;
|
|
143
|
+
|
|
144
|
+
target[1] = payloadLength;
|
|
145
|
+
|
|
146
|
+
if (payloadLength === 126) {
|
|
147
|
+
target.writeUInt16BE(dataLength, 2);
|
|
148
|
+
} else if (payloadLength === 127) {
|
|
149
|
+
target[2] = target[3] = 0;
|
|
150
|
+
target.writeUIntBE(dataLength, 4, 6);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
if (!options.mask) return [target, data];
|
|
154
|
+
|
|
155
|
+
target[1] |= 0x80;
|
|
156
|
+
target[offset - 4] = mask[0];
|
|
157
|
+
target[offset - 3] = mask[1];
|
|
158
|
+
target[offset - 2] = mask[2];
|
|
159
|
+
target[offset - 1] = mask[3];
|
|
160
|
+
|
|
161
|
+
if (skipMasking) return [target, data];
|
|
162
|
+
|
|
163
|
+
if (merge) {
|
|
164
|
+
applyMask(data, mask, target, offset, dataLength);
|
|
165
|
+
return [target];
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
applyMask(data, mask, data, 0, dataLength);
|
|
169
|
+
return [target, data];
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Sends a close message to the other peer.
|
|
174
|
+
*
|
|
175
|
+
* @param {Number} [code] The status code component of the body
|
|
176
|
+
* @param {(String|Buffer)} [data] The message component of the body
|
|
177
|
+
* @param {Boolean} [mask=false] Specifies whether or not to mask the message
|
|
178
|
+
* @param {Function} [cb] Callback
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
close(code, data, mask, cb) {
|
|
182
|
+
let buf;
|
|
183
|
+
|
|
184
|
+
if (code === undefined) {
|
|
185
|
+
buf = EMPTY_BUFFER;
|
|
186
|
+
} else if (typeof code !== 'number' || !isValidStatusCode(code)) {
|
|
187
|
+
throw new TypeError('First argument must be a valid error code number');
|
|
188
|
+
} else if (data === undefined || !data.length) {
|
|
189
|
+
buf = Buffer.allocUnsafe(2);
|
|
190
|
+
buf.writeUInt16BE(code, 0);
|
|
191
|
+
} else {
|
|
192
|
+
const length = Buffer.byteLength(data);
|
|
193
|
+
|
|
194
|
+
if (length > 123) {
|
|
195
|
+
throw new RangeError('The message must not be greater than 123 bytes');
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
buf = Buffer.allocUnsafe(2 + length);
|
|
199
|
+
buf.writeUInt16BE(code, 0);
|
|
200
|
+
|
|
201
|
+
if (typeof data === 'string') {
|
|
202
|
+
buf.write(data, 2);
|
|
203
|
+
} else {
|
|
204
|
+
buf.set(data, 2);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
const options = {
|
|
209
|
+
[kByteLength]: buf.length,
|
|
210
|
+
fin: true,
|
|
211
|
+
generateMask: this._generateMask,
|
|
212
|
+
mask,
|
|
213
|
+
maskBuffer: this._maskBuffer,
|
|
214
|
+
opcode: 0x08,
|
|
215
|
+
readOnly: false,
|
|
216
|
+
rsv1: false
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
if (this._state !== DEFAULT) {
|
|
220
|
+
this.enqueue([this.dispatch, buf, false, options, cb]);
|
|
221
|
+
} else {
|
|
222
|
+
this.sendFrame(Sender.frame(buf, options), cb);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* Sends a ping message to the other peer.
|
|
228
|
+
*
|
|
229
|
+
* @param {*} data The message to send
|
|
230
|
+
* @param {Boolean} [mask=false] Specifies whether or not to mask `data`
|
|
231
|
+
* @param {Function} [cb] Callback
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
ping(data, mask, cb) {
|
|
235
|
+
let byteLength;
|
|
236
|
+
let readOnly;
|
|
237
|
+
|
|
238
|
+
if (typeof data === 'string') {
|
|
239
|
+
byteLength = Buffer.byteLength(data);
|
|
240
|
+
readOnly = false;
|
|
241
|
+
} else if (isBlob(data)) {
|
|
242
|
+
byteLength = data.size;
|
|
243
|
+
readOnly = false;
|
|
244
|
+
} else {
|
|
245
|
+
data = toBuffer(data);
|
|
246
|
+
byteLength = data.length;
|
|
247
|
+
readOnly = toBuffer.readOnly;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
if (byteLength > 125) {
|
|
251
|
+
throw new RangeError('The data size must not be greater than 125 bytes');
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const options = {
|
|
255
|
+
[kByteLength]: byteLength,
|
|
256
|
+
fin: true,
|
|
257
|
+
generateMask: this._generateMask,
|
|
258
|
+
mask,
|
|
259
|
+
maskBuffer: this._maskBuffer,
|
|
260
|
+
opcode: 0x09,
|
|
261
|
+
readOnly,
|
|
262
|
+
rsv1: false
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
if (isBlob(data)) {
|
|
266
|
+
if (this._state !== DEFAULT) {
|
|
267
|
+
this.enqueue([this.getBlobData, data, false, options, cb]);
|
|
268
|
+
} else {
|
|
269
|
+
this.getBlobData(data, false, options, cb);
|
|
270
|
+
}
|
|
271
|
+
} else if (this._state !== DEFAULT) {
|
|
272
|
+
this.enqueue([this.dispatch, data, false, options, cb]);
|
|
273
|
+
} else {
|
|
274
|
+
this.sendFrame(Sender.frame(data, options), cb);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Sends a pong message to the other peer.
|
|
280
|
+
*
|
|
281
|
+
* @param {*} data The message to send
|
|
282
|
+
* @param {Boolean} [mask=false] Specifies whether or not to mask `data`
|
|
283
|
+
* @param {Function} [cb] Callback
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
pong(data, mask, cb) {
|
|
287
|
+
let byteLength;
|
|
288
|
+
let readOnly;
|
|
289
|
+
|
|
290
|
+
if (typeof data === 'string') {
|
|
291
|
+
byteLength = Buffer.byteLength(data);
|
|
292
|
+
readOnly = false;
|
|
293
|
+
} else if (isBlob(data)) {
|
|
294
|
+
byteLength = data.size;
|
|
295
|
+
readOnly = false;
|
|
296
|
+
} else {
|
|
297
|
+
data = toBuffer(data);
|
|
298
|
+
byteLength = data.length;
|
|
299
|
+
readOnly = toBuffer.readOnly;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
if (byteLength > 125) {
|
|
303
|
+
throw new RangeError('The data size must not be greater than 125 bytes');
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
const options = {
|
|
307
|
+
[kByteLength]: byteLength,
|
|
308
|
+
fin: true,
|
|
309
|
+
generateMask: this._generateMask,
|
|
310
|
+
mask,
|
|
311
|
+
maskBuffer: this._maskBuffer,
|
|
312
|
+
opcode: 0x0a,
|
|
313
|
+
readOnly,
|
|
314
|
+
rsv1: false
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
if (isBlob(data)) {
|
|
318
|
+
if (this._state !== DEFAULT) {
|
|
319
|
+
this.enqueue([this.getBlobData, data, false, options, cb]);
|
|
320
|
+
} else {
|
|
321
|
+
this.getBlobData(data, false, options, cb);
|
|
322
|
+
}
|
|
323
|
+
} else if (this._state !== DEFAULT) {
|
|
324
|
+
this.enqueue([this.dispatch, data, false, options, cb]);
|
|
325
|
+
} else {
|
|
326
|
+
this.sendFrame(Sender.frame(data, options), cb);
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* Sends a data message to the other peer.
|
|
332
|
+
*
|
|
333
|
+
* @param {*} data The message to send
|
|
334
|
+
* @param {Object} options Options object
|
|
335
|
+
* @param {Boolean} [options.binary=false] Specifies whether `data` is binary
|
|
336
|
+
* or text
|
|
337
|
+
* @param {Boolean} [options.compress=false] Specifies whether or not to
|
|
338
|
+
* compress `data`
|
|
339
|
+
* @param {Boolean} [options.fin=false] Specifies whether the fragment is the
|
|
340
|
+
* last one
|
|
341
|
+
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
342
|
+
* `data`
|
|
343
|
+
* @param {Function} [cb] Callback
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
346
|
+
send(data, options, cb) {
|
|
347
|
+
const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
|
|
348
|
+
let opcode = options.binary ? 2 : 1;
|
|
349
|
+
let rsv1 = options.compress;
|
|
350
|
+
|
|
351
|
+
let byteLength;
|
|
352
|
+
let readOnly;
|
|
353
|
+
|
|
354
|
+
if (typeof data === 'string') {
|
|
355
|
+
byteLength = Buffer.byteLength(data);
|
|
356
|
+
readOnly = false;
|
|
357
|
+
} else if (isBlob(data)) {
|
|
358
|
+
byteLength = data.size;
|
|
359
|
+
readOnly = false;
|
|
360
|
+
} else {
|
|
361
|
+
data = toBuffer(data);
|
|
362
|
+
byteLength = data.length;
|
|
363
|
+
readOnly = toBuffer.readOnly;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
if (this._firstFragment) {
|
|
367
|
+
this._firstFragment = false;
|
|
368
|
+
if (
|
|
369
|
+
rsv1 &&
|
|
370
|
+
perMessageDeflate &&
|
|
371
|
+
perMessageDeflate.params[
|
|
372
|
+
perMessageDeflate._isServer
|
|
373
|
+
? 'server_no_context_takeover'
|
|
374
|
+
: 'client_no_context_takeover'
|
|
375
|
+
]
|
|
376
|
+
) {
|
|
377
|
+
rsv1 = byteLength >= perMessageDeflate._threshold;
|
|
378
|
+
}
|
|
379
|
+
this._compress = rsv1;
|
|
380
|
+
} else {
|
|
381
|
+
rsv1 = false;
|
|
382
|
+
opcode = 0;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
if (options.fin) this._firstFragment = true;
|
|
386
|
+
|
|
387
|
+
const opts = {
|
|
388
|
+
[kByteLength]: byteLength,
|
|
389
|
+
fin: options.fin,
|
|
390
|
+
generateMask: this._generateMask,
|
|
391
|
+
mask: options.mask,
|
|
392
|
+
maskBuffer: this._maskBuffer,
|
|
393
|
+
opcode,
|
|
394
|
+
readOnly,
|
|
395
|
+
rsv1
|
|
396
|
+
};
|
|
397
|
+
|
|
398
|
+
if (isBlob(data)) {
|
|
399
|
+
if (this._state !== DEFAULT) {
|
|
400
|
+
this.enqueue([this.getBlobData, data, this._compress, opts, cb]);
|
|
401
|
+
} else {
|
|
402
|
+
this.getBlobData(data, this._compress, opts, cb);
|
|
403
|
+
}
|
|
404
|
+
} else if (this._state !== DEFAULT) {
|
|
405
|
+
this.enqueue([this.dispatch, data, this._compress, opts, cb]);
|
|
406
|
+
} else {
|
|
407
|
+
this.dispatch(data, this._compress, opts, cb);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* Gets the contents of a blob as binary data.
|
|
413
|
+
*
|
|
414
|
+
* @param {Blob} blob The blob
|
|
415
|
+
* @param {Boolean} [compress=false] Specifies whether or not to compress
|
|
416
|
+
* the data
|
|
417
|
+
* @param {Object} options Options object
|
|
418
|
+
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
419
|
+
* FIN bit
|
|
420
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
421
|
+
* masking key
|
|
422
|
+
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
423
|
+
* `data`
|
|
424
|
+
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
425
|
+
* key
|
|
426
|
+
* @param {Number} options.opcode The opcode
|
|
427
|
+
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
428
|
+
* modified
|
|
429
|
+
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
430
|
+
* RSV1 bit
|
|
431
|
+
* @param {Function} [cb] Callback
|
|
432
|
+
* @private
|
|
433
|
+
*/
|
|
434
|
+
getBlobData(blob, compress, options, cb) {
|
|
435
|
+
this._bufferedBytes += options[kByteLength];
|
|
436
|
+
this._state = GET_BLOB_DATA;
|
|
437
|
+
|
|
438
|
+
blob
|
|
439
|
+
.arrayBuffer()
|
|
440
|
+
.then((arrayBuffer) => {
|
|
441
|
+
if (this._socket.destroyed) {
|
|
442
|
+
const err = new Error(
|
|
443
|
+
'The socket was closed while the blob was being read'
|
|
444
|
+
);
|
|
445
|
+
|
|
446
|
+
//
|
|
447
|
+
// `callCallbacks` is called in the next tick to ensure that errors
|
|
448
|
+
// that might be thrown in the callbacks behave like errors thrown
|
|
449
|
+
// outside the promise chain.
|
|
450
|
+
//
|
|
451
|
+
process.nextTick(callCallbacks, this, err, cb);
|
|
452
|
+
return;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
this._bufferedBytes -= options[kByteLength];
|
|
456
|
+
const data = toBuffer(arrayBuffer);
|
|
457
|
+
|
|
458
|
+
if (!compress) {
|
|
459
|
+
this._state = DEFAULT;
|
|
460
|
+
this.sendFrame(Sender.frame(data, options), cb);
|
|
461
|
+
this.dequeue();
|
|
462
|
+
} else {
|
|
463
|
+
this.dispatch(data, compress, options, cb);
|
|
464
|
+
}
|
|
465
|
+
})
|
|
466
|
+
.catch((err) => {
|
|
467
|
+
//
|
|
468
|
+
// `onError` is called in the next tick for the same reason that
|
|
469
|
+
// `callCallbacks` above is.
|
|
470
|
+
//
|
|
471
|
+
process.nextTick(onError, this, err, cb);
|
|
472
|
+
});
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Dispatches a message.
|
|
477
|
+
*
|
|
478
|
+
* @param {(Buffer|String)} data The message to send
|
|
479
|
+
* @param {Boolean} [compress=false] Specifies whether or not to compress
|
|
480
|
+
* `data`
|
|
481
|
+
* @param {Object} options Options object
|
|
482
|
+
* @param {Boolean} [options.fin=false] Specifies whether or not to set the
|
|
483
|
+
* FIN bit
|
|
484
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
485
|
+
* masking key
|
|
486
|
+
* @param {Boolean} [options.mask=false] Specifies whether or not to mask
|
|
487
|
+
* `data`
|
|
488
|
+
* @param {Buffer} [options.maskBuffer] The buffer used to store the masking
|
|
489
|
+
* key
|
|
490
|
+
* @param {Number} options.opcode The opcode
|
|
491
|
+
* @param {Boolean} [options.readOnly=false] Specifies whether `data` can be
|
|
492
|
+
* modified
|
|
493
|
+
* @param {Boolean} [options.rsv1=false] Specifies whether or not to set the
|
|
494
|
+
* RSV1 bit
|
|
495
|
+
* @param {Function} [cb] Callback
|
|
496
|
+
* @private
|
|
497
|
+
*/
|
|
498
|
+
dispatch(data, compress, options, cb) {
|
|
499
|
+
if (!compress) {
|
|
500
|
+
this.sendFrame(Sender.frame(data, options), cb);
|
|
501
|
+
return;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
const perMessageDeflate = this._extensions[PerMessageDeflate.extensionName];
|
|
505
|
+
|
|
506
|
+
this._bufferedBytes += options[kByteLength];
|
|
507
|
+
this._state = DEFLATING;
|
|
508
|
+
perMessageDeflate.compress(data, options.fin, (_, buf) => {
|
|
509
|
+
if (this._socket.destroyed) {
|
|
510
|
+
const err = new Error(
|
|
511
|
+
'The socket was closed while data was being compressed'
|
|
512
|
+
);
|
|
513
|
+
|
|
514
|
+
callCallbacks(this, err, cb);
|
|
515
|
+
return;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
this._bufferedBytes -= options[kByteLength];
|
|
519
|
+
this._state = DEFAULT;
|
|
520
|
+
options.readOnly = false;
|
|
521
|
+
this.sendFrame(Sender.frame(buf, options), cb);
|
|
522
|
+
this.dequeue();
|
|
523
|
+
});
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* Executes queued send operations.
|
|
528
|
+
*
|
|
529
|
+
* @private
|
|
530
|
+
*/
|
|
531
|
+
dequeue() {
|
|
532
|
+
while (this._state === DEFAULT && this._queue.length) {
|
|
533
|
+
const params = this._queue.shift();
|
|
534
|
+
|
|
535
|
+
this._bufferedBytes -= params[3][kByteLength];
|
|
536
|
+
Reflect.apply(params[0], this, params.slice(1));
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
* Enqueues a send operation.
|
|
542
|
+
*
|
|
543
|
+
* @param {Array} params Send operation parameters.
|
|
544
|
+
* @private
|
|
545
|
+
*/
|
|
546
|
+
enqueue(params) {
|
|
547
|
+
this._bufferedBytes += params[3][kByteLength];
|
|
548
|
+
this._queue.push(params);
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* Sends a frame.
|
|
553
|
+
*
|
|
554
|
+
* @param {(Buffer | String)[]} list The frame to send
|
|
555
|
+
* @param {Function} [cb] Callback
|
|
556
|
+
* @private
|
|
557
|
+
*/
|
|
558
|
+
sendFrame(list, cb) {
|
|
559
|
+
if (list.length === 2) {
|
|
560
|
+
this._socket.cork();
|
|
561
|
+
this._socket.write(list[0]);
|
|
562
|
+
this._socket.write(list[1], cb);
|
|
563
|
+
this._socket.uncork();
|
|
564
|
+
} else {
|
|
565
|
+
this._socket.write(list[0], cb);
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
module.exports = Sender;
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Calls queued callbacks with an error.
|
|
574
|
+
*
|
|
575
|
+
* @param {Sender} sender The `Sender` instance
|
|
576
|
+
* @param {Error} err The error to call the callbacks with
|
|
577
|
+
* @param {Function} [cb] The first callback
|
|
578
|
+
* @private
|
|
579
|
+
*/
|
|
580
|
+
function callCallbacks(sender, err, cb) {
|
|
581
|
+
if (typeof cb === 'function') cb(err);
|
|
582
|
+
|
|
583
|
+
for (let i = 0; i < sender._queue.length; i++) {
|
|
584
|
+
const params = sender._queue[i];
|
|
585
|
+
const callback = params[params.length - 1];
|
|
586
|
+
|
|
587
|
+
if (typeof callback === 'function') callback(err);
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* Handles a `Sender` error.
|
|
593
|
+
*
|
|
594
|
+
* @param {Sender} sender The `Sender` instance
|
|
595
|
+
* @param {Error} err The error
|
|
596
|
+
* @param {Function} [cb] The first pending callback
|
|
597
|
+
* @private
|
|
598
|
+
*/
|
|
599
|
+
function onError(sender, err, cb) {
|
|
600
|
+
callCallbacks(sender, err, cb);
|
|
601
|
+
sender.onerror(err);
|
|
602
|
+
}
|