GoVPP
GoVPP Facts |
Project Lead: Ondrej Fabry
Repository: git clone https://gerrit.fd.io/r/govpp |
Intro
GoVPP is a Golang toolset for VPP management. It consists of a set of Golang packages that provide the API for VPP management based on the Go bindings generated from the VPP binary APIs. It can be used as the foundation for any VPP management/control plane written in Go.
Apart from the packages providing the API and tools allowing to write VPP management applications in Go from scratch, the project also aims to provide a cloud-native VPP management agent that can be used in VPP-based container infrastructure.
Project Contact Name and Email
Scope
GoVPP project scope:
- Go bindings generator:
- generates Go structs from binary API definitions in JSON
- annotates the generated Go bindings so they can be marshalled / unmarshalled to/from binary data as understood by VPP
- GoVPP API packages:
- api: high-level API for communication with govpp core using Go channels
- core: main functionality of the govpp, sends and receives the messages to/from VPP using the adapter, marshalls/unmarshalls them and forwards them between the client Go channels and the VPP
- adapter: the adapter between the govpp core and the VPP, responsible for sending and receiving binary-encoded data via shared memory, leverages VPP pneum library
- Other code to ease the adoption of fd.io by Go users
- Supporting code:
- examples
- unit tests
Out of scope:
- Generator of JSON definitions of VPP binary APIs
- vppapiclient (former pneum) library used to send & receive binary-encoded data to/from VPP
Performance
According to the performance benchmark results, GoVPP is currently able to handle more than 250 000 binary API requests per second via the asynchronous API on a standard laptop. More details: [1]
Release Plan
Devel
- Go-getting the code:
go get git.fd.io/govpp.git
- Installing the binary API generator:
go install git.fd.io/govpp.git/cmd/binapi-generator
- go generate rule for generating binary API bindings:
//go:generate binapi_generator --input-file=/usr/share/vpp/api/vpe.api.json --output-dir=./bin_api
- Auto-generated documentation on GoDoc