build: update distribution (#2921)

This commit is contained in:
actions-bot 2024-05-28 14:21:15 +01:00 committed by GitHub
parent b67febc3a3
commit b5ed4c38bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

126
dist/index.js vendored
View file

@ -28097,10 +28097,6 @@ Reflect.deleteProperty(Headers, 'setHeadersGuard')
Reflect.deleteProperty(Headers, 'getHeadersList') Reflect.deleteProperty(Headers, 'getHeadersList')
Reflect.deleteProperty(Headers, 'setHeadersList') Reflect.deleteProperty(Headers, 'setHeadersList')
Object.defineProperty(Headers.prototype, util.inspect.custom, {
enumerable: false
})
iteratorMixin('Headers', Headers, kHeadersSortedMap, 0, 1) iteratorMixin('Headers', Headers, kHeadersSortedMap, 0, 1)
Object.defineProperties(Headers.prototype, { Object.defineProperties(Headers.prototype, {
@ -28113,6 +28109,17 @@ Object.defineProperties(Headers.prototype, {
[Symbol.toStringTag]: { [Symbol.toStringTag]: {
value: 'Headers', value: 'Headers',
configurable: true configurable: true
},
[util.inspect.custom]: {
enumerable: false
},
// Compatibility for global headers
[Symbol('headers list')]: {
configurable: false,
enumerable: false,
get: function () {
return getHeadersList(this)
}
} }
}) })
@ -36828,8 +36835,8 @@ class ByteParser extends Writable {
this.#loop = true this.#loop = true
this.#state = parserStates.INFO this.#state = parserStates.INFO
this.run(callback)
this.#fragments.length = 0 this.#fragments.length = 0
this.run(callback)
}) })
this.#loop = false this.#loop = false
@ -37022,15 +37029,30 @@ module.exports = {
const { WebsocketFrameSend } = __nccwpck_require__(2391) const { WebsocketFrameSend } = __nccwpck_require__(2391)
const { opcodes, sendHints } = __nccwpck_require__(3587) const { opcodes, sendHints } = __nccwpck_require__(3587)
const FixedQueue = __nccwpck_require__(5158)
/** @type {Uint8Array} */ /** @type {typeof Uint8Array} */
const FastBuffer = Buffer[Symbol.species] const FastBuffer = Buffer[Symbol.species]
class SendQueue { /**
#queued = new Set() * @typedef {object} SendQueueNode
#size = 0 * @property {Promise<void> | null} promise
* @property {((...args: any[]) => any)} callback
* @property {Buffer | null} frame
*/
/** @type {import('net').Socket} */ class SendQueue {
/**
* @type {FixedQueue}
*/
#queue = new FixedQueue()
/**
* @type {boolean}
*/
#running = false
/** @type {import('node:net').Socket} */
#socket #socket
constructor (socket) { constructor (socket) {
@ -37039,58 +37061,62 @@ class SendQueue {
add (item, cb, hint) { add (item, cb, hint) {
if (hint !== sendHints.blob) { if (hint !== sendHints.blob) {
const data = clone(item, hint) const frame = createFrame(item, hint)
if (!this.#running) {
if (this.#size === 0) { // fast-path
this.#dispatch(data, cb, hint) this.#socket.write(frame, cb)
} else { } else {
this.#queued.add([data, cb, true, hint]) /** @type {SendQueueNode} */
this.#size++ const node = {
promise: null,
this.#run() callback: cb,
frame
}
this.#queue.push(node)
} }
return return
} }
const promise = item.arrayBuffer() /** @type {SendQueueNode} */
const queue = [null, cb, false, hint] const node = {
promise.then((ab) => { promise: item.arrayBuffer().then((ab) => {
queue[0] = clone(ab, hint) node.promise = null
queue[2] = true node.frame = createFrame(ab, hint)
}),
callback: cb,
frame: null
}
this.#queue.push(node)
if (!this.#running) {
this.#run() this.#run()
})
this.#queued.add(queue)
this.#size++
}
#run () {
for (const queued of this.#queued) {
const [data, cb, done, hint] = queued
if (!done) return
this.#queued.delete(queued)
this.#size--
this.#dispatch(data, cb, hint)
} }
} }
#dispatch (data, cb, hint) { async #run () {
const frame = new WebsocketFrameSend() this.#running = true
const opcode = hint === sendHints.string ? opcodes.TEXT : opcodes.BINARY const queue = this.#queue
while (!queue.isEmpty()) {
frame.frameData = data const node = queue.shift()
const buffer = frame.createFrame(opcode) // wait pending promise
if (node.promise !== null) {
this.#socket.write(buffer, cb) await node.promise
}
// write
this.#socket.write(node.frame, node.callback)
// cleanup
node.callback = node.frame = null
}
this.#running = false
} }
} }
function clone (data, hint) { function createFrame (data, hint) {
return new WebsocketFrameSend(toBuffer(data, hint)).createFrame(hint === sendHints.string ? opcodes.TEXT : opcodes.BINARY)
}
function toBuffer (data, hint) {
switch (hint) { switch (hint) {
case sendHints.string: case sendHints.string:
return Buffer.from(data) return Buffer.from(data)
@ -37098,7 +37124,7 @@ function clone (data, hint) {
case sendHints.blob: case sendHints.blob:
return new FastBuffer(data) return new FastBuffer(data)
case sendHints.typedArray: case sendHints.typedArray:
return Buffer.copyBytesFrom(data) return new FastBuffer(data.buffer, data.byteOffset, data.byteLength)
} }
} }