smart-buffer
smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.
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)
Breaking Changes in v4.0
- 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 setting internal read and write 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)
Looking for v3 docs?
Legacy documentation for version 3 and prior can be found here.
Installing:
yarn add smart-buffer
or
npm install 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
Using smart-buffer
const SmartBuffer = require('smart-buffer').SmartBuffer;
import { SmartBuffer, SmartBufferOptions} from 'smart-buffer';
Simple Example
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.
function createLoginPacket(username, password, age, country) {
const packet = new SmartBuffer();
packet.writeUInt16LE(0x0060);
packet.writeStringNT(username);
packet.writeStringNT(password);
packet.writeUInt8(age);
packet.writeStringNT(country);
packet.insertUInt16LE(packet.length - 2, 2);
return packet.toBuffer();
}
With the above function, you now can do this:
const login = createLoginPacket("Josh", "secret123", 22, "United States");
Notice that the [PacketLength:2]
value (1e 00) was inserted at position 2.
Reading back the packet we created above is just as easy:
const reader = SmartBuffer.fromBuffer(login);
const logininfo = {
packetType: reader.readUInt16LE(),
packetLength: reader.readUInt16LE(),
username: reader.readStringNT(),
password: reader.readStringNT(),
age: reader.readUInt8(),
country: reader.readStringNT()
};
Write vs Insert
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:
const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6]));
buff.writeInt8(7, 2);
console.log(buff.toBuffer())
SmartBuffer v4:
const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6]));
buff.writeInt8(7, 2);
console.log(buff.toBuffer());
To insert you instead should use:
const buff = SmartBuffer.fromBuffer(new Buffer([1,2,3,4,5,6]));
buff.insertInt8(7, 2);
console.log(buff.toBuffer());
Note: Insert/Writing to a position beyond the currently tracked internal Buffer will zero pad to your offset.
Constructing a smart-buffer
There are a few different ways to construct a SmartBuffer instance.
const buff = SmartBuffer.fromBuffer(buffer);
const buff = SmartBuffer.fromBuffer(buffer, 'ascii');
const buff = SmartBuffer.fromSize(1024);
const buff = SmartBuffer.fromSize(1024, 'utf8');
const buff = SmartBuffer.fromOptions({
size: 1024,
encoding: 'ascii'
});
const buff = SmartBuffer.fromOptions({
buff: buffer
});
const buff = SmartBuffer.fromBuffer(Buffer.from('some string', 'utf8'));
const buff = new SmartBuffer();
Api Reference:
Note: SmartBuffer is fully documented with Typescript definitions as well as jsdocs so your favorite editor/IDE will have intellisense.
Table of Contents
- Constructing
- Numbers
- Integers
- Floating Points
- Strings
- Strings
- Null Terminated Strings
- Buffers
- Offsets
- Other
Constructing
constructor()
constructor([options])
options
{SmartBufferOptions} An optional options object to construct a SmartBuffer with.
Examples:
const buff = new SmartBuffer();
const buff = new SmartBuffer({
size: 1024,
encoding: 'ascii'
});
Class Method: fromBuffer(buffer[, encoding])
buffer
{Buffer} The Buffer instance to wrap.encoding
{string} The string encoding to use. Default: 'utf8'
Examples:
const someBuffer = Buffer.from('some string');
const buff = SmartBuffer.fromBuffer(someBuffer);
const buff = SmartBuffer.fromBuffer(someBuffer, 'ascii');
Class Method: fromSize(size[, encoding])
size
{number} The size to initialize the internal Buffer.encoding
{string} The string encoding to use. Default: 'utf8'
Examples:
const buff = SmartBuffer.fromSize(1024);
const buff = SmartBuffer.fromSize(1024, 'ascii');
Class Method: fromOptions(options)
options
{SmartBufferOptions} The Buffer instance to wrap.
interface SmartBufferOptions {
encoding?: BufferEncoding;
size?: number;
buff?: Buffer;
}
Examples:
const buff = SmartBuffer.fromOptions({
size: 1024
};
const buff = SmartBuffer.fromOptions({
size: 1024,
encoding: 'utf8'
});
const buff = SmartBuffer.fromOptions({
encoding: 'utf8'
});
const someBuff = Buffer.from('some string', 'utf8');
const buff = SmartBuffer.fromOptions({
buffer: someBuff,
encoding: 'utf8'
});
Integers
readInt8([offset])
offset
{number} Optional position to start reading data from. Default: Auto managed offset
- Returns {number}
Read a Int8 value.
buff.readInt16BE([offset])
buff.readInt16LE([offset])
buff.readUInt16BE([offset])
buff.readUInt16LE([offset])
offset
{number} Optional position to start reading data from. Default: Auto managed offset
- Returns {number}
Read a 16 bit integer value.
buff.readInt32BE([offset])
buff.readInt32LE([offset])
buff.readUInt32BE([offset])
buff.readUInt32LE([offset])
offset
{number} Optional position to start reading data from. Default: Auto managed offset
- Returns {number}
Read a 32 bit integer value.
buff.writeInt8(value[, offset])
buff.writeUInt8(value[, offset])
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.
buff.insertInt8(value, offset)
buff.insertUInt8(value, offset)
value
{number} The value to insert.offset
{number} The offset to insert this data at.- Returns {this}
Insert a Int8 value.
buff.writeInt16BE(value[, offset])
buff.writeInt16LE(value[, offset])
buff.writeUInt16BE(value[, offset])
buff.writeUInt16LE(value[, offset])
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.
buff.insertInt16BE(value, offset)
buff.insertInt16LE(value, offset)
buff.insertUInt16BE(value, offset)
buff.insertUInt16LE(value, offset)
value
{number} The value to insert.offset
{number} The offset to insert this data at.- Returns {this}
Insert a 16 bit integer value.
buff.writeInt32BE(value[, offset])
buff.writeInt32LE(value[, offset])
buff.writeUInt32BE(value[, offset])
buff.writeUInt32LE(value[, offset])
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.
buff.insertInt32BE(value, offset)
buff.insertInt32LE(value, offset)
buff.insertUInt32BE(value, offset)
buff.nsertUInt32LE(value, offset)
value
{number} The value to insert.offset
{number} The offset to insert this data at.- Returns {this}
Insert a 32 bit integer value.
Floating Point Numbers
buff.readFloatBE([offset])
buff.readFloatLE([offset])
offset
{number} Optional position to start reading data from. Default: Auto managed offset
- Returns {number}
Read a Float value.
buff.eadDoubleBE([offset])
buff.readDoubleLE([offset])
offset
{number} Optional position to start reading data from. Default: Auto managed offset
- Returns {number}
Read a Double value.
buff.writeFloatBE(value[, offset])
buff.writeFloatLE(value[, offset])
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.
buff.insertFloatBE(value, offset)
buff.insertFloatLE(value, offset)
value
{number} The value to insert.offset
{number} The offset to insert this data at.- Returns {this}
Insert a Float value.
buff.writeDoubleBE(value[, offset])
buff.writeDoubleLE(value[, offset])
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.
buff.insertDoubleBE(value, offset)
buff.insertDoubleLE(value, offset)
value
{number} The value to insert.offset
{number} The offset to insert this data at.- Returns {this}
Insert a Double value.
Strings
buff.readString()
buff.readString(size[, encoding])
buff.readString(encoding)
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:
const buff = SmartBuffer.fromBuffer(Buffer.from('hello there', 'utf8'));
buff.readString();
buff.readString(2);
buff.readString(2, 'utf8');
buff.readString('utf8');
buff.writeString(value)
buff.writeString(value[, offset])
buff.writeString(value[, encoding])
buff.writeString(value[, offset[, encoding]])
value
{string} The string value to write.offset
{number} The offset to write this value to. Default: Auto managed offset
encoding
{string} An optional string encoding to use. Default: utf8
Write a string value.
Examples:
buff.writeString('hello');
buff.writeString('hello', 2);
buff.writeString('hello', 'utf8')
buff.writeString('hello', 2, 'utf8');
buff.insertString(value, offset[, encoding])
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');
Null Terminated Strings
buff.readStringNT()
buff.readStringNT(encoding)
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:
const buff = SmartBuffer.fromBuffer(Buffer.from('hello\0 there', 'utf8'));
buff.readStringNT();
buff.readStringNT();
buff.writeStringNT(value)
buff.writeStringNT(value[, offset])
buff.writeStringNT(value[, encoding])
buff.writeStringNT(value[, offset[, encoding]])
value
{string} The string value to write.offset
{number} The offset to write this value to. Default: Auto managed offset
encoding
{string} An optional string encoding to use. Default: utf8
Write a null terminated string value.
Examples:
buff.writeStringNT('hello');
buff.writeStringNT('hello', 2);
buff.writeStringNT('hello', 'utf8')
buff.writeStringNT('hello', 2, 'utf8');
buff.insertStringNT(value, offset[, encoding])
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');
Buffers
buff.readBuffer([length])
length
{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.
buff.writeBuffer(value[, offset])
value
{Buffer} The buffer value to write.offset
{number} An optional offset to write the value to. Default: Auto managed offset
buff.insertBuffer(value, offset)
value
{Buffer} The buffer value to write.offset
{number} The offset to write the value to.
buff.readBufferNT()
Read a null terminated Buffer.
buff.writeBufferNT(value[, offset])
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.
buff.insertBufferNT(value, offset)
value
{Buffer} The buffer value to write.offset
{number} The offset to write the value to.
Insert a null terminated Buffer.
Offsets
buff.readOffset
buff.readOffset(offset)
offset
{number} The new read offset value to set.- Returns:
The current read offset
Gets or sets the current read offset.
Examples:
const currentOffset = buff.readOffset;
buff.readOffset = 10;
console.log(buff.readOffset)
buff.writeOffset
buff.writeOffset(offset)
offset
{number} The new write offset value to set.- Returns:
The current write offset
Gets or sets the current write offset.
Examples:
const currentOffset = buff.writeOffset;
buff.writeOffset = 10;
console.log(buff.writeOffset)
buff.encoding
buff.encoding(encoding)
encoding
{string} The new string encoding to set.- Returns:
The current string encoding
Gets or sets the current string encoding.
Examples:
const currentEncoding = buff.encoding;
buff.encoding = 'ascii';
console.log(buff.encoding)
Other
buff.clear()
Clear and resets the SmartBuffer instance.
buff.remaining()
- Returns
Remaining data left to be read
Gets the number of remaining bytes to be read.
buff.internalBuffer
Gets the internally managed Buffer (Includes unmanaged data).
Examples:
const buff = SmartBuffer.fromSize(16);
buff.writeString('hello');
console.log(buff.InternalBuffer);
buff.toBuffer()
Gets a sliced Buffer instance of the internally managed Buffer. (Only includes managed data)
Examples:
const buff = SmartBuffer.fromSize(16);
buff.writeString('hello');
console.log(buff.toBuffer());
buff.toString([encoding])
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.
buff.destroy()
Destroys the SmartBuffer instance.
License
This work is licensed under the MIT license.