llonebot-dist 6.6.4

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.
Files changed (134) hide show
  1. dist/default_config.json +68 -0
  2. dist/llonebot.js +48348 -0
  3. dist/llonebot.js.map +1 -0
  4. dist/node_modules/@borewit/text-codec/LICENSE.txt +9 -0
  5. dist/node_modules/@borewit/text-codec/README.md +76 -0
  6. dist/node_modules/@borewit/text-codec/lib/index.d.ts +8 -0
  7. dist/node_modules/@borewit/text-codec/lib/index.js +161 -0
  8. dist/node_modules/@borewit/text-codec/package.json +68 -0
  9. dist/node_modules/@minatojs/sql.js/LICENSE +44 -0
  10. dist/node_modules/@minatojs/sql.js/README.md +357 -0
  11. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.d.ts +316 -0
  12. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.js +225 -0
  13. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.wasm +0 -0
  14. dist/node_modules/@minatojs/sql.js/package.json +58 -0
  15. dist/node_modules/@tokenizer/inflate/LICENSE +15 -0
  16. dist/node_modules/@tokenizer/inflate/README.md +114 -0
  17. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.d.ts +6 -0
  18. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.js +19 -0
  19. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.d.ts +26 -0
  20. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.js +233 -0
  21. dist/node_modules/@tokenizer/inflate/lib/ZipToken.d.ts +94 -0
  22. dist/node_modules/@tokenizer/inflate/lib/ZipToken.js +117 -0
  23. dist/node_modules/@tokenizer/inflate/lib/index.d.ts +3 -0
  24. dist/node_modules/@tokenizer/inflate/lib/index.js +2 -0
  25. dist/node_modules/@tokenizer/inflate/package.json +76 -0
  26. dist/node_modules/@tokenizer/token/README.md +19 -0
  27. dist/node_modules/@tokenizer/token/index.d.ts +30 -0
  28. dist/node_modules/@tokenizer/token/package.json +33 -0
  29. dist/node_modules/debug/LICENSE +20 -0
  30. dist/node_modules/debug/README.md +481 -0
  31. dist/node_modules/debug/package.json +64 -0
  32. dist/node_modules/debug/src/browser.js +272 -0
  33. dist/node_modules/debug/src/common.js +292 -0
  34. dist/node_modules/debug/src/index.js +10 -0
  35. dist/node_modules/debug/src/node.js +263 -0
  36. dist/node_modules/file-type/core.d.ts +253 -0
  37. dist/node_modules/file-type/core.js +1899 -0
  38. dist/node_modules/file-type/index.d.ts +98 -0
  39. dist/node_modules/file-type/index.js +86 -0
  40. dist/node_modules/file-type/license +9 -0
  41. dist/node_modules/file-type/package.json +288 -0
  42. dist/node_modules/file-type/readme.md +674 -0
  43. dist/node_modules/file-type/supported.js +356 -0
  44. dist/node_modules/file-type/util.js +60 -0
  45. dist/node_modules/ieee754/LICENSE +11 -0
  46. dist/node_modules/ieee754/README.md +51 -0
  47. dist/node_modules/ieee754/index.d.ts +10 -0
  48. dist/node_modules/ieee754/index.js +85 -0
  49. dist/node_modules/ieee754/package.json +52 -0
  50. dist/node_modules/ms/index.js +162 -0
  51. dist/node_modules/ms/license.md +21 -0
  52. dist/node_modules/ms/package.json +38 -0
  53. dist/node_modules/ms/readme.md +59 -0
  54. dist/node_modules/silk-wasm/LICENSE +21 -0
  55. dist/node_modules/silk-wasm/README.md +85 -0
  56. dist/node_modules/silk-wasm/lib/index.cjs +16 -0
  57. dist/node_modules/silk-wasm/lib/index.d.ts +70 -0
  58. dist/node_modules/silk-wasm/lib/index.mjs +16 -0
  59. dist/node_modules/silk-wasm/lib/silk.wasm +0 -0
  60. dist/node_modules/silk-wasm/lib/utils.d.ts +4 -0
  61. dist/node_modules/silk-wasm/package.json +39 -0
  62. dist/node_modules/strtok3/LICENSE.txt +21 -0
  63. dist/node_modules/strtok3/README.md +399 -0
  64. dist/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
  65. dist/node_modules/strtok3/lib/AbstractTokenizer.js +108 -0
  66. dist/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
  67. dist/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
  68. dist/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
  69. dist/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
  70. dist/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
  71. dist/node_modules/strtok3/lib/FileTokenizer.js +61 -0
  72. dist/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +31 -0
  73. dist/node_modules/strtok3/lib/ReadStreamTokenizer.js +102 -0
  74. dist/node_modules/strtok3/lib/core.d.ts +40 -0
  75. dist/node_modules/strtok3/lib/core.js +62 -0
  76. dist/node_modules/strtok3/lib/index.d.ts +16 -0
  77. dist/node_modules/strtok3/lib/index.js +22 -0
  78. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
  79. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
  80. dist/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
  81. dist/node_modules/strtok3/lib/stream/Deferred.js +10 -0
  82. dist/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
  83. dist/node_modules/strtok3/lib/stream/Errors.js +16 -0
  84. dist/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
  85. dist/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
  86. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
  87. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
  88. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
  89. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
  90. dist/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
  91. dist/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
  92. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
  93. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
  94. dist/node_modules/strtok3/lib/stream/index.d.ts +6 -0
  95. dist/node_modules/strtok3/lib/stream/index.js +5 -0
  96. dist/node_modules/strtok3/lib/types.d.ts +139 -0
  97. dist/node_modules/strtok3/lib/types.js +1 -0
  98. dist/node_modules/strtok3/package.json +94 -0
  99. dist/node_modules/token-types/LICENSE.txt +9 -0
  100. dist/node_modules/token-types/README.md +120 -0
  101. dist/node_modules/token-types/lib/index.d.ts +135 -0
  102. dist/node_modules/token-types/lib/index.js +401 -0
  103. dist/node_modules/token-types/package.json +81 -0
  104. dist/node_modules/uint8array-extras/index.d.ts +312 -0
  105. dist/node_modules/uint8array-extras/index.js +321 -0
  106. dist/node_modules/uint8array-extras/license +9 -0
  107. dist/node_modules/uint8array-extras/package.json +54 -0
  108. dist/node_modules/uint8array-extras/readme.md +301 -0
  109. dist/node_modules/ws/LICENSE +20 -0
  110. dist/node_modules/ws/README.md +548 -0
  111. dist/node_modules/ws/browser.js +8 -0
  112. dist/node_modules/ws/index.js +13 -0
  113. dist/node_modules/ws/lib/buffer-util.js +131 -0
  114. dist/node_modules/ws/lib/constants.js +18 -0
  115. dist/node_modules/ws/lib/event-target.js +292 -0
  116. dist/node_modules/ws/lib/extension.js +203 -0
  117. dist/node_modules/ws/lib/limiter.js +55 -0
  118. dist/node_modules/ws/lib/permessage-deflate.js +528 -0
  119. dist/node_modules/ws/lib/receiver.js +706 -0
  120. dist/node_modules/ws/lib/sender.js +602 -0
  121. dist/node_modules/ws/lib/stream.js +161 -0
  122. dist/node_modules/ws/lib/subprotocol.js +62 -0
  123. dist/node_modules/ws/lib/validation.js +152 -0
  124. dist/node_modules/ws/lib/websocket-server.js +550 -0
  125. dist/node_modules/ws/lib/websocket.js +1388 -0
  126. dist/node_modules/ws/package.json +69 -0
  127. dist/node_modules/ws/wrapper.mjs +8 -0
  128. dist/package.json +1 -0
  129. dist/webui/assets/index-B9vGhdCO.js +256 -0
  130. dist/webui/assets/index-DaqFU7JR.css +1 -0
  131. dist/webui/index.html +13 -0
  132. dist/webui/logo.jpg +0 -0
  133. dist//344/275/277/347/224/250/350/257/264/346/230/216.txt +11 -0
  134. dist//346/233/264/346/226/260/346/227/245/345/277/227.txt +399 -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
+ }