Code Monkey home page Code Monkey logo

zig-protobuf's Introduction

zig-protobuf


This is WIP

This is an implementation of google Protocol Buffers version 3 in Zig.

Protocol Buffers is a serialization protocol so systems, from any programming language nor platform, can exchange data reliably.

Protobuf's strength lies in a generic codec paired with user-defined "messages" that will define the true nature of the data encoded.

Messages are usually mapped to a native language's structure/class definition thanks to a language-specific generator associated with an implementation.

Zig's compile-time evaluation becomes extremely strong and useful in this context: because the structure (a message) has to be known beforehand, the generic codec can leverage informations, at compile time, of the message and it's nature. This allows optimizations that are hard to get as easily in any other language, as Zig can mix compile-time informations with runtime-only data to optimize the encoding and decoding code paths.

State of the implementation

This repository, so far, only aims at implementing protocol buffers version 3.

The current version of the zig compiler used for this project is 0.9.1.

Encoding

  • Scalar Value Types
    • double
    • float
    • int32
    • int64
    • uint32
    • uint64
    • sint32
    • sint64
    • fixed32
    • fixed64
    • sfixed32
    • sfixed64
    • bool
    • string / bytes
  • Enumerations
  • Submessages
  • Any
  • Oneof
  • Maps

Decoding

  • Scalar Value Types
    • double
    • float
    • int32
    • int64
    • uint32
    • uint64
    • sint32
    • sint64
    • fixed32
    • fixed64
    • sfixed32
    • sfixed64
    • bool
    • string / bytes
  • Enumerations
  • Submessages
  • Any
  • Oneof currently on hiatus to find a solution, focusing on generator
  • Maps

Code generator

  • Scalar Value Types
    • double
    • float
    • int32
    • int64
    • uint32
    • uint64
    • sint32
    • sint64
    • fixed32
    • fixed64
    • sfixed32
    • sfixed64
    • bool
    • string / bytes
  • Enumerations
  • Submessages
  • Any
  • Oneof
  • Maps

zig-protobuf's People

Contributors

arwalk avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.