binary-parse-fn
Painless binary protocol parsers using generators.
Last updated 10 years ago by nathan7 .
ISC · Repository · Bugs · Original npm · Tarball · package.json
$ npm install binary-parse-fn 
SYNC missed versions from official npm registry.

binary-parse-fn

Painless streaming binary protocol parsers using generators.

Installation

npm install binary-parse-fn

Streaming use

This module uses the exact same generator interface as binary-parse-stream, which presents a streaming interface to a generator parser.

Usage

var BinaryParser = require('binary-parse-fn')

BinaryParser is a function that takes a buffer and passes the return value of your generator back. When your generator yields a number, it'll be fed a buffer of that length from the input. If it yields -1, it'll be given the value of the first byte instead of a single-byte buffer.

Example

The following module parses a protocol that consists of a 32-bit unsigned big-endian type parameter, an unsigned 8-bit length parameter, and a buffer of the specified length. It returns {type, buf} objects.

var BinaryParser = require('binary-parse-fn')

module.exports = BinaryParser(function*() {
  var type = (yield 4).readUInt32BE(0, true)
    , length = yield -1
    , buf = yield length
  return { type: type, buf: buf }
})

Current Tags

  • 1.0.0                                ...           latest (10 years ago)

1 Versions

  • 1.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Total 1
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE