nfisher1226 / zzz

Simple and boring human readable data format for Zig.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zzz

Simple and boring human readable data format for Zig.

zzz syntax describes a tree of strings. It has little syntactic noise and is really easy to implement. The spec does not force any specific rules for escaping or number parsing, and the current implementation optionally uses Zig's standard library for converting numbers. Nodes in the tree are slices into the text.

zzz's focus is to be a simple and lightweight format. This library implements a static tree which has zero allocations. Here's an example reading a tree:

Note: This implementation is being iterated on while I use this for another project. API stability isn't a guarantee quite yet, and will also be subject to changes as Zig changes.

// 1 is the max number of roots, 100 is the max number of nodes.
var tree = zzz.ZTree(1, 100){};
var root = try tree.appendText("foo:bar");
// Root is always null.
assert(root.value == .Null);
assert(root.findNth(0, .{.String = "foo"}) != null);
assert(root.findNthDescendant(0, .{.String = "bar"}) != null);
// Output to a single line.
root.stringify(std.io.getStdOut().writer());

Use-cases

  • Configuration files
  • Game object descriptions
  • Embedded devices
  • Simple serialization format

Quick example

D&D Kobold stat block. Raw text here.

(YAML highlighting used)

# Comments begin with a hash symbol.

# : describes a parent child relationship
name: Kobold

# , describes a sibling relationship
tags: small, humanoid, lawful evil
armor class: 12

# : can appear on the same line, here "(2d6 - 2)" is a child of "5"
hit points: 5 : (2d6 - 2)

# This can be used for meta tagging
speed: 30 : ft

# Continuing on a newline. The indentation is exactly 2 spaces to describe a parent/child relationship
stats:
  str: 7: -2
  dex: 15: 2
  con: 9: -1
  int: 8: -1
  wis: 7: -2
  cha: 8: -1

# ; is used to go up in the tree. Here we ascend up from the "ft" meta node
senses: darkvision:60:ft;; passive perception:8
languages: common, draconic
challenge: 1:8

# Multline strings follow the same rules as Lua's. The first newline on an empty line is skipped
abilities:
  sunlight sensitivity: [[
While in sunlight, the kobold has disadvantage on attack
rolls, as well as on Wisdom (Perception) checks that rely on sight.]]
  pack tactics: [[
The kobold has advantage on an attack roll against a
creature if at least one of the kobold's allies is within
5 feet of the creature and the ally isn't incapacitated.]]

JSON example

Translated from http://www.json.org/example.html

menu:
  id: file
  value: File
  popup:
    menuitem:
      : value: New
        onclick: CreateNewDoc()
      : value: Open
        onclick: OpenDoc()
      : value: Close
        oneclick: CloseDoc()
{"menu": {
  "id": "file",
  "value": "File",
  "popup": {
    "menuitem": [
      {"value": "New", "onclick": "CreateNewDoc()"},
      {"value": "Open", "onclick": "OpenDoc()"},
      {"value": "Close", "onclick": "CloseDoc()"}
    ]
  }
}}

Building & examples

For more examples see the source comments and tests.

zig build test

zig build examples

Other languages

Syntax highlighting

Sparse spec

zzz text describes a tree of strings. Special characters (and spaces) are used to go up and down the tree. The tree has an implicit null root node.

Descending the tree:

grandparent:parent:child:grandchild

Output:

null -> "grandparent" -> "parent" -> "child" -> "grandchild"

Traversing the children of root (siblings):

sibling1,sibling2,sibling3

Output:

null -> "sibling1"
     -> "sibling2"
     -> "sibling3"

Going up to the parent:

parent:child;anotherparent

Output:

null -> "parent" -> "child"
     -> "anotherparent"

White space and newlines are significant. A newline will take you back to the root:

parent:child
anotherparent

Output:

null -> "parent" -> "child"
     -> "anotherparent"

Exactly two spaces are used to to go down a level in the tree:

parent:child
  sibling

Output:

null -> "parent" -> "child"
                 -> "sibling"

You can only go one level deeper than the previous lines depth. Anything more is an error:

parent:child
    sibling

Output:

Error!

Trailing commas, semicolons, and colons are optional. So the above (correct one) can be written as:

parent
  child
  sibling

Output:

null -> "parent" -> "child"
                 -> "sibling"

This implementation supports integers (i32), floats (f32), and booleans:

string:42:42.0:true::

Output:

null -> "string" -> 42 -> 42.0 -> true -> null

Strings are trimmed:

parent:     child:      grand child      ;

Output:

null -> "parent" -> "child" -> "grand child"

Strings can be quoted with double quotes or Lua strings:

"parent":[[ child ]]:[==[grand child]=]]==];

Output:

null -> "parent" -> " child " -> "grand child]=]"

Lua strings will skip the first newline if it's empty:

[[
some text]]

Output:

null -> "some text"

Strings are not escaped and taken as-is.

"\n\t\r"

Output:

null -> "\n\t\r"

Comments begin with # and run up to the end of the line. Their indentation follows the same rules as nodes.

# A comment
a node
  # Another comment
  a child

Output:

null -> "a node"
     -> "a child"

About

Simple and boring human readable data format for Zig.

License:BSD Zero Clause License


Languages

Language:Zig 99.8%Language:AMPL 0.2%