wrap_mpack
is an Eiffel binding of mpack C library
using WrapC tool.
mpack
is a C implementation of an encoder and decoder for the MessagePack serialization format.
The binding is work in progress. Tested on Linux and Windows 64 bits.
The MPack code is small enough so it's embedded directly into wrap_mpack codebase. Using the amalgamation package, so the mpack.h and mpack.c are already part of the wrap_mpack library
cd library
./generator.sh
cd library
generator.bat
- Writer API
shows how to encodes structured data to MessagePack.
- Node API
shows how to parse a chunk of MessagePack data into an immutable tree of dynamically-typed nodes.