proto_gen_go.sh 2.5 KB
Newer Older
1
#!/usr/bin/env bash
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

# Licensed to the LF AI & Data foundation under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.

Z
zhenshan.cao 已提交
19
SCRIPTS_DIR=$(dirname "$0")
20

21
PROTO_DIR=$SCRIPTS_DIR/../internal/proto/
S
SimFG 已提交
22
API_PROTO_DIR=$SCRIPTS_DIR/../cmake_build/thirdparty/milvus-proto/proto/
Z
zhenshan.cao 已提交
23 24 25 26 27 28 29 30 31 32 33 34 35 36

PROGRAM=$(basename "$0")
GOPATH=$(go env GOPATH)

if [ -z $GOPATH ]; then
    printf "Error: the environment variable GOPATH is not set, please set it before running %s\n" $PROGRAM > /dev/stderr
    exit 1
fi

export PATH=${GOPATH}/bin:$PATH

# official go code ship with the crate, so we need to generate it manually.
pushd ${PROTO_DIR}

37
mkdir -p etcdpb
38 39
mkdir -p indexcgopb

G
godchen 已提交
40
mkdir -p internalpb
41
mkdir -p rootcoordpb
42

43
mkdir -p segcorepb
44 45 46 47 48
mkdir -p proxypb

mkdir -p indexpb
mkdir -p datapb
mkdir -p querypb
49
mkdir -p planpb
50

J
Jiquan Long 已提交
51 52
mkdir -p ../../cmd/tools/migration/legacy/legacypb

E
Enwei Jiao 已提交
53
protoc_opt="${protoc} --proto_path=${API_PROTO_DIR} --proto_path=."
S
SimFG 已提交
54 55 56 57 58 59 60 61 62 63 64

${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./etcdpb etcd_meta.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./indexcgopb index_cgo_msg.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./rootcoordpb root_coord.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./internalpb internal.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./proxypb proxy.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./indexpb index_coord.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./datapb data_coord.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./querypb query_coord.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./planpb plan.proto
${protoc_opt} --go_out=plugins=grpc,paths=source_relative:./segcorepb segcore.proto
65

J
Jiquan Long 已提交
66 67 68
${protoc_opt} --proto_path=../../cmd/tools/migration/legacy/ \
  --go_out=plugins=grpc,paths=source_relative:../../cmd/tools/migration/legacy/legacypb legacy.proto

Z
zhenshan.cao 已提交
69
popd