npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quick-struct

v1.0.0

Published

C like style to write struct layout, and it can convert variable length array or string automatically. It can be used in Node.js and Browser

Downloads

32

Readme

quick-struct banner

quick-struct

quick-struct is the tools for parsing and unpacking binary data formats into data formats that JavaScript can easily handle. The developer can define the data format using a string definition similar to the C language style. In order to eliminate the defect of inconsistent byte length between different CPU architectures and operating systems, the data type keyword of the Rust language is used to define the data type.

Below is the example of struct definition

struct {
         u8 a;
         u8 b;
         u16 c;
}

It's very easy, u8 is an unsigned byte(8 bit) and u16 is 2 unsinged bytes.

Type and byte length

| Byte length | signed | unsigned | Support | | :----------: | :----: | :------: | :-----: | | 8-bit | i8 | u8 | Yes | | 16-bit | i16 | u16 | Yes | | 32-bit | i32 | u32 | Yes | | 64-bit | i64 | u64 | Yes | | 128-bit | i128 | u128 | No | | arch | isize | usize | No | | float-32-bit | f32 | - | Yes | | float-64-bit | f64 | - | Yes | | 8-bit | char | uchar | Yes |

Install

You can use npm or yarn install.

# use yarn
yarn add quick-struct

#use npm
npm install quick-struct

Usage

Basic

You can use qs template string function to create a new QStruct instance.

import { qs } from "quick-struct";

const struct = qs`
    struct {
        u8 a;
    }
`;

// Create a UInt8 array
const buffer = new UInt8Array([12]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a);

You can also use JSSctruct to create instance. Becase this is library is called "js-cstruct" before, so the calss name is "QStruct". Two ways is the same, but I'd like template string function version.

import { QStruct } from "quick-struct";

const structDescriptor = `
    struct {
        u8 a;
    }
`;

const struct = new QStruct(structDescriptor);

// Create a UInt8 array
const buffer = new UInt8Array([12]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a); // 12

Multi fields

quick-struct support define multi fields, the result of JSON will combin field's name and value automatic, you can use the result as normal JavaScript object.

import { qs } from "quick-struct";

const struct = qs`
    struct {
        u8 a;
        u8 b;
        u8 c;
    }
`;

// Create a UInt8 array
const buffer = new UInt8Array([12, 16, 32]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a); // 12
console.log(result.b); // 16
console.log(result.c); // 32

Digital Array and string

quick-struct can automatically identify numeric arrays and strings, and it is similar to the C language declaration when used. For numeric arrays, the array form will be automatically generated, and the strings will be automatically merged into the String type.quick-struct can automatically identify numeric arrays and strings, and it is similar to the C language declaration when used. For numeric arrays, the array form will be automatically generated, and the strings will be automatically merged into the String type.

When a numeric type is declared as an array, it will be counted as an array type, regardless of whether the array length is 1.

import { qs } from "quick-struct";

const struct = qs`
    struct {
        u8 a[3];
     uchar b[5];
    }
`;

// Create a UInt8 array
const text = new TextEncoder().encode("hello");
const buffer = new UInt8Array([12, 13, 14, ...text]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a); // [12, 13, 14]
console.log(result.b); // "hello"

Variable length array and string

quick-struct supports automatic parsing of variable-length arrays or strings. The usage method is also very simple. Just change the fixed length of the array to the field name with the array length. The first character of the field name must be the '$' symbol , indicating that this is a variable-length array or string, and the field must be declared before the variable array or string

// Correct way
const struct = qs`
       struct {
           u8 a;
         char b[$a];
       }
 `;
const text = "hello";
const arr = [text.length, ...new TextEncoder().encode(text)];
const buf = new Uint8Array(arr);
const result = struct.decode(buf).toJson();

// print output
console.log(result.a); // 5 <- string length
console.log(result.b); // 'hello'

// Incorrect way
const struct = qs`
      struct {
          char a[$b];
            u8 b;
      }
 `;

Encode object to ArrayBuffer

quick-struct also support encode object to ArrayBuffer, below is the example.

const struct = qs`
    <autoflush>
    struct {
        u8 head;
        u32 groupToken;
        u32 deviceToken;
        u8 addressType;
        u8 addressLength;
        uchar address[$addressLength];
    }
`;

const msg = {
  head: 209,
  groupToken: 0,
  deviceToken: 1,
  addressType: 0,
  addressLength: 9,
  address: "234.0.0.1",
};

const buf = struct.encode(msg);

The endianness of output binary was decieded by your computer arch or OS, it is little-endian in mostly on Intel or AMD CPU. You can also set big-endian with quick-struct with method setBigEndian() like decode binary.

const struct = qs`
    <autoflush>
    struct {
        u8 head;
        u32 groupToken;
        u32 deviceToken;
        u8 addressType;
        u8 addressLength;
        uchar address[$addressLength];
    }
`;

const msg = {
  head: 209,
  groupToken: 0,
  deviceToken: 1,
  addressType: 0,
  addressLength: 9,
  address: "234.0.0.1",
};

const buf = struct.setBigEndian().encode(msg);

You can use struct attribute <endian: little | big> to set endianness.

const struct = qs`
    <autoflush>
    <endian: big>
    struct {
        u8 head;
        u32 groupToken;
        u32 deviceToken;
        u8 addressType;
        u8 addressLength;
        uchar address[$addressLength];
    }
`;

const msg = {
  head: 209,
  groupToken: 0,
  deviceToken: 1,
  addressType: 0,
  addressLength: 9,
  address: "234.0.0.1",
};

const buf = struct.encode(msg); // struct.setBigEndian().encode(msg);

Endianness

quick-struct uses DataView for binary data parsing. The input binary is in big-endian mode, which is no problem for network communication, but the computers we use are usually in little-endian mode. We can parse by setting the endianness mode. binary data in little endian mode. Default mode is big-endian, so you don't need change it normaly.

import { qs } from "quick-struct";

const struct = qs`
    struct {
        u8 a[3];
     uchar b[5];
    }
`;

// Create a UInt8 array
const text = new TextEncoder().encode("hello");
const buffer = new UInt8Array([12, 13, 14, ...text]);

// Set little-endian mode
const result = struct.setLittleEndian().decode(buffer).toJson();

// set big-endian mode
const result = struci.setBigEndian().decode(buffer).toJson();

// Print decoded result
console.log(result.a); // [12, 13, 14]
console.log(result.b); // "hello"

Export and import struct layout

In order to keep the data structure information confidential, quick-struct provides export and import of parsed structure data, which is saved in Base64 string format. Users can use other encryption and decryption methods to do secondary processing on the output string.

// Export structer
const struct = qs`
   struct {
       u8 a;
      u32 b;
   }
`;
layout = struct.exportStructs();

// Import structor
const struct = new QStruct();
struct.importStructs(layout);

Flush

Decoded buffer data will stored till flush() trigger, so if you want decode different binary data with one quick-struct instance, you must flush cache after toJson() or toJSON()

import { qs } from "quick-struct";

const struct = qs`
    struct {
        u8 a;
    }
`;

// Create the first UInt8 array
const buffer = new UInt8Array([12]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a); // print '12'

// Create the second Uint8 array
const buffer2 = new Uint8Array([32]);
const result2 = struct.decode(buffer2).toJson();

// Without flush()
console.log(result2.a); // print '12'

// With flush()
struct.flush();
console.log(result2.a); // print '32'

You can use instance method autoFlush() to flush cache when output toJson() executed automaticly.

import { qs } from "quick-struct";

/* ----------- TWO WAYS ------------ */

/* 1. Instance method */
const struct = qs`
    struct {
        u8 a;
    }
`.autoFlush();

/* 2. Struct attribute */
const struct = qs`
    <autoflush>
    struct {
        u8 a;
    }
`;

/* -------------------------------- */

// Create the first UInt8 array
const buffer = new UInt8Array([12]);

// Decode buffer
const result = struct.decode(buffer).toJson();

// Print decoded result
console.log(result.a); // print '12'

// Create the second Uint8 array
const buffer2 = new Uint8Array([32]);
const result2 = struct.decode(buffer2).toJson();

console.log(result2.a); // print '32'

API

qs template string function, it return a new QStruct

QStruct(structDescriptor: string) Constructor, the parameter is the structure description string

QStruct.prototype.decode(buffer: ArrayBuffer) Decode binary array data and store result in memory

QStruct.prototype.toJson() Ouptu the result with JSON type, you can use toJSON(), it's a.k.a. toJson()