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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2021 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 Basics
public class Product {
/// The name of the product.
public let name: String
/// Fully qualified name for this product: package ID + name of this product
public let identity: String
/// The type of product to create.
public let type: ProductType
/// The list of targets to combine to form the product.
///
/// This is never empty, and is only the targets which are required to be in
/// the product, but not necessarily their transitive dependencies.
public var modules: [Module]
/// The path to test entry point file.
public let testEntryPointPath: AbsolutePath?
/// The suffix for REPL product name.
public static let replProductSuffix: String = "__REPL"
public init(package: PackageIdentity, name: String, type: ProductType, modules: [Module], testEntryPointPath: AbsolutePath? = nil) throws {
guard !modules.isEmpty else {
throw InternalError("Targets cannot be empty")
}
if type == .executable {
guard modules.executables.count == 1 else {
throw InternalError("Executable products should have exactly one executable target.")
}
}
if testEntryPointPath != nil {
guard type == .test else {
throw InternalError("Test entry point path should only be set on test products")
}
}
self.name = name
self.type = type
self.identity = package.description.lowercased() + "_" + name
self.modules = modules
self.testEntryPointPath = testEntryPointPath
}
}
extension Product: Hashable {
public func hash(into hasher: inout Hasher) {
hasher.combine(ObjectIdentifier(self))
}
public static func == (lhs: Product, rhs: Product) -> Bool {
ObjectIdentifier(lhs) == ObjectIdentifier(rhs)
}
}
/// The type of product.
public enum ProductType: Equatable, Hashable, Sendable {
/// The type of library.
public enum LibraryType: String, Codable, Sendable {
/// Static library.
case `static`
/// Dynamic library.
case `dynamic`
/// The type of library is unspecified and should be decided by package manager.
case automatic
}
/// A library product.
case library(LibraryType)
/// An executable product.
case executable
/// An executable code snippet.
case snippet
/// An plugin product.
case plugin
/// A test product.
case test
/// A macro product.
case `macro`
public var isLibrary: Bool {
guard case .library = self else { return false }
return true
}
}
/// The products requested of a package.
///
/// Any product which matches the filter will be used for dependency resolution, whereas unrequested products will be ignored.
///
/// Requested products need not actually exist in the package. Under certain circumstances, the resolver may request names whose package of origin are unknown. The intended package will recognize and fulfill the request; packages that do not know what it is will simply ignore it.
public enum ProductFilter: Equatable, Hashable, Sendable {
/// All products, targets, and tests are requested.
///
/// This is used for root packages.
case everything
/// A set of specific products requested by one or more client packages.
case specific(Set<String>)
/// No products, targets, or tests are requested.
public static var nothing: ProductFilter { .specific([]) }
public func union(_ other: ProductFilter) -> ProductFilter {
switch self {
case .everything:
return .everything
case .specific(let set):
switch other {
case .everything:
return .everything
case .specific(let otherSet):
return .specific(set.union(otherSet))
}
}
}
public mutating func formUnion(_ other: ProductFilter) {
self = self.union(other)
}
public func contains(_ product: String) -> Bool {
switch self {
case .everything:
return true
case .specific(let set):
return set.contains(product)
}
}
public func merge(_ other: ProductFilter) -> ProductFilter {
switch (self, other) {
case (.everything, _):
return .everything
case (_, .everything):
return .everything
case (.specific(let mine), .specific(let other)):
return .specific(mine.union(other))
}
}
}
// MARK: - CustomStringConvertible
extension Product: CustomStringConvertible {
public var description: String {
return "<Product: \(name)>"
}
}
extension ProductType: CustomStringConvertible {
public var description: String {
switch self {
case .executable:
return "executable"
case .snippet:
return "snippet"
case .test:
return "test"
case .library(let type):
switch type {
case .automatic:
return "library"
case .dynamic:
return "dynamic library"
case .static:
return "static library"
}
case .plugin:
return "plugin"
case .macro:
return "macro"
}
}
}
extension ProductFilter: CustomStringConvertible {
public var description: String {
switch self {
case .everything:
return "[everything]"
case .specific(let set):
return "[\(set.sorted().joined(separator: ", "))]"
}
}
}
// MARK: - Codable
extension ProductType: Codable {
private enum CodingKeys: String, CodingKey {
case library, executable, snippet, plugin, test, `macro`
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case let .library(a1):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .library)
try unkeyedContainer.encode(a1)
case .executable:
try container.encodeNil(forKey: .executable)
case .snippet:
try container.encodeNil(forKey: .snippet)
case .plugin:
try container.encodeNil(forKey: .plugin)
case .test:
try container.encodeNil(forKey: .test)
case .macro:
try container.encodeNil(forKey: .macro)
}
}
public init(from decoder: Decoder) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
guard let key = values.allKeys.first(where: values.contains) else {
throw DecodingError.dataCorrupted(.init(codingPath: decoder.codingPath, debugDescription: "Did not find a matching key"))
}
switch key {
case .library:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let a1 = try unkeyedValues.decode(ProductType.LibraryType.self)
self = .library(a1)
case .test:
self = .test
case .executable:
self = .executable
case .snippet:
self = .snippet
case .plugin:
self = .plugin
case .macro:
self = .macro
}
}
}
extension ProductFilter: Codable {
public func encode(to encoder: Encoder) throws {
let optionalSet: Set<String>?
switch self {
case .everything:
optionalSet = nil
case .specific(let set):
optionalSet = set
}
var container = encoder.singleValueContainer()
try container.encode(optionalSet?.sorted())
}
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if container.decodeNil() {
self = .everything
} else {
self = .specific(Set(try container.decode([String].self)))
}
}
}
|