Skip to content

matus-mrekaj/govpp

 
 

Repository files navigation

GoVPP

The GoVPP projects provides the API for communication with VPP from Go.

It consists of the following packages:

  • adapter: adapter between GoVPP core and the VPP binary/stats API
  • api: API for communication with GoVPP core
  • cmd/binapi-generator: generator for the VPP binary API definitions in JSON format to Go code
  • codec: handles encoding/decoding of generated messages into binary form
  • core: essential functionality of the GoVPP
  • examples: examples that use the GoVPP API in real use-cases of VPP management application
  • extras: contains Go implementation for libmemif library
  • govpp: provides the entry point to GoVPP functionality

The design with separated GoVPP API package and the GoVPP core package enables plugin-based infrastructure, where one entity acts as a master responsible for talking with VPP and multiple entities act as clients that are using the master for the communication with VPP. The clients can be built into standalone shared libraries without the need of linking the GoVPP core and all its dependencies into them.

                                       +--------------+
    +--------------+                   |              |
    |              |                   |    plugin    |
    |              |                   |              |
    |     App      |                   +--------------+
    |              |            +------+  GoVPP API   |
    |              |            |      +--------------+
    +--------------+   GoVPP    |
    |              |  channels  |      +--------------+
    |  GoVPP core  +------------+      |              |
    |              |            |      |    plugin    |
    +------+-------+            |      |              |
           |                    |      +--------------+
           |                    +------+  GoVPP API   |
           | binary API                +--------------+
           |
    +------+-------+
    |              |
    |  VPP process |
    |              |
    +--------------+

Quick Start

Generate binapi (Go bindings)

Generating Go bindings for VPP binary API from the JSON files located in the /usr/share/vpp/api/ directory into the Go packages that will be created inside of the binapi directory:

binapi-generator --input-dir=/usr/share/vpp/api/ --output-dir=binapi

Example Usage

Here is a usage sample of the generated binapi messages:

func main() {
    // Connect to VPP
	conn, _ := govpp.Connect()
	defer conn.Disconnect()

	// Open channel
	ch, _ := conn.NewAPIChannel()
	defer ch.Close()

	// Prepare messages
	req := &vpe.ShowVersion{}
	reply := &vpe.ShowVersionReply{}

	// Send the request
	err := ch.SendRequest(req).ReceiveReply(reply)
}

The example above uses GoVPP API to communicate over underlying go channels, see example client for more examples, including the example on how to use the Go channels directly.

Build & Install

Using pure Go adapters (recommended)

GoVPP now supports pure Go implementation for VPP binary API. This does not depend on CGo or any VPP library and can be easily compiled.

There are two packages providing pure Go implementations in GoVPP:

Using vppapiclient library wrapper (requires CGo)

GoVPP also provides vppapiclient package which actually uses vppapiclient.so library from VPP codebase to communicate with VPP API. To build GoVPP, vpp-dev package must be installed, either from packages or from sources.

To build & install vpp-dev from sources:

git clone https://gerrit.fd.io/r/vpp
cd vpp
make install-dep
make pkg-deb
cd build-root
sudo dpkg -i vpp*.deb

To build & install GoVPP:

go get -u git.fd.io/govpp.git
cd $GOPATH/src/git.fd.io/govpp.git
make test
make install

Generating Go bindings with binapi-generator

Once you have binapi-generator installed, you can use it to generate Go bindings for VPP binary API using VPP APIs in JSON format. The JSON input can be specified as a single file (input-file argument), or as a directory that will be scanned for all .json files (input-dir). The generated Go bindings will be placed into output-dir (by default current working directory), where each Go package will be placed into a separated directory, e.g.:

binapi-generator --input-file=acl.api.json --output-dir=binapi
binapi-generator --input-dir=/usr/share/vpp/api/core --output-dir=binapi

In Go, go generate tool can be leveraged to ease the code generation process. It allows to specify generator instructions in any one of the regular (non-generated) .go files that are dependent on generated code using special comments, e.g. the one from example client:

//go:generate binapi-generator --input-dir=bin_api --output-dir=bin_api

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 97.4%
  • C 1.8%
  • Makefile 0.8%