1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2022-2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import AsyncAlgorithms
import DequeModule
import Foundation
import NIO
// ⚠️ IMPLEMENTATION WARNING
// - Known issues:
// - no tests
// - most configurations have never run
struct FileContentStream: AsyncSequence {
public typealias Element = ByteBuffer
typealias Underlying = AsyncThrowingChannel<Element, Error>
public func makeAsyncIterator() -> AsyncIterator {
AsyncIterator(underlying: self.asyncChannel.makeAsyncIterator())
}
public struct AsyncIterator: AsyncIteratorProtocol {
public typealias Element = ByteBuffer
var underlying: Underlying.AsyncIterator
public mutating func next() async throws -> ByteBuffer? {
try await self.underlying.next()
}
}
public struct IOError: Error {
public var errnoValue: CInt
public static func makeFromErrnoGlobal() -> IOError {
IOError(errnoValue: errno)
}
}
private let asyncChannel: AsyncThrowingChannel<ByteBuffer, Error>
public init(
fileDescriptor: CInt,
eventLoop: EventLoop,
blockingPool: NIOThreadPool? = nil
) throws {
var statInfo: stat = .init()
let statError = fstat(fileDescriptor, &statInfo)
if statError != 0 {
throw IOError.makeFromErrnoGlobal()
}
let dupedFD = dup(fileDescriptor)
let asyncChannel = AsyncThrowingChannel<ByteBuffer, Error>()
self.asyncChannel = asyncChannel
switch statInfo.st_mode & S_IFMT {
case S_IFREG:
guard let blockingPool else {
throw IOError(errnoValue: EINVAL)
}
let fileHandle = NIOLoopBound(
NIOFileHandle(descriptor: dupedFD),
eventLoop: eventLoop
)
NonBlockingFileIO(threadPool: blockingPool)
.readChunked(
fileHandle: fileHandle.value,
byteCount: .max,
allocator: ByteBufferAllocator(),
eventLoop: eventLoop,
chunkHandler: { chunk in
eventLoop.makeFutureWithTask {
await asyncChannel.send(chunk)
}
}
)
.whenComplete { result in
try! fileHandle.value.close()
switch result {
case let .failure(error):
asyncChannel.fail(error)
case .success:
asyncChannel.finish()
}
}
case S_IFSOCK:
_ = ClientBootstrap(group: eventLoop)
.channelInitializer { channel in
channel.pipeline.addHandler(ReadIntoAsyncChannelHandler(sink: asyncChannel))
}
.withConnectedSocket(dupedFD)
case S_IFIFO:
NIOPipeBootstrap(group: eventLoop)
.channelInitializer { channel in
channel.pipeline.addHandler(ReadIntoAsyncChannelHandler(sink: asyncChannel))
}
.takingOwnershipOfDescriptor(
input: dupedFD
)
.whenSuccess { channel in
channel.close(mode: .output, promise: nil)
}
case S_IFDIR:
throw IOError(errnoValue: EISDIR)
case S_IFBLK, S_IFCHR, S_IFLNK:
throw IOError(errnoValue: EINVAL)
default:
// odd, but okay
throw IOError(errnoValue: EINVAL)
}
}
}
private final class ReadIntoAsyncChannelHandler: ChannelDuplexHandler {
typealias InboundIn = ByteBuffer
typealias OutboundIn = Never
private var heldUpRead = false
private let sink: AsyncThrowingChannel<ByteBuffer, Error>
private var state: State = .idle
enum State {
case idle
case error(Error)
case sending(Deque<ReceivedEvent>)
mutating func enqueue(_ data: ReceivedEvent) -> ReceivedEvent? {
switch self {
case .idle:
self = .sending([])
return data
case .error:
return nil
case var .sending(queue):
queue.append(data)
self = .sending(queue)
return nil
}
}
mutating func didSendOne() -> ReceivedEvent? {
switch self {
case .idle:
preconditionFailure("didSendOne during .idle")
case .error:
return nil
case var .sending(queue):
if queue.isEmpty {
self = .idle
return nil
} else {
let value = queue.removeFirst()
self = .sending(queue)
return value
}
}
}
mutating func fail(_ error: Error) {
switch self {
case .idle, .sending:
self = .error(error)
case .error:
return
}
}
}
enum ReceivedEvent {
case chunk(ByteBuffer)
case finish
}
private var shouldRead: Bool {
switch self.state {
case .idle:
return true
case .error:
return false
case .sending:
return false
}
}
init(sink: AsyncThrowingChannel<ByteBuffer, Error>) {
self.sink = sink
}
func channelRead(context: ChannelHandlerContext, data: NIOAny) {
let data = self.unwrapInboundIn(data)
if let itemToSend = self.state.enqueue(.chunk(data)) {
self.sendOneItem(itemToSend, context: context)
}
}
private func sendOneItem(_ data: ReceivedEvent, context: ChannelHandlerContext) {
context.eventLoop.assertInEventLoop()
assert(self.shouldRead == false, "sendOneItem in unexpected state \(self.state)")
let eventLoop = context.eventLoop
let sink = self.sink
let `self` = NIOLoopBound(self, eventLoop: context.eventLoop)
let context = NIOLoopBound(context, eventLoop: context.eventLoop)
eventLoop.makeFutureWithTask {
// note: We're _not_ on an EventLoop thread here
switch data {
case let .chunk(data):
await sink.send(data)
case .finish:
sink.finish()
}
}.map {
if let moreToSend = self.value.state.didSendOne() {
self.value.sendOneItem(moreToSend, context: context.value)
} else {
if self.value.heldUpRead {
eventLoop.execute {
context.value.read()
}
}
}
}.whenFailure { error in
self.value.state.fail(error)
}
}
func errorCaught(context: ChannelHandlerContext, error: Error) {
self.state.fail(error)
self.sink.fail(error)
context.close(promise: nil)
}
func channelInactive(context: ChannelHandlerContext) {
if let itemToSend = self.state.enqueue(.finish) {
self.sendOneItem(itemToSend, context: context)
}
}
func read(context: ChannelHandlerContext) {
if self.shouldRead {
context.read()
} else {
self.heldUpRead = true
}
}
}
extension FileHandle {
func fileContentStream(eventLoop: EventLoop) throws -> FileContentStream {
let asyncBytes = try FileContentStream(
fileDescriptor: self.fileDescriptor,
eventLoop: eventLoop
)
try self.close()
return asyncBytes
}
}
extension FileContentStream {
var lines: AsyncByteBufferLineSequence<FileContentStream> {
AsyncByteBufferLineSequence(
self,
dropTerminator: true,
maximumAllowableBufferSize: 1024 * 1024,
dropLastChunkIfNoNewline: false
)
}
}
extension AsyncSequence where Element == ByteBuffer, Self: Sendable {
public func splitIntoLines(
dropTerminator: Bool = true,
maximumAllowableBufferSize: Int = 1024 * 1024,
dropLastChunkIfNoNewline: Bool = false
) -> AsyncByteBufferLineSequence<Self> {
AsyncByteBufferLineSequence(
self,
dropTerminator: dropTerminator,
maximumAllowableBufferSize: maximumAllowableBufferSize,
dropLastChunkIfNoNewline: dropLastChunkIfNoNewline
)
}
public var strings: AsyncMapSequence<Self, String> {
self.map { String(buffer: $0) }
}
}
public struct AsyncByteBufferLineSequence<Base: Sendable>: AsyncSequence & Sendable
where Base: AsyncSequence, Base.Element == ByteBuffer {
public typealias Element = ByteBuffer
private let underlying: Base
private let dropTerminator: Bool
private let maximumAllowableBufferSize: Int
private let dropLastChunkIfNoNewline: Bool
public struct AsyncIterator: AsyncIteratorProtocol {
public typealias Element = ByteBuffer
private var underlying: Base.AsyncIterator
private let dropTerminator: Bool
private let maximumAllowableBufferSize: Int
private let dropLastChunkIfNoNewline: Bool
private var buffer = Buffer()
struct Buffer {
private var buffer: [ByteBuffer] = []
private(set) var byteCount: Int = 0
mutating func append(_ buffer: ByteBuffer) {
self.buffer.append(buffer)
self.byteCount += buffer.readableBytes
}
func allButLast() -> ArraySlice<ByteBuffer> {
self.buffer.dropLast()
}
var byteCountButLast: Int {
self.byteCount - (self.buffer.last?.readableBytes ?? 0)
}
var lastChunkView: ByteBufferView? {
self.buffer.last?.readableBytesView
}
mutating func concatenateEverything(upToLastChunkLengthToConsume lastLength: Int)
-> ByteBuffer
{
var output = ByteBuffer()
output.reserveCapacity(lastLength + self.byteCountButLast)
var writtenBytes = 0
for buffer in self.buffer.dropLast() {
writtenBytes += output.writeImmutableBuffer(buffer)
}
writtenBytes += output.writeImmutableBuffer(
self.buffer[self.buffer.endIndex - 1].readSlice(length: lastLength)!
)
if self.buffer.last!.readableBytes > 0 {
if self.buffer.count > 1 {
self.buffer.swapAt(0, self.buffer.endIndex - 1)
}
self.buffer.removeLast(self.buffer.count - 1)
} else {
self.buffer = []
}
self.byteCount -= writtenBytes
assert(self.byteCount >= 0)
return output
}
}
init(
underlying: Base.AsyncIterator,
dropTerminator: Bool,
maximumAllowableBufferSize: Int,
dropLastChunkIfNoNewline: Bool
) {
self.underlying = underlying
self.dropTerminator = dropTerminator
self.maximumAllowableBufferSize = maximumAllowableBufferSize
self.dropLastChunkIfNoNewline = dropLastChunkIfNoNewline
}
private mutating func deliverUpTo(
view: ByteBufferView,
index: ByteBufferView.Index,
expectNewline: Bool
) -> ByteBuffer {
let howMany = view.startIndex.distance(to: index) + (expectNewline ? 1 : 0)
var output = self.buffer.concatenateEverything(upToLastChunkLengthToConsume: howMany)
if expectNewline {
assert(output.readableBytesView.last == UInt8(ascii: "\n"))
assert(
output.readableBytesView.firstIndex(of: UInt8(ascii: "\n"))
== output.readableBytesView.index(before: output.readableBytesView.endIndex)
)
} else {
assert(output.readableBytesView.last != UInt8(ascii: "\n"))
assert(!output.readableBytesView.contains(UInt8(ascii: "\n")))
}
if self.dropTerminator && expectNewline {
output.moveWriterIndex(to: output.writerIndex - 1)
}
return output
}
public mutating func next() async throws -> Element? {
while true {
if let view = self.buffer.lastChunkView {
if let newlineIndex = view.firstIndex(of: UInt8(ascii: "\n")) {
return self.deliverUpTo(
view: view,
index: newlineIndex,
expectNewline: true
)
}
if self.buffer.byteCount > self.maximumAllowableBufferSize {
return self.deliverUpTo(
view: view,
index: view.endIndex,
expectNewline: false
)
}
}
if let nextBuffer = try await self.underlying.next() {
self.buffer.append(nextBuffer)
} else {
if !self.dropLastChunkIfNoNewline, let view = self.buffer.lastChunkView, !view.isEmpty {
return self.deliverUpTo(
view: view,
index: view.endIndex,
expectNewline: false
)
} else {
return nil
}
}
}
}
}
public init(
_ underlying: Base,
dropTerminator: Bool,
maximumAllowableBufferSize: Int,
dropLastChunkIfNoNewline: Bool
) {
self.underlying = underlying
self.dropTerminator = dropTerminator
self.maximumAllowableBufferSize = maximumAllowableBufferSize
self.dropLastChunkIfNoNewline = dropLastChunkIfNoNewline
}
public func makeAsyncIterator() -> AsyncIterator {
AsyncIterator(
underlying: self.underlying.makeAsyncIterator(),
dropTerminator: self.dropTerminator,
maximumAllowableBufferSize: self.maximumAllowableBufferSize,
dropLastChunkIfNoNewline: self.dropLastChunkIfNoNewline
)
}
}
|