mirror of
https://github.com/TxtDot/dalet.git
synced 2024-11-21 20:36:23 +03:00
doc: add daletpack formats overview
This commit is contained in:
parent
6236a8f916
commit
4273bc851a
8 changed files with 66 additions and 35 deletions
|
@ -11,7 +11,7 @@ Markup language ecosystem сombining small file size, big number of possibilitie
|
||||||
[Specification](./specification/main.md).
|
[Specification](./specification/main.md).
|
||||||
|
|
||||||
> [!WARNING]
|
> [!WARNING]
|
||||||
> Specification is not complete.
|
> Specification is not complete and very unstable.
|
||||||
|
|
||||||
## Concept
|
## Concept
|
||||||
|
|
||||||
|
|
|
@ -16,10 +16,6 @@ export function parseTag(raw_tag: RawTag): Tag {
|
||||||
return new El(raw_tag);
|
return new El(raw_tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof raw_tag === "number") {
|
|
||||||
return TagNormalizers[raw_tag]([raw_tag, null]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Array.isArray(raw_tag)) {
|
if (Array.isArray(raw_tag)) {
|
||||||
if (Array.isArray(raw_tag[0])) {
|
if (Array.isArray(raw_tag[0])) {
|
||||||
raw_tag = raw_tag as RawTag[];
|
raw_tag = raw_tag as RawTag[];
|
||||||
|
|
|
@ -4,13 +4,12 @@ import Heading from "./tags/heading";
|
||||||
import { RawTagAsArray } from "./types";
|
import { RawTagAsArray } from "./types";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
|
|
||||||
|
const textOrTag = z.custom((b) => b !== null);
|
||||||
|
const text = z.string();
|
||||||
|
|
||||||
const TagNormalizers = [
|
const TagNormalizers = [
|
||||||
n(
|
n(textOrTag, z.any(), El),
|
||||||
z.custom((b) => b !== null),
|
n(text, z.number().int().min(1).max(6).nullable(), Heading),
|
||||||
z.any(),
|
|
||||||
El
|
|
||||||
),
|
|
||||||
n(z.string(), z.number().int().min(1).max(6), Heading),
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export { TagNormalizers };
|
export { TagNormalizers };
|
||||||
|
|
|
@ -2,14 +2,14 @@ import { chtml } from "../../utils";
|
||||||
import { Tag } from "../types";
|
import { Tag } from "../types";
|
||||||
|
|
||||||
export default class Heading extends Tag {
|
export default class Heading extends Tag {
|
||||||
constructor(body: string, argument: number) {
|
constructor(body: string, argument?: number | null) {
|
||||||
super(1, body, argument);
|
super(1, body, argument || null);
|
||||||
}
|
}
|
||||||
|
|
||||||
toHtml(classes?: boolean): string {
|
toHtml(classes?: boolean): string {
|
||||||
return chtml(
|
return chtml(
|
||||||
`h${this.argument}`,
|
`h${this.argument || 1}`,
|
||||||
`h hl${this.argument}`,
|
`h hl${this.argument || 1}`,
|
||||||
classes,
|
classes,
|
||||||
this.body
|
this.body
|
||||||
);
|
);
|
||||||
|
|
|
@ -38,7 +38,10 @@ export abstract class Tag {
|
||||||
encode(): Uint8Array {
|
encode(): Uint8Array {
|
||||||
return encode(this.raw);
|
return encode(this.raw);
|
||||||
}
|
}
|
||||||
abstract toHtml(classes?: boolean): string;
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
toHtml(classes?: boolean): string {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Body = string | Tag[] | null;
|
export type Body = string | Tag[] | null;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## Data format
|
## Data format
|
||||||
|
|
||||||
Daletl must be serialized as [MessagePack](https://github.com/msgpack/msgpack/blob/master/spec.md). All data transfer between server and client is done in this format.
|
Daletl must be serialized as [DaletPack](./daletpack.md). All data transfer between server and client is done in this format.
|
||||||
|
|
||||||
### Root
|
### Root
|
||||||
|
|
||||||
|
@ -20,10 +20,10 @@ Each tag may be one of four types:
|
||||||
|
|
||||||
#### Data Representation
|
#### Data Representation
|
||||||
|
|
||||||
##### As array of 2-3 elements
|
##### As array of 1-3 elements
|
||||||
|
|
||||||
1. Tag id
|
1. Tag id
|
||||||
2. Tag body
|
2. Tag body (optional if argument is null)
|
||||||
3. Tag argument (optional)
|
3. Tag argument (optional)
|
||||||
|
|
||||||
Tag id is integer number.
|
Tag id is integer number.
|
||||||
|
@ -50,20 +50,6 @@ Argument can be number or string.
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
##### As number
|
|
||||||
|
|
||||||
Number becomes tag.
|
|
||||||
|
|
||||||
```json5
|
|
||||||
1
|
|
||||||
```
|
|
||||||
|
|
||||||
equals to
|
|
||||||
|
|
||||||
```json5
|
|
||||||
[1, null]
|
|
||||||
```
|
|
||||||
|
|
||||||
##### As string
|
##### As string
|
||||||
|
|
||||||
String becomes element tag.
|
String becomes element tag.
|
||||||
|
|
46
specification/daletpack.md
Normal file
46
specification/daletpack.md
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# DaletPack specification for Dalet v1.0-preview
|
||||||
|
|
||||||
|
DaletPack is an binary data format for Dalet, that is used for minimizing the size of transmitted daletl data. DaletPack is designed specifically to transfer as little data as possible, it compresses the declaration of tag types into the smallest possible volume. Nothing unnecessary is transferred.
|
||||||
|
|
||||||
|
All data must be compressed in [Zstandard](https://datatracker.ietf.org/doc/html/rfc8878) format.
|
||||||
|
|
||||||
|
## Types (12)
|
||||||
|
|
||||||
|
- **Null** (1)
|
||||||
|
- **Integer** (1)
|
||||||
|
- **String** (6)
|
||||||
|
- **Array** (3)
|
||||||
|
- **Tags** (3)
|
||||||
|
- **Tag only with id** (1)
|
||||||
|
- **Tag with id and body** (1)
|
||||||
|
- **Tag with id, body and argument** (1)
|
||||||
|
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
- a value of integer (5 bits) must be between -15 and 15
|
||||||
|
- maximum byte size of a String object is (2^32)-1
|
||||||
|
- string must be encoded in UTF-8
|
||||||
|
- maximum number of elements of an Array object is (2^32)-1
|
||||||
|
|
||||||
|
## Formats
|
||||||
|
|
||||||
|
### Overview
|
||||||
|
|
||||||
|
| name | id | id-bits |
|
||||||
|
| ------------------------ | --- | ------- |
|
||||||
|
| null | 0 | 0000 |
|
||||||
|
| int | 1 | 0001 |
|
||||||
|
| str 3 | 2 | 0010 |
|
||||||
|
| str 4 | 3 | 0011 |
|
||||||
|
| str 6 | 4 | 0100 |
|
||||||
|
| str 8 | 5 | 0101 |
|
||||||
|
| str 16 | 6 | 0110 |
|
||||||
|
| str 32 | 7 | 0111 |
|
||||||
|
| arr 2 | 8 | 1000 |
|
||||||
|
| arr 4 | 9 | 1001 |
|
||||||
|
| arr 8 | 10 | 1010 |
|
||||||
|
| arr 16 | 11 | 1011 |
|
||||||
|
| arr 32 | 12 | 1100 |
|
||||||
|
| tag (id) | 13 | 1101 |
|
||||||
|
| tag (id, body) | 14 | 1110 |
|
||||||
|
| tag (id, body, argument) | 15 | 1111 |
|
|
@ -7,6 +7,7 @@
|
||||||
- [Tags](./tags.md)
|
- [Tags](./tags.md)
|
||||||
- [Daletl](./daletl.md)
|
- [Daletl](./daletl.md)
|
||||||
- [Daleth](./daleth.md)
|
- [Daleth](./daleth.md)
|
||||||
|
- [DaletPack](./daletpack.md)
|
||||||
|
|
||||||
## Languages
|
## Languages
|
||||||
|
|
||||||
|
@ -16,13 +17,13 @@
|
||||||
|
|
||||||
### Daletl
|
### Daletl
|
||||||
|
|
||||||
**Daletl** is a low-level language for machines. It is used in data transmission, processing and generation. It is specifically optimized to transfer as little data as possible using MessagePack.
|
**Daletl** is a low-level language for machines. It is used in data transmission, processing and generation. It is specifically optimized to transfer as little data as possible using DaletPack.
|
||||||
|
|
||||||
## Stages
|
## Stages
|
||||||
|
|
||||||
### Stage 1 (optional)
|
### Stage 1 (optional)
|
||||||
|
|
||||||
In the first stage, the daleth language is parsed and converted to daletl. All tags becomes an array of properties `[tag_id, body, argument]`, so that they take up less space in json or messagepack, for example. **This stage is not for data transmission**.
|
In the first stage, the daleth language is parsed and converted to daletl. All tags becomes an array of properties `[tag_id, body, argument]`, so that they take up less space in the transmitted data, for example. **This stage is not for data transmission**.
|
||||||
|
|
||||||
### Stage 2
|
### Stage 2
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue