Giter Club home page Giter Club logo

Comments (3)

wpyoga avatar wpyoga commented on June 12, 2024

This is a working example:

import { Parser } from 'binary-parser';

const myParser = new Parser()
  .uint8('messageId')
  .uint8('reportCount')
  .array('reports', {
    length: 'reportCount',
    type: new Parser()
      .uint8('reportId')
      .uint8('reportLength')
      .wrapped('', {
        length: 'reportLength',
        wrapper: (buffer) => buffer,
        type: new Parser()
          .nest('basicReport', {
            type: new Parser()
              .uint8('dataPoint1')
              .uint8('dataPoint2')
              .uint8('dataPoint3')
              .uint8('dataPoint4'),
          })
          .array('extendedReport', {
            readUntil: 'eof',
            type: new Parser()
              .uint8('dataType')
              .uint8('dataLength')
              .buffer('data', { length: 'dataLength' }),
          }),
      }),
  });

const buf = Buffer.from(
  '1002f11012345678a003303132a101dfa20255aaf21201020304a003343536a202aa55a101eb',
  'hex'
);

console.dir(myParser.parse(buf), { depth: null });

It will output:

{
  messageId: 16,
  reportCount: 2,
  reports: [
    {
      reportId: 241,
      reportLength: 16,
      basicReport: {
        dataPoint1: 18,
        dataPoint2: 52,
        dataPoint3: 86,
        dataPoint4: 120
      },
      extendedReport: [
        {
          dataType: 160,
          dataLength: 3,
          data: Buffer(3) [Uint8Array] [ 48, 49, 50 ]
        },
        {
          dataType: 161,
          dataLength: 1,
          data: Buffer(1) [Uint8Array] [ 223 ]
        },
        {
          dataType: 162,
          dataLength: 2,
          data: Buffer(2) [Uint8Array] [ 85, 170 ]
        }
      ]
    },
    {
      reportId: 242,
      reportLength: 18,
      basicReport: { dataPoint1: 1, dataPoint2: 2, dataPoint3: 3, dataPoint4: 4 },
      extendedReport: [
        {
          dataType: 160,
          dataLength: 3,
          data: Buffer(3) [Uint8Array] [ 52, 53, 54 ]
        },
        {
          dataType: 162,
          dataLength: 2,
          data: Buffer(2) [Uint8Array] [ 170, 85 ]
        },
        {
          dataType: 161,
          dataLength: 1,
          data: Buffer(1) [Uint8Array] [ 235 ]
        }
      ]
    }
  ]
}

Notice that the wrapped object is directly embedded into the parent object.

from binary-parser.

keichi avatar keichi commented on June 12, 2024

Yes, this is expected and should be documented. I would appreciate your PR!

from binary-parser.

wpyoga avatar wpyoga commented on June 12, 2024

Thank you for making this very useful library!

from binary-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.