swift-nio-extras/Sources/NIOExtrasPerformanceTester/RollingPCAPPerformanceTest.swift
David Evans e4dc3c8d1d
Implement Sendable (#160)
Make every non-channel class conform to Sendable (or @unchecked Sendable) to prepare for NIO.
2022-05-04 11:46:21 +01:00

54 lines
1.5 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2020-2021 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import NIOCore
import NIOEmbedded
import NIOExtras
final class RollingPCAPPerformanceTest: Benchmark {
let numberOfRepeats: Int
let byteBuffer = ByteBuffer(repeating: 0x65, count: 1000)
init(numberOfRepeats: Int) {
self.numberOfRepeats = numberOfRepeats
}
func setUp() throws {
}
func tearDown() {
}
func run() throws -> Int {
let channel = EmbeddedChannel()
defer {
_ = try! channel.finish()
}
let pcapRingBuffer = NIOPCAPRingBuffer(maximumFragments: 25,
maximumBytes: 1_000_000)
let pcapHandler = NIOWritePCAPHandler(mode: .client,
fileSink: pcapRingBuffer.addFragment)
try channel.pipeline.addHandler(pcapHandler, position: .first).wait()
for _ in 0 ..< self.numberOfRepeats {
channel.writeAndFlush(self.byteBuffer, promise: nil)
_ = try channel.readOutbound(as: ByteBuffer.self)
}
return self.numberOfRepeats
}
}