forked from swiftlang/swift-subprocess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOutput.swift
More file actions
463 lines (409 loc) · 15.7 KB
/
Output.swift
File metadata and controls
463 lines (409 loc) · 15.7 KB
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
457
458
459
460
461
462
463
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2025 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
//
//===----------------------------------------------------------------------===//
#if canImport(System)
public import System
#else
public import SystemPackage
#endif
#if canImport(WinSDK)
@preconcurrency import WinSDK
#endif
// MARK: - Output
/// A type that serves as the output target for a subprocess.
public protocol OutputProtocol: Sendable, ~Copyable {
associatedtype OutputType: Sendable
/// Converts the output from a span to the expected output type.
func output(from span: RawSpan) throws -> OutputType
/// The maximum number of bytes to collect.
var maxSize: Int { get }
}
extension OutputProtocol {
/// The maximum number of bytes to collect.
public var maxSize: Int { 128 * 1024 }
}
/// An output type that discards output from the child process.
///
/// On Unix-like systems, ``DiscardedOutput`` redirects standard output
/// to `/dev/null`. On Windows, it redirects to `NUL`.
public struct DiscardedOutput: OutputProtocol, ErrorOutputProtocol {
/// The type for the output.
public typealias OutputType = Void
internal func createPipe() throws(SubprocessError) -> CreatedPipe {
#if os(Windows)
let devnullFd: FileDescriptor = try .openDevNull(withAccessMode: .writeOnly)
let devnull = HANDLE(bitPattern: _get_osfhandle(devnullFd.rawValue))!
#else
let devnull: FileDescriptor = try .openDevNull(withAccessMode: .writeOnly)
#endif
return CreatedPipe(
readFileDescriptor: nil,
writeFileDescriptor: .init(devnull, closeWhenDone: true)
)
}
internal init() {}
}
/// An output type that writes to a specified file descriptor.
///
/// You can choose to have the subprocess automatically close
/// the file descriptor after it spawns.
public struct FileDescriptorOutput: OutputProtocol, ErrorOutputProtocol {
/// The type for this output.
public typealias OutputType = Void
private let closeAfterSpawningProcess: Bool
private let fileDescriptor: FileDescriptor
internal func createPipe() throws(SubprocessError) -> CreatedPipe {
#if canImport(WinSDK)
let writeFd = HANDLE(bitPattern: _get_osfhandle(self.fileDescriptor.rawValue))!
#else
let writeFd = self.fileDescriptor
#endif
return CreatedPipe(
readFileDescriptor: nil,
writeFileDescriptor: .init(
writeFd,
closeWhenDone: self.closeAfterSpawningProcess
)
)
}
internal init(
fileDescriptor: FileDescriptor,
closeAfterSpawningProcess: Bool
) {
self.fileDescriptor = fileDescriptor
self.closeAfterSpawningProcess = closeAfterSpawningProcess
}
}
/// An output type that collects the subprocess's output as a `String` with the given encoding.
public struct StringOutput<Encoding: Unicode.Encoding>: OutputProtocol, ErrorOutputProtocol {
/// The type for this output.
public typealias OutputType = String?
/// The maximum number of bytes to collect.
public let maxSize: Int
/// Creates a string from a raw span.
public func output(from span: RawSpan) throws -> String? {
span.withUnsafeBytes { ptr in
let array = Array(ptr)
return String(decodingBytes: array, as: Encoding.self)
}
}
internal init(limit: Int, encoding: Encoding.Type) {
self.maxSize = limit
}
}
/// An output type that collects the subprocess's output as a `[UInt8]` array.
public struct BytesOutput: OutputProtocol, ErrorOutputProtocol {
/// The output type for this output option.
public typealias OutputType = [UInt8]
/// The maximum number of bytes to collect.
public let maxSize: Int
internal func captureOutput(
from diskIO: consuming IODescriptor,
for processIdentifier: ProcessIdentifier
) async throws(SubprocessError) -> [UInt8] {
var result: [UInt8] = []
do {
var maxLength = self.maxSize
if maxLength != .max {
// Read one extra byte to detect output that exceeds the
// limit.
maxLength += 1
// Reserve capacity to avoid reallocations.
result.reserveCapacity(maxLength)
}
let bufferSize = AsyncIO.queryPipeBufferSize(for: diskIO.descriptor())
while result.count < maxLength {
let remaining = maxLength - result.count
guard
let chunk = try await AsyncIO.shared.read(
from: diskIO,
for: processIdentifier,
upTo: min(bufferSize, remaining)
)
else {
break
}
result.append(contentsOf: chunk)
}
} catch {
try diskIO.safelyClose()
throw error
}
try diskIO.safelyClose()
if result.count > self.maxSize {
throw .outputLimitExceeded(limit: self.maxSize)
}
return result
}
/// Creates an array from a ``RawSpan``.
public func output(from span: RawSpan) throws -> [UInt8] {
span.withUnsafeBytes { Array($0) }
}
internal init(limit: Int) {
self.maxSize = limit
}
}
/// An output type that streams the subprocess's output through the body
/// closure as an asynchronous sequence of buffers.
///
/// Use ``OutputProtocol/sequence`` to create a value of this type when you
/// call a `run` function that takes a body closure. The closure reads the
/// output by iterating ``Execution/standardOutput`` or
/// ``Execution/standardError``.
public struct SequenceOutput: OutputProtocol, ErrorOutputProtocol {
/// The output type for this output option.
public typealias OutputType = Void
internal init() {}
}
extension OutputProtocol where Self == DiscardedOutput {
/// Creates a subprocess output that discards output.
public static var discarded: Self { .init() }
}
extension OutputProtocol where Self == FileDescriptorOutput {
/// Creates a subprocess output that writes to a file descriptor.
///
/// Set `closeAfterSpawningProcess` to `true` to close the file
/// descriptor after the subprocess spawns.
public static func fileDescriptor(
_ fd: FileDescriptor,
closeAfterSpawningProcess: Bool
) -> Self {
return .init(fileDescriptor: fd, closeAfterSpawningProcess: closeAfterSpawningProcess)
}
/// Creates a subprocess output that writes to the current process's standard output.
///
/// The file descriptor isn't closed afterwards.
public static var currentStandardOutput: Self {
return Self.fileDescriptor(
.standardOutput,
closeAfterSpawningProcess: false
)
}
// TODO: remove for 1.0
@available(*, deprecated, renamed: "currentStandardOutput")
public static var standardOutput: Self {
return currentStandardOutput
}
/// Creates a subprocess output that writes to the current process's standard error.
///
/// The file descriptor isn't closed afterwards.
public static var currentStandardError: Self {
return Self.fileDescriptor(
.standardError,
closeAfterSpawningProcess: false
)
}
// TODO: remove for 1.0
@available(*, deprecated, renamed: "currentStandardError")
public static var standardError: Self {
return currentStandardError
}
}
extension OutputProtocol where Self == StringOutput<UTF8> {
/// Creates a subprocess output that collects output as a UTF-8 string.
///
/// The subprocess throws an error if the child process
/// produces more bytes than `limit`.
public static func string(limit: Int) -> Self {
return .init(limit: limit, encoding: UTF8.self)
}
}
extension OutputProtocol {
/// Creates a subprocess output that collects output as
/// a string using the given encoding, up to `limit` bytes.
///
/// The subprocess throws an error if the child process
/// produces more bytes than `limit`.
public static func string<Encoding: Unicode.Encoding>(
limit: Int,
encoding: Encoding.Type
) -> Self where Self == StringOutput<Encoding> {
return .init(limit: limit, encoding: encoding)
}
}
extension OutputProtocol where Self == BytesOutput {
/// Creates a subprocess output that collects output as bytes,
/// up to `limit` bytes.
///
/// The subprocess throws an error if the child process
/// produces more bytes than `limit`.
public static func bytes(limit: Int) -> Self {
return .init(limit: limit)
}
}
extension OutputProtocol where Self == SequenceOutput {
/// Creates a subprocess output that the body closure reads from
/// ``Execution/standardOutput`` or ``Execution/standardError``.
///
/// Use this output with a `run` overload that takes a body closure.
public static var sequence: Self {
return SequenceOutput()
}
}
// MARK: - ErrorOutputProtocol
/// A type that serves as the standard error output target for a subprocess.
///
/// Instead of creating custom implementations of ``ErrorOutputProtocol``, use the
/// built-in implementations provided by the `Subprocess` library.
public protocol ErrorOutputProtocol: OutputProtocol {}
/// A concrete error output type for subprocesses that combines the standard error
/// output with the standard output stream.
///
/// When `CombinedErrorOutput` is used as the error output for a subprocess, both
/// standard output and standard error from the child process are merged into a
/// single output stream. This is equivalent to using shell redirection like `2>&1`.
///
/// This output type is useful when you want to capture or redirect both output
/// streams together, making it possible to process all subprocess output as a unified
/// stream rather than handling standard output and standard error separately.
public struct CombinedErrorOutput: ErrorOutputProtocol {
/// The output type for this output option.
public typealias OutputType = Void
internal init() {}
}
extension ErrorOutputProtocol {
internal func createPipe(from outputPipe: borrowing CreatedPipe) throws(SubprocessError) -> CreatedPipe {
if self is CombinedErrorOutput {
return try CreatedPipe(duplicating: outputPipe)
}
return try createPipe()
}
}
extension ErrorOutputProtocol where Self == CombinedErrorOutput {
/// Creates an error output that combines standard error with standard output.
///
/// When using `combinedWithOutput`, both standard output and standard error from
/// the child process are merged into a single output stream. This is equivalent
/// to using shell redirection like `2>&1`.
///
/// This is useful when you want to capture or redirect both output streams
/// together, making it possible to process all subprocess output as a unified
/// stream rather than handling standard output and standard error separately
///
/// - Returns: A `CombinedErrorOutput` instance that merges standard error
/// with standard output.
public static var combinedWithOutput: Self {
return CombinedErrorOutput()
}
}
// MARK: - Default Implementations
extension OutputProtocol {
@_disfavoredOverload
internal func createPipe() throws(SubprocessError) -> CreatedPipe {
if let discard = self as? DiscardedOutput {
return try discard.createPipe()
} else if let fdOutput = self as? FileDescriptorOutput {
return try fdOutput.createPipe()
}
// Base pipe based implementation for everything else
return try CreatedPipe(closeWhenDone: true, purpose: .output)
}
/// Captures the output from the subprocess, up to `maxSize` bytes.
@_disfavoredOverload
internal func captureOutput(
from diskIO: consuming IODescriptor?,
for processIdentifier: ProcessIdentifier
) async throws -> OutputType {
if OutputType.self == Void.self {
try diskIO?.safelyClose()
return () as! OutputType
}
// `diskIO` is only `nil` for types that conform to `OutputProtocol`
// and have `Void` as `OutputType` (such as `DiscardedOutput`). The
// line above already returned for the `Void` case, so `diskIO`
// must not be `nil` here; otherwise the call site is a programmer
// error.
guard var diskIO else {
fatalError(
"Internal Inconsistency Error: diskIO must not be nil when OutputType is not Void"
)
}
if let bytesOutput = self as? BytesOutput {
return try await bytesOutput.captureOutput(
from: diskIO, for: processIdentifier
) as! Self.OutputType
}
var result: [UInt8] = []
do {
var maxLength = self.maxSize
if maxLength != .max {
// Read one extra byte to detect output that exceeds the
// limit.
maxLength += 1
result.reserveCapacity(maxLength)
}
let bufferSize = AsyncIO.queryPipeBufferSize(for: diskIO.descriptor())
while result.count < maxLength {
let remaining = maxLength - result.count
guard
let chunk = try await AsyncIO.shared.read(
from: diskIO,
for: processIdentifier,
upTo: min(bufferSize, remaining)
)
else {
break
}
result.append(contentsOf: chunk)
}
} catch {
try diskIO.safelyClose()
throw error
}
try diskIO.safelyClose()
if result.count > self.maxSize {
throw SubprocessError.outputLimitExceeded(limit: self.maxSize)
}
return try self.output(from: result)
}
}
extension OutputProtocol where OutputType == Void {
internal func captureOutput(
from fileDescriptor: consuming IODescriptor?,
for processIdentifier: ProcessIdentifier
) async throws {}
/// Converts the output from a raw span to the expected output type.
public func output(from span: RawSpan) throws {
// When OutputType is Void, there is no output to process,
// So this is effectively a no-op.
}
}
extension OutputProtocol {
internal func output(from data: [UInt8]) throws -> OutputType {
guard !data.isEmpty else {
let empty = UnsafeRawBufferPointer(start: nil, count: 0)
let span = RawSpan(_unsafeBytes: empty)
return try self.output(from: span)
}
return try data.withUnsafeBufferPointer { ptr in
let span = RawSpan(_unsafeBytes: UnsafeRawBufferPointer(ptr))
return try self.output(from: span)
}
}
}
extension FileDescriptor {
internal static func openDevNull(
withAccessMode mode: FileDescriptor.AccessMode
) throws(SubprocessError) -> FileDescriptor {
do {
#if os(Windows)
let devnull: FileDescriptor = try .open("NUL", mode)
#else
let devnull: FileDescriptor = try .open("/dev/null", mode)
#endif
return devnull
} catch {
throw .asyncIOFailed(
reason: "Failed to open /dev/null",
underlyingError: error as? SubprocessError.UnderlyingError
)
}
}
}