Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ref-struct

TooTallNate13.7kMIT1.1.0TypeScript support: definitely-typed

Create ABI-compliant "struct" instances on top of Buffers

struct, ref, abi, c, c++, ffi

readme

ref-struct

Create ABI-compliant "struct" instances on top of Buffers

Build Status Build Status

This module offers a "struct" implementation on top of Node.js Buffers using the ref "type" interface.

Installation

Install with npm:

$ npm install ref-struct

Examples

Say you wanted to emulate the timeval struct from the stdlib:

struct timeval {
  time_t       tv_sec;   /* seconds since Jan. 1, 1970 */
  suseconds_t  tv_usec;  /* and microseconds */
};
var ref = require('ref')
var StructType = require('ref-struct')

// define the time types
var time_t = ref.types.long
var suseconds_t = ref.types.long

// define the "timeval" struct type
var timeval = StructType({
  tv_sec: time_t,
  tv_usec: suseconds_t
})

// now we can create instances of it
var tv = new timeval

With node-ffi

This gets very powerful when combined with node-ffi to invoke C functions:

var ffi = require('ffi')

var tv = new timeval
gettimeofday(tv.ref(), null)

Progressive API

You can build up a Struct "type" incrementally (useful when interacting with a parser) using the defineProperty() function. But as soon as you create an instance of the struct type, then the struct type is finalized, and no more properties may be added to it.

var ref = require('ref')
var StructType = require('ref-struct')

var MyStruct = StructType()
MyStruct.defineProperty('width', ref.types.int)
MyStruct.defineProperty('height', ref.types.int)

var i = new MyStruct({ width: 5, height: 10 })

MyStruct.defineProperty('weight', ref.types.int)
// AssertionError: an instance of this Struct type has already been created, cannot add new "fields" anymore
//      at Function.defineProperty (/Users/nrajlich/ref-struct/lib/struct.js:180:3)

License

(The MIT License)

Copyright (c) 2012 Nathan Rajlich <nathan@tootallnate.net>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

changelog

1.1.0 / 2015-08-27

  • [eb4550fdaa] - Implement pack option (Lee, SungUk)
  • [17c1c7a8ef] - fix StructType constructor name in README (typo) (David Corticchiato)
  • [54b72bde07] - appveyor: fix node v0.8, test io.js v2.5 and v3 (Nathan Rajlich)

1.0.2 / 2015-08-27

  • appveyor: drop v0.11, iojs v1.5.1, test x64
  • travis: drop v0.11, test iojs v2.5 and v3
  • package: add license attribute (#17, @pdehaan)
  • package: update "ref-array" to v1.1.2
  • package: update "nan" v2 for native tests
  • README: use SVG for appveyor badge

1.0.1 / 2015-03-24

  • removed travis testing for node_js version "0.6" and added 0.12 and iojs
  • added appveyor test versions as per node-ffi library for iojs & 0.12
  • package: allow any "ref" v "1"
  • npmignore: add test dir

1.0.0 / 2014-11-03

  • bumping to v1.0.0 for better-defined semver semantics

0.0.7 / 2014-11-03

  • gitignore: ignore single letter ?.js test files
  • lib: only slice buffer in set() in the non-instance case
  • package: allow any "debug" v2

0.0.6 / 2014-06-19

  • package: update "ref" to v0.3.2
  • package: update "debug" to v1.0.1
  • test: remove v8 namespace import
  • test: use "bindings" module to load the native tests
  • README: add appveyor build badge
  • History: match git changelog syntax
  • package: loosely pin the deps
  • test: nan-ify tests
  • README: fix Travis badge
  • README: use svg for Travis badge
  • travis: test node v0.8, v0.10, and v0.11
  • add appveyor.yml file for Windows testing
  • package: remove "engines" field
  • package: beautify
  • add a couple comments

0.0.5 / 2013-01-24

  • rename the backing buffer property to ref.buffer
  • add .jshintrc file
  • some minor optimizations

0.0.4 / 2012-09-26

  • struct: correct the field alignment logic (TJ Fontaine)
  • test: add failing test from #1
  • test: more stucts with arrays tests
  • add support for "ref-array" types
  • add toObject(), toJSON(), and inspect() functions to struct instances
  • change _pointer to buffer
  • don't allow types with size == 0 like 'void'
  • test: add test case using "void *" as the type
  • test: fix deprecation warning
  • package: use the -C switch on node-gyp for the npm test command
  • travis: test node v0.7 and node v0.8
  • adjust the custom toString() output

0.0.3 / 2012-06-01

  • set the "name" property of StructType instances
  • add a toString() override
  • fix a bug in the alignment calculation logic

0.0.2 / 2012-05-16

  • Windows support (only the test suite needed tweaks)
  • make ref().deref() work
  • make string type identifiers work (type coersion)
  • don't make the constructors' prototype inherit from Function.protoype

0.0.1 / 2012-05-09

  • Initial release