[VOL-1024] This update consists of:
1) Inter-container kafka library in Go
2) initial set of proto definitions
3) Test cases for the kafka library
Change-Id: Ibe8b0f673a90bbe4cb92847ce40f31ec2d0b6244
diff --git a/protos/scripts/build_protos.sh b/protos/scripts/build_protos.sh
new file mode 100644
index 0000000..faac725
--- /dev/null
+++ b/protos/scripts/build_protos.sh
@@ -0,0 +1,46 @@
+#!/bin/sh
+
+export SRC_DIR="$1"
+
+echo $SRC_DIR
+
+export MAPS=Mgoogle/protobuf/descriptor.proto=github.com/golang/protobuf/protoc-gen-go/descriptor
+export INCS="\
+ -I $SRC_DIR \
+ -I $GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis"
+
+export VOLTHA_PB="\
+ $SRC_DIR/adapter.proto \
+ $SRC_DIR/device.proto \
+ $SRC_DIR/events.proto \
+ $SRC_DIR/health.proto \
+ $SRC_DIR/logical_device.proto \
+ $SRC_DIR/ponsim.proto \
+ $SRC_DIR/voltha.proto"
+
+export COMMON_PB="\
+ $SRC_DIR/common.proto \
+ $SRC_DIR/meta.proto \
+ $SRC_DIR/yang_options.proto"
+
+export CORE_ADAPTER_PB="$SRC_DIR/core_adapter.proto"
+export SCHEMA_PB="$SRC_DIR/schema.proto"
+export IETF_PB="$SRC_DIR/ietf_interfaces.proto"
+export OF_PB="$SRC_DIR/openflow_13.proto"
+export OMCI_PB="$SRC_DIR/omci*.proto"
+
+export PB_VARS="\
+ VOLTHA_PB \
+ COMMON_PB \
+ CORE_ADAPTER_PB \
+ SCHEMA_PB \
+ IETF_PB \
+ OF_PB \
+ OMCI_PB"
+
+for pb_var in $PB_VARS
+do
+ pbs="$(eval echo \$$pb_var)"
+ echo "Compiling $pbs"
+ protoc --go_out=$MAPS,plugins=grpc:$GOPATH/src $INCS $pbs
+done