flatbufferz
flatbufferz copied to clipboard
a flatbuffers codegen library in zig
:warning: This project is in its early early stages. expect bugs and missing features. :warning:
About
Generate zig code from flatbuffer schema files which can de/serialize flatbuffer messages. Depends on packaged flatc to parse .fbs files.
Developed against zig version 0.11.0-dev.2213+515e1c93e
This project depends on packaged flatc
compiler @v23.3.3, built with zig using a fork of google/flatbuffers.
Usage
zig build
Run packaged flatc
zig build flatc -- <flatc args>
compile from .fbs files
Use flatc-zig
to generate zig files from schema (.fbs) files:
zig-out/bin/flatc-zig -o gen -I examples/includes examples/test.fbs
compile from .bfbs files
Optionally use packaged flatc
to generate a binary schema (.bfbs) from a schema (.fbs) files:
zig build flatc -- -b --schema --bfbs-comments --bfbs-builtins --bfbs-gen-embed -I examples/includes -o gen/examples examples/test.fbs
Use flatc-zig
to generate zig files from binary schema (.bfbs) files:
zig-out/bin/flatc-zig -o gen gen/examples/test.bfbs
use compiled zig files
Either of these create the following in gen/
$ find gen/ -name "*.fb.zig"
gen/Race.fb.zig
gen/People/X.fb.zig
gen/People/Foo.fb.zig
gen/People/Person.fb.zig
You can now import these files into your zig application. The compiled .fb.zig files depend on a "flatbufferz" module which can be provided by:
// build.zig.zon
.{
.name = "my-app",
.version = "0.0.1",
.dependencies = .{
.flatbufferz = .{
// note: you may need to change this url commit hash
.url = "https://github.com/travisstaloch/flatbufferz/archive/f8c035f29893a2b30902ed61b0d8702e8f52f435.tar.gz",
},
}
}
// build.zig
const flatbufferz_dep = b.dependency("flatbufferz", .{
.target = target,
.optimize = optimize,
});
const flatbufferz_mod = flatbufferz_dep.module("flatbufferz");
my_exe.addModule("flatbufferz", flatbufferz_mod);
Tools
Convert .bfbs to .fbs.
zig-out/bin/flatc-zig gen/test.bfbs --bfbs-to-fbs
:warning: warning: --bfbs-to-fbs doesn't produce valid .fbs files. In its current state, it is more of a binary schema debugging tool.