forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixer_codegen.sh
executable file
·204 lines (171 loc) · 6.27 KB
/
mixer_codegen.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#!/bin/bash
# Copyright 2018 Istio 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.
die () {
echo "ERROR: $*. Aborting." >&2
exit 1
}
SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
ROOTDIR="$(dirname "$SCRIPTPATH")"
set -e
outdir=$ROOTDIR
file=$ROOTDIR
protoc="$ROOTDIR/bin/protoc.sh"
optimport=$ROOTDIR
template=$ROOTDIR
optproto=false
optadapter=false
opttemplate=false
gendoc=true
# extra flags are arguments that are passed to the underlying tool verbatim
# Its value depend on the context of the main generation flag.
# * for parent flag `-a`, the `-x` flag can provide additional options required by tool mixer/tool/mixgen adapter --help
extraflags=""
while getopts ':f:o:p:i:t:a:d:x:' flag; do
case "${flag}" in
f) $opttemplate && $optadapter && die "Cannot use proto file option (-f) with template file option (-t) or adapter option (-a)"
optproto=true
file+="/${OPTARG}"
;;
a) $opttemplate && $optproto && die "Cannot use proto adapter option (-a) with template file option (-t) or file option (-f)"
optadapter=true
file+="/${OPTARG}"
;;
o) outdir="${OPTARG}" ;;
p) protoc="${OPTARG}" ;;
x) extraflags="${OPTARG}" ;;
i) optimport+=/"${OPTARG}" ;;
t) $optproto && $optadapter && die "Cannot use template file option (-t) with proto file option (-f) or adapter option (-a)"
opttemplate=true
template+="/${OPTARG}"
;;
d) gendoc="${OPTARG}" ;;
*) die "Unexpected option ${flag}" ;;
esac
done
IMPORTS=(
"--proto_path=${ROOTDIR}"
"--proto_path=$optimport"
)
mappings=(
"gogoproto/gogo.proto=github.com/gogo/protobuf/gogoproto"
"google/protobuf/any.proto=github.com/gogo/protobuf/types"
"google/protobuf/duration.proto=github.com/gogo/protobuf/types"
"google/protobuf/timestamp.proto=github.com/gogo/protobuf/types"
"google/protobuf/struct.proto=github.com/gogo/protobuf/types"
"google/rpc/status.proto=istio.io/gogo-genproto/googleapis/google/rpc"
"google/rpc/code.proto=istio.io/gogo-genproto/googleapis/google/rpc"
"google/rpc/error_details.proto=istio.io/gogo-genproto/googleapis/google/rpc"
)
MAPPINGS=""
for i in "${mappings[@]}"
do
MAPPINGS+="M$i,"
done
PLUGIN="--gogoslick_out=plugins=grpc,$MAPPINGS:$outdir"
GENDOCS_PLUGIN="--docs_out=warnings=true,mode=html_fragment_with_front_matter:"
GENDOCS_PLUGIN_FILE=$GENDOCS_PLUGIN$(dirname "${file}")
GENDOCS_PLUGIN_TEMPLATE=$GENDOCS_PLUGIN$(dirname "${template}")
# handle template code generation
if [ "$opttemplate" = true ]; then
template_mappings=(
"google/protobuf/any.proto:github.com/gogo/protobuf/types"
"gogoproto/gogo.proto:github.com/gogo/protobuf/gogoproto"
"google/protobuf/duration.proto:github.com/gogo/protobuf/types"
"google/protobuf/timestamp.proto:github.com/gogo/protobuf/types"
"google/rpc/status.proto:istio.io/gogo-genproto/googleapis/google/rpc"
"google/protobuf/struct.proto:github.com/gogo/protobuf/types"
)
TMPL_GEN_MAP=()
TMPL_PROTOC_MAPPING=""
for i in "${template_mappings[@]}"
do
TMPL_GEN_MAP+=("-m" "$i")
TMPL_PROTOC_MAPPING+="M${i/:/=},"
done
TMPL_PLUGIN="--gogoslick_out=plugins=grpc,$TMPL_PROTOC_MAPPING:$outdir"
descriptor_set="_proto.descriptor_set"
handler_gen_go="_handler.gen.go"
handler_service="_handler_service.proto"
pb_go=".pb.go"
templateDS=${template/.proto/$descriptor_set}
templateHG=${template/.proto/$handler_gen_go}
templateHSP=${template/.proto/$handler_service}
templatePG=${template/.proto/$pb_go}
# generate the descriptor set for the intermediate artifacts
DESCRIPTOR=(
"--include_imports"
"--include_source_info"
"--descriptor_set_out=$templateDS"
)
if [ "$gendoc" = true ]; then
err=$($protoc "${DESCRIPTOR[@]}" "${IMPORTS[@]}" "$PLUGIN" "$GENDOCS_PLUGIN_TEMPLATE" "$template")
else
err=$($protoc "${DESCRIPTOR[@]}" "${IMPORTS[@]}" "$PLUGIN" "$template")
fi
if [ -n "$err" ]; then
die "template generation failure: $err";
fi
mixgen api -t "$templateDS" --go_out "$templateHG" --proto_out "$templateHSP" "${TMPL_GEN_MAP[@]}"
err=$($protoc "${IMPORTS[@]}" "$TMPL_PLUGIN" "$templateHSP")
if [ -n "$err" ]; then
die "template generation failure: $err";
fi
templateSDS=${template/.proto/_handler_service.descriptor_set}
SDESCRIPTOR=(
"--include_imports"
"--include_source_info"
"--descriptor_set_out=$templateSDS"
)
err=$($protoc "${SDESCRIPTOR[@]}" "${IMPORTS[@]}" "$PLUGIN" "$templateHSP")
if [ -n "$err" ]; then
die "template generation failure: $err";
fi
templateYaml=${template/.proto/.yaml}
mixgen template -d "$templateSDS" -o "$templateYaml" -n "$(basename "$(dirname "${template}")")"
rm "$templatePG"
exit 0
fi
# handle adapter code generation
if [ "$optadapter" = true ]; then
if [ "$gendoc" = true ]; then
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" "$GENDOCS_PLUGIN_FILE" "$file")
else
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" "$file")
fi
if [ -n "$err" ]; then
die "generation failure: $err";
fi
adapteCfdDS=${file}_descriptor
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" --include_imports --include_source_info --descriptor_set_out="${adapteCfdDS}" "$file")
if [ -n "$err" ]; then
die "config generation failure: $err";
fi
IFS=" " read -r -a extraflags_array <<< "$extraflags"
mixgen adapter -c "$adapteCfdDS" -o "$(dirname "${file}")" "${extraflags_array[@]}"
exit 0
fi
# handle simple protoc-based generation
if [ "$gendoc" = true ]; then
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" "$GENDOCS_PLUGIN_FILE" "$file")
else
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" "$file")
fi
if [ -n "$err" ]; then
die "generation failure: $err";
fi
err=$($protoc "${IMPORTS[@]}" "$PLUGIN" --include_imports --include_source_info --descriptor_set_out="${file}_descriptor" "$file")
if [ -n "$err" ]; then
die "config generation failure: $err";
fi