nodejs buffer parser and encoder
npm install binflow
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru);
// and use binflow instance `bnf`
structure =
$endian: 'LE' | 'BE'
(prop-name: token) * N
const stru = {
$endian: 'BE',
prop1: 'int8',
prop2: ['int16', 4],
prop3: {
sub1: 'uint8',
sub2: 'uint16',
}
...
}
-
string tokens
int8
,int16
,int24
,int32
,int48
,uint8
,uint16
,uint24
,uint32
,uint48
,float
,double
and its endian-tailed formats (ex:int8LE
,uint32BE
) -
array token :
['type', count]
- array of string token
const stru = { prop1: ['int32LE', 7], };
- byte stream
const stru = { prop1: ['byte', 14], };
- string :
count
is not the length of string value, but the length of buffer.
const stru = { prop1: ['string', 8], };
-
object token
const stru = {
prop1: {
sub1: 'int8',
sub2: 'int32',
...
},
};
There are 3 ways of setting endian.
- in-structure endian setting
const stru = {
$endian: 'LE',
prop1: 'int8',
...
};
- param-passed endian setting
binflow.createBinflow(stru, 'LE');
binflow.struct(stru, 'BE');
- property level endian setting
const stru = {
prop1: 'int32LE',
prop2: 'floatBE',
...
};
The next one overrides the previous one.
When binflow is created without in-structure endian and endian param, default endian is 'LE'. When binflow's structure is reset without in-structure endian and endian param, current structure endian is preserved.
Create a binflow
instance. See the section 'How to Use'.
Get the size of the structure.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
// returns 3
binflow.getStructureSize(stru);
Get the size of the field.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: ['uint16', 2],
prop3: {
sub1: 'int8',
sub2: 'int16',
},
};
// returns 1
binflow.getFieldSize(stru, 'prop1');
// returns 4
binflow.getFieldSize(stru, 'prop2');
// returns 2
binflow.getFieldSize(stru, 'prop3', 'sub2');
Reset the binflow structure.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru);
const newStru = {
prop1: 'int16',
};
bnf.struct(newStru);
Reset the structure endian.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru, 'BE');
bnf.setEndian('LE');
Get the endian of the structure.
const binflow = require('binflow');
const stru = {
$endian: 'BE',
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru, 'LE');
// returns 'LE'
bnf.getEndian();
Parse buffer.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru);
const buf = Buffer.from('01020304', 'hex');
// { prop1: 0x01, prop2: 0x0302 }
const parsed = bnf.parse(buf);
// { prop1: 0x02, prop2: 0x0403 }
const parsed2 = bnf.parse(buf, 1);
Encode values to buffer. When the value for the field is not supplied, the buffer for the field will not change.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: 'uint16',
};
const bnf = binflow.createBinflow(stru);
const values = {
prop1: 0x01;
prop2: 0x0102;
};
// 0x010201
const encoded = bnf.encode(values);
Set value in buffer. When the value for the field is not supplied, the buffer for the field will not change.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: ['int8', 2],
prop3: {
sub1: 'int16',
sub2: 'int8',
},
};
const bnf = binflow.createBinflow(stur);
bnf.set(buf, 'prop1', 0x01);
bnf.set(buf, 'prop2', [0x02, 0x03]);
bnf.set(buf, 'prop3', { sub1: 0x0405, sub2: 0x06 });
// set(buf, field, index, value)
bnf.set(buf, 'prop2', 1, 0x07);
// set(buf, field, property, value)
bnf.set(buf, 'prop3', 'sub2', 0x08);
// set(buf, values);
const values = {
prop1: 0x01,
prop2: [0x02],
};
bnf.set(buf, values);
// chainable
bnf.set(buf, 'prop1', 0x01)
.set(buf, 'prop2', [0x02, 0x03])
.set(buf, 'prop3', { sub1: 0x0405, sub2: 0x06 });
Get value from buffer.
const binflow = require('binflow');
const stru = {
prop1: 'int8',
prop2: ['int8', 2],
prop3: {
sub1: 'int16',
sub2: 'int8',
},
};
const bnf = binflow.createBinflow(stur);
bnf.get(buf, 'prop1');
bnf.get(buf, 'prop2');
bnf.get(buf, 'prop3');
// get(buf, field, index)
bnf.get(buf, 'prop2', 1);
// get(buf, field, property)
bnf.get(buf, 'prop3', 'sub2');