| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /*
- * 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 NIOCore
- import NIOHPACK
- import NIOHTTP1
- import SwiftProtobuf
- /// Protocol declaring a minimum set of properties exposed by *all* types of call contexts.
- public protocol ServerCallContext: AnyObject {
- /// The event loop this call is served on.
- var eventLoop: EventLoop { get }
- /// Request headers for this request.
- var headers: HPACKHeaders { get }
- /// A 'UserInfo' dictionary which is shared with the interceptor contexts for this RPC.
- var userInfo: UserInfo { get set }
- /// The logger used for this call.
- var logger: Logger { get }
- /// Whether compression should be enabled for responses, defaulting to `true`. Note that for
- /// this value to take effect compression must have been enabled on the server and a compression
- /// algorithm must have been negotiated with the client.
- var compressionEnabled: Bool { get set }
- /// A future which completes when the call closes. This may be used to register callbacks which
- /// free up resources used by the RPC.
- var closeFuture: EventLoopFuture<Void> { get }
- }
- extension ServerCallContext {
- // Default implementation to avoid breaking API.
- public var closeFuture: EventLoopFuture<Void> {
- return self.eventLoop.makeFailedFuture(GRPCStatus.closeFutureNotImplemented)
- }
- }
- extension GRPCStatus {
- internal static let closeFutureNotImplemented = GRPCStatus(
- code: .unimplemented,
- message: "This context type has not implemented support for a 'closeFuture'"
- )
- }
- /// Base class providing data provided to the framework user for all server calls.
- open class ServerCallContextBase: ServerCallContext {
- /// The event loop this call is served on.
- public let eventLoop: EventLoop
- /// Request headers for this request.
- public let headers: HPACKHeaders
- /// The logger used for this call.
- public let logger: Logger
- /// Whether compression should be enabled for responses, defaulting to `true`. Note that for
- /// this value to take effect compression must have been enabled on the server and a compression
- /// algorithm must have been negotiated with the client.
- ///
- /// - Important: This *must* be accessed from the context's `eventLoop` in order to ensure
- /// thread-safety.
- public var compressionEnabled: Bool {
- get {
- self.eventLoop.assertInEventLoop()
- return self._compressionEnabled
- }
- set {
- self.eventLoop.assertInEventLoop()
- self._compressionEnabled = newValue
- }
- }
- private var _compressionEnabled: Bool = true
- /// A `UserInfo` dictionary which is shared with the interceptor contexts for this RPC.
- ///
- /// - Important: While ``UserInfo`` has value-semantics, this property retrieves from, and sets a
- /// reference wrapped ``UserInfo``. The contexts passed to interceptors provide the same
- /// reference. As such this may be used as a mechanism to pass information between interceptors
- /// and service providers.
- /// - Important: This *must* be accessed from the context's `eventLoop` in order to ensure
- /// thread-safety.
- public var userInfo: UserInfo {
- get {
- self.eventLoop.assertInEventLoop()
- return self.userInfoRef.value
- }
- set {
- self.eventLoop.assertInEventLoop()
- self.userInfoRef.value = newValue
- }
- }
- /// A reference to an underlying ``UserInfo``. We share this with the interceptors.
- @usableFromInline
- internal let userInfoRef: Ref<UserInfo>
- /// Metadata to return at the end of the RPC. If this is required it should be updated before
- /// the `responsePromise` or `statusPromise` is fulfilled.
- ///
- /// - Important: This *must* be accessed from the context's `eventLoop` in order to ensure
- /// thread-safety.
- public var trailers: HPACKHeaders {
- get {
- self.eventLoop.assertInEventLoop()
- return self._trailers
- }
- set {
- self.eventLoop.assertInEventLoop()
- self._trailers = newValue
- }
- }
- private var _trailers: HPACKHeaders = [:]
- /// A future which completes when the call closes. This may be used to register callbacks which
- /// free up resources used by the RPC.
- public let closeFuture: EventLoopFuture<Void>
- @available(*, deprecated, renamed: "init(eventLoop:headers:logger:userInfo:closeFuture:)")
- public convenience init(
- eventLoop: EventLoop,
- headers: HPACKHeaders,
- logger: Logger,
- userInfo: UserInfo = UserInfo()
- ) {
- self.init(
- eventLoop: eventLoop,
- headers: headers,
- logger: logger,
- userInfoRef: .init(userInfo),
- closeFuture: eventLoop.makeFailedFuture(GRPCStatus.closeFutureNotImplemented)
- )
- }
- public convenience init(
- eventLoop: EventLoop,
- headers: HPACKHeaders,
- logger: Logger,
- userInfo: UserInfo = UserInfo(),
- closeFuture: EventLoopFuture<Void>
- ) {
- self.init(
- eventLoop: eventLoop,
- headers: headers,
- logger: logger,
- userInfoRef: .init(userInfo),
- closeFuture: closeFuture
- )
- }
- @inlinable
- internal init(
- eventLoop: EventLoop,
- headers: HPACKHeaders,
- logger: Logger,
- userInfoRef: Ref<UserInfo>,
- closeFuture: EventLoopFuture<Void>
- ) {
- self.eventLoop = eventLoop
- self.headers = headers
- self.userInfoRef = userInfoRef
- self.logger = logger
- self.closeFuture = closeFuture
- }
- }
|