6.6 KiB
capnproto-dotnetcore 
A Cap'n Proto implementation for .NET Standard 2.0 (credits to lostinplace) and .NET Core 2.1.
"Cap'n Proto is an insanely fast data interchange format and capability-based RPC system." Whilst the original implementation is written in C++ there are several ports to other languages. This is a C# implementation for .NET Core.
Disclaimer: Neither this project nor its author are affiliated with Cap'n Proto. This is just yet another independent implementation of the specification. The following sections assume that you are familiar with Cap'n Proto and probably its GitHub project.
Getting started: Users
The overall deployment consists of two components:
- The C# code generator back end is required for generating
.cs
serialization classes from.capnp
schema files. It is designed to be used in conjunction with the Cap'n Proto tool set which is maintained at the original site. The tool set is required at compile time. - The
Capnp.Net.Runtime
assembly is to be included as a reference into your particular application (or assembly).
Code generator back end: Visual Studio / MSBuild integration
This is probably the most convenient option for Visual Studio development: The MSBuild integration package recognizes .capnp
files in your VS project and generates their code-behind during build.
A prerequisite is that the Cap'n Proto tool suite is installed (capnp.exe
must be on your PATH
). The simplest way to achieve this:
choco install capnproto
Then, for the VS project which hosts your .capnp
schema definitions:
Install-Package CapnpC.CSharp.MsBuild.Generation
Code generator back end: Windows command line
The C# code generator back end is available as Chocolatey package. You may choose between two flavors: The portable version requires a .NET Core 2.1 (or higher) runtime or SDK (type dotnet
at command line prompt to check whether you already have one). This is the recommended variant. To install, type
choco install capnpc-csharp
The self-contained version does not require .NET Core but runs only on a x86-compatible Windows machine. To install, type
choco install capnpc-csharp-win-x86
Both versions will also download and install the Cap'n Proto tool set Chocolatey package. Note that the author does not maintain this package and has no influence on its contents.
Announcement: There is currently an experimental branch for packaging the code generator back end as .NET Core CLI tool. If this approach turns out to be viable, it will probably be superior to the Chocolatey deployment. In that case, the CLI tool capnpc-csharp will be deployed on NuGet.org and the former Chocolatey package will be deprecated. capnpc-csharp-win-x86 will probably be kept (and also maintained).
Code generator back end: Other OSes
Currently, you are on yourself. Compile the capnpc-csharp
VS project and install the resulting .NET application manually on your system. This should not be that complicated, see also the Wiki. It would be great to support other package managers, especially APT. Consider contributing? Author would be happy!
Runtime assembly
The Capnp.Net.Runtime
assembly is available as Nuget package. E.g. within VS package manage console, type
Install-Package Capnp.Net.Runtime
Getting started: Developers
For building from scratch you will need Visual Studio ≥ 2019 (e.g. Community Edition) with suitable workloads for C# / .NET Core (currently .NET Core 2.1) development. For the test suite, you will also need the C++ native workload, vcpkg and Cap'n Proto release 0.7.0:
vcpkg install capnproto
Solution/project structure is as follows:
Capnp.Net.sln
contains these projects:Capnp.Net.Runtime
is the runtime implementation, a multi-target (.NET Standard 2.0 + .NET Core 2.1) assembly.CapnpC.CSharp.Generator
contains the generator backend logic for C# language. It is also a multi-target (.NET Standard 2.0 + .NET Core 2.1) assembly.capnpc-csharp
is the command line-based generator backend (a .NET Core 2.1 application).CapnpC.CSharp.MsBuild.Generation
provides the MSBuild integration for the generator backend.Capnp.Net.Runtime.Tests.Core21
is an MS Unit Testing assembly, containing - you guessed it - the test suite. It depends on the .NET Core 2.1 flavor runtime assembly.Capnp.Net.Runtime.Tests.Std20
depends (you guessed it, again) on .NET Standard 2.0 flavor. Note that the code base involves conditional compilation, such that there are indeed some code differences for .NET Standard and .NET Core flavor.CapnpC.CSharp.Generator.Tests
contains the generator backend test suite.CapnpC.CSharp.MsBuild.Generation.Tests
contains tests forCapnpC.CSharp.MsBuild.Generation
.
CapnpCompatTest.sln
compiles to a native x86 executable which depends on the original Cap'n Proto C++ implementation. It is (partially) required by the test suite for interoperability testing.MsBuildGenerationTest\MsBuildGenerationTest.sln
is a test solution/project for MSBuild integration.
Features
The following Cap'n Proto features are currently implemented:
- Serialization/deserialization of all kinds of data (structs, groups, unions, lists, capabilities, data, text, enums, even primitives)
- Generics
- Level 1 RPC, including promise pipelining, embargos, and automatic tail calls
- Security (pointer validation, protection against amplification and stack overflow DoS attacks)
- Compiler backend generates reader/writer classes, interfaces, proxies, skeletons (as you know it from the C++ implementation), and additionally so-called "domain classes" for all struct types. A domain class is like a "plain old C# class" for representing a schema-defined struct, but it is decoupled from any underlying message. It provides serialize/deserialize methods for assembling/disassembling the actual message. This provides more convenience, but comes at the price of non-zero serialization overhead (not "infinitely" faster anymore).
These features are not yet implemented:
- Level N RPC with N ≥ 2
- Packing
- Compression
- Canonicalization
- Dynamic Reflection
- mmap