struct-fu
v1.2.1
Published
Yet another node.js struct implementation (object↔︎buffer conversion)
Downloads
43,401
Maintainers
Readme
struct-fu
Convert between JSON and binary according to a given field layout/structure declaration. struct-fu
is [yet another] buffer reading/writing helper; sort of like typedef struct foo
for JavaScript.
Installation
npm install struct-fu
Example
var _ = require('struct-fu');
var entry = _.struct([
_.char('filename',8),
_.char('extension',3),
_.struct('flags', [
_.bool('readonly'),
_.bool('hidden'),
_.bool('system'),
_.bool('volume'),
_.bool('directory'),
_.bool('archive'),
_.ubit('reserved', 2)
].reverse()),
_.byte('reserved', 10),
_.struct('time', [
_.ubit('hour',5),
_.ubit('minutes',6),
_.ubit('seconds',5)
]),
_.struct('date', [
_.ubit('year',7),
_.ubit('month',4),
_.ubit('day',5)
]),
_.uint16le('cluster'),
_.uint32le('filesize')
]);
var obj0 = {filename:"autoexec", extension:"batch", flags:{reserved:2,archive:true}},
_buf = entry.pack(obj0),
obj1 = entry.unpack(_buf);
console.log('',obj0, "\n==>\n", obj1);
Concepts
- No hidden/implicit padding or alignment (WYSIWYG)
- If
count
is provided, the field represents an array of that type. - Defaults to network byte order (Big Endian); or use
le
suffix (Little Endian) - Bit fields are declared in Most Significant to Least Significant bit order (tip:
[/*…fields…*/].reverse()
to swap) - When writing, default values are provided.
API
Normal field types
Here are the available "normal" field types. Note that for standalone fields the name
and count
parameters are always optional. For fields nested within a struct field, you must provide a name
.
_.struct(name, fields, count)
—fields
is an array of nested fields, which will be packed directly one after another with no concern for any particular compiler's alignment preferences. The first field in the array will start at the first byte in the buffer. (For bitfields you may wish to provide afields.reverse()
value to match little endian compilers.) Anonymous (i.e. un-named) structs will read/write fields directly within their parent struct; this is useful for reusing common fields or inlining bitfields._.char(name, size, count)
— UTF-8 string. Writes NUL-terminated only if too short, not if string fits exact size or gets truncated. Reads to NUL or full size, whichever comes first. Note that node.js will not write incomplete characters from the BMP (i.e. Unicode code points that can be represented by a single.charCodeAt()
), but does seem to split some UTF-8ish semblance of surrogate pairs._.char16le(name, size, count)
— UTF-16BLE string. This has the same behavior as_.char
; note thatsize
is still the width of the field (in bytes) and not the number of UTF-16 surrogate pairs. Node.js may truncate between surrogate pairs rather than Unicode code points, but if given an odd-sized width will terminate with\0
rather than half of a.charCodeAt()
value._.char16be(name, size, count)
— UTF-16BE string. This has the same behavior as_.char16le
, but Big Endian. The buffer is padded with zero bytes._.byte(name, size, count)
— Binary buffer. Writes truncated or zero padded as necessary. Always reads field to full size._.<numeric type>(name, count)
— Floats and integers, defaulting to network byte order (i.e. Big Endian) or you can use the…le
versions. Numeric type fields pretty much correspond directly to the equivalent node.jsBuffer
read/write methods you would expect. (There are no 64-bit integers because JavaScript does not properly support the full range of such values, but see the derived types example below!)_.float32
_.float64
_.uint8
_.uint16
_.uint32
_.int8
_.int16
_.int32
_.float32le
_.float64le
_.uint16le
_.uint32le
_.int16le
_.int32le
All the field above implement the same interface once created:
field.name
— The name of this field instance ornull
if none was provided.field.size
— The total size of buffer this field (including any nested/repeated fields) will read/write.field.pack(val, buf)
(alias:bytesFromValue
) — The type ofval
provided will depend on the field (e.g. number for numerics, object for structs, array for any counted field), but this method always returns a buffer.buf
is optional — if you do not provide a slice of an existing buffer to fill, a new buffer of lengthfield.size
will be returned.field.unpack(buf)
(alias:valueFromBytes
) — Returns a JavaScript value extracted from the provided buffer.
You can use each of these fields nested inside a structure, or on their own. For example, _.uint32(2).unpack(Buffer(8))
uses an anonymous field to convert the unitialized buffer into an array of two somewhat-random numbers.
Extended field interfaces
The basic field (and bitfield) interface gets extended in several cases:
arrayField.field
— if a field was created with acount
, this property holds a reference to the "original" field.structField.fields
— for a field of type_.struct
, this property is an object giving you access to nested fields by namenestedField.offset
— a field fetched viastructField.fields
will have an offset property. For normal fields this is a number given in bytes; for bitfield types (see below) this will be an object with separatebytes
andbits
properties. (Note that you can reuse a field within multiple structures and it will have the correct offset within each. ThenestedField
found in eachstructField.fields
is actually a new object whose prototype is the original (reused) field.)
Taken together, these special properties allow you to do things like:
var _ = require('struct-fu');
var itemList = _.struct([
_.char("name", 24),
_.struct("ownerName", [
_.char("first", 12),
_.char("last", 42)
]),
_.struct("flags", [
_.bool("isBorrowed"),
_.bool("needsRepair"),
_.ubit('_reserved', 6)
]),
_.uint16("howMany")
], 16);
var itemType = itemList.field,
countField = itemType.fields['howMany'],
ownerField = itemType.fields['ownerName'];
console.log("Each item has fields:", Object.keys(itemType.fields).join(', '));
console.log("Within an item, count is at offset:", countField.offset);
console.log("Here is an owner name converted on its own:", ownerField.pack({first:"Foorenious", last:"Barçuno"}));
This will output:
Each item has fields: name, ownerName, flags, howMany
Within an item, count is at offset: 79
Here is an owner name converted on its own: <Buffer 46 6f 6f 72 65 6e 69 6f 75 73 00 00 42 61 72 c3 a7 75 6e 6f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...>
Bitfield types
These fields are intended for use only within a parent _.struct
field (and therefore name
is not optional):
_.bool(name, count)
— A single bit, read back as a boolean._.ubit(name, width, count)
— An unsigned integer; most significant bit first._.ubitLE(name, width, count)
— An unsigned integer; least significant bit first._.sbit(name, width, count)
— A signed integer; if the most sigificant bit is set the value is negative.
Except for the bitfield.name
and bitfield.width
properties, the bitfield interface (used internally by _.struct
) is undocumented and subject to change.
Special field types
These do not obey any of the rules above. Right now there is only one such field:
_.padTo(offset)
— An anoymous field that must be contained within a_.struct
to be of any use. The presence of a_.padTo
field increases the size of the containing_.struct
(and adjusts the offset of any following field) to theoffset
provided. This field is safe (and potentially convenient!) to use after bitfield types. Padding is also special in that it causes the containing struct's.pack
to leave alone any current buffer contents under the padded region, rather than initializing to default values as a bytefield would do. Padding ensures the struct, or rather, the struct up to and including this field, is neither less (nor more!) than the intended size.
Derived types
Derived types are something like "plugins" for struct-fu.
For example, neither node.js Buffer nor struct-fu deals with "64-bit" integer methods. (JavaScript's number type can only manage integers up to 53 bits.)
Using the types built in to struct-fu, the best you could do is convert a 64-bit field into two 32-bit values.
But what if your app leverages a custom number class — like UInt64 — and's using it everywhere for big integers? You'll probably want to convert to and from that type directly. You can with struct-fu, but you'll first need to create a derived type!
new_type = _.derive(base, deconstruct, construct)
— Returns a new type based on a base fieldbase
. Yourbase_val = deconstruct(app_val)
receives the original value and should "deconstruct" it into a value which the base field can pack. Yourapp_val = construct(base_val)
receives the value as unpacked by the base field and should return a "constructed" value from it.
To clarify some terminology:
- by type, we mean a function that can be used to define (generate) a field.
_.byte
is a type. - by field, we mean an object that can be used to pack/unpack a buffer.
_.byte(42)
is a field.
In order to support flexible reuse on the one hand, and complex "base" representations on the other, the _.derive
method creates a new type (factory function) from a generated field (defined object). For example:
var _base = _.uint32(2);
var my_uint64be = _.derive(_base, function app_to_base(numObj) {
return [ UInt64.hi(numObj), UInt64.lo(numObj) ];
}, function base_to_app(arr) {
return UInt64.join(arr[0], arr[1]);
});
As a typical struct-fu field, _base
is ready to convert between an 8-byte buffer and an array of two 32-bit numbers on its own. But we wrap it in a new type my_uint64be
that bridges the gap between that two-number array and a UInt64 number type, wherever it is used to define a field.
Put together:
var uint64_t = _.derive(_.uint32(2), function app_to_base(numObj) {
// …
}, function base_to_app(arr) {
// …
});
var thing = _.struct([
uint64_t("id"),
_.char("name", 32),
uint64_t("position", 3)
]);
thingField.pack({
id: UInt64("0x1A2B3C4C5D6E7F80"),
name: "example",
position: [UInt64(42), UInt64(8), UInt64(99)]
}) instanceof Buffer
Notice how our custom uint64_t
type can be used wherever needed, almost as if it were a (nonexistent!) builtin _.uint64
type.
License
© 2014 Nathan Vander Wilt. Funding for this work was provided in part by Technical Machine, Inc.
Reuse under your choice of: