| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Copyright 2018, 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 Dispatch
- import Foundation
- import SwiftProtobuf
- public protocol ServerSessionBidirectionalStreaming: ServerSession {
- func waitForSendOperationsToFinish()
- }
- open class ServerSessionBidirectionalStreamingBase<InputType: Message, OutputType: Message>: ServerSessionBase, ServerSessionBidirectionalStreaming, StreamReceiving, StreamSending {
- public typealias ReceivedType = InputType
- public typealias SentType = OutputType
-
- public typealias ProviderBlock = (ServerSessionBidirectionalStreamingBase) throws -> Void
- private var providerBlock: ProviderBlock
- public init(handler: Handler, providerBlock: @escaping ProviderBlock) {
- self.providerBlock = providerBlock
- super.init(handler: handler)
- }
- public func close() throws {
- let sem = DispatchSemaphore(value: 0)
- try handler.sendStatus(statusCode: statusCode,
- statusMessage: statusMessage,
- trailingMetadata: trailingMetadata) { _ in sem.signal() }
- _ = sem.wait()
- }
- public func run(queue: DispatchQueue) throws {
- try handler.sendMetadata(initialMetadata: initialMetadata) { _ in
- queue.async {
- do {
- try self.providerBlock(self)
- } catch (let error) {
- print("error \(error)")
- }
- }
- }
- }
- public func waitForSendOperationsToFinish() {
- handler.call.messageQueueEmpty.wait()
- }
- }
- /// Simple fake implementation of ServerSessionBidirectionalStreaming that returns a previously-defined set of results
- /// and stores sent values for later verification.
- open class ServerSessionBidirectionalStreamingTestStub<InputType: Message, OutputType: Message>: ServerSessionTestStub, ServerSessionBidirectionalStreaming {
- open var inputs: [InputType] = []
- open var outputs: [OutputType] = []
- open func receive() throws -> InputType? {
- defer { inputs.removeFirst() }
- return inputs.first
- }
-
- open func receive(completion: @escaping (ResultOrRPCError<InputType?>) -> Void) throws {
- completion(.result(inputs.first))
- inputs.removeFirst()
- }
- open func send(_ message: OutputType, completion _: @escaping (Error?) -> Void) throws {
- outputs.append(message)
- }
- open func close() throws {}
- open func waitForSendOperationsToFinish() {}
- }
|