| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 | #!/bin/bash# Copyright 2016 gRPC authors.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at##     http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.# Example usage:#   tools/codegen/core/gen_nano_proto.sh \#     src/proto/grpc/lb/v1/load_balancer.proto \#     $PWD/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1 \#     src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1## Exit statuses:# 1: Incorrect number of arguments# 2: Input proto file (1st argument) doesn't exist or is not a regular file.# 3: Options file for nanopb not found in same dir as the input proto file.# 4: Output dir not an absolute path.# 5: Couldn't create output directory (2nd argument).set -exif [ $# -lt 2 ] || [ $# -gt 3 ]; then  echo "Usage: $0 <input.proto> <absolute path to output dir> [grpc path]"  exit 1fireadonly GRPC_ROOT="$PWD"readonly INPUT_PROTO="$1"readonly OUTPUT_DIR="$2"readonly GRPC_OUTPUT_DIR="${3:-$OUTPUT_DIR}"readonly EXPECTED_OPTIONS_FILE_PATH="${1%.*}.options"if [[ ! -f "$INPUT_PROTO" ]]; then  echo "Input proto file '$INPUT_PROTO' doesn't exist."  exit 2fiif [[ ! -f "${EXPECTED_OPTIONS_FILE_PATH}" ]]; then  echo "Input proto file may need .options file to be correctly compiled."fiif [[ "${OUTPUT_DIR:0:1}" != '/' ]]; then  echo "The output directory must be an absolute path. Got '$OUTPUT_DIR'"  exit 4fimkdir -p "$OUTPUT_DIR"if [ $? != 0 ]; then  echo "Error creating output directory $OUTPUT_DIR"  exit 5fireadonly VENV_DIR=$(mktemp -d)readonly VENV_NAME="nanopb-$(date '+%Y%m%d_%H%M%S_%N')"pushd $VENV_DIRvirtualenv $VENV_NAME. $VENV_NAME/bin/activatepopd# this should be the same version as the submodule we compile against# ideally we'd update this as a template to ensure thatpip install protobuf==3.6.0pushd "$(dirname $INPUT_PROTO)" > /dev/nullprotoc \--plugin=protoc-gen-nanopb="$GRPC_ROOT/third_party/nanopb/generator/protoc-gen-nanopb" \--nanopb_out='-T -Q#include\ \"'"${GRPC_OUTPUT_DIR}"'/%s\" -L#include\ \"pb.h\"'":$OUTPUT_DIR" \"$(basename $INPUT_PROTO)"deactivaterm -rf $VENV_DIRpopd > /dev/null
 |