smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.
This repository contains a patched version of the original library, adding functionality that the original author refused to have.
Key Features:
- Proxies all of the Buffer write and read functions
- Keeps track of read and write offsets automatically
- Grows the internal Buffer as needed
- Useful string operations. (Null terminating strings)
- Allows for inserting values at specific points in the Buffer
- Built in TypeScript
- Type Definitions Provided
- Browser Support (using Webpack/Browserify)
- Full test coverage
Requirements:
- Node v4.0+ is supported at this time. (Versions prior to 2.0 will work on node 0.10)
- Old constructor patterns have been completely removed. It's now required to use the SmartBuffer.fromXXX() factory constructors.
- rewind(), skip(), moveTo() have been removed. (see offsets)
- Internal private properties are now prefixed with underscores (_)
- All writeXXX() methods that are given an offset will now overwrite data instead of insert. (see write vs insert)
- insertXXX() methods have been added for when you want to insert data at a specific offset (this replaces the old behavior of writeXXX() when an offset was provided)
Legacy documentation for version 3 and prior can be found here.
yarn add @harmonytf/smart-buffer
or
npm install @harmonytf/smart-buffer
Note: The published NPM package includes the built javascript library. If you cloned this repo and wish to build the library manually use:
npm run build
// JavascriptconstSmartBuffer=require('@harmonytf/smart-buffer').SmartBuffer;// Typescriptimport{SmartBuffer,SmartBufferOptions}from'@harmonytf/smart-buffer';Building a packet that uses the following protocol specification:
[PacketType:2][PacketLength:2][Data:XX]
To build this packet using the vanilla Buffer class, you would have to count up the length of the data payload beforehand. You would also need to keep track of the current "cursor" position in your Buffer so you write everything in the right places. With smart-buffer you don't have to do either of those things.
functioncreateLoginPacket(username,password,age,country){constpacket=newSmartBuffer();packet.writeUInt16LE(0x0060);// Some packet typepacket.writeStringNT(username);packet.writeStringNT(password);packet.writeUInt8(age);packet.writeStringNT(country);packet.insertUInt16LE(packet.length-2,2);returnpacket.toBuffer();}With the above function, you now can do this:
constlogin=createLoginPacket("Josh","secret123",22,"United States");// <Buffer 60 00 1e 00 4a 6f 73 68 00 73 65 63 72 65 74 31 32 33 00 16 55 6e 69 74 65 64 20 53 74 61 74 65 73 00>Notice that the [PacketLength:2] value (1e 00) was inserted at position 2.
Reading back the packet we created above is just as easy:
constreader=SmartBuffer.fromBuffer(login);constlogininfo={packetType: reader.readUInt16LE(),packetLength: reader.readUInt16LE(),username: reader.readStringNT(),password: reader.readStringNT(),age: reader.readUInt8(),country: reader.readStringNT()};/*{ packetType: 96, (0x0060) packetLength: 30, username: 'Josh', password: 'secret123', age: 22, country: 'United States'}*/In prior versions of SmartBuffer, .writeXXX(value, offset) calls would insert data when an offset was provided. In version 4, this will now overwrite the data at the offset position. To insert data there are now corresponding .insertXXX(value, offset) methods.
SmartBuffer v3:
constbuff=SmartBuffer.fromBuffer(newBuffer([1,2,3,4,5,6]));buff.writeInt8(7,2);console.log(buff.toBuffer())// <Buffer 01 02 07 03 04 05 06>SmartBuffer v4:
constbuff=SmartBuffer.fromBuffer(newBuffer([1,2,3,4,5,6]));buff.writeInt8(7,2);console.log(buff.toBuffer());// <Buffer 01 02 07 04 05 06>To insert you instead should use:
constbuff=SmartBuffer.fromBuffer(newBuffer([1,2,3,4,5,6]));buff.insertInt8(7,2);console.log(buff.toBuffer());// <Buffer 01 02 07 03 04 05 06>Note: Insert/Writing to a position beyond the currently tracked internal Buffer will zero pad to your offset.
There are a few different ways to construct a SmartBuffer instance.
// Creating SmartBuffer from existing Bufferconstbuff=SmartBuffer.fromBuffer(buffer);// Creates instance from buffer. (Uses default utf8 encoding)constbuff=SmartBuffer.fromBuffer(buffer,'ascii');// Creates instance from buffer with ascii encoding for strings.// Creating SmartBuffer with specified internal Buffer size. (Note: this is not a hard cap, the internal buffer will grow as needed).constbuff=SmartBuffer.fromSize(1024);// Creates instance with internal Buffer size of 1024.constbuff=SmartBuffer.fromSize(1024,'utf8');// Creates instance with internal Buffer size of 1024, and utf8 encoding for strings.// Creating SmartBuffer with options object. This one specifies size and encoding.constbuff=SmartBuffer.fromOptions({size: 1024,encoding: 'ascii'});// Creating SmartBuffer with options object. This one specified an existing Buffer.constbuff=SmartBuffer.fromOptions({buff: buffer});// Creating SmartBuffer from a string.constbuff=SmartBuffer.fromBuffer(Buffer.from('some string','utf8'));// Just want a regular SmartBuffer with all default options?constbuff=newSmartBuffer();Note: SmartBuffer is fully documented with Typescript definitions as well as jsdocs so your favorite editor/IDE will have intellisense.
Table of Contents
options{SmartBufferOptions} An optional options object to construct a SmartBuffer with.
Examples:
constbuff=newSmartBuffer();constbuff=newSmartBuffer({size: 1024,encoding: 'ascii'});buffer{Buffer} The Buffer instance to wrap.encoding{string} The string encoding to use.Default: 'utf8'
Examples:
constsomeBuffer=Buffer.from('some string');constbuff=SmartBuffer.fromBuffer(someBuffer);// Defaults to utf8constbuff=SmartBuffer.fromBuffer(someBuffer,'ascii');size{number} The size to initialize the internal Buffer.encoding{string} The string encoding to use.Default: 'utf8'
Examples:
constbuff=SmartBuffer.fromSize(1024);// Defaults to utf8constbuff=SmartBuffer.fromSize(1024,'ascii');options{SmartBufferOptions} The Buffer instance to wrap.
interfaceSmartBufferOptions{encoding?: BufferEncoding;// Defaults to utf8size?: number;// Defaults to 4096buff?: Buffer;}Examples:
constbuff=SmartBuffer.fromOptions({size: 1024};constbuff=SmartBuffer.fromOptions({size: 1024,encoding: 'utf8'});constbuff=SmartBuffer.fromOptions({encoding: 'utf8'});constsomeBuff=Buffer.from('some string','utf8');constbuff=SmartBuffer.fromOptions({buffer: someBuff,encoding: 'utf8'});offset{number} Optional position to start reading data from. Default:Auto managed offset- Returns {number}
Read a Int8 value.
offset{number} Optional position to start reading data from. Default:Auto managed offset- Returns {number}
Read a 16 bit integer value.
offset{number} Optional position to start reading data from. Default:Auto managed offset- Returns {number}
Read a 32 bit integer value.
value{number} The value to write.offset{number} An optional offset to write this value to. Default:Auto managed offset- Returns {this}
Write a Int8 value.
value{number} The value to insert.offset{number} The offset to insert this data at.- Returns {this}
Insert a Int8 value.
value{number} The value to write.offset{number} An optional offset to write this value to. Default:Auto managed offset- Returns {this}
Write a 16 bit integer value.
value{number} The value to insert.offset{number} The offset to insert this data at.- Returns {this}
Insert a 16 bit integer value.
value{number} The value to write.offset{number} An optional offset to write this value to. Default:Auto managed offset- Returns {this}
Write a 32 bit integer value.
value{number} The value to insert.offset{number} The offset to insert this data at.- Returns {this}
Insert a 32 bit integer value.
offset{number} Optional position to start reading data from. Default:Auto managed offset- Returns {number}
Read a Float value.
offset{number} Optional position to start reading data from. Default:Auto managed offset- Returns {number}
Read a Double value.
value{number} The value to write.offset{number} An optional offset to write this value to. Default:Auto managed offset- Returns {this}
Write a Float value.
value{number} The value to insert.offset{number} The offset to insert this data at.- Returns {this}
Insert a Float value.
value{number} The value to write.offset{number} An optional offset to write this value to. Default:Auto managed offset- Returns {this}
Write a Double value.
value{number} The value to insert.offset{number} The offset to insert this data at.- Returns {this}
Insert a Double value.
size{number} The number of bytes to read. Default:Reads to the end of the Buffer.encoding{string} The string encoding to use. Default:utf8.
Read a string value.
Examples:
constbuff=SmartBuffer.fromBuffer(Buffer.from('hello there','utf8'));buff.readString();// 'hello there'buff.readString(2);// 'he'buff.readString(2,'utf8');// 'he'buff.readString('utf8');// 'hello there'value{string} The string value to write.offset{number} The offset to write this value to. Default:Auto managed offsetencoding{string} An optional string encoding to use. Default:utf8
Write a string value.
Examples:
buff.writeString('hello');// Auto managed offsetbuff.writeString('hello',2);buff.writeString('hello','utf8')// Auto managed offsetbuff.writeString('hello',2,'utf8');value{string} The string value to write.offset{number} The offset to write this value to.encoding{string} An optional string encoding to use. Default:utf8
Insert a string value.
Examples:
buff.insertString('hello',2);buff.insertString('hello',2,'utf8');encoding{string} The string encoding to use. Default:utf8.
Read a null terminated string value. (If a null is not found, it will read to the end of the Buffer).
Examples:
constbuff=SmartBuffer.fromBuffer(Buffer.from('hello\0 there','utf8'));buff.readStringNT();// 'hello'// If we called this again:buff.readStringNT();// ' there'length{number} The field length to use.. Default:null.encoding{string} The string encoding to use. Default:utf8.
Read a null terminated string value from a constant-length field. It will read everything within the specified length if a null terminator is not found before. Otherwise, it is going to stop at the null-terminator and skip the remaining bytes.
Examples:
constbuff=SmartBuffer.fromBuffer(Buffer.from('hello\0\0\0\0\0world\0','utf8'));buff.readStringNT(10);// 'hello'// If we called this afterwards:buff.readStringNT();// 'world'value{string} The string value to write.offset{number} The offset to write this value to. Default:Auto managed offsetencoding{string} An optional string encoding to use. Default:utf8
Write a null terminated string value.
Examples:
buff.writeStringNT('hello');// Auto managed offset <Buffer 68 65 6c 6c 6f 00>buff.writeStringNT('hello',2);// <Buffer 00 00 68 65 6c 6c 6f 00>buff.writeStringNT('hello','utf8')// Auto managed offsetbuff.writeStringNT('hello',2,'utf8');value{string} The string value to write.offset{number} The offset to write this value to.encoding{string} An optional string encoding to use. Default:utf8
Insert a null terminated string value.
Examples:
buff.insertStringNT('hello',2);buff.insertStringNT('hello',2,'utf8');value{string} The string value to write.length{string} The length of the string field.encoding{string} An optional string encoding to use. Default:utf8offset{number} The offset to write this value to. Default:Auto managed offset
Write a string value which will be padded with null bytes up until the specified length. If the string's length equals the specified length parameter, no null bytes will be added at the end.
Examples:
buff.writeStringPadded('hello',10);// Auto managed offset <Buffer 68 65 6c 6c 6f 00 00 00 00 00>buff.writeStringPadded('hello',10,'utf8',2);// <Buffer 00 00 68 65 6c 6c 6f 00 00 00 00 00>buff.writeStringPadded('hello',10,'utf8')// Auto managed offsetlength{number} The number of bytes to read into a Buffer. Default:Reads to the end of the Buffer
Read a Buffer of a specified size.
value{Buffer} The buffer value to write.offset{number} An optional offset to write the value to. Default:Auto managed offset
value{Buffer} The buffer value to write.offset{number} The offset to write the value to.
Read a null terminated Buffer.
value{Buffer} The buffer value to write.offset{number} An optional offset to write the value to. Default:Auto managed offset
Write a null terminated Buffer.
value{Buffer} The buffer value to write.offset{number} The offset to write the value to.
Insert a null terminated Buffer.
Protobuf VarInt is a special variant of integer that varies in it's encoded bytes length. Current implementation doesn't support negative VarInts.
Read a VarInt.
value{Number} The integer value to write.offset{number} An optional offset to write the value to. Default:Auto managed offset
Write a VarInt.
value{Number} The integer value to write.offset{number} The offset to insert the value to.
Insert a VarInt.
offset{number} The new read offset value to set.- Returns:
The current read offset
Gets or sets the current read offset.
Examples:
constcurrentOffset=buff.readOffset;// 5buff.readOffset=10;console.log(buff.readOffset)// 10offset{number} The new write offset value to set.- Returns:
The current write offset
Gets or sets the current write offset.
Examples:
constcurrentOffset=buff.writeOffset;// 5buff.writeOffset=10;console.log(buff.writeOffset)// 10length{number} The length of data to skip.
Skips reading for a specified length from the current read offset.
This method is just sugar for incrementing the read offset in a chainable way.
Examples:
buff.readOffset=5;buff.readSkip(10).readString(4);console.log(buff.readOffset)// 19length{number} The length of data to skip.
Skips writing for a specified length from the current write offset. The buffer will be zero-padded for the skipped range.
This method is just sugar for incrementing the write offset in a chainable way.
Examples:
buff.writeOffset=5;buff.writeSkip(10).writeString('cool');console.log(buff.writeOffset)// 19encoding{string} The new string encoding to set.- Returns:
The current string encoding
Gets or sets the current string encoding.
Examples:
constcurrentEncoding=buff.encoding;// 'utf8'buff.encoding='ascii';console.log(buff.encoding)// 'ascii'Clear and resets the SmartBuffer instance.
- Returns
Remaining data left to be read
Gets the number of remaining bytes to be read.
- Returns: {Buffer}
Gets the internally managed Buffer (Includes unmanaged data).
Examples:
constbuff=SmartBuffer.fromSize(16);buff.writeString('hello');console.log(buff.InternalBuffer);// <Buffer 68 65 6c 6c 6f 00 00 00 00 00 00 00 00 00 00 00>- Returns: {Buffer}
Gets a sliced Buffer instance of the internally managed Buffer. (Only includes managed data)
Examples:
constbuff=SmartBuffer.fromSize(16);buff.writeString('hello');console.log(buff.toBuffer());// <Buffer 68 65 6c 6c 6f>encoding{string} The string encoding to use when converting to a string. Default:utf8- Returns {string}
Gets a string representation of all data in the SmartBuffer.
Destroys the SmartBuffer instance.
This work is licensed under the MIT license.
