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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 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
//
//===----------------------------------------------------------------------===//
public import SWBUtil
public import SWBCore
import Foundation
@PluginExtensionSystemActor public func initializePlugin(_ manager: PluginManager) {
let plugin = WindowsPlugin()
manager.register(WindowsDeveloperDirectoryExtension(), type: DeveloperDirectoryExtensionPoint.self)
manager.register(WindowsPlatformSpecsExtension(), type: SpecificationsExtensionPoint.self)
manager.register(WindowsEnvironmentExtension(plugin: plugin), type: EnvironmentExtensionPoint.self)
manager.register(WindowsPlatformExtension(plugin: plugin), type: PlatformInfoExtensionPoint.self)
manager.register(WindowsSDKRegistryExtension(), type: SDKRegistryExtensionPoint.self)
}
public final class WindowsPlugin: Sendable {
private let vsInstallations = AsyncSingleValueCache<[VSInstallation], any Error>()
private let latestVsInstallationDirectory = AsyncSingleValueCache<Path?, any Error>()
public func cachedVSInstallations() async throws -> [VSInstallation] {
try await vsInstallations.value {
// Always pass localFS because this will be cached, and executes a process on the host system so there's no reason to pass in any proxy.
try await VSInstallation.findInstallations(fs: localFS)
}
}
func cachedLatestVSInstallDirectory(fs: any FSProxy) async throws -> Path? {
try await latestVsInstallationDirectory.value {
let installations = try await cachedVSInstallations()
.sorted(by: { $0.installationVersion > $1.installationVersion })
if let latest = installations.first {
let msvcDir = latest.installationPath.join("VC").join("Tools").join("MSVC")
if fs.exists(msvcDir) {
let versions = try fs.listdir(msvcDir).map { try Version($0) }.sorted { $0 > $1 }
if let latestVersion = versions.first {
return msvcDir.join(latestVersion.description)
}
}
}
return nil
}
}
}
struct WindowsDeveloperDirectoryExtension: DeveloperDirectoryExtension {
func fallbackDeveloperDirectory(hostOperatingSystem: OperatingSystem) async throws -> Core.DeveloperPath? {
guard hostOperatingSystem == .windows else {
return nil
}
guard let userProgramFiles = URL.userProgramFiles, let swiftPath = try? userProgramFiles.appending(component: "Swift").filePath else {
throw StubError.error("Could not determine path to user program files")
}
return .swiftToolchain(swiftPath, xcodeDeveloperPath: nil)
}
}
struct WindowsPlatformSpecsExtension: SpecificationsExtension {
func specificationFiles(resourceSearchPaths: [Path]) -> Bundle? {
findResourceBundle(nameWhenInstalledInToolchain: "SwiftBuild_SWBWindowsPlatform", resourceSearchPaths: resourceSearchPaths, defaultBundle: Bundle.module)
}
}
@_spi(Testing) public struct WindowsEnvironmentExtension: EnvironmentExtension {
public let plugin: WindowsPlugin
@_spi(Testing) public func additionalEnvironmentVariables(context: any EnvironmentExtensionAdditionalEnvironmentVariablesContext) async throws -> [String: String] {
if context.hostOperatingSystem == .windows {
let vcToolsInstallDir = "VCToolsInstallDir"
guard let dir = try? await plugin.cachedLatestVSInstallDirectory(fs: context.fs) else {
return [:]
}
return [vcToolsInstallDir: dir.str]
} else {
return [:]
}
}
}
struct WindowsPlatformExtension: PlatformInfoExtension {
let plugin: WindowsPlugin
func additionalPlatforms(context: any PlatformInfoExtensionAdditionalPlatformsContext) throws -> [(path: Path, data: [String: PropertyListItem])] {
let operatingSystem = context.hostOperatingSystem
guard operatingSystem == .windows else {
return []
}
let platformsPath = context.developerPath.path.join("Platforms")
return try context.fs.listdir(platformsPath).compactMap { version in
let versionedPlatformsPath = platformsPath.join(version)
guard context.fs.isDirectory(versionedPlatformsPath) else {
return nil
}
let windowsInfoPlistPath = versionedPlatformsPath.join("Windows.platform").join("Info.plist")
guard context.fs.exists(windowsInfoPlistPath) else {
return nil
}
let windowsInfoPlist = try PropertyList.fromPath(windowsInfoPlistPath, fs: context.fs)
guard case let .plDict(dict) = windowsInfoPlist else {
throw StubError.error("Unexpected top-level property list type in \(windowsInfoPlistPath.str) (expected dictionary)")
}
return (windowsInfoPlistPath.dirname, dict.merging([
"Type": .plString("Platform"),
"Name": .plString("windows"),
"Identifier": .plString("windows"),
"Description": .plString("Windows"),
"FamilyName": .plString("Windows"),
"FamilyIdentifier": .plString("windows"),
"IsDeploymentPlatform": .plString("YES"),
"Version": .plString(version),
]) { old, new in new })
}
}
public func adjustPlatformSDKSearchPaths(platformName: String, platformPath: Path, sdkSearchPaths: inout [Path]) {
// Block the default registration mechanism from picking up the incomplete SDKSettings.plist on disk.
// The WindowsSDKRegistryExtension will handle discovery and registration of the SDK.
if platformName == "windows" {
sdkSearchPaths = []
}
}
public func additionalPlatformExecutableSearchPaths(platformName: String, platformPath: Path, fs: any FSProxy) async -> [Path] {
guard let dir = try? await plugin.cachedLatestVSInstallDirectory(fs: fs) else {
return []
}
// Note: Do not add in the target directories under the host as these will end up in the global search paths, i.e. PATH
// Let the commandlinetool discovery add in the target subdirectory based on the targeted architecture.
switch Architecture.hostStringValue {
case "aarch64":
return [dir.join("bin/Hostarm64")]
case "x86_64":
return [dir.join("bin/Hostx64")]
default:
return []
}
}
}
struct WindowsSDKRegistryExtension: SDKRegistryExtension {
func additionalSDKs(context: any SDKRegistryExtensionAdditionalSDKsContext) async throws -> [(path: Path, platform: SWBCore.Platform?, data: [String: PropertyListItem])] {
guard let windowsPlatform = context.platformRegistry.lookup(name: "windows") else {
return []
}
let windowsSDKSettingsPlistPath = windowsPlatform.path.join("Developer").join("SDKs").join("Windows.sdk").join("SDKSettings.plist")
let windowsSDKSettingsPlist = try PropertyList.fromPath(windowsSDKSettingsPlistPath, fs: context.fs)
guard case let .plDict(dict) = windowsSDKSettingsPlist else {
throw StubError.error("Unexpected top-level property list type in \(windowsSDKSettingsPlistPath.str) (expected dictionary)")
}
let defaultProperties: [String: PropertyListItem] = [
"GCC_GENERATE_DEBUGGING_SYMBOLS": .plString("NO"),
"LD_DEPENDENCY_INFO_FILE": .plString(""),
"GENERATE_TEXT_BASED_STUBS": "NO",
"GENERATE_INTERMEDIATE_TEXT_BASED_STUBS": "NO",
"LIBRARY_SEARCH_PATHS": "$(inherited) $(SDKROOT)/usr/lib/swift/windows/$(CURRENT_ARCH)",
"OTHER_SWIFT_FLAGS": "$(inherited) -libc $(DEFAULT_USE_RUNTIME)",
"DEFAULT_USE_RUNTIME": "MD",
]
return try [
(windowsSDKSettingsPlistPath.dirname, windowsPlatform, dict.merging([
"Type": .plString("SDK"),
"Version": .plString(Version(ProcessInfo.processInfo.operatingSystemVersion).zeroTrimmed.description),
"CanonicalName": .plString("windows"),
"IsBaseSDK": .plBool(true),
"DefaultProperties": .plDict([
"PLATFORM_NAME": .plString("windows"),
].merging(defaultProperties, uniquingKeysWith: { _, new in new })),
"SupportedTargets": .plDict([
"windows": .plDict([
"Archs": .plArray([
.plString("aarch64"),
.plString("arm64ec"),
.plString("armv7"),
.plString("i686"),
.plString("x86_64"),
]),
"LLVMTargetTripleEnvironment": .plString("msvc"),
"LLVMTargetTripleSys": .plString("windows"),
"LLVMTargetTripleVendor": .plString("unknown"),
])
]),
]) { old, new in new })
]
}
}
|