Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major performance improvement #3

Merged
merged 3 commits into from
May 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 23 additions & 15 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,40 @@ var Reader = module.exports = function(options) {
this.offset = 0
this.lastChunk = false
this.chunk = null
this.chunkLength = 0
this.headerSize = options.headerSize || 0
this.lengthPadding = options.lengthPadding || 0
this.header = null
assert(this.headerSize < 2, 'pre-length header of more than 1 byte length not currently supported')
}

Reader.prototype.addChunk = function(chunk) {
this.offset = 0
this.chunk = chunk
if(this.lastChunk) {
this.chunk = Buffer.concat([this.lastChunk, this.chunk])
this.lastChunk = false
if (!this.chunk || this.offset === this.chunkLength) {
this.chunk = chunk
this.chunkLength = chunk.length
this.offset = 0
return
}
}

Reader.prototype._save = function() {
//save any unread chunks for next read
if(this.offset < this.chunk.length) {
this.lastChunk = this.chunk.slice(this.offset)
var newChunkLength = chunk.length
var newLength = this.chunkLength + newChunkLength

if (newLength > this.chunk.length) {
var newBufferLength = this.chunk.length * 2
while (newLength >= newBufferLength) {
newBufferLength *= 2
}
var newBuffer = new Buffer(newBufferLength)
this.chunk.copy(newBuffer)
this.chunk = newBuffer
}
return false
chunk.copy(this.chunk, this.chunkLength)
this.chunkLength = newLength
}

Reader.prototype.read = function() {
if(this.chunk.length < (this.headerSize + 4 + this.offset)) {
return this._save()
if(this.chunkLength < (this.headerSize + 4 + this.offset)) {
return false
}

if(this.headerSize) {
Expand All @@ -45,9 +53,9 @@ Reader.prototype.read = function() {
var length = this.chunk.readUInt32BE(this.offset + this.headerSize) + this.lengthPadding

//next item spans more chunks than we have
var remaining = this.chunk.length - (this.offset + 4 + this.headerSize)
var remaining = this.chunkLength - (this.offset + 4 + this.headerSize)
if(length > remaining) {
return this._save()
return false
}

this.offset += (this.headerSize + 4)
Expand Down
13 changes: 13 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ describe('packet-reader', function() {
assert.equal(result.length, 16)
})

it('resets internal buffer at end of packet', function() {
this.reader.addChunk(new Buffer([0, 0, 0, 0, 16]))
this.reader.addChunk(new Buffer([1, 2, 3, 4, 5, 6, 7, 8]))
this.reader.addChunk(new Buffer([9, 10, 11, 12, 13, 14, 15, 16]))
var result = this.reader.read()
assert.equal(result.length, 16)

var newChunk = new Buffer([0, 0, 0, 0, 16])
this.reader.addChunk(newChunk)
assert.equal(this.reader.offset, 0, 'should have been reset to 0.')
assert.strictEqual(this.reader.chunk, newChunk)
})

it('reads multiple messages from single chunk', function() {
this.reader.addChunk(new Buffer([0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 1, 2]))
var result = this.reader.read()
Expand Down