-
Notifications
You must be signed in to change notification settings - Fork 68
/
gapic.sh
executable file
·105 lines (94 loc) · 2.99 KB
/
gapic.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/bin/bash
# Copyright 2018 Google LLC
#
# 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.
CMD="$0"
# Set variables used by this script.
# All of these are set in options below, and all but $PATH are required.
IMAGE=
IN=
OUT=
PLUGIN_OPTIONS=
PROTO_PATH=`pwd`
# Print help and exit.
function show_help {
echo "Usage: $CMD --image IMAGE --in IN_DIR --out OUT_DIR [--path PATH_DIR]"
echo ""
echo "Required arguments:"
echo " --image The Docker image to use. The script will attempt to pull"
echo " it if it is not present."
echo " -i, --in A directory containing the protos describing the API"
echo " to be generated."
echo " -o, --out Destination directory for the completed client library."
echo ""
echo "Optional arguments:"
echo " -p, --path The base import path for the protos. Assumed to be the"
echo " current working directory if unspecified."
echo " -h, --help This help information."
exit 0
}
# Parse out options.
while true; do
case "$1" in
-h | --help ) show_help ;;
--image ) IMAGE="$2"; shift 2 ;;
-i | --in ) IN="$2"; shift 2 ;;
-o | --out ) OUT="$2"; shift 2 ;;
-p | --path ) PROTO_PATH=$2; shift 2 ;;
--* ) PLUGIN_OPTIONS="$PLUGIN_OPTIONS $1 $2"; shift 2 ;;
-- ) shift; break; ;;
* ) break ;;
esac
done
# Ensure that all required options are set.
if [ -z "$IMAGE" ] || [ -z "$IN" ] || [ -z "$OUT" ]; then
>&2 echo "Required argument missing."
>&2 echo "The --image, --in, and --out arguments are all required."
>&2 echo "Run $CMD --help for more information."
exit 64
fi
# Ensure that the input directory exists (and is a directory).
if ! [ -d "${PROTO_PATH}/$IN" ]; then
>&2 echo "Directory does not exist: ${PROTO_PATH}/$IN"
exit 2
fi
# Ensure Docker is running and seems healthy.
# This is mostly a check to bubble useful errors quickly.
if ! docker ps > /dev/null; then
exit $?
fi
# If the output directory does not exist, create it.
if ! mkdir -p $OUT ; then
exit $?
fi
# If the output directory is not empty, warn (but continue).
if [ "$(ls -A $OUT )"]; then
>&2 echo "Warning: Output directory is not empty."
fi
# Convert IN and OUT to absolute paths for Docker
CWD=`pwd`
cd ${PROTO_PATH}/$IN
ABS_IN=`pwd`
cd $CWD
cd $OUT
ABS_OUT=`pwd`
cd $CWD
# Generate the client library.
docker run \
--mount type=bind,source=${ABS_IN},destination=/in/${IN},readonly \
--mount type=bind,source=${ABS_OUT},destination=/out \
--rm \
--user $UID \
$IMAGE \
$PLUGIN_OPTIONS
exit $?