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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import _Concurrency
import Dispatch
import Foundation
#if os(Windows)
import TSCLibc
#endif
#if os(Linux)
#if USE_IMPL_ONLY_IMPORTS
@_implementationOnly
import func TSCclibc.SPM_posix_spawn_file_actions_addchdir_np_supported
@_implementationOnly
import func TSCclibc.SPM_posix_spawn_file_actions_addchdir_np
#else
private import func TSCclibc.SPM_posix_spawn_file_actions_addchdir_np_supported
private import func TSCclibc.SPM_posix_spawn_file_actions_addchdir_np
#endif // #if USE_IMPL_ONLY_IMPORTS
#endif // #if os(Linux)
import class TSCBasic.CStringArray
import class TSCBasic.LocalFileOutputByteStream
import enum TSCBasic.SystemError
import class TSCBasic.Thread
import protocol TSCBasic.WritableByteStream
/// Process result data which is available after process termination.
package struct AsyncProcessResult: CustomStringConvertible, Sendable {
package enum Error: Swift.Error, Sendable {
/// The output is not a valid UTF8 sequence.
case illegalUTF8Sequence
/// The process had a non zero exit.
case nonZeroExit(AsyncProcessResult)
/// The process failed with a `SystemError` (this is used to still provide context on the process that was
/// launched).
case systemError(arguments: [String], underlyingError: Swift.Error)
}
package enum ExitStatus: Equatable, Sendable {
/// The process was terminated normally with a exit code.
case terminated(code: Int32)
#if os(Windows)
/// The process was terminated abnormally.
case abnormal(exception: UInt32)
#else
/// The process was terminated due to a signal.
case signalled(signal: Int32)
#endif
}
/// The arguments with which the process was launched.
package let arguments: [String]
/// The environment with which the process was launched.
package let environment: Environment
/// The exit status of the process.
package let exitStatus: ExitStatus
/// The output bytes of the process. Available only if the process was
/// asked to redirect its output and no stdout output closure was set.
package let output: Result<[UInt8], Swift.Error>
/// The output bytes of the process. Available only if the process was
/// asked to redirect its output and no stderr output closure was set.
package let stderrOutput: Result<[UInt8], Swift.Error>
/// Create an instance using a POSIX process exit status code and output result.
///
/// See `waitpid(2)` for information on the exit status code.
package init(
arguments: [String],
environment: Environment,
exitStatusCode: Int32,
normal: Bool,
output: Result<[UInt8], Swift.Error>,
stderrOutput: Result<[UInt8], Swift.Error>
) {
let exitStatus: ExitStatus
#if os(Windows)
if normal {
exitStatus = .terminated(code: exitStatusCode)
} else {
exitStatus = .abnormal(exception: UInt32(exitStatusCode))
}
#else
if WIFSIGNALED(exitStatusCode) {
exitStatus = .signalled(signal: WTERMSIG(exitStatusCode))
} else {
precondition(WIFEXITED(exitStatusCode), "unexpected exit status \(exitStatusCode)")
exitStatus = .terminated(code: WEXITSTATUS(exitStatusCode))
}
#endif
self.init(
arguments: arguments,
environment: environment,
exitStatus: exitStatus,
output: output,
stderrOutput: stderrOutput
)
}
/// Create an instance using an exit status and output result.
package init(
arguments: [String],
environment: Environment,
exitStatus: ExitStatus,
output: Result<[UInt8], Swift.Error>,
stderrOutput: Result<[UInt8], Swift.Error>
) {
self.arguments = arguments
self.environment = environment
self.output = output
self.stderrOutput = stderrOutput
self.exitStatus = exitStatus
}
/// Converts stdout output bytes to string, assuming they're UTF8.
package func utf8Output() throws -> String {
try String(decoding: output.get(), as: Unicode.UTF8.self)
}
/// Converts stderr output bytes to string, assuming they're UTF8.
package func utf8stderrOutput() throws -> String {
try String(decoding: stderrOutput.get(), as: Unicode.UTF8.self)
}
package var description: String {
"""
<AsyncProcessResult: exit: \(exitStatus), output:
\((try? utf8Output()) ?? "")
>
"""
}
}
extension AsyncProcess: @unchecked Sendable {}
extension DispatchQueue {
// a shared concurrent queue for running concurrent asynchronous operations
static let processConcurrent = DispatchQueue(
label: "swift.org.swift-tsc.process.concurrent",
attributes: .concurrent
)
}
/// Process allows spawning new subprocesses and working with them.
///
/// Note: This class is thread safe.
package final class AsyncProcess {
/// Errors when attempting to invoke a process
package enum Error: Swift.Error, Sendable {
/// The program requested to be executed cannot be found on the existing search paths, or is not executable.
case missingExecutableProgram(program: String)
/// The current OS does not support the workingDirectory API.
case workingDirectoryNotSupported
/// The stdin could not be opened.
case stdinUnavailable
}
package enum OutputRedirection {
/// Do not redirect the output
case none
/// Collect stdout and stderr output and provide it back via ProcessResult object. If redirectStderr is true,
/// stderr be redirected to stdout.
case collect(redirectStderr: Bool)
/// Stream stdout and stderr via the corresponding closures. If redirectStderr is true, stderr be redirected to
/// stdout.
case stream(stdout: OutputClosure, stderr: OutputClosure, redirectStderr: Bool)
/// Default collect OutputRedirection that defaults to not redirect stderr. Provided for API compatibility.
package static let collect: OutputRedirection = .collect(redirectStderr: false)
/// Default stream OutputRedirection that defaults to not redirect stderr. Provided for API compatibility.
package static func stream(stdout: @escaping OutputClosure, stderr: @escaping OutputClosure) -> Self {
.stream(stdout: stdout, stderr: stderr, redirectStderr: false)
}
package var redirectsOutput: Bool {
switch self {
case .none:
false
case .collect, .stream:
true
}
}
package var outputClosures: (stdoutClosure: OutputClosure, stderrClosure: OutputClosure)? {
switch self {
case .stream(let stdoutClosure, let stderrClosure, _):
(stdoutClosure: stdoutClosure, stderrClosure: stderrClosure)
case .collect, .none:
nil
}
}
package var redirectStderr: Bool {
switch self {
case .collect(let redirectStderr):
redirectStderr
case .stream(_, _, let redirectStderr):
redirectStderr
default:
false
}
}
}
// process execution mutable state
private enum State {
case idle
case readingOutput(sync: DispatchGroup)
case outputReady(stdout: Result<[UInt8], Swift.Error>, stderr: Result<[UInt8], Swift.Error>)
case complete(AsyncProcessResult)
case failed(Swift.Error)
}
/// Typealias for process id type.
#if !os(Windows)
package typealias ProcessID = pid_t
#else
package typealias ProcessID = DWORD
#endif
/// Typealias for stdout/stderr output closure.
package typealias OutputClosure = ([UInt8]) -> Void
/// Typealias for logging handling closure
package typealias LoggingHandler = (String) -> Void
private static var _loggingHandler: LoggingHandler?
private static let loggingHandlerLock = NSLock()
/// Global logging handler. Use with care! preferably use instance level instead of setting one globally.
@available(
*,
deprecated,
message: "use instance level `loggingHandler` passed via `init` instead of setting one globally."
)
package static var loggingHandler: LoggingHandler? {
get {
Self.loggingHandlerLock.withLock {
self._loggingHandler
}
} set {
Self.loggingHandlerLock.withLock {
self._loggingHandler = newValue
}
}
}
package let loggingHandler: LoggingHandler?
/// The arguments to execute.
package let arguments: [String]
package let environment: Environment
/// The path to the directory under which to run the process.
package let workingDirectory: AbsolutePath?
/// The process id of the spawned process, available after the process is launched.
#if os(Windows)
private var _process: Foundation.Process?
package var processID: ProcessID {
DWORD(self._process?.processIdentifier ?? 0)
}
#else
package private(set) var processID = ProcessID()
#endif
// process execution mutable state
private var state: State = .idle
private let stateLock = NSLock()
private static let sharedCompletionQueue = DispatchQueue(label: "org.swift.tools-support-core.process-completion")
private var completionQueue = AsyncProcess.sharedCompletionQueue
// ideally we would use the state for this, but we need to access it while the waitForExit is locking state
private var _launched = false
private let launchedLock = NSLock()
package var launched: Bool {
self.launchedLock.withLock {
self._launched
}
}
/// How process redirects its output.
package let outputRedirection: OutputRedirection
/// Indicates if a new progress group is created for the child process.
private let startNewProcessGroup: Bool
/// Cache of validated executables.
///
/// Key: Executable name or path.
/// Value: Path to the executable, if found.
private static var validatedExecutablesMap = [String: AbsolutePath?]()
private static let validatedExecutablesMapLock = NSLock()
/// Create a new process instance.
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - workingDirectory: The path to the directory under which to run the process.
/// - outputRedirection: How process redirects its output. Default value is .collect.
/// - startNewProcessGroup: If true, a new progress group is created for the child making it
/// continue running even if the parent is killed or interrupted. Default value is true.
/// - loggingHandler: Handler for logging messages
///
package init(
arguments: [String],
environment: Environment = .current,
workingDirectory: AbsolutePath,
outputRedirection: OutputRedirection = .collect,
startNewProcessGroup: Bool = true,
loggingHandler: LoggingHandler? = .none
) {
self.arguments = arguments
self.environment = environment
self.workingDirectory = workingDirectory
self.outputRedirection = outputRedirection
self.startNewProcessGroup = startNewProcessGroup
self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
}
/// Create a new process instance.
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - outputRedirection: How process redirects its output. Default value is .collect.
/// - verbose: If true, launch() will print the arguments of the subprocess before launching it.
/// - startNewProcessGroup: If true, a new progress group is created for the child making it
/// continue running even if the parent is killed or interrupted. Default value is true.
/// - loggingHandler: Handler for logging messages
package init(
arguments: [String],
environment: Environment = .current,
outputRedirection: OutputRedirection = .collect,
startNewProcessGroup: Bool = true,
loggingHandler: LoggingHandler? = .none
) {
self.arguments = arguments
self.environment = environment
self.workingDirectory = nil
self.outputRedirection = outputRedirection
self.startNewProcessGroup = startNewProcessGroup
self.loggingHandler = loggingHandler ?? AsyncProcess.loggingHandler
}
package convenience init(
args: String...,
environment: Environment = .current,
outputRedirection: OutputRedirection = .collect,
loggingHandler: LoggingHandler? = .none
) {
self.init(
arguments: args,
environment: environment,
outputRedirection: outputRedirection,
loggingHandler: loggingHandler
)
}
/// Returns the path of the the given program if found in the search paths.
///
/// The program can be executable name, relative path or absolute path.
package static func findExecutable(
_ program: String,
workingDirectory: AbsolutePath? = nil
) -> AbsolutePath? {
if let abs = try? AbsolutePath(validating: program) {
return abs
}
let cwdOpt = workingDirectory ?? localFileSystem.currentWorkingDirectory
// The program might be a multi-component relative path.
if let rel = try? RelativePath(validating: program), rel.components.count > 1 {
if let cwd = cwdOpt {
let abs = AbsolutePath(cwd, rel)
if localFileSystem.isExecutableFile(abs) {
return abs
}
}
return nil
}
// From here on out, the program is an executable name, i.e. it doesn't contain a "/"
let lookup: () -> AbsolutePath? = {
let envSearchPaths = getEnvSearchPaths(
pathString: Environment.current[.path],
currentWorkingDirectory: cwdOpt
)
let value = lookupExecutablePath(
filename: program,
currentWorkingDirectory: cwdOpt,
searchPaths: envSearchPaths
)
return value
}
// This should cover the most common cases, i.e. when the cache is most helpful.
if workingDirectory == localFileSystem.currentWorkingDirectory {
return AsyncProcess.validatedExecutablesMapLock.withLock {
if let value = AsyncProcess.validatedExecutablesMap[program] {
return value
}
let value = lookup()
AsyncProcess.validatedExecutablesMap[program] = value
return value
}
} else {
return lookup()
}
}
/// Launch the subprocess. Returns a WritableByteStream object that can be used to communicate to the process's
/// stdin. If needed, the stream can be closed using the close() API. Otherwise, the stream will be closed
/// automatically.
@discardableResult
package func launch() throws -> WritableByteStream {
precondition(
self.arguments.count > 0 && !self.arguments[0].isEmpty,
"Need at least one argument to launch the process."
)
self.launchedLock.withLock {
precondition(!self._launched, "It is not allowed to launch the same process object again.")
self._launched = true
}
// Print the arguments if we are verbose.
if let loggingHandler = self.loggingHandler {
loggingHandler(self.arguments.map { $0.spm_shellEscaped() }.joined(separator: " "))
}
// Look for executable.
let executable = self.arguments[0]
guard let executablePath = AsyncProcess.findExecutable(executable, workingDirectory: workingDirectory) else {
throw AsyncProcess.Error.missingExecutableProgram(program: executable)
}
#if os(Windows)
let process = Foundation.Process()
self._process = process
process.arguments = Array(self.arguments.dropFirst()) // Avoid including the executable URL twice.
if let workingDirectory {
process.currentDirectoryURL = workingDirectory.asURL
}
process.executableURL = executablePath.asURL
process.environment = .init(self.environment)
let stdinPipe = Pipe()
process.standardInput = stdinPipe
let group = DispatchGroup()
var stdout: [UInt8] = []
let stdoutLock = NSLock()
var stderr: [UInt8] = []
let stderrLock = NSLock()
if self.outputRedirection.redirectsOutput {
let stdoutPipe = Pipe()
let stderrPipe = Pipe()
group.enter()
stdoutPipe.fileHandleForReading.readabilityHandler = { (fh: FileHandle) in
let data = fh.availableData
if data.count == 0 {
stdoutPipe.fileHandleForReading.readabilityHandler = nil
group.leave()
} else {
let contents = data.withUnsafeBytes { [UInt8]($0) }
self.outputRedirection.outputClosures?.stdoutClosure(contents)
stdoutLock.withLock {
stdout += contents
}
}
}
group.enter()
stderrPipe.fileHandleForReading.readabilityHandler = { (fh: FileHandle) in
let data = fh.availableData
if data.count == 0 {
stderrPipe.fileHandleForReading.readabilityHandler = nil
group.leave()
} else {
let contents = data.withUnsafeBytes { [UInt8]($0) }
self.outputRedirection.outputClosures?.stderrClosure(contents)
stderrLock.withLock {
stderr += contents
}
}
}
process.standardOutput = stdoutPipe
process.standardError = stderrPipe
}
// first set state then start reading threads
let sync = DispatchGroup()
sync.enter()
self.stateLock.withLock {
self.state = .readingOutput(sync: sync)
}
group.notify(queue: self.completionQueue) {
self.stateLock.withLock {
self.state = .outputReady(stdout: .success(stdout), stderr: .success(stderr))
}
sync.leave()
}
try process.run()
return stdinPipe.fileHandleForWriting
#elseif(!canImport(Darwin) || os(macOS))
// Initialize the spawn attributes.
#if canImport(Darwin) || os(Android) || os(OpenBSD)
var attributes: posix_spawnattr_t? = nil
#else
var attributes = posix_spawnattr_t()
#endif
posix_spawnattr_init(&attributes)
defer { posix_spawnattr_destroy(&attributes) }
// Unmask all signals.
var noSignals = sigset_t()
sigemptyset(&noSignals)
posix_spawnattr_setsigmask(&attributes, &noSignals)
// Reset all signals to default behavior.
#if canImport(Darwin)
var mostSignals = sigset_t()
sigfillset(&mostSignals)
sigdelset(&mostSignals, SIGKILL)
sigdelset(&mostSignals, SIGSTOP)
posix_spawnattr_setsigdefault(&attributes, &mostSignals)
#else
// On Linux, this can only be used to reset signals that are legal to
// modify, so we have to take care about the set we use.
var mostSignals = sigset_t()
sigemptyset(&mostSignals)
for i in 1 ..< SIGSYS {
if i == SIGKILL || i == SIGSTOP {
continue
}
sigaddset(&mostSignals, i)
}
posix_spawnattr_setsigdefault(&attributes, &mostSignals)
#endif
// Set the attribute flags.
var flags = POSIX_SPAWN_SETSIGMASK | POSIX_SPAWN_SETSIGDEF
if self.startNewProcessGroup {
// Establish a separate process group.
flags |= POSIX_SPAWN_SETPGROUP
posix_spawnattr_setpgroup(&attributes, 0)
}
posix_spawnattr_setflags(&attributes, Int16(flags))
// Setup the file actions.
#if canImport(Darwin) || os(Android) || os(OpenBSD)
var fileActions: posix_spawn_file_actions_t? = nil
#else
var fileActions = posix_spawn_file_actions_t()
#endif
posix_spawn_file_actions_init(&fileActions)
defer { posix_spawn_file_actions_destroy(&fileActions) }
if let workingDirectory = workingDirectory?.pathString {
#if canImport(Darwin)
// The only way to set a workingDirectory is using an availability-gated initializer, so we don't need
// to handle the case where the posix_spawn_file_actions_addchdir_np method is unavailable. This check only
// exists here to make the compiler happy.
if #available(macOS 10.15, *) {
posix_spawn_file_actions_addchdir_np(&fileActions, workingDirectory)
}
#elseif os(Linux)
guard SPM_posix_spawn_file_actions_addchdir_np_supported() else {
throw AsyncProcess.Error.workingDirectoryNotSupported
}
SPM_posix_spawn_file_actions_addchdir_np(&fileActions, workingDirectory)
#else
throw AsyncProcess.Error.workingDirectoryNotSupported
#endif
}
var stdinPipe: [Int32] = [-1, -1]
try open(pipe: &stdinPipe)
guard let fp = fdopen(stdinPipe[1], "wb") else {
throw AsyncProcess.Error.stdinUnavailable
}
let stdinStream = try LocalFileOutputByteStream(filePointer: fp, closeOnDeinit: true)
// Dupe the read portion of the remote to 0.
posix_spawn_file_actions_adddup2(&fileActions, stdinPipe[0], 0)
// Close the other side's pipe since it was dupped to 0.
posix_spawn_file_actions_addclose(&fileActions, stdinPipe[0])
posix_spawn_file_actions_addclose(&fileActions, stdinPipe[1])
var outputPipe: [Int32] = [-1, -1]
var stderrPipe: [Int32] = [-1, -1]
if self.outputRedirection.redirectsOutput {
// Open the pipe.
try open(pipe: &outputPipe)
// Open the write end of the pipe.
posix_spawn_file_actions_adddup2(&fileActions, outputPipe[1], 1)
// Close the other ends of the pipe since they were dupped to 1.
posix_spawn_file_actions_addclose(&fileActions, outputPipe[0])
posix_spawn_file_actions_addclose(&fileActions, outputPipe[1])
if self.outputRedirection.redirectStderr {
// If merged was requested, send stderr to stdout.
posix_spawn_file_actions_adddup2(&fileActions, 1, 2)
} else {
// If no redirect was requested, open the pipe for stderr.
try open(pipe: &stderrPipe)
posix_spawn_file_actions_adddup2(&fileActions, stderrPipe[1], 2)
// Close the other ends of the pipe since they were dupped to 2.
posix_spawn_file_actions_addclose(&fileActions, stderrPipe[0])
posix_spawn_file_actions_addclose(&fileActions, stderrPipe[1])
}
} else {
posix_spawn_file_actions_adddup2(&fileActions, 1, 1)
posix_spawn_file_actions_adddup2(&fileActions, 2, 2)
}
var resolvedArgs = self.arguments
if workingDirectory != nil {
resolvedArgs[0] = executablePath.pathString
}
let argv = CStringArray(resolvedArgs)
let env = CStringArray(environment.map { "\($0.0)=\($0.1)" })
let rv = posix_spawnp(&self.processID, argv.cArray[0]!, &fileActions, &attributes, argv.cArray, env.cArray)
guard rv == 0 else {
throw SystemError.posix_spawn(rv, self.arguments)
}
do {
// Close the local read end of the input pipe.
try close(fd: stdinPipe[0])
let group = DispatchGroup()
if !self.outputRedirection.redirectsOutput {
// no stdout or stderr in this case
self.stateLock.withLock {
self.state = .outputReady(stdout: .success([]), stderr: .success([]))
}
} else {
var pending: Result<[UInt8], Swift.Error>?
let pendingLock = NSLock()
let outputClosures = self.outputRedirection.outputClosures
// Close the local write end of the output pipe.
try close(fd: outputPipe[1])
// Create a thread and start reading the output on it.
group.enter()
let stdoutThread = Thread { [weak self] in
if let readResult = self?.readOutput(
onFD: outputPipe[0],
outputClosure: outputClosures?.stdoutClosure
) {
pendingLock.withLock {
if let stderrResult = pending {
self?.stateLock.withLock {
self?.state = .outputReady(stdout: readResult, stderr: stderrResult)
}
} else {
pending = readResult
}
}
group.leave()
} else if let stderrResult = (pendingLock.withLock { pending }) {
// TODO: this is more of an error
self?.stateLock.withLock {
self?.state = .outputReady(stdout: .success([]), stderr: stderrResult)
}
group.leave()
}
}
// Only schedule a thread for stderr if no redirect was requested.
var stderrThread: Thread? = nil
if !self.outputRedirection.redirectStderr {
// Close the local write end of the stderr pipe.
try close(fd: stderrPipe[1])
// Create a thread and start reading the stderr output on it.
group.enter()
stderrThread = Thread { [weak self] in
if let readResult = self?.readOutput(
onFD: stderrPipe[0],
outputClosure: outputClosures?.stderrClosure
) {
pendingLock.withLock {
if let stdoutResult = pending {
self?.stateLock.withLock {
self?.state = .outputReady(stdout: stdoutResult, stderr: readResult)
}
} else {
pending = readResult
}
}
group.leave()
} else if let stdoutResult = (pendingLock.withLock { pending }) {
// TODO: this is more of an error
self?.stateLock.withLock {
self?.state = .outputReady(stdout: stdoutResult, stderr: .success([]))
}
group.leave()
}
}
} else {
pendingLock.withLock {
pending = .success([]) // no stderr in this case
}
}
// first set state then start reading threads
self.stateLock.withLock {
self.state = .readingOutput(sync: group)
}
stdoutThread.start()
stderrThread?.start()
}
return stdinStream
} catch {
throw AsyncProcessResult.Error.systemError(arguments: self.arguments, underlyingError: error)
}
#else
preconditionFailure("Process spawning is not available")
#endif // POSIX implementation
}
/// Executes the process I/O state machine, returning the result when finished.
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
@discardableResult
package func waitUntilExit() async throws -> AsyncProcessResult {
try await withCheckedThrowingContinuation { continuation in
DispatchQueue.processConcurrent.async {
self.waitUntilExit(continuation.resume(with:))
}
}
}
/// Blocks the calling process until the subprocess finishes execution.
@available(*, noasync)
@discardableResult
package func waitUntilExit() throws -> AsyncProcessResult {
let group = DispatchGroup()
group.enter()
var processResult: Result<AsyncProcessResult, Swift.Error>?
self.waitUntilExit { result in
processResult = result
group.leave()
}
group.wait()
return try processResult.unsafelyUnwrapped.get()
}
/// Executes the process I/O state machine, calling completion block when finished.
private func waitUntilExit(_ completion: @escaping (Result<AsyncProcessResult, Swift.Error>) -> Void) {
self.stateLock.lock()
switch self.state {
case .idle:
defer { self.stateLock.unlock() }
preconditionFailure("The process is not yet launched.")
case .complete(let result):
self.stateLock.unlock()
completion(.success(result))
case .failed(let error):
self.stateLock.unlock()
completion(.failure(error))
case .readingOutput(let sync):
self.stateLock.unlock()
sync.notify(queue: self.completionQueue) {
self.waitUntilExit(completion)
}
case .outputReady(let stdoutResult, let stderrResult):
defer { self.stateLock.unlock() }
// Wait until process finishes execution.
#if os(Windows)
precondition(self._process != nil, "The process is not yet launched.")
let p = self._process!
p.waitUntilExit()
let exitStatusCode = p.terminationStatus
let normalExit = p.terminationReason == .exit
#else
var exitStatusCode: Int32 = 0
var result = waitpid(processID, &exitStatusCode, 0)
while result == -1 && errno == EINTR {
result = waitpid(self.processID, &exitStatusCode, 0)
}
if result == -1 {
self.state = .failed(SystemError.waitpid(errno))
}
let normalExit = !WIFSIGNALED(result)
#endif
// Construct the result.
let executionResult = AsyncProcessResult(
arguments: arguments,
environment: environment,
exitStatusCode: exitStatusCode,
normal: normalExit,
output: stdoutResult,
stderrOutput: stderrResult
)
self.state = .complete(executionResult)
self.completionQueue.async {
self.waitUntilExit(completion)
}
}
}
#if !os(Windows)
/// Reads the given fd and returns its result.
///
/// Closes the fd before returning.
private func readOutput(onFD fd: Int32, outputClosure: OutputClosure?) -> Result<[UInt8], Swift.Error> {
// Read all of the data from the output pipe.
let N = 4096
var buf = [UInt8](repeating: 0, count: N + 1)
var out = [UInt8]()
var error: Swift.Error? = nil
loop: while true {
let n = read(fd, &buf, N)
switch n {
case -1:
if errno == EINTR {
continue
} else {
error = SystemError.read(errno)
break loop
}
case 0:
// Close the read end of the output pipe.
// We should avoid closing the read end of the pipe in case
// -1 because the child process may still have content to be
// flushed into the write end of the pipe. If the read end of the
// pipe is closed, then a write will cause a SIGPIPE signal to
// be generated for the calling process. If the calling process is
// ignoring this signal, then write fails with the error EPIPE.
close(fd)
break loop
default:
let data = buf[0 ..< n]
if let outputClosure {
outputClosure(Array(data))
} else {
out += data
}
}
}
// Construct the output result.
return error.map(Result.failure) ?? .success(out)
}
#endif
/// Send a signal to the process.
///
/// Note: This will signal all processes in the process group.
package func signal(_ signal: Int32) {
#if os(Windows)
if signal == SIGINT {
self._process?.interrupt()
} else {
self._process?.terminate()
}
#else
assert(self.launched, "The process is not yet launched.")
kill(self.startNewProcessGroup ? -self.processID : self.processID, signal)
#endif
}
}
extension AsyncProcess {
/// Execute a subprocess and returns the result when it finishes execution
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
package static func popen(
arguments: [String],
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) async throws -> AsyncProcessResult {
let process = AsyncProcess(
arguments: arguments,
environment: environment,
outputRedirection: .collect,
loggingHandler: loggingHandler
)
try process.launch()
return try await process.waitUntilExit()
}
/// Execute a subprocess and returns the result when it finishes execution
///
/// - Parameters:
/// - args: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
package static func popen(
args: String...,
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) async throws -> AsyncProcessResult {
try await self.popen(arguments: args, environment: environment, loggingHandler: loggingHandler)
}
/// Execute a subprocess and get its (UTF-8) output if it has a non zero exit.
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process output (stdout + stderr).
@discardableResult
package static func checkNonZeroExit(
arguments: [String],
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) async throws -> String {
let result = try await popen(
arguments: arguments,
environment: environment,
loggingHandler: loggingHandler
)
// Throw if there was a non zero termination.
guard result.exitStatus == .terminated(code: 0) else {
throw AsyncProcessResult.Error.nonZeroExit(result)
}
return try result.utf8Output()
}
/// Execute a subprocess and get its (UTF-8) output if it has a non zero exit.
///
/// - Parameters:
/// - args: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process output (stdout + stderr).
@discardableResult
package static func checkNonZeroExit(
args: String...,
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) async throws -> String {
try await self.checkNonZeroExit(
arguments: args,
environment: environment,
loggingHandler: loggingHandler
)
}
}
extension AsyncProcess {
/// Execute a subprocess and calls completion block when it finishes execution
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - queue: Queue to use for callbacks
/// - completion: A completion handler to return the process result
@available(*, noasync)
package static func popen(
arguments: [String],
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none,
queue: DispatchQueue? = nil,
completion: @escaping (Result<AsyncProcessResult, Swift.Error>) -> Void
) {
let completionQueue = queue ?? Self.sharedCompletionQueue
do {
let process = AsyncProcess(
arguments: arguments,
environment: environment,
outputRedirection: .collect,
loggingHandler: loggingHandler
)
process.completionQueue = completionQueue
try process.launch()
process.waitUntilExit(completion)
} catch {
completionQueue.async {
completion(.failure(error))
}
}
}
/// Execute a subprocess and block until it finishes execution
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process result.
@available(*, noasync)
@discardableResult
package static func popen(
arguments: [String],
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) throws -> AsyncProcessResult {
let process = AsyncProcess(
arguments: arguments,
environment: environment,
outputRedirection: .collect,
loggingHandler: loggingHandler
)
try process.launch()
return try process.waitUntilExit()
}
/// Execute a subprocess and block until it finishes execution
///
/// - Parameters:
/// - args: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process result.
@available(*, noasync)
@discardableResult
package static func popen(
args: String...,
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) throws -> AsyncProcessResult {
try AsyncProcess.popen(arguments: args, environment: environment, loggingHandler: loggingHandler)
}
/// Execute a subprocess and get its (UTF-8) output if it has a non zero exit.
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process output (stdout + stderr).
@available(*, noasync)
@discardableResult
package static func checkNonZeroExit(
arguments: [String],
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) throws -> String {
let process = AsyncProcess(
arguments: arguments,
environment: environment,
outputRedirection: .collect,
loggingHandler: loggingHandler
)
try process.launch()
let result = try process.waitUntilExit()
// Throw if there was a non zero termination.
guard result.exitStatus == .terminated(code: 0) else {
throw AsyncProcessResult.Error.nonZeroExit(result)
}
return try result.utf8Output()
}
/// Execute a subprocess and get its (UTF-8) output if it has a non zero exit.
///
/// - Parameters:
/// - arguments: The arguments for the subprocess.
/// - environment: The environment to pass to subprocess. By default the current process environment
/// will be inherited.
/// - loggingHandler: Handler for logging messages
/// - Returns: The process output (stdout + stderr).
@available(*, noasync)
@discardableResult
package static func checkNonZeroExit(
args: String...,
environment: Environment = .current,
loggingHandler: LoggingHandler? = .none
) throws -> String {
try self.checkNonZeroExit(arguments: args, environment: environment, loggingHandler: loggingHandler)
}
}
extension AsyncProcess: Hashable {
package func hash(into hasher: inout Hasher) {
hasher.combine(ObjectIdentifier(self))
}
package static func == (lhs: AsyncProcess, rhs: AsyncProcess) -> Bool {
ObjectIdentifier(lhs) == ObjectIdentifier(rhs)
}
}
// MARK: - Private helpers
#if !os(Windows)
#if canImport(Darwin)
private typealias swiftpm_posix_spawn_file_actions_t = posix_spawn_file_actions_t?
#else
private typealias swiftpm_posix_spawn_file_actions_t = posix_spawn_file_actions_t
#endif
private func WIFEXITED(_ status: Int32) -> Bool {
_WSTATUS(status) == 0
}
private func _WSTATUS(_ status: Int32) -> Int32 {
status & 0x7F
}
private func WIFSIGNALED(_ status: Int32) -> Bool {
(_WSTATUS(status) != 0) && (_WSTATUS(status) != 0x7F)
}
private func WEXITSTATUS(_ status: Int32) -> Int32 {
(status >> 8) & 0xFF
}
private func WTERMSIG(_ status: Int32) -> Int32 {
status & 0x7F
}
/// Open the given pipe.
private func open(pipe buffer: inout [Int32]) throws {
let rv = pipe(&buffer)
guard rv == 0 else {
throw SystemError.pipe(rv)
}
}
/// Close the given fd.
private func close(fd: Int32) throws {
func innerClose(_ fd: inout Int32) throws {
let rv = close(fd)
guard rv == 0 else {
throw SystemError.close(rv)
}
}
var innerFd = fd
try innerClose(&innerFd)
}
extension AsyncProcess.Error: CustomStringConvertible {
package var description: String {
switch self {
case .missingExecutableProgram(let program):
"could not find executable for '\(program)'"
case .workingDirectoryNotSupported:
"workingDirectory is not supported in this platform"
case .stdinUnavailable:
"could not open stdin on this platform"
}
}
}
extension AsyncProcess.Error: CustomNSError {
package var errorUserInfo: [String: Any] {
[NSLocalizedDescriptionKey: self.description]
}
}
#endif
extension AsyncProcessResult.Error: CustomStringConvertible {
package var description: String {
switch self {
case .systemError(let arguments, let underlyingError):
return "error while executing `\(arguments.joined(separator: " "))`: \(underlyingError)"
case .illegalUTF8Sequence:
return "illegal UTF8 sequence output"
case .nonZeroExit(let result):
var str = ""
switch result.exitStatus {
case .terminated(let code):
str.append(contentsOf: "terminated(\(code)): ")
#if os(Windows)
case .abnormal(let exception):
str.append(contentsOf: "abnormal(\(exception)): ")
#else
case .signalled(let signal):
str.append(contentsOf: "signalled(\(signal)): ")
#endif
}
// Strip sandbox information from arguments to keep things pretty.
var args = result.arguments
// This seems a little fragile.
if args.first == "sandbox-exec", args.count > 3 {
args = args.suffix(from: 3).map { $0 }
}
str.append(contentsOf: args.map { $0.spm_shellEscaped() }.joined(separator: " "))
// Include the output, if present.
if let output = try? result.utf8Output() + result.utf8stderrOutput() {
// We indent the output to keep it visually separated from everything else.
let indentation = " "
str.append(contentsOf: " output:\n")
str.append(contentsOf: indentation)
str.append(contentsOf: output.replacingOccurrences(of: "\n", with: "\n" + indentation))
if !output.hasSuffix("\n") {
str.append(contentsOf: "\n")
}
}
return str
}
}
}
#if os(Windows)
extension FileHandle: WritableByteStream {
package var position: Int {
Int(offsetInFile)
}
package func write(_ byte: UInt8) {
self.write(Data([byte]))
}
package func write(_ bytes: some Collection<UInt8>) {
self.write(Data(bytes))
}
package func flush() {
synchronizeFile()
}
}
#endif
|