2021-11-10 14:15:09 +00:00
|
|
|
const c = require('compact-encoding')
|
|
|
|
const m = require('./messages')
|
|
|
|
|
|
|
|
class Protocol {
|
|
|
|
constructor (muxer, offset, protocol) {
|
|
|
|
this.muxer = muxer
|
|
|
|
this.stream = muxer.stream
|
|
|
|
this.start = offset
|
|
|
|
this.end = offset + protocol.messages.length
|
|
|
|
this.name = protocol.name
|
|
|
|
this.version = protocol.version || { major: 0, minor: 0 }
|
|
|
|
this.messages = protocol.messages.length
|
|
|
|
this.remoteOpened = false
|
|
|
|
this.removed = false
|
|
|
|
this.encodings = protocol.messages
|
|
|
|
this.onmessage = noop
|
|
|
|
this.onopen = noop
|
|
|
|
this.onclose = noop
|
|
|
|
}
|
|
|
|
|
|
|
|
get corked () {
|
|
|
|
return this.muxer.corked
|
|
|
|
}
|
|
|
|
|
|
|
|
cork () {
|
|
|
|
this.muxer.cork()
|
|
|
|
}
|
|
|
|
|
|
|
|
uncork () {
|
|
|
|
this.muxer.uncork()
|
|
|
|
}
|
|
|
|
|
|
|
|
send (type, message) {
|
|
|
|
const t = this.start + type
|
|
|
|
const enc = this.encodings[type]
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
if (this.muxer._handshakeSent === false) {
|
|
|
|
this.muxer._sendHandshake()
|
|
|
|
}
|
|
|
|
|
2021-11-10 14:15:09 +00:00
|
|
|
if (this.muxer.corked > 0) {
|
|
|
|
this.muxer._batch.push({ type: t, encoding: enc, message })
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const state = { start: 0, end: 0, buffer: null }
|
|
|
|
|
|
|
|
c.uint.preencode(state, t)
|
|
|
|
enc.preencode(state, message)
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
state.buffer = this.muxer._alloc(state.end)
|
2021-11-10 14:15:09 +00:00
|
|
|
|
|
|
|
c.uint.encode(state, t)
|
|
|
|
enc.encode(state, message)
|
|
|
|
|
|
|
|
return this.stream.write(state.buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
recv (type, state) {
|
|
|
|
this.onmessage(type, this.encodings[type].decode(state))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = class Protomux {
|
|
|
|
constructor (stream, protocols, opts = {}) {
|
|
|
|
this.stream = stream
|
|
|
|
|
|
|
|
this.protocols = []
|
|
|
|
this.offset = 2
|
|
|
|
|
|
|
|
this.remoteProtocols = []
|
|
|
|
this.remoteOffset = 2
|
|
|
|
|
|
|
|
this.remoteHandshake = null
|
|
|
|
this.onhandshake = noop
|
|
|
|
|
|
|
|
this.corked = 0
|
|
|
|
|
|
|
|
this._batch = null
|
|
|
|
this._unmatchedProtocols = []
|
2021-12-27 15:09:34 +00:00
|
|
|
this._handshakeSent = false
|
|
|
|
this._alloc = opts.alloc || (typeof stream.alloc === 'function' ? stream.alloc.bind(stream) : Buffer.allocUnsafe)
|
2021-11-10 14:15:09 +00:00
|
|
|
|
|
|
|
for (const p of protocols) this.addProtocol(p)
|
|
|
|
|
|
|
|
this.stream.on('data', this._ondata.bind(this))
|
2021-12-27 15:09:34 +00:00
|
|
|
queueMicrotask(this._sendHandshake.bind(this))
|
2021-11-10 14:15:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
remoteOpened (name, version) {
|
|
|
|
for (const { remote } of this.remoteProtocols) {
|
|
|
|
if (remote.name === name || (version === undefined || version.major === remote.version.major)) return true
|
2021-11-10 14:15:09 +00:00
|
|
|
}
|
|
|
|
for (const { remote } of this._unmatchedProtocols) {
|
2021-12-27 15:09:34 +00:00
|
|
|
if (remote.name === name || (version === undefined || version.major === remote.version.major)) return true
|
2021-11-10 14:15:09 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
addProtocol (p) {
|
|
|
|
const local = new Protocol(this, this.offset, p)
|
|
|
|
|
|
|
|
this.protocols.push(local)
|
|
|
|
this.offset += p.messages.length
|
|
|
|
|
|
|
|
for (let i = 0; i < this._unmatchedProtocols.length; i++) {
|
|
|
|
const { start, remote } = this._unmatchedProtocols[i]
|
2021-12-27 15:09:34 +00:00
|
|
|
if (remote.name !== local.name || remote.version.major !== local.version.major) continue
|
2021-11-10 14:15:09 +00:00
|
|
|
local.remoteOpened = true
|
|
|
|
this._unmatchedProtocols.splice(i, 1)
|
2021-12-27 15:09:34 +00:00
|
|
|
const end = start + Math.min(remote.messages, local.messages)
|
2021-11-10 14:15:09 +00:00
|
|
|
this.remoteProtocols.push({ local, remote, start, end })
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
return local
|
|
|
|
}
|
|
|
|
|
|
|
|
removeProtocol (p) {
|
2021-12-27 15:09:34 +00:00
|
|
|
const { name, version = { major: 0, minor: 0 } } = typeof p === 'string' ? { name: p, version: undefined } : p
|
|
|
|
|
2021-11-10 14:15:09 +00:00
|
|
|
for (let i = 0; i < this.protocols.length; i++) {
|
|
|
|
const local = this.protocols[i]
|
2021-12-27 15:09:34 +00:00
|
|
|
if (local.name !== name || local.version.major !== version.major) continue
|
2021-11-10 14:15:09 +00:00
|
|
|
p.removed = true
|
|
|
|
this.protocols.splice(i, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < this.remoteProtocols.length; i++) {
|
|
|
|
const { local, remote, start } = this.remoteProtocols[i]
|
2021-12-27 15:09:34 +00:00
|
|
|
if (local.name !== name || local.version.major !== version.major) continue
|
2021-11-10 14:15:09 +00:00
|
|
|
this.remoteProtocols.splice(i, 1)
|
|
|
|
this._unmatchedProtocols.push({ start, remote })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addRemoteProtocol (p) {
|
2021-12-27 15:09:34 +00:00
|
|
|
if (!p.version) p = { name: p.name, version: { major: 0, minor: 0 }, messages: p.messages }
|
|
|
|
|
2021-11-10 14:15:09 +00:00
|
|
|
const local = this.get(p.name)
|
|
|
|
const start = this.remoteOffset
|
|
|
|
|
|
|
|
this.remoteOffset += p.messages
|
|
|
|
|
|
|
|
if (!local || local.version.major !== p.version.major) {
|
|
|
|
this._unmatchedProtocols.push({ start, remote: p })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local.remoteOpened) {
|
|
|
|
this.destroy(new Error('Remote sent duplicate protocols'))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const end = start + Math.min(p.messages, local.messages)
|
|
|
|
|
|
|
|
this.remoteProtocols.push({ local, remote: p, start, end })
|
|
|
|
|
|
|
|
local.remoteOpened = true
|
|
|
|
local.onopen()
|
|
|
|
}
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
removeRemoteProtocol ({ name, version = { major: 0, minor: 0 } }) {
|
2021-11-10 14:15:09 +00:00
|
|
|
for (let i = 0; i < this.remoteProtocols.length; i++) {
|
|
|
|
const { local } = this.remoteProtocols[i]
|
2021-12-27 15:09:34 +00:00
|
|
|
if (local.name !== name || local.version.major !== version.major) continue
|
2021-11-10 14:15:09 +00:00
|
|
|
this.remoteProtocols.splice(i, 1)
|
|
|
|
local.remoteOpened = false
|
|
|
|
local.onclose()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < this._unmatchedProtocols.length; i++) {
|
|
|
|
const { remote } = this._unmatchedProtocols[i]
|
2021-12-27 15:09:34 +00:00
|
|
|
if (remote.name !== name || remote.version.major !== version.major) continue
|
2021-11-10 14:15:09 +00:00
|
|
|
this._unmatchedProtocols.splice(i, 1)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ondata (buffer) {
|
2021-12-27 15:09:34 +00:00
|
|
|
if (buffer.byteLength === 0) return // keep alive
|
|
|
|
|
2021-11-10 14:15:09 +00:00
|
|
|
const state = { start: 0, end: buffer.byteLength, buffer }
|
|
|
|
|
|
|
|
try {
|
2021-12-27 15:09:34 +00:00
|
|
|
this._recv(state)
|
2021-11-10 14:15:09 +00:00
|
|
|
} catch (err) {
|
|
|
|
this.destroy(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_recv (state) {
|
|
|
|
const t = c.uint.decode(state)
|
|
|
|
|
|
|
|
if (t < 2) {
|
|
|
|
if (t === 0) {
|
|
|
|
this._recvBatch(state)
|
|
|
|
} else {
|
|
|
|
this._recvHandshake(state)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < this.remoteProtocols.length; i++) {
|
|
|
|
const p = this.remoteProtocols[i]
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
if (p.start <= t && t < p.end) {
|
2021-11-10 14:15:09 +00:00
|
|
|
p.local.recv(t - p.start, state)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
state.start = state.end
|
|
|
|
}
|
|
|
|
|
|
|
|
_recvBatch (state) {
|
|
|
|
const end = state.end
|
|
|
|
|
|
|
|
while (state.start < state.end) {
|
|
|
|
const len = c.uint.decode(state)
|
|
|
|
state.end = state.start + len
|
2021-12-27 15:09:34 +00:00
|
|
|
this._recv(state)
|
2021-11-10 14:15:09 +00:00
|
|
|
state.end = end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_recvHandshake (state) {
|
|
|
|
if (this.remoteHandshake !== null) {
|
|
|
|
this.destroy(new Error('Double handshake'))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.remoteHandshake = m.handshake.decode(state)
|
|
|
|
for (const p of this.remoteHandshake.protocols) this.addRemoteProtocol(p)
|
|
|
|
|
|
|
|
this.onhandshake(this.remoteHandshake)
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy (err) {
|
2021-12-27 15:09:34 +00:00
|
|
|
this._handshakeSent = true // just to avoid sending it again
|
2021-11-10 14:15:09 +00:00
|
|
|
this.stream.destroy(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
get (name) {
|
|
|
|
for (const p of this.protocols) {
|
|
|
|
if (p.name === name) return p
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
cork () {
|
|
|
|
if (++this.corked === 1) this._batch = []
|
|
|
|
}
|
|
|
|
|
|
|
|
uncork () {
|
|
|
|
if (--this.corked !== 0) return
|
|
|
|
|
|
|
|
const batch = this._batch
|
|
|
|
this._batch = null
|
|
|
|
|
|
|
|
const state = { start: 0, end: 1, buffer: null }
|
|
|
|
const lens = new Array(batch.length)
|
|
|
|
|
|
|
|
for (let i = 0; i < batch.length; i++) {
|
|
|
|
const b = batch[i]
|
|
|
|
const end = state.end
|
|
|
|
|
|
|
|
c.uint.preencode(state, b.type)
|
|
|
|
b.encoding.preencode(state, b.message)
|
|
|
|
c.uint.preencode(state, lens[i] = (state.end - end))
|
|
|
|
}
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
state.buffer = this._alloc(state.end)
|
2021-11-10 14:15:09 +00:00
|
|
|
state.buffer[state.start++] = 0
|
|
|
|
|
|
|
|
for (let i = 0; i < batch.length; i++) {
|
|
|
|
const b = batch[i]
|
|
|
|
|
|
|
|
c.uint.encode(state, lens[i])
|
|
|
|
c.uint.encode(state, b.type)
|
|
|
|
b.encoding.encode(state, b.message)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.stream.write(state.buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
sendKeepAlive () {
|
2021-12-27 15:09:34 +00:00
|
|
|
this.stream.write(this._alloc(0))
|
2021-11-10 14:15:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_sendHandshake () {
|
2021-12-27 15:09:34 +00:00
|
|
|
if (this._handshakeSent) return
|
|
|
|
this._handshakeSent = true
|
|
|
|
|
2021-11-10 14:15:09 +00:00
|
|
|
const hs = {
|
|
|
|
protocols: this.protocols
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.corked > 0) {
|
2021-12-27 15:09:34 +00:00
|
|
|
this._batch.push({ type: 1, encoding: m.handshake, message: hs })
|
2021-11-10 14:15:09 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const state = { start: 0, end: 0, buffer: null }
|
|
|
|
|
|
|
|
c.uint.preencode(state, 1)
|
|
|
|
m.handshake.preencode(state, hs)
|
|
|
|
|
2021-12-27 15:09:34 +00:00
|
|
|
state.buffer = this._alloc(state.end)
|
2021-11-10 14:15:09 +00:00
|
|
|
|
|
|
|
c.uint.encode(state, 1)
|
|
|
|
m.handshake.encode(state, hs)
|
|
|
|
|
|
|
|
this.stream.write(state.buffer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function noop () {}
|