An experimental implementation of the minimal part of Vanadium necessary to do an RPC in C.
The target systems are those that are too small to run Go, but big enough to run C and a networking stack.
On hiatus. At this point, the proof of concept for how the vdl tool should generate the C is done, but I've lost interest in this due to some other stuff I need to do. This has been and interesting experiment but it is unlikely to get finished anytime soon. If you are reading this and interested in moving it forward, feel free to get in touch and I'll show you the first draft of the vdl tool changes.
If the goal of this project is to write a tiny Vanadium in C, why are there *.go and *_test.go files? Why is there cgo?
Good question.
Imagine you are a Go programmer. You like to write the least C possible, because you prefer Go. Writing C is hard. Writing even more C just to test the first C is maybe not hard, but certainly annoying.
Enter cgo. If you write your C code like you plan for it to be used indpendently of Go, but you test it via cgo, you get to write only the implementation in C, and all your tests in Go.
And if you happened to have a copy of the official v.io Go code in your GOPATH, then you could even do something really snazzy: You can use the reference implementation to validate your new implementation. For an example, see message_test.go where we use v.io/v23/flow/message to serialize a message, and then we use our new implementation in C to deserialize it.
As a general rule, *.[ch] are the C implementation. *.go are the test files, and nothing you see in them is production code for the targeted environment.
The current testing environment is MacOS.
During normal development, the C is built with "go test".
To use the library outside of the Go/cgo test environment, build it with CMake:
$ mkdir obj
$ cd obj
$ cmake .. && make
$ ls -l libminiv.a mvrpc/mvrpc
-rwxr-xr-x 1 jra staff 14296 Feb 6 11:30 mvrpc/mvrpc
-rw-r--r-- 1 jra staff 5016 Feb 4 23:52 libminiv.a
A bit smaller than the Go Vanadium!
It is 2016. This is a new all C library. What are you smoking?
I'm even worse at C++ than C. That's why I program Go.
But even if I was a C++ hacker, there are lots of embedded systems that are not ready for C++. This Vanadium implementation is targeted to them, so it is in C99.