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

Package detail

ref-array

TooTallNate2.4kMIT1.2.0TypeScript support: definitely-typed

Create C "array" instances on top of Buffers

array, ref

readme

ref-array

Create C typed "array" instances on top of Buffers

Build Status Build Status

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

Installation

Install with npm:

$ npm install ref-array

Examples

Basic usage

var ref = require('ref')
var ArrayType = require('ref-array')

// typedef
var int = ref.types.int

// define the "int[]" type
var IntArray = ArrayType(int)

// now we can create array instances; the constructor takes the same arguments
// the native JS Array class

var a = new IntArray(5) // by length
a.length // 5
a[0] = 0
a[1] = 1
a[2] = -1
a[3] = 2
a[4] = -2

var b = new IntArray([1, 2, 3, 4, 5]) // with an existing Array
b.length // 5
b[0] // 1
b[1] // 2
b[2] // 3
b[3] // 4
b[4] // 5

Reading a NULL-terminated Array

// sometimes you get a variable length array that is terminated by a NULL byte.
var buf = new Buffer(int.size * 3)
int.set(buf, int.size * 0, 5)
int.set(buf, int.size * 1, 8)
int.set(buf, int.size * 2, 0) // <- terminate with 0s

// you can create an array instance with the length automatically determined
var array = IntArray.untilZeros(buf)
console.log(array.length)
// 2
console.log(array)
// [ 5, 8 ]

With node-ffi

var ffi = require('ffi')

// the "int[]" type may be used as a "type" in FFI'd functions or callbacks
var func = ffi.ForeignFunction(funcPointer, int, [ IntArray, int ])

var arg = new IntArray(3)
arg[0] = 1234
arg[1] = -9999
arg[2] = 1

var rtn = func(arg, arg.length)

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.2.0 / 2016-10-14

  • [ba418e8fb3] - update "array-index" to v1 (Nathan Rajlich)
  • [991e894d75] - package: add "license" field (Nathan Rajlich)
  • [d0565662a3] - package: update dev deps (Nathan Rajlich)
  • [cce5fb960c] - array: s/slicer/slice/ (Nathan Rajlich)
  • [8050a81587] - appveyor: fix node v0.8, test io.js v2.5 and v3 (Nathan Rajlich)
  • [c636c37e80] - test: add a test for passing Arrays to a native addon function (Nathan Rajlich)

1.1.2 / 2015-08-27

  • appveyor: test node v0.12, and x64 platform
  • package: allow any "ref" v1
  • package: update "nan" to v2 for tests
  • package: update "array-index" to v0.1.1
  • travis: fix node v0.8 and add iojs v2.5 and v3
  • travis: remove node v0.6, v0.11, add v0.12
  • README: use SVG appveyor badge

1.1.1 / 2015-03-24

  • Update package.json deps (nan, ref) (#7)

1.1.0 / 2015-01-02

  • Add slice API (#4, @toots)

1.0.0 / 2014-11-03

  • gitignore: ignore top-level single letter ?.js test files
  • package: allow any "debug" v2
  • bumping to v1.0.0 for better-defined semver semantics

0.0.4 / 2014-06-19

  • package: update "debug" to v1.0.2 and "ref" to v0.3.2
  • README: add appveyor badge
  • add appveyor.yml file
  • test: nan-ify the tests, for node v0.11.x
  • package: loosely pin the deps, update array-index to v0.1.0
  • package: remove "engines" field
  • package: beautify
  • README: use svg for Travis badge
  • travis: test node v0.8, v0.10, and v0.11