| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * Copyright 2021, 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.
- */
- import GRPC
- import NIO
- class UnaryPingPongBenchmark: Benchmark {
- let rpcs: Int
- let request: Echo_EchoRequest
- private var group: EventLoopGroup!
- private var server: Server!
- private var client: ClientConnection!
- private let clientInterceptors: Echo_EchoClientInterceptorFactoryProtocol?
- private let serverInterceptors: Echo_EchoServerInterceptorFactoryProtocol?
- init(
- rpcs: Int,
- request: String,
- clientInterceptors: Int = 0,
- serverInterceptors: Int = 0
- ) {
- self.rpcs = rpcs
- self.request = .with { $0.text = request }
- self.clientInterceptors = clientInterceptors > 0
- ? makeEchoClientInterceptors(count: clientInterceptors)
- : nil
- self.serverInterceptors = serverInterceptors > 0
- ? makeEchoServerInterceptors(count: serverInterceptors)
- : nil
- }
- func setUp() throws {
- self.group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
- self.server = try makeEchoServer(
- group: self.group,
- interceptors: self.serverInterceptors
- ).wait()
- self.client = makeClientConnection(
- group: self.group,
- port: self.server.channel.localAddress!.port!
- )
- }
- func tearDown() throws {
- try self.client.close().wait()
- try self.server.close().wait()
- try self.group.syncShutdownGracefully()
- }
- func run() throws -> Int {
- let echo = Echo_EchoClient(channel: self.client, interceptors: self.clientInterceptors)
- var responseLength = 0
- for _ in 0 ..< self.rpcs {
- let get = echo.get(self.request)
- let response = try get.response.wait()
- responseLength += response.text.count
- }
- return responseLength
- }
- }
- func run(identifier: String) {
- measure(identifier: identifier) {
- let benchmark = UnaryPingPongBenchmark(rpcs: 1000, request: "")
- return try! benchmark.runOnce()
- }
- measure(identifier: identifier + "_interceptors_server") {
- let benchmark = UnaryPingPongBenchmark(rpcs: 1000, request: "", serverInterceptors: 5)
- return try! benchmark.runOnce()
- }
- measure(identifier: identifier + "_interceptors_client") {
- let benchmark = UnaryPingPongBenchmark(rpcs: 1000, request: "", clientInterceptors: 5)
- return try! benchmark.runOnce()
- }
- }
|