blob: 1a1adbbae56b0bb6e8776b902fd9719304a3c7b8 [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 Tattermusch091057a2016-11-24 13:08:45 +010036# TODO(jtattermusch): following .proto files are a bit broken and import paths
37# don't match the package names. Setting -I to the correct value src/proto
38# breaks the code generation.
Jan Tattermusche8132d32015-12-07 09:19:34 -080039$PROTOC --plugin=$PLUGIN --csharp_out=$TESTING_DIR --grpc_out=$TESTING_DIR \
Jan Tattermuschb2b54fe2017-06-27 14:37:01 +020040 -I . src/proto/grpc/testing/{control,echo_messages,empty,messages,metrics,payloads,services,stats,test}.proto