mirror of
https://github.com/apple/swift-nio-extras.git
synced 2025-05-14 17:02:43 +08:00
43 lines
1.4 KiB
Swift
43 lines
1.4 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 NIOExtras
|
|
|
|
class HTTP1ThreadedRollingPCapPerformanceTest: HTTP1ThreadedPerformanceTest {
|
|
init() {
|
|
@Sendable
|
|
func addRollingPCap(channel: Channel) -> EventLoopFuture<Void> {
|
|
channel.eventLoop.submit {
|
|
let pcapRingBuffer = NIOPCAPRingBuffer(
|
|
maximumFragments: 25,
|
|
maximumBytes: 1_000_000
|
|
)
|
|
let pcapHandler = NIOWritePCAPHandler(
|
|
mode: .client,
|
|
fileSink: pcapRingBuffer.addFragment
|
|
)
|
|
try channel.pipeline.syncOperations.addHandler(pcapHandler, position: .first)
|
|
}
|
|
}
|
|
|
|
super.init(
|
|
numberOfRepeats: 50,
|
|
numberOfClients: System.coreCount,
|
|
requestsPerClient: 500,
|
|
extraInitialiser: { channel in addRollingPCap(channel: channel) }
|
|
)
|
|
}
|
|
}
|