2019-09-20 18:37:22 +00:00
|
|
|
#!/bin/bash
|
|
|
|
SCRIPT_NAME="$(basename ${BASH_SOURCE[0]})"
|
|
|
|
pushd $(dirname ${BASH_SOURCE[0]}) > /dev/null
|
|
|
|
SCRIPT_DIR=$(pwd)
|
|
|
|
pushd ../.. > /dev/null
|
|
|
|
SOURCE_DIR=$(pwd)
|
|
|
|
popd > /dev/null
|
|
|
|
pushd ../functions > /dev/null
|
|
|
|
FN_DIR=$(pwd)
|
|
|
|
popd > /dev/null
|
|
|
|
popd > /dev/null
|
|
|
|
|
|
|
|
source "${SCRIPT_DIR}/functions.sh"
|
|
|
|
|
|
|
|
function usage {
|
|
|
|
cat <<-EOF
|
|
|
|
Usage: ${SCRIPT_NAME} [<options ...>] <proto filepath>
|
|
|
|
|
|
|
|
Description:
|
2020-07-23 19:29:33 +00:00
|
|
|
Generate the Go files from protobuf definitions. In addition to
|
|
|
|
running the protoc generator it will also fixup build tags in the
|
2019-09-20 18:37:22 +00:00
|
|
|
generated code.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--import-replace Replace imports of google types with those from the gogo/protobuf repo.
|
|
|
|
--grpc Enable the gRPC plugin
|
2020-07-23 19:29:33 +00:00
|
|
|
-h | --help Print this help text.
|
2019-09-20 18:37:22 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
function err_usage {
|
|
|
|
err "$1"
|
|
|
|
err ""
|
|
|
|
err "$(usage)"
|
|
|
|
}
|
|
|
|
|
|
|
|
function main {
|
|
|
|
local -i grpc=0
|
|
|
|
local -i imp_replace=0
|
|
|
|
local proto_path=
|
|
|
|
|
|
|
|
while test $# -gt 0
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-h | --help )
|
|
|
|
usage
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
--grpc )
|
|
|
|
grpc=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--import-replace )
|
|
|
|
imp_replace=1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
proto_path="$1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if test -z "${proto_path}"
|
|
|
|
then
|
|
|
|
err_usage "ERROR: No proto file specified"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
local gogo_proto_path=$(go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)
|
|
|
|
local gogo_proto_mod_path=$(sed -e 's,\(.*\)github.com.*,\1,' <<< "${gogo_proto_path}")
|
|
|
|
|
|
|
|
local gogo_proto_imp_replace="Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types"
|
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types"
|
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/protobuf/empty.proto=github.com/gogo/protobuf/types"
|
2020-07-23 19:29:33 +00:00
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/protobuf/struct.proto=github.com/gogo/protobuf/types"
|
2019-09-20 18:37:22 +00:00
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/api/annotations.proto=github.com/gogo/googleapis/google/api"
|
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/protobuf/field_mask.proto=github.com/gogo/protobuf/types"
|
2020-10-09 14:42:53 +00:00
|
|
|
gogo_proto_imp_replace="${gogo_proto_imp_replace},Mgoogle/protobuf/any.proto=github.com/gogo/protobuf/types"
|
2019-09-20 18:37:22 +00:00
|
|
|
|
|
|
|
local proto_go_path=${proto_path%%.proto}.pb.go
|
2019-09-30 19:39:20 +00:00
|
|
|
local proto_go_bin_path=${proto_path%%.proto}.pb.binary.go
|
|
|
|
|
2020-06-05 19:56:19 +00:00
|
|
|
local go_proto_out="paths=source_relative"
|
2019-09-20 18:37:22 +00:00
|
|
|
if is_set "${grpc}"
|
|
|
|
then
|
2020-06-05 19:56:19 +00:00
|
|
|
go_proto_out="${go_proto_out},plugins=grpc"
|
2019-09-20 18:37:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if is_set "${imp_replace}"
|
|
|
|
then
|
2020-06-05 19:56:19 +00:00
|
|
|
go_proto_out="${go_proto_out},${gogo_proto_imp_replace}"
|
2019-09-20 18:37:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "${go_proto_out}"
|
|
|
|
then
|
|
|
|
go_proto_out="${go_proto_out}:"
|
|
|
|
fi
|
|
|
|
|
2020-06-05 19:56:19 +00:00
|
|
|
# How we run protoc probably needs some documentation.
|
|
|
|
#
|
|
|
|
# This is the path to where
|
|
|
|
# -I="${gogo_proto_path}/protobuf" \
|
2019-09-20 18:37:22 +00:00
|
|
|
local -i ret=0
|
2019-10-02 19:32:15 +00:00
|
|
|
status_stage "Generating ${proto_path} into ${proto_go_path} and ${proto_go_bin_path}"
|
2019-09-20 18:37:22 +00:00
|
|
|
debug_run protoc \
|
|
|
|
-I="${gogo_proto_path}/protobuf" \
|
|
|
|
-I="${gogo_proto_path}" \
|
|
|
|
-I="${gogo_proto_mod_path}" \
|
2020-06-05 19:56:19 +00:00
|
|
|
-I="${SOURCE_DIR}" \
|
|
|
|
--gofast_out="${go_proto_out}${SOURCE_DIR}" \
|
|
|
|
--go-binary_out="${SOURCE_DIR}" \
|
2019-09-20 18:37:22 +00:00
|
|
|
"${proto_path}"
|
|
|
|
if test $? -ne 0
|
|
|
|
then
|
2019-09-30 19:39:20 +00:00
|
|
|
err "Failed to generate outputs from ${proto_path}"
|
2019-09-20 18:37:22 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2020-07-27 18:18:09 +00:00
|
|
|
BUILD_TAGS=$(sed -e '/^[[:space:]]*$/,$d' < "${proto_path}" | grep '// +build')
|
2019-09-20 18:37:22 +00:00
|
|
|
if test -n "${BUILD_TAGS}"
|
|
|
|
then
|
|
|
|
echo -e "${BUILD_TAGS}\n" >> "${proto_go_path}.new"
|
|
|
|
cat "${proto_go_path}" >> "${proto_go_path}.new"
|
|
|
|
mv "${proto_go_path}.new" "${proto_go_path}"
|
2019-09-30 19:39:20 +00:00
|
|
|
|
|
|
|
echo -e "${BUILD_TAGS}\n" >> "${proto_go_bin_path}.new"
|
|
|
|
cat "${proto_go_bin_path}" >> "${proto_go_bin_path}.new"
|
|
|
|
mv "${proto_go_bin_path}.new" "${proto_go_bin_path}"
|
2019-09-20 18:37:22 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|
|
|
|
exit $?
|