Categorygithub.com/yah01/cybuf-go
repositorypackage
0.0.0-20200501163807-198e661ec613
Repository: https://github.com/yah01/cybuf-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

CyBuf-go

a go package for marshal&unmarshal CyBuf format data

Usage

CyBuf looks like JSON, there are three differences:

  • Outermost braces are optional, expect in CyBuf stream
  • CyBuf split attributes by space characters(space,line break,tab...), not comma.
  • Attributes of CyBuf have no double quotes, expect for attribute names that contain control characters.

A standard CyBuf format data:

{
    Name: "yah01"
    Age: 21
    Weight: 100.2
    Live: true
    Friends: [
        {
            Name: "wmx"
            Age: 100
            Weight: 200.5
            Live: false
            Friends: nil
            School: {
                Name: "SHU"
                Age: 114514
            }
        }
    ]
    School: {
        Name: "Wuhan University"
        Age: 120
    }
}

How to contribute

Just contact me, there are something need to do:

  • Design error types and messages
  • Marshal struct
  • Unmarshal struct
  • Zip/Unzip a cybuf data (go to cybuf-formatter repo)
  • Support attribute names containing control characters
  • Support custom Marshal()/Unmarshal() methods
  • Support unmarshal() from io.Reader(bytes stream)
  • Optimize the algorithms

There's no CyBuf support for other languages, they need you: