/* * Copyright 2019, 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 Foundation import Logging import NIO import NIOHPACK import NIOHTTP1 import SwiftProtobuf /// Abstract base class exposing a method to send multiple messages over the wire and a promise for the final RPC status. /// /// - When `statusPromise` is fulfilled, the call is closed and the provided status transmitted. /// - If `statusPromise` is failed and the error is of type `GRPCStatusTransformable`, /// the result of `error.asGRPCStatus()` will be returned to the client. /// - If `error.asGRPCStatus()` is not available, `GRPCStatus.processingError` is returned to the client. open class StreamingResponseCallContext: ServerCallContextBase { typealias WrappedResponse = GRPCServerResponsePart public let statusPromise: EventLoopPromise public convenience init( eventLoop: EventLoop, headers: HPACKHeaders, logger: Logger, userInfo: UserInfo = UserInfo() ) { self.init(eventLoop: eventLoop, headers: headers, logger: logger, userInfoRef: .init(userInfo)) } @inlinable override internal init( eventLoop: EventLoop, headers: HPACKHeaders, logger: Logger, userInfoRef: Ref ) { self.statusPromise = eventLoop.makePromise() super.init(eventLoop: eventLoop, headers: headers, logger: logger, userInfoRef: userInfoRef) } /// Send a response to the client. /// /// - Parameters: /// - message: The message to send to the client. /// - compression: Whether compression should be used for this response. If compression /// is enabled in the call context, the value passed here takes precedence. Defaults to /// deferring to the value set on the call context. /// - promise: A promise to complete once the message has been sent. open func sendResponse( _ message: ResponsePayload, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) { fatalError("needs to be overridden") } /// Send a response to the client. /// /// - Parameters: /// - message: The message to send to the client. /// - compression: Whether compression should be used for this response. If compression /// is enabled in the call context, the value passed here takes precedence. Defaults to /// deferring to the value set on the call context. open func sendResponse( _ message: ResponsePayload, compression: Compression = .deferToCallDefault ) -> EventLoopFuture { let promise = self.eventLoop.makePromise(of: Void.self) self.sendResponse(message, compression: compression, promise: promise) return promise.futureResult } /// Sends a sequence of responses to the client. /// - Parameters: /// - messages: The messages to send to the client. /// - compression: Whether compression should be used for this response. If compression /// is enabled in the call context, the value passed here takes precedence. Defaults to /// deferring to the value set on the call context. /// - promise: A promise to complete once the messages have been sent. open func sendResponses( _ messages: Messages, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) where Messages.Element == ResponsePayload { fatalError("needs to be overridden") } /// Sends a sequence of responses to the client. /// - Parameters: /// - messages: The messages to send to the client. /// - compression: Whether compression should be used for this response. If compression /// is enabled in the call context, the value passed here takes precedence. Defaults to /// deferring to the value set on the call context. open func sendResponses( _ messages: Messages, compression: Compression = .deferToCallDefault ) -> EventLoopFuture where Messages.Element == ResponsePayload { let promise = self.eventLoop.makePromise(of: Void.self) self.sendResponses(messages, compression: compression, promise: promise) return promise.futureResult } } @usableFromInline internal final class _StreamingResponseCallContext: StreamingResponseCallContext { @usableFromInline internal let _sendResponse: (Response, MessageMetadata, EventLoopPromise?) -> Void @usableFromInline internal let _compressionEnabledOnServer: Bool @inlinable internal init( eventLoop: EventLoop, headers: HPACKHeaders, logger: Logger, userInfoRef: Ref, compressionIsEnabled: Bool, sendResponse: @escaping (Response, MessageMetadata, EventLoopPromise?) -> Void ) { self._sendResponse = sendResponse self._compressionEnabledOnServer = compressionIsEnabled super.init(eventLoop: eventLoop, headers: headers, logger: logger, userInfoRef: userInfoRef) } @inlinable internal func shouldCompress(_ compression: Compression) -> Bool { guard self._compressionEnabledOnServer else { return false } return compression.isEnabled(callDefault: self.compressionEnabled) } @inlinable override func sendResponse( _ message: Response, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) { if self.eventLoop.inEventLoop { let compress = self.shouldCompress(compression) self._sendResponse(message, .init(compress: compress, flush: true), promise) } else { self.eventLoop.execute { let compress = self.shouldCompress(compression) self._sendResponse(message, .init(compress: compress, flush: true), promise) } } } @inlinable override func sendResponses( _ messages: Messages, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) where Response == Messages.Element { if self.eventLoop.inEventLoop { self._sendResponses(messages, compression: compression, promise: promise) } else { self.eventLoop.execute { self._sendResponses(messages, compression: compression, promise: promise) } } } @inlinable internal func _sendResponses( _ messages: Messages, compression: Compression, promise: EventLoopPromise? ) where Response == Messages.Element { let compress = self.shouldCompress(compression) var iterator = messages.makeIterator() var next = iterator.next() while let current = next { next = iterator.next() // Attach the promise, if present, to the last message. let isLast = next == nil self._sendResponse(current, .init(compress: compress, flush: isLast), isLast ? promise : nil) } } } /// Concrete implementation of `StreamingResponseCallContext` used for testing. /// /// Simply records all sent messages. open class StreamingResponseCallContextTestStub: StreamingResponseCallContext { open var recordedResponses: [ResponsePayload] = [] override open func sendResponse( _ message: ResponsePayload, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) { self.recordedResponses.append(message) promise?.succeed(()) } override open func sendResponses( _ messages: Messages, compression: Compression = .deferToCallDefault, promise: EventLoopPromise? ) where ResponsePayload == Messages.Element { self.recordedResponses.append(contentsOf: messages) promise?.succeed(()) } }