protodef
Version:
A simple yet powerful way to define binary protocols
99 lines (87 loc) • 2.33 kB
JavaScript
const Transform = require('readable-stream').Transform
class Serializer extends Transform {
constructor (proto, mainType) {
super({ writableObjectMode: true })
this.proto = proto
this.mainType = mainType
this.queue = Buffer.alloc(0)
}
createPacketBuffer (packet) {
return this.proto.createPacketBuffer(this.mainType, packet)
}
_transform (chunk, enc, cb) {
let buf
try {
buf = this.createPacketBuffer(chunk)
} catch (e) {
return cb(e)
}
this.push(buf)
return cb()
}
}
class Parser extends Transform {
constructor (proto, mainType) {
super({ readableObjectMode: true })
this.proto = proto
this.mainType = mainType
this.queue = Buffer.alloc(0)
}
parsePacketBuffer (buffer) {
return this.proto.parsePacketBuffer(this.mainType, buffer)
}
_transform (chunk, enc, cb) {
this.queue = Buffer.concat([this.queue, chunk])
while (true) {
let packet
try {
packet = this.parsePacketBuffer(this.queue)
} catch (e) {
if (e.partialReadError) { return cb() } else {
e.buffer = this.queue
this.queue = Buffer.alloc(0)
return cb(e)
}
}
this.push(packet)
this.queue = this.queue.slice(packet.metadata.size)
}
}
}
class FullPacketParser extends Transform {
constructor (proto, mainType, noErrorLogging = false) {
super({ readableObjectMode: true })
this.proto = proto
this.mainType = mainType
this.noErrorLogging = noErrorLogging
}
parsePacketBuffer (buffer) {
return this.proto.parsePacketBuffer(this.mainType, buffer)
}
_transform (chunk, enc, cb) {
let packet
try {
packet = this.parsePacketBuffer(chunk)
if (packet.metadata.size !== chunk.length && !this.noErrorLogging) {
console.log('Chunk size is ' + chunk.length + ' but only ' + packet.metadata.size + ' was read ; partial packet : ' +
JSON.stringify(packet.data) + '; buffer :' + chunk.toString('hex'))
}
} catch (e) {
if (e.partialReadError) {
if (!this.noErrorLogging) {
console.log(e.stack)
}
return cb()
} else {
return cb(e)
}
}
this.push(packet)
cb()
}
}
module.exports = {
Serializer,
Parser,
FullPacketParser
}