forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixer_codegen.sh
executable file
·193 lines (154 loc) · 5.45 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
#!/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
opttemplate=false
while getopts ':f:o:p:i:t:' flag; do
case "${flag}" in
f) $opttemplate && die "Cannot use proto file option (-f) with template file option (-t)"
optproto=true
file+="/${OPTARG}"
;;
o) outdir="${OPTARG}" ;;
p) protoc="${OPTARG}" ;;
i) optimport+=/"${OPTARG}" ;;
t) $optproto && die "Cannot use template file option (-t) with proto file option (-f)"
opttemplate=true
template+="/${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=jekyll_html:"
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"
err=`$protoc $DESCRIPTOR $IMPORTS $PLUGIN $GENDOCS_PLUGIN_TEMPLATE $template`
if [ ! -z "$err" ]; then
die "template generation failure: $err";
fi
go run $GOPATH/src/istio.io/istio/mixer/tools/codegen/cmd/mixgenproc/main.go $templateDS -o $templateHG -t $templateHSP $TMPL_GEN_MAP
err=`$protoc $IMPORTS $TMPL_PLUGIN $templateHSP`
if [ ! -z "$err" ]; then
die "template generation failure: $err";
fi
rm $templatePG
exit 0
fi
# handle simple protoc-based generation
err=`$protoc $IMPORTS $PLUGIN $GENDOCS_PLUGIN_FILE $file`
if [ ! -z "$err" ]; then
die "generation failure: $err";
fi