Skip to content

Heromyth/capnproto-dlang

This branch is 1 commit behind capnproto/capnproto-dlang:master.

Folders and files

NameName
Last commit message
Last commit date
Jul 11, 2017
Jul 11, 2017
Apr 17, 2017
Apr 18, 2017
Apr 17, 2017
Apr 17, 2017
Apr 17, 2017
Jun 26, 2017
Apr 17, 2017
Jun 15, 2017

Repository files navigation

capnproto-dlang: Cap'n Proto for D

Dub version Dub downloads Build Status

Cap'n Proto is an extremely efficient protocol for sharing data and capabilities, and capnproto-dlang is a pure D implementation.

State

  • Passes Cap'n Proto testsuite.
  • A little slower/faster than the official C++ implementation (see benchmarks).
  • Missing RPC part of Cap'n Proto.
  • Missing JSON codec (workaround: capnp tool can convert to and from JSON).
  • Missing Cap'n Proto toString format (workaround: capnp tool can convert to and from text format).

Schema compilation

Build the dlang plugin for the Cap'n Proto compiler.

make

Run the Cap'n Proto compiler to generate the D interface code for your schema.

capnpc -odlang example.capnp

Or

capnpc -o/path/to/capnpc-dlang example.capnp

Depending on whether the dlang plugin is installed to path.

Use in code

import example;
import capnproto;

void main()
{
    auto message = new MessageBuilder(); //From capnproto.
    auto rootObject = message.initRoot!AnyObject; //AnyObject from example.
    //Do stuff with rootObject.
    //Use Serialize or SerializePacked to get the serialized message.
}

Sample

A full example including pregenerated D code from schema is available here.

dub build -c sample-addressbook
[capnproto-dlang]$ ./addressbook write | ./addressbook read
Alice: alice@example.com
  mobile phone: 555-1212
  student at: MIT
Bob: bob@example.com
  home phone: 555-4567
  work phone: 555-7654
  unemployed

Benchmarks

Benchmarked on Skylake i7. Best of three runs.

dub build -c benchmark-carsales --compiler ldc --build=release

[capnproto-dlang]$ time ./benchmark-carsales object 0 none 20000
real    0m0,538s
user    0m0,527s
sys     0m0,010s

[capnproto-c++]$ time ./capnproto-carsales object no-reuse none 20000
real    0m0,410s
user    0m0,406s
sys     0m0,001s

[capnproto-c++]$ time ./capnproto-carsales object reuse none 20000
real    0m0,350s
user    0m0,346s
sys     0m0,002s

dub build -c benchmark-catrank --compiler ldc --build=release

[capnproto-dlang]$ time ./benchmark-catrank object 0 none 20000
real    0m10,999s
user    0m10,977s
sys     0m0,004s

[capnproto-c++]$ time ./capnproto-catrank object no-reuse none 20000
real    0m11,259s
user    0m10,789s
sys     0m0,422s

[capnproto-c++]$ time ./capnproto-catrank object reuse none 20000
real    0m10,287s
user    0m10,251s
sys     0m0,003s

dub build -c benchmark-eval --compiler ldc --build=release

[capnproto-dlang]$ time ./benchmark-eval object 0 none 20000
real    0m0,109s
user    0m0,105s
sys     0m0,004s

[capnproto-c++]$ time ./capnproto-eval object no-reuse none 20000
real    0m0,191s
user    0m0,189s
sys     0m0,002s

[capnproto-c++]$ time ./capnproto-eval object reuse none 20000
real    0m0,185s
user    0m0,183s
sys     0m0,001s

About

Cap'n Proto in pure D

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 54.2%
  • D 44.4%
  • Cap'n Proto 1.3%
  • Makefile 0.1%