JsonBinRead class provides methods for parsing and reading binary JSON-like data. It uses custom type codes and supports compression and various data structures.

JsonBinRead 类提供了用于解析和读取二进制 JSON 数据的方法。 它使用自定义的类型码,支持压缩和多种数据结构。

属性

ARRAY16: number = 7

A type code representing a 16-element array.

代表一个具有16个元素的数组的类型码。

ARRAY32: number = 25

A type code representing a 32-element array.

代表一个具有32个元素的数组的类型码。

ARRAY8: number = 6

A type code representing an 8-element array.

代表一个具有8个元素的数组的类型码。

ARRAYBUFFER: number = 19

A type code representing an array buffer.

代表一个数组缓冲区的类型码。

ARRAYBUFFER32: number = 23

A type code representing an array buffer with 32-bit size.

代表一个具有32位大小的数组缓冲区的类型码。

ARRAYDOUBLE: number = 12

A type code representing an array of double-precision floating-point values.

代表一个由双精度浮点值组成的数组的类型码。

ARRAYEMPTY: number = 8

A type code representing an empty array.

代表一个空数组的类型码。

ARRAYNUM16: number = 10

A type code representing an array of 16-bit integer values.

代表一个由16位整数值组成的数组的类型码。

ARRAYNUM32: number = 11

A type code representing an array of 32-bit integer values.

代表一个由32位整数值组成的数组的类型码。

ARRAYNUM8: number = 9

A type code representing an array of 8-bit integer values.

代表一个由8位整数值组成的数组的类型码。

ARRAYREF: number = 20

A type code representing an array reference.

代表一个数组引用的类型码。

ARRAYREF32: number = 24

A type code representing an array reference with 32-bit size.

代表一个具有32位大小的数组引用的类型码。

ARRAYREFSOURCE16: number = 22

A type code representing a source array of 16-bit integers for reference.

代表一个用于引用的16位整数源数组的类型码。

ARRAYREFSOURCE8: number = 21

A type code representing a source array of 8-bit integers for reference.

代表一个用于引用的8位整数源数组的类型码。

ARRAYSTRING: number = 13

A type code representing an array of strings.

代表一个由字符串组成的数组的类型码。

BOOLEAN: number = 3

A type code representing a boolean value.

代表一个布尔值的类型码。

COMPRESS_NEW: number = 1

A constant representing a new compression type or mode.

代表一种新的压缩类型或模式的常量。

COMPRESS_REF: number = 2

A constant representing a reference-based compression type or mode.

代表一种基于引用的压缩类型或模式的常量。

COMPRESS_REFMODIFY: number = 3

A constant representing a modified reference-based compression type or mode.

代表一种修改后的基于引用的压缩类型或模式的常量。

DOUBLE: number = 4

A type code representing a double-precision floating-point value.

代表一个双精度浮点值的类型码。

FLOAT32ARRAY: number = 31

A type code representing a Float32Array.

代表一个Float32Array的类型码。

INT16ARRAY: number = 30

A type code representing an Int16Array.

代表一个Int16Array的类型码。

INT8ARRAY: number = 28

A type code representing an Int8Array.

代表一个Int8Array的类型码。

ISJSONBIN: number = 0xFFFFFF
ISJSONBIN2: number = 0xFFFFFE
ISJSONBIN3: number = 0xFFFFFD
NULL: number = 14

A type code representing a null value.

代表一个空值的类型码。

NUM16: number = 1

A type code representing a 16-bit integer value.

代表一个16位整数值的类型码。

NUM16_1000: number = 16

A type code representing a 16-bit integer value multiplied by 1000.

代表一个乘以1000的16位整数值的类型码。

NUM32: number = 2

A type code representing a 32-bit integer value.

代表一个32位整数值的类型码。

NUM32_1000: number = 17

A type code representing a 32-bit integer value multiplied by 1000.

代表一个乘以1000的32位整数值的类型码。

NUM64: number = 27

A type code representing a 64-bit integer value.

代表一个64位整数值的类型码。

NUM8: number = 0

A type code representing an 8-bit integer value.

代表一个8位整数值的类型码。

OBJECT: number = 15

A type code representing an object.

代表一个对象的类型码。

OBJECTEND: number = 0x7FFF

A constant value used to mark the end of an object in the serialized data.

用于在序列化数据中标记对象结束的常量值。

OBJECTTHISCLASS: number = 26

A type code representing an object with a specific class.

代表一个具有特定类的对象的类型码。

SPLITCHAR: string = ...

The character used to split strings in the serialized data.

用于在序列化数据中分割字符串的字符。

STRING: number = 5

A type code representing a string value.

代表一个字符串值的类型码。

UINT8ARRAY: number = 29

A type code representing a Uint8Array.

代表一个Uint8Array的类型码。

WORDTEXT: number = 18

A type code representing a word text value.

代表一个单词文本值的类型码。

访问器

  • get instance(): JsonBinRead

    返回 JsonBinRead

    The singleton instance of the JsonBinRead class.

    Gets the singleton instance of the JsonBinRead class. If it doesn't exist, creates a new one.

    获取JsonBinRead类的单例实例。如果不存在,则创建一个新的实例。

方法

  • 参数

    • data: ArrayBuffer

      The ArrayBuffer containing the binary JSON data to be read.

    • createObjWithClass: Function = null

      A function used to create objects with specific classes during the parsing process (optional).

    返回 any

    The parsed object. If the data format is not recognized, it returns null.

    Reads binary JSON data from the given ArrayBuffer and parses it into an object. It first initializes some internal state, determines the format based on a marker in the buffer, creates a keyMap for decoding, and then uses the _readOne method to start parsing the data. It also measures and may log the parsing time if it exceeds a certain threshold.

    从给定的ArrayBuffer中读取二进制JSON数据并将其解析为对象。 它首先初始化一些内部状态,根据缓冲区中的标记确定格式,创建用于解码的键映射,然后使用_readOne方法开始解析数据。如果解析时间超过一定阈值,它还会测量并可能记录解析时间。

  • 参数

    • n1: number

      The first number.

    • n2: number

      The second number.

    返回 number

    The combined large number.

    Combines two numbers into a single large number representation. It first converts the second number to a hexadecimal string, pads it to a specific length if needed, and then concatenates it with the hexadecimal string of the first number to form the large number.

    将两个数字组合成一个大数字表示形式。 它首先将第二个数字转换为十六进制字符串,如有需要将其填充到特定长度, 然后将其与第一个数字的十六进制字符串连接起来以形成大数字。

  • 参数

    • data: ArrayBuffer

      The ArrayBuffer to be checked.

    返回 boolean

    True if the data is identified as JSONBin data, false otherwise.

    Checks if the given ArrayBuffer contains JSONBin data.

    检查给定的ArrayBuffer是否包含JsonBin数据。

  • 参数

    • value: ArrayBuffer

      The ArrayBuffer to be parsed.

    返回 any

    The parsed data as an object. If parsing fails, returns null.

    Parses the given ArrayBuffer as JSONBin data. If it's not in the expected JSONBin format, tries to parse it as a regular JSON string.

    将给定的ArrayBuffer解析为JsonBin数据。如果不是预期的JsonBin格式, 则尝试将其作为常规JSON字符串进行解析。

  • 参数

    • value: any

      The value to be parsed.

    返回 any

    The parsed data as an object.

    Parses the given value (assumed to be JSONBin data) and caches the result using the Loader.

    解析给定的值(假定为JsonBin数据)并使用Loader缓存结果。