Skip to content

C library/compiler for the Cap'n Proto serialization/RPC protocol

License

Notifications You must be signed in to change notification settings

jamvideosolutions/c-capnproto

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

capnpc-c

This is a C plugin for Cap'n Proto, an efficient protocol for sharing data and capabilities.

This is only the plugin, to properly make use of it you need to download, build and install capnpc and then build and install this project and then you can utilize it as:

capnpc compiler/test.capnp -oc

Build Status

status

This is a merge of 3 forks of James McKaskill's great work, which has been untouched for a while:

usage

The compiler directory contains the C language plugin (capnpc-c) for use with the capnp tool: https://capnproto.org/capnp-tool.html.

capnp will by default search $PATH for capnpc-c - if it's on your PATH, you can generate code for your schema as follows:

$ capnp compile -o c myschema.capnp

Otherwise, you can specify the path to the c plugin:

$ capnp compile -o ./capnpc-c myschema.capnp

capnp generates a C struct that corresponds to each capn proto struct, along with read/write functions that convert to/from capn proto form.

TBD whether it will make sense in the future to provide accessor functions for struct members, rather than converting entire structs.

building on linux

git clone https://github.com/opensourcerouting/c-capnproto
cd c-capnproto
git submodule update --init --recursive
autoreconf -f -i -s 
./configure
make
make check

About

C library/compiler for the Cap'n Proto serialization/RPC protocol

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 80.8%
  • C++ 9.9%
  • Cap'n Proto 8.8%
  • Other 0.5%