-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathproto.sh
executable file
·53 lines (46 loc) · 1.27 KB
/
proto.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
#!/bin/bash
set -eu
source scripts/.variables.sh
#protoc_include_path=${protoc_include_path:-""}
proto() {
echo "protoc include 路径为:${protoc_include_path}"
proto_path=`pwd`/pkg/proto
dirname=./srv/$1/proto
swagger_dir=./deployments/config/swagger
if [ ! -d $swagger_dir ];then
mkdir -p $swagger_dir
fi
if [ -d $dirname ];then
for f in $dirname/*.proto; do \
if [ -f $f ];then \
protoc -I. \
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis \
-I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway \
--proto_path=${protoc_include_path} \
--grpc-gateway_out=. \
--swagger_out=$swagger_dir \
--swagger_out=. \
--go_out=plugins=grpc:. $f; \
echo compiled protoc: $f; \
fi \
done \
fi
}
proto_inject() {
echo "开始注入"
dirname=./srv/$1/proto
if [ -d $dirname ];then
for f in $dirname/*.pb.go; do \
if [ -f $f ];then \
protoc-go-inject-tag -input=./$f; \
echo "完成注入" protoc-go-inject-tag: $f; \
fi \
done \
fi
}
# 用户
proto user
proto_inject user
# 账户
proto account
proto_inject account