-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathCommandLineAdditions.swift
More file actions
121 lines (119 loc) · 4.54 KB
/
CommandLineAdditions.swift
File metadata and controls
121 lines (119 loc) · 4.54 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
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 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 Swift project authors
//
private import _TestingInternals
extension CommandLine {
/// The path to the current process' executable.
static var executablePath: String {
get throws {
#if SWT_TARGET_OS_APPLE
var result: String?
#if DEBUG
var bufferCount = UInt32(1) // force looping
#else
var bufferCount = UInt32(PATH_MAX)
#endif
while result == nil {
withUnsafeTemporaryAllocation(of: CChar.self, capacity: Int(bufferCount)) { buffer in
// _NSGetExecutablePath returns 0 on success and -1 if bufferCount is
// too small. If that occurs, we'll return nil here and loop with the
// new value of bufferCount.
if 0 == _NSGetExecutablePath(buffer.baseAddress, &bufferCount) {
result = String(cString: buffer.baseAddress!)
}
}
}
return result!
#elseif os(Linux) || os(Android)
var result: String?
#if DEBUG
var bufferCount = Int(1) // force looping
#else
var bufferCount = Int(PATH_MAX)
#endif
while result == nil {
try withUnsafeTemporaryAllocation(of: CChar.self, capacity: bufferCount) { buffer in
let readCount = readlink("/proc/self/exe", buffer.baseAddress!, buffer.count)
guard readCount >= 0 else {
throw CError(rawValue: swt_errno())
}
if readCount < buffer.count {
buffer[readCount] = 0 // NUL-terminate the string.
result = String(cString: buffer.baseAddress!)
} else {
bufferCount += Int(PATH_MAX) // add more space and try again
}
}
}
return result!
#elseif os(FreeBSD)
var mib = [CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1]
return try mib.withUnsafeMutableBufferPointer { mib in
var bufferCount = 0
guard 0 == sysctl(mib.baseAddress!, .init(mib.count), nil, &bufferCount, nil, 0) else {
throw CError(rawValue: swt_errno())
}
return try withUnsafeTemporaryAllocation(of: CChar.self, capacity: bufferCount) { buffer in
guard 0 == sysctl(mib.baseAddress!, .init(mib.count), buffer.baseAddress!, &bufferCount, nil, 0) else {
throw CError(rawValue: swt_errno())
}
return String(cString: buffer.baseAddress!)
}
}
#elseif os(OpenBSD)
// OpenBSD does not have API to get a path to the running executable. Use
// arguments[0]. We do a basic sniff test for a path-like string, and
// prepend the early CWD if it looks like a relative path, but otherwise
// return argv[0] verbatim.
guard var argv0 = arguments.first, argv0.contains("/") else {
throw CError(rawValue: ENOEXEC)
}
if argv0.first != "/",
let earlyCWD = swt_getEarlyCWD().flatMap(String.init(validatingCString:)),
!earlyCWD.isEmpty {
argv0 = "\(earlyCWD)/\(argv0)"
}
return argv0
#elseif os(Windows)
var result: String?
#if DEBUG
var bufferCount = Int(1) // force looping
#else
var bufferCount = Int(MAX_PATH)
#endif
while result == nil {
try withUnsafeTemporaryAllocation(of: CWideChar.self, capacity: bufferCount) { buffer in
SetLastError(DWORD(ERROR_SUCCESS))
_ = GetModuleFileNameW(nil, buffer.baseAddress!, DWORD(buffer.count))
switch GetLastError() {
case DWORD(ERROR_SUCCESS):
result = String.decodeCString(buffer.baseAddress!, as: UTF16.self)?.result
if result == nil {
throw Win32Error(rawValue: DWORD(ERROR_ILLEGAL_CHARACTER))
}
case DWORD(ERROR_INSUFFICIENT_BUFFER):
bufferCount += Int(MAX_PATH)
case let errorCode:
throw Win32Error(rawValue: errorCode)
}
}
}
return result!
#elseif os(WASI) || os(Emscripten)
// WASI does not really have the concept of a file system path to the main
// executable, so simply return the first argument--presumably the program
// name, but as you know this is not guaranteed by the C standard!
return arguments[0]
#else
#warning("Platform-specific implementation missing: executable path unavailable")
throw SystemError(description: "The executable path of the current process could not be determined.")
#endif
}
}
}