| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * 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 NIOCore
- extension PoolManagerStateMachine.ActiveState {
- internal struct PerPoolState {
- /// The index of the connection pool associated with this state.
- internal var poolIndex: PoolManager.ConnectionPoolIndex
- /// The number of streams reserved in the pool.
- internal private(set) var reservedStreams: Int
- /// The total number of streams which may be available in the pool.
- internal var maxAvailableStreams: Int
- /// The number of available streams.
- internal var availableStreams: Int {
- return self.maxAvailableStreams - self.reservedStreams
- }
- init(poolIndex: PoolManager.ConnectionPoolIndex, assumedMaxAvailableStreams: Int) {
- self.poolIndex = poolIndex
- self.reservedStreams = 0
- self.maxAvailableStreams = assumedMaxAvailableStreams
- }
- /// Reserve a stream and return the pool.
- internal mutating func reserveStream() -> PoolManager.ConnectionPoolIndex {
- self.reservedStreams += 1
- return self.poolIndex
- }
- /// Return a reserved stream.
- internal mutating func returnReservedStreams(_ count: Int) {
- self.reservedStreams -= count
- assert(self.reservedStreams >= 0)
- }
- }
- }
- extension PoolManager {
- internal struct ConnectionPoolIndex: Hashable {
- var value: Int
- init(_ value: Int) {
- self.value = value
- }
- }
- internal struct ConnectionPoolKey: Hashable {
- /// The index of the connection pool.
- var index: ConnectionPoolIndex
- /// The ID of the`EventLoop` the connection pool uses.
- var eventLoopID: EventLoopID
- }
- }
- internal struct EventLoopID: Hashable, CustomStringConvertible {
- private let id: ObjectIdentifier
- internal init(_ eventLoop: EventLoop) {
- self.id = ObjectIdentifier(eventLoop)
- }
- internal var description: String {
- return String(describing: self.id)
- }
- }
- extension EventLoop {
- internal var id: EventLoopID {
- return EventLoopID(self)
- }
- }
|