| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #!/bin/bash
- ## Copyright 2024, gRPC Authors All rights reserved.
- ##
- ## Licensed 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.
- set -eu
- here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
- root="$here/../.."
- protoc=$(which protoc)
- # Checkout and build the plugins.
- build_dir=$(mktemp -d)
- git clone https://github.com/grpc/grpc-swift-protobuf --depth 1 "$build_dir"
- swift build --package-path "$build_dir" --product protoc-gen-swift
- swift build --package-path "$build_dir" --product protoc-gen-grpc-swift-2
- # Grab the plugin paths.
- bin_path=$(swift build --package-path "$build_dir" --show-bin-path)
- protoc_gen_swift="$bin_path/protoc-gen-swift"
- protoc_gen_grpc_swift="$bin_path/protoc-gen-grpc-swift-2"
- # Generates gRPC by invoking protoc with the gRPC Swift plugin.
- # Parameters:
- # - $1: .proto file
- # - $2: proto path
- # - $3: output path
- # - $4 onwards: options to forward to the plugin
- function generate_grpc {
- local proto=$1
- local args=("--plugin=$protoc_gen_grpc_swift" "--proto_path=${2}" "--grpc-swift-2_out=${3}")
- for option in "${@:4}"; do
- args+=("--grpc-swift-2_opt=$option")
- done
- invoke_protoc "${args[@]}" "$proto"
- }
- # Generates messages by invoking protoc with the Swift plugin.
- # Parameters:
- # - $1: .proto file
- # - $2: proto path
- # - $3: output path
- # - $4 onwards: options to forward to the plugin
- function generate_message {
- local proto=$1
- local args=("--plugin=$protoc_gen_swift" "--proto_path=$2" "--swift_out=$3")
- for option in "${@:4}"; do
- args+=("--swift_opt=$option")
- done
- invoke_protoc "${args[@]}" "$proto"
- }
- function invoke_protoc {
- # Setting -x when running the script produces a lot of output, instead boil
- # just echo out the protoc invocations.
- echo "$protoc" "$@"
- "$protoc" "$@"
- }
- #- TESTS ----------------------------------------------------------------------
- function generate_perf_test_services {
- local protos=(
- "$here/upstream/grpc/testing/payloads.proto"
- "$here/upstream/grpc/testing/control.proto"
- "$here/upstream/grpc/testing/messages.proto"
- "$here/upstream/grpc/testing/stats.proto"
- "$here/upstream/grpc/testing/benchmark_service.proto"
- "$here/upstream/grpc/testing/worker_service.proto"
- )
- local output="$root/IntegrationTests/grpc-performance-tests/Sources/Generated"
- generate_message "$here/upstream/grpc/core/stats.proto" "$here/upstream" "$output" "Visibility=Internal" "FileNaming=PathToUnderscores"
- for proto in "${protos[@]}"; do
- generate_message "$proto" "$here/upstream" "$output" "Visibility=Internal" "FileNaming=PathToUnderscores"
- if [ "$proto" == "$here/upstream/grpc/testing/worker_service.proto" ]; then
- generate_grpc "$proto" "$here/upstream" "$output" "Visibility=Internal" "Client=false" "FileNaming=PathToUnderscores"
- else
- generate_grpc "$proto" "$here/upstream" "$output" "Visibility=Internal" "FileNaming=PathToUnderscores"
- fi
- done
- }
- #------------------------------------------------------------------------------
- # Tests
- generate_perf_test_services
|