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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2024 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 the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Foundation
#if canImport(Glibc)
import Glibc
#elseif canImport(Musl)
import Musl
#elseif os(Windows)
import CRT
import WinSDK
#elseif canImport(Bionic)
import Bionic
#else
import Darwin.C
#endif
// FIXME: Use Synchronization.Mutex when available
class Mutex<T>: @unchecked Sendable {
var lock: NSLock
var value: T
init(value: T) {
self.lock = .init()
self.value = value
}
func withLock<U>(_ body: (inout T) -> U) -> U {
self.lock.lock()
defer { self.lock.unlock() }
return body(&self.value)
}
}
// FIXME: This should come from Foundation
// FIXME: package (public required by users)
public struct Environment {
var storage: [EnvironmentKey: String]
}
// MARK: - Accessors
extension Environment {
package init() {
self.storage = .init()
}
package subscript(_ key: EnvironmentKey) -> String? {
_read { yield self.storage[key] }
_modify { yield &self.storage[key] }
}
}
// MARK: - Conversions between Dictionary<String, String>
extension Environment {
@_spi(SwiftPMInternal)
public init(_ dictionary: [String: String]) {
self.storage = .init()
let sorted = dictionary.sorted { $0.key < $1.key }
for (key, value) in sorted {
self.storage[.init(key)] = value
}
}
}
extension [String: String] {
@_spi(SwiftPMInternal)
public init(_ environment: Environment) {
self.init()
let sorted = environment.sorted { $0.key < $1.key }
for (key, value) in sorted {
self[key.rawValue] = value
}
}
}
// MARK: - Path Modification
extension Environment {
package mutating func prependPath(key: EnvironmentKey, value: String) {
guard !value.isEmpty else { return }
if let existing = self[key] {
self[key] = "\(value)\(Self.pathEntryDelimiter)\(existing)"
} else {
self[key] = value
}
}
package mutating func appendPath(key: EnvironmentKey, value: String) {
guard !value.isEmpty else { return }
if let existing = self[key] {
self[key] = "\(existing)\(Self.pathEntryDelimiter)\(value)"
} else {
self[key] = value
}
}
package static var pathEntryDelimiter: String {
#if os(Windows)
";"
#else
":"
#endif
}
}
// MARK: - Global Environment
extension Environment {
static let _cachedCurrent = Mutex<Self?>(value: nil)
/// Vends a copy of the current process's environment variables.
///
/// Mutations to the current process's global environment are not reflected
/// in the returned value.
public static var current: Self {
Self._cachedCurrent.withLock { cachedValue in
if let cachedValue = cachedValue {
return cachedValue
} else {
let current = Self(ProcessInfo.processInfo.environment)
cachedValue = current
return current
}
}
}
/// Temporary override environment variables
///
/// WARNING! This method is not thread-safe. POSIX environments are shared
/// between threads. This means that when this method is called simultaneously
/// from different threads, the environment will neither be setup nor restored
/// correctly.
package static func makeCustom<T>(
_ environment: Self,
body: () async throws -> T
) async throws -> T {
let current = Self.current
let state = environment.storage.keys.map { ($0, current[$0]) }
let restore = {
for (key, value) in state {
try Self.set(key: key, value: value)
}
}
let returnValue: T
do {
for (key, value) in environment {
try Self.set(key: key, value: value)
}
returnValue = try await body()
} catch {
try? restore()
throw error
}
try restore()
return returnValue
}
/// Temporary override environment variables
///
/// WARNING! This method is not thread-safe. POSIX environments are shared
/// between threads. This means that when this method is called simultaneously
/// from different threads, the environment will neither be setup nor restored
/// correctly.
package static func makeCustom<T>(
_ environment: Self,
body: () throws -> T
) throws -> T {
let current = Self.current
let state = environment.storage.keys.map { ($0, current[$0]) }
let restore = {
for (key, value) in state {
try Self.set(key: key, value: value)
}
}
let returnValue: T
do {
for (key, value) in environment {
try Self.set(key: key, value: value)
}
returnValue = try body()
} catch {
try? restore()
throw error
}
try restore()
return returnValue
}
struct UpdateEnvironmentError: CustomStringConvertible, Error {
var function: StaticString
var code: Int32
var description: String { "\(self.function) returned \(self.code)" }
}
/// Modifies the process's global environment.
///
/// > Important: This operation is _not_ concurrency safe.
package static func set(key: EnvironmentKey, value: String?) throws {
#if os(Windows)
func _SetEnvironmentVariableW(_ key: String, _ value: String?) -> Bool {
key.withCString(encodedAs: UTF16.self) { key in
if let value {
value.withCString(encodedAs: UTF16.self) { value in
SetEnvironmentVariableW(key, value)
}
} else {
SetEnvironmentVariableW(key, nil)
}
}
}
#endif
// Invalidate cached value after mutating the global environment.
// This is potentially overly safe because we may not need to invalidate
// the cache if the mutation fails. However this approach is easier to
// read and reason about.
defer { Self._cachedCurrent.withLock { $0 = nil } }
if let value = value {
#if os(Windows)
guard _SetEnvironmentVariableW(key.rawValue, value) else {
throw UpdateEnvironmentError(
function: "SetEnvironmentVariableW",
code: Int32(GetLastError())
)
}
guard _putenv("\(key)=\(value)") == 0 else {
throw UpdateEnvironmentError(
function: "_putenv",
code: Int32(GetLastError())
)
}
#else
guard setenv(key.rawValue, value, 1) == 0 else {
throw UpdateEnvironmentError(
function: "setenv",
code: errno
)
}
#endif
} else {
#if os(Windows)
guard _SetEnvironmentVariableW(key.rawValue, nil) else {
throw UpdateEnvironmentError(
function: "SetEnvironmentVariableW",
code: Int32(GetLastError())
)
}
guard _putenv("\(key)=") == 0 else {
throw UpdateEnvironmentError(
function: "_putenv",
code: Int32(GetLastError())
)
}
#else
guard unsetenv(key.rawValue) == 0 else {
throw UpdateEnvironmentError(
function: "unsetenv",
code: errno
)
}
#endif
}
}
}
// MARK: - Cachable Keys
extension Environment {
/// Returns a copy of `self` with known non-cacheable keys removed.
///
/// - Issue: rdar://107029374
package var cachable: Environment {
var cachable = Environment()
for (key, value) in self {
if !EnvironmentKey.nonCachable.contains(key) {
cachable[key] = value
}
}
return cachable
}
}
// MARK: - Protocol Conformances
extension Environment: Collection {
public struct Index: Comparable {
public static func < (lhs: Self, rhs: Self) -> Bool {
lhs.underlying < rhs.underlying
}
var underlying: Dictionary<EnvironmentKey, String>.Index
}
public typealias Element = (key: EnvironmentKey, value: String)
public var startIndex: Index {
Index(underlying: self.storage.startIndex)
}
public var endIndex: Index {
Index(underlying: self.storage.endIndex)
}
public subscript(index: Index) -> Element {
self.storage[index.underlying]
}
public func index(after index: Self.Index) -> Self.Index {
Index(underlying: self.storage.index(after: index.underlying))
}
}
extension Environment: CustomStringConvertible {
public var description: String {
let body = self
.sorted { $0.key < $1.key }
.map { "\"\($0.rawValue)=\($1)\"" }
.joined(separator: ", ")
return "[\(body)]"
}
}
extension Environment: Encodable {
public func encode(to encoder: any Encoder) throws {
try self.storage.encode(to: encoder)
}
}
extension Environment: Equatable {}
extension Environment: ExpressibleByDictionaryLiteral {
public typealias Key = EnvironmentKey
public typealias Value = String
public init(dictionaryLiteral elements: (Key, Value)...) {
self.storage = .init()
for (key, value) in elements {
self.storage[key] = value
}
}
}
extension Environment: Decodable {
public init(from decoder: any Decoder) throws {
self.storage = try .init(from: decoder)
}
}
extension Environment: Sendable {}
|