blob: e79728ff9597bea4f142cb23232a5de12cf1c838 [file] [log] [blame]
Jan Tattermuscheb5a3122015-05-07 15:06:35 -07001#!/bin/sh
Jan Tattermusch7897ae92017-06-07 22:57:36 +02002# Copyright 2015 gRPC authors.
Jan Tattermuscheb5a3122015-05-07 15:06:35 -07003#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
Jan Tattermuscheb5a3122015-05-07 15:06:35 -07007#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02008# http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermuscheb5a3122015-05-07 15:06:35 -07009#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jan Tattermuscheb5a3122015-05-07 15:06:35 -070015
16# Regenerates gRPC service stubs from proto files.
17set +e
Jan Tattermusche8132d32015-12-07 09:19:34 -080018cd $(dirname $0)/../..
Jan Tattermuscheb5a3122015-05-07 15:06:35 -070019
Jan Tattermusche8132d32015-12-07 09:19:34 -080020PROTOC=bins/opt/protobuf/protoc
21PLUGIN=protoc-gen-grpc=bins/opt/grpc_csharp_plugin
22EXAMPLES_DIR=src/csharp/Grpc.Examples
23HEALTHCHECK_DIR=src/csharp/Grpc.HealthCheck
Jan Tattermusch02017762016-11-23 15:39:56 +010024REFLECTION_DIR=src/csharp/Grpc.Reflection
Jan Tattermusche8132d32015-12-07 09:19:34 -080025TESTING_DIR=src/csharp/Grpc.IntegrationTesting
Jan Tattermuscheb5a3122015-05-07 15:06:35 -070026
Jan Tattermusch2c4f4ec2015-08-03 08:10:48 -070027$PROTOC --plugin=$PLUGIN --csharp_out=$EXAMPLES_DIR --grpc_out=$EXAMPLES_DIR \
Jan Tattermusch091057a2016-11-24 13:08:45 +010028 -I src/proto src/proto/math/math.proto
Jan Tattermuschb5332812015-07-14 19:29:35 -070029
Jan Tattermusch2c4f4ec2015-08-03 08:10:48 -070030$PROTOC --plugin=$PLUGIN --csharp_out=$HEALTHCHECK_DIR --grpc_out=$HEALTHCHECK_DIR \
Jan Tattermusch091057a2016-11-24 13:08:45 +010031 -I src/proto src/proto/grpc/health/v1/health.proto
Jan Tattermusch02017762016-11-23 15:39:56 +010032
33$PROTOC --plugin=$PLUGIN --csharp_out=$REFLECTION_DIR --grpc_out=$REFLECTION_DIR \
Jan Tattermusch091057a2016-11-24 13:08:45 +010034 -I src/proto src/proto/grpc/reflection/v1alpha/reflection.proto
Jan Tattermusche8132d32015-12-07 09:19:34 -080035
Jan Tattermuschbe057202017-12-04 11:38:13 +010036# Put grp/core/stats.proto in a subdirectory to avoid collision with grpc/testing/stats.proto
37mkdir -p $TESTING_DIR/CoreStats
38$PROTOC --plugin=$PLUGIN --csharp_out=$TESTING_DIR/CoreStats --grpc_out=$TESTING_DIR/CoreStats \
39 -I src/proto src/proto/grpc/core/stats.proto
40
Jan Tattermusch091057a2016-11-24 13:08:45 +010041# TODO(jtattermusch): following .proto files are a bit broken and import paths
42# don't match the package names. Setting -I to the correct value src/proto
43# breaks the code generation.
Jan Tattermusche8132d32015-12-07 09:19:34 -080044$PROTOC --plugin=$PLUGIN --csharp_out=$TESTING_DIR --grpc_out=$TESTING_DIR \
Jan Tattermusch57139d12018-05-31 08:44:58 +020045 -I . src/proto/grpc/testing/{control,echo_messages,empty,empty_service,messages,metrics,payloads,benchmark_service,report_qps_scenario_service,worker_service,stats,test}.proto