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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-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 struct TSCUtility.Version
import struct TSCBasic.StringError
import Basics
import PackageModel
extension Workspace {
/// A downloaded prebuilt managed by the workspace.
public struct ManagedPrebuilt {
/// The package identity
public let identity: PackageIdentity
/// The package version
public let version: Version
/// The name of the binary target the artifact corresponds to.
public let libraryName: String
/// The path to the extracted prebuilt artifacts
public let path: AbsolutePath
/// The path to the checked out source
public let checkoutPath: AbsolutePath?
/// The products in the library
public let products: [String]
/// The include path for the C modules
public let includePath: [RelativePath]?
/// The C modules that need their includes directory added to the include path
public let cModules: [String]
}
}
extension Workspace.ManagedPrebuilt: CustomStringConvertible {
public var description: String {
return "<ManagedArtifact: \(self.identity).\(self.libraryName)>"
}
}
// MARK: - ManagedArtifacts
extension Workspace {
/// A collection of managed artifacts which have been downloaded.
public final class ManagedPrebuilts {
/// A mapping from package identity, to target name, to ManagedArtifact.
private var prebuiltMap: [PackageIdentity: [String: ManagedPrebuilt]]
internal var prebuilts: AnyCollection<ManagedPrebuilt> {
AnyCollection(self.prebuiltMap.values.lazy.flatMap{ $0.values })
}
init() {
self.prebuiltMap = [:]
}
init(_ prebuilts: [ManagedPrebuilt]) throws {
let prebuiltsByPackagePath = Dictionary(grouping: prebuilts, by: { $0.identity })
self.prebuiltMap = try prebuiltsByPackagePath.mapValues{ prebuilt in
try Dictionary(prebuilt.map { ($0.libraryName, $0) }, uniquingKeysWith: { _, _ in
// should be unique
throw StringError("prebuilt already exists in managed prebuilts")
})
}
}
public subscript(packageIdentity packageIdentity: PackageIdentity, targetName targetName: String) -> ManagedPrebuilt? {
self.prebuiltMap[packageIdentity]?[targetName]
}
public func add(_ prebuilt: ManagedPrebuilt) {
self.prebuiltMap[prebuilt.identity, default: [:]][prebuilt.libraryName] = prebuilt
}
public func remove(packageIdentity: PackageIdentity, targetName: String) {
self.prebuiltMap[packageIdentity]?[targetName] = nil
}
}
}
extension Workspace.ManagedPrebuilts: Collection {
public var startIndex: AnyIndex {
self.prebuilts.startIndex
}
public var endIndex: AnyIndex {
self.prebuilts.endIndex
}
public subscript(index: AnyIndex) -> Workspace.ManagedPrebuilt {
self.prebuilts[index]
}
public func index(after index: AnyIndex) -> AnyIndex {
self.prebuilts.index(after: index)
}
}
extension Workspace.ManagedPrebuilts: CustomStringConvertible {
public var description: String {
"<ManagedArtifacts: \(Array(self.prebuilts))>"
}
}
|