forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixer_codegen.sh
executable file
·250 lines (204 loc) · 7.55 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#!/usr/bin/env bash
die () {
echo "ERROR: $*. Aborting." >&2
exit 1
}
WD=$(dirname $0)
WD=$(cd $WD; pwd)
ROOT=$(dirname $WD)
if [ ! -e $ROOT/Gopkg.lock ]; then
echo "Please run 'dep ensure' first"
exit 1
fi
GOGO_VERSION=$(sed -n '/gogo\/protobuf/,/\[\[projects/p' $ROOT/Gopkg.lock | grep 'version =' | sed -e 's/^[^\"]*\"//g' -e 's/\"//g')
GENDOCS_VERSION=$(sed -n '/protoc-gen-docs/,/\[\[projects/p' $ROOT/Gopkg.lock | grep revision | sed -e 's/^[^\"]*\"//g' -e 's/\"//g')
set -e
outdir=$ROOT
file=$ROOT
protoc="$ROOT/bin/protoc-min-version-$GOGO_VERSION -version=3.5.0"
# BUGBUG: we override the use of protoc-min-version here, since using
# that tool prevents warnings from protoc-gen-docs from being
# displayed. If protoc-min-version gets fixed to allow this
# data though, then remove this override
protoc="protoc"
optimport=$ROOT
template=$ROOT
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
# echo "outdir: ${outdir}"
# Ensure expected GOPATH setup
if [ $ROOT != "${GOPATH-$HOME/go}/src/istio.io/istio" ]; then
die "Istio not found in GOPATH/src/istio.io/"
fi
PROTOC_PATH=$(which protoc)
if [ -z "$PROTOC_PATH" ] ; then
die "protoc was not found, please install it first"
fi
GOGOPROTO_PATH=vendor/github.com/gogo/protobuf
GOGOSLICK=protoc-gen-gogoslick
GOGOSLICK_PATH=$ROOT/$GOGOPROTO_PATH/$GOGOSLICK
GENDOCS=protoc-gen-docs
GENDOCS_PATH=vendor/github.com/istio/tools/$GENDOCS
if [ ! -e $ROOT/bin/$GOGOSLICK-$GOGO_VERSION ]; then
echo "Building protoc-gen-gogoslick..."
pushd $ROOT
go build --pkgdir $GOGOSLICK_PATH -o $ROOT/bin/$GOGOSLICK-$GOGO_VERSION ./$GOGOPROTO_PATH/$GOGOSLICK
popd
echo "Done."
fi
if [ ! -e $ROOT/bin/$GENDOCS-$GENDOCS_VERSION ]; then
echo "Building protoc-gen-docs..."
pushd $ROOT/$GENDOCS_PATH
go build --pkgdir $GENDOCS_PATH -o $ROOT/bin/$GENDOCS-$GENDOCS_VERSION
popd
echo "Done."
fi
PROTOC_MIN_VERSION=protoc-min-version
MIN_VERSION_PATH=$ROOT/$GOGOPROTO_PATH/$PROTOC_MIN_VERSION
if [ ! -e $ROOT/bin/$PROTOC_MIN_VERSION-$GOGO_VERSION ]; then
echo "Building protoc-min-version..."
pushd $ROOT
go build --pkgdir $MIN_VERSION_PATH -o $ROOT/bin/$PROTOC_MIN_VERSION-$GOGO_VERSION ./$GOGOPROTO_PATH/$PROTOC_MIN_VERSION
popd
echo "Done."
fi
imports=(
"${ROOT}"
"${ROOT}/vendor/istio.io/api"
"${ROOT}/vendor/github.com/gogo/protobuf"
"${ROOT}/vendor/github.com/gogo/googleapis"
"${ROOT}/vendor/github.com/gogo/protobuf/protobuf"
)
IMPORTS=""
for i in "${imports[@]}"
do
IMPORTS+="--proto_path=$i "
done
IMPORTS+="--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/rpc/status.proto=github.com/gogo/googleapis/google/rpc"
"google/rpc/code.proto=github.com/gogo/googleapis/google/rpc"
"google/rpc/error_details.proto=github.com/gogo/googleapis/google/rpc"
)
MAPPINGS=""
for i in "${mappings[@]}"
do
MAPPINGS+="M$i,"
done
PLUGIN="--plugin=$ROOT/bin/protoc-gen-gogoslick-$GOGO_VERSION --gogoslick-${GOGO_VERSION}_out=plugins=grpc,$MAPPINGS:"
PLUGIN+=$outdir
GENDOCS_PLUGIN="--plugin=$ROOT/bin/$GENDOCS-$GENDOCS_VERSION --docs-${GENDOCS_VERSION}_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"
)
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="--plugin=$ROOT/bin/protoc-gen-gogoslick-$GOGO_VERSION --gogoslick-${GOGO_VERSION}_out=plugins=grpc,$TMPL_PROTOC_MAPPING:"
TMPL_PLUGIN+=$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 [ ! -z "$err" ]; then
die "template generation failure: $err";
fi
go run $GOPATH/src/istio.io/istio/mixer/tools/mixgen/main.go api -t $templateDS --go_out $templateHG --proto_out $templateHSP $TMPL_GEN_MAP
err=`$protoc $IMPORTS $TMPL_PLUGIN $templateHSP`
if [ ! -z "$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 [ ! -z "$err" ]; then
die "template generation failure: $err";
fi
templateYaml=${template/.proto/.yaml}
go run $GOPATH/src/istio.io/istio/mixer/tools/mixgen/main.go 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 [ ! -z "$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 [ ! -z "$err" ]; then
die "config generation failure: $err";
fi
go run $GOPATH/src/istio.io/istio/mixer/tools/mixgen/main.go adapter -c $adapteCfdDS -o $(dirname "${file}") ${extraflags}
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 [ ! -z "$err" ]; then
die "generation failure: $err";
fi
err=`$protoc $IMPORTS $PLUGIN --include_imports --include_source_info --descriptor_set_out=${file}_descriptor $file`
if [ ! -z "$err" ]; then
die "config generation failure: $err";
fi