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
|
//===--------------- InterModuleDependencyOracle.swift --------------------===//
//
// 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 https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import protocol TSCBasic.FileSystem
import struct TSCBasic.AbsolutePath
import struct Foundation.Data
import var TSCBasic.localFileSystem
import Dispatch
// An inter-module dependency oracle, responsible for responding to queries about
// dependencies of a given module, caching already-discovered dependencies along the way.
//
// The oracle is currently implemented as a simple store of ModuleInfo nodes.
// It is the responsibility of the Driver to populate and update
// the store. It does so by invoking individual -scan-dependencies jobs and
// accumulating resulting dependency graphs into the oracle's store.
//
// The design of the oracle's public API is meant to abstract that away,
// allowing us to replace the underlying implementation in the future, with
// a persistent-across-targets dependency scanning library.
//
/// An abstraction of a cache and query-engine of inter-module dependencies
public class InterModuleDependencyOracle {
/// Allow external clients to instantiate the oracle
/// - Parameter scannerRequiresPlaceholderModules: Configures this driver's/oracle's scanner invocations to
/// specify external module dependencies to be treated as placeholders. This is required in contexts
/// where the dependency scanning action is invoked for a module which depends on another module
/// that is part of the same build but has not yet been built. Treating it as a placeholder
/// will allow the scanning action to not fail when it fails to detect this dependency on
/// the filesystem. For example, SwiftPM plans all targets belonging to a package before *any* of them
/// are built. So this setting is meant to be used there. In contexts where planning a module
/// necessarily means all of its dependencies have already been built this is not necessary.
public init(scannerRequiresPlaceholderModules: Bool = false) {
self.scannerRequiresPlaceholderModules = scannerRequiresPlaceholderModules
}
@_spi(Testing) public func getDependencies(workingDirectory: AbsolutePath,
moduleAliases: [String: String]? = nil,
commandLine: [String],
diagnostics: inout [ScannerDiagnosticPayload])
throws -> InterModuleDependencyGraph {
precondition(hasScannerInstance)
return try swiftScanLibInstance!.scanDependencies(workingDirectory: workingDirectory,
moduleAliases: moduleAliases,
invocationCommand: commandLine,
diagnostics: &diagnostics)
}
@_spi(Testing) public func getBatchDependencies(workingDirectory: AbsolutePath,
moduleAliases: [String: String]? = nil,
commandLine: [String],
batchInfos: [BatchScanModuleInfo],
diagnostics: inout [ScannerDiagnosticPayload])
throws -> [ModuleDependencyId: [InterModuleDependencyGraph]] {
precondition(hasScannerInstance)
return try swiftScanLibInstance!.batchScanDependencies(workingDirectory: workingDirectory,
moduleAliases: moduleAliases,
invocationCommand: commandLine,
batchInfos: batchInfos,
diagnostics: &diagnostics)
}
@_spi(Testing) public func getImports(workingDirectory: AbsolutePath,
moduleAliases: [String: String]? = nil,
commandLine: [String],
diagnostics: inout [ScannerDiagnosticPayload])
throws -> InterModuleDependencyImports {
precondition(hasScannerInstance)
return try swiftScanLibInstance!.preScanImports(workingDirectory: workingDirectory,
moduleAliases: moduleAliases,
invocationCommand: commandLine,
diagnostics: &diagnostics)
}
/// Given a specified toolchain path, locate and instantiate an instance of the SwiftScan library
public func verifyOrCreateScannerInstance(fileSystem: FileSystem,
swiftScanLibPath: AbsolutePath) throws {
return try queue.sync {
if swiftScanLibInstance == nil {
swiftScanLibInstance = try SwiftScan(dylib: swiftScanLibPath)
} else {
guard swiftScanLibInstance!.path == swiftScanLibPath else {
throw DependencyScanningError
.scanningLibraryInvocationMismatch(swiftScanLibInstance!.path, swiftScanLibPath)
}
}
}
}
@_spi(Testing) public func serializeScannerCache(to path: AbsolutePath) {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to serialize scanner cache with no scanner instance.")
}
if swiftScan.canLoadStoreScannerCache {
swiftScan.serializeScannerCache(to: path)
}
}
@_spi(Testing) public func loadScannerCache(from path: AbsolutePath) -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to load scanner cache with no scanner instance.")
}
if swiftScan.canLoadStoreScannerCache {
return swiftScan.loadScannerCache(from: path)
}
return false
}
@_spi(Testing) public func resetScannerCache() {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to reset scanner cache with no scanner instance.")
}
if swiftScan.canLoadStoreScannerCache {
swiftScan.resetScannerCache()
}
}
@_spi(Testing) public func supportsBinaryFrameworkDependencies() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.hasBinarySwiftModuleIsFramework
}
@_spi(Testing) public func supportsBinaryModuleHeaderModuleDependencies() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.hasBinarySwiftModuleHeaderModuleDependencies
}
@_spi(Testing) public func supportsScannerDiagnostics() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.supportsScannerDiagnostics
}
@_spi(Testing) public func supportsBinaryModuleHeaderDependencies() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.supportsBinaryModuleHeaderDependencies || swiftScan.supportsBinaryModuleHeaderDependency
}
@_spi(Testing) public func supportsBridgingHeaderPCHCommand() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.supportsBridgingHeaderPCHCommand
}
@_spi(Testing) public func supportsPerScanDiagnostics() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.canQueryPerScanDiagnostics
}
@_spi(Testing) public func supportsDiagnosticSourceLocations() throws -> Bool {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to query supported scanner API with no scanner instance.")
}
return swiftScan.supportsDiagnosticSourceLocations
}
@_spi(Testing) public func getScannerDiagnostics() throws -> [ScannerDiagnosticPayload]? {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to reset scanner cache with no scanner instance.")
}
guard swiftScan.supportsScannerDiagnostics else {
return nil
}
let diags = try swiftScan.queryScannerDiagnostics()
try swiftScan.resetScannerDiagnostics()
return diags.isEmpty ? nil : diags
}
public func getOrCreateCAS(pluginPath: AbsolutePath?, onDiskPath: AbsolutePath?, pluginOptions: [(String, String)]) throws -> SwiftScanCAS {
guard let swiftScan = swiftScanLibInstance else {
fatalError("Attempting to reset scanner cache with no scanner instance.")
}
// Use synchronized queue to avoid creating multiple OnDisk CAS at the same location as that will leave to synchronization issues.
return try queue.sync {
let casOpt = CASConfig(onDiskPath: onDiskPath, pluginPath: pluginPath, pluginOptions: pluginOptions)
if let cas = createdCASMap[casOpt] {
return cas
}
let cas = try swiftScan.createCAS(pluginPath: pluginPath?.pathString, onDiskPath: onDiskPath?.pathString, pluginOptions: pluginOptions)
createdCASMap[casOpt] = cas
return cas
}
}
private var hasScannerInstance: Bool { self.swiftScanLibInstance != nil }
/// Queue to sunchronize accesses to the scanner
internal let queue = DispatchQueue(label: "org.swift.swift-driver.swift-scan")
/// A reference to an instance of the compiler's libSwiftScan shared library
private var swiftScanLibInstance: SwiftScan? = nil
internal let scannerRequiresPlaceholderModules: Bool
internal struct CASConfig: Hashable, Equatable {
static func == (lhs: InterModuleDependencyOracle.CASConfig, rhs: InterModuleDependencyOracle.CASConfig) -> Bool {
return lhs.onDiskPath == rhs.onDiskPath &&
lhs.pluginPath == rhs.pluginPath &&
lhs.pluginOptions.elementsEqual(rhs.pluginOptions, by: ==)
}
func hash(into hasher: inout Hasher) {
hasher.combine(onDiskPath)
hasher.combine(pluginPath)
for opt in pluginOptions {
hasher.combine(opt.0)
hasher.combine(opt.1)
}
}
let onDiskPath: AbsolutePath?
let pluginPath: AbsolutePath?
let pluginOptions: [(String, String)]
}
/// Storing the CAS created via CASConfig.
internal var createdCASMap: [CASConfig: SwiftScanCAS] = [:]
}
|