From c4522fe10317b1729a0820dc880afc78c663f64d Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Thu, 6 Jun 2019 14:08:48 +0200 Subject: Add various generator improvements - generate service implementation for modules - generate conversion maps and String() method for enums - generate module name and version as constants - rename Union_data field to XXX_UnionData for consistency - generate constant GoVppAPIPackageIsVersionN for checking compatibility with API - add example for using service clients - add some documentation to socketclient adapter - cleanup gen.go file used for generating binapi - regenerate binapi with latest VPP release (19.04.1) - change global variables Messages into a function AllMessages Change-Id: Id1ef97764570759eaa3e5a4dc14ecda7a168ee39 Signed-off-by: Ondrej Fabry --- core/channel_test.go | 8 ++++---- core/connection_test.go | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'core') diff --git a/core/channel_test.go b/core/channel_test.go index b06e3e9..ba761b3 100644 --- a/core/channel_test.go +++ b/core/channel_test.go @@ -19,10 +19,10 @@ import ( "time" "git.fd.io/govpp.git/adapter/mock" - "git.fd.io/govpp.git/examples/bin_api/interfaces" - "git.fd.io/govpp.git/examples/bin_api/memif" - "git.fd.io/govpp.git/examples/bin_api/tap" - "git.fd.io/govpp.git/examples/bin_api/vpe" + "git.fd.io/govpp.git/examples/binapi/interfaces" + "git.fd.io/govpp.git/examples/binapi/memif" + "git.fd.io/govpp.git/examples/binapi/tap" + "git.fd.io/govpp.git/examples/binapi/vpe" "git.fd.io/govpp.git/api" . "github.com/onsi/gomega" diff --git a/core/connection_test.go b/core/connection_test.go index 843c5ea..71f1a18 100644 --- a/core/connection_test.go +++ b/core/connection_test.go @@ -21,8 +21,8 @@ import ( "git.fd.io/govpp.git/api" "git.fd.io/govpp.git/codec" "git.fd.io/govpp.git/core" - "git.fd.io/govpp.git/examples/bin_api/interfaces" - "git.fd.io/govpp.git/examples/bin_api/vpe" + "git.fd.io/govpp.git/examples/binapi/interfaces" + "git.fd.io/govpp.git/examples/binapi/vpe" . "github.com/onsi/gomega" ) -- cgit 1.2.3-korg