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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
/// The description of an individual module.
public struct TargetDescription: Hashable, Encodable, Sendable {
@available(*, deprecated, renamed: "TargetKind")
public typealias TargetType = TargetKind
/// The target kind.
public enum TargetKind: String, Hashable, Encodable, Sendable {
case regular
case executable
case test
case system
case binary
case plugin
case `macro`
}
/// Represents a target's dependency on another entity.
public enum Dependency: Hashable, Sendable {
case target(name: String, condition: PackageConditionDescription?)
case product(name: String, package: String?, moduleAliases: [String: String]? = nil, condition: PackageConditionDescription?)
case byName(name: String, condition: PackageConditionDescription?)
public static func target(name: String) -> Dependency {
return .target(name: name, condition: nil)
}
public static func product(name: String, package: String? = nil, moduleAliases: [String: String]? = nil) -> Dependency {
return .product(name: name, package: package, moduleAliases: moduleAliases, condition: nil)
}
}
public struct Resource: Encodable, Hashable, Sendable {
public enum Rule: Encodable, Hashable, Sendable {
case process(localization: Localization?)
case copy
case embedInCode
}
public enum Localization: String, Encodable, Sendable {
case `default`
case base
}
/// The rule for the resource.
public let rule: Rule
/// The path of the resource.
public let path: String
public init(rule: Rule, path: String) {
self.rule = rule
self.path = path
}
}
/// The name of the target.
public let name: String
/// If true, access to package declarations from other targets is allowed.
/// APIs is not allowed from outside.
public let packageAccess: Bool
/// The custom path of the target.
public let path: String?
/// The url of the binary target artifact.
public let url: String?
/// The custom sources of the target.
public let sources: [String]?
/// The explicitly declared resources of the target.
public let resources: [Resource]
/// The exclude patterns.
public let exclude: [String]
// FIXME: Kill this.
//
/// Returns true if the target type is test.
public var isTest: Bool {
return type == .test
}
/// The declared target dependencies.
public package(set) var dependencies: [Dependency]
/// The custom public headers path.
public let publicHeadersPath: String?
/// The type of target.
public let type: TargetKind
/// The pkg-config name of a system library target.
public let pkgConfig: String?
/// The providers of a system library target.
public let providers: [SystemPackageProviderDescription]?
/// The declared capability for a package plugin target.
public let pluginCapability: PluginCapability?
/// Represents the declared capability of a package plugin.
public enum PluginCapability: Hashable, Sendable {
case buildTool
case command(intent: PluginCommandIntent, permissions: [PluginPermission])
}
public enum PluginCommandIntent: Hashable, Codable, Sendable {
case documentationGeneration
case sourceCodeFormatting
case custom(verb: String, description: String)
}
public enum PluginNetworkPermissionScope: Hashable, Codable, Sendable {
case none
case local(ports: [Int])
case all(ports: [Int])
case docker
case unixDomainSocket
public init?(_ scopeString: String, ports: [Int]) {
switch scopeString {
case "none": self = .none
case "local": self = .local(ports: ports)
case "all": self = .all(ports: ports)
case "docker": self = .docker
case "unix-socket": self = .unixDomainSocket
default: return nil
}
}
}
public enum PluginPermission: Hashable, Codable, Sendable {
case allowNetworkConnections(scope: PluginNetworkPermissionScope, reason: String)
case writeToPackageDirectory(reason: String)
}
/// The target-specific build settings declared in this target.
public let settings: [TargetBuildSettingDescription.Setting]
/// The binary target checksum.
public let checksum: String?
/// The usages of package plugins by the target.
public let pluginUsages: [PluginUsage]?
/// Represents a target's usage of a plugin target or product.
public enum PluginUsage: Hashable, Sendable {
case plugin(name: String, package: String?)
}
public init(
name: String,
dependencies: [Dependency] = [],
path: String? = nil,
url: String? = nil,
exclude: [String] = [],
sources: [String]? = nil,
resources: [Resource] = [],
publicHeadersPath: String? = nil,
type: TargetKind = .regular,
packageAccess: Bool = true,
pkgConfig: String? = nil,
providers: [SystemPackageProviderDescription]? = nil,
pluginCapability: PluginCapability? = nil,
settings: [TargetBuildSettingDescription.Setting] = [],
checksum: String? = nil,
pluginUsages: [PluginUsage]? = nil
) throws {
switch type {
case .regular, .executable, .test:
if url != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "url") }
if pkgConfig != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pkgConfig") }
if providers != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "providers") }
if pluginCapability != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginCapability") }
if checksum != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "checksum") }
case .system:
if !dependencies.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "dependencies") }
if !exclude.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "exclude") }
if sources != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "sources") }
if !resources.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "resources") }
if publicHeadersPath != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "publicHeadersPath") }
if pluginCapability != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginCapability") }
if !settings.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "settings") }
if checksum != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "checksum") }
if pluginUsages != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginUsages") }
case .binary:
if path == nil && url == nil { throw Error.binaryTargetRequiresEitherPathOrURL(targetName: name) }
if !dependencies.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "dependencies") }
if !exclude.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "exclude") }
if sources != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "sources") }
if !resources.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "resources") }
if publicHeadersPath != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "publicHeadersPath") }
if pkgConfig != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pkgConfig") }
if providers != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "providers") }
if pluginCapability != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginCapability") }
if !settings.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "settings") }
if pluginUsages != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginUsages") }
case .plugin:
if url != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "url") }
if !resources.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "resources") }
if publicHeadersPath != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "publicHeadersPath") }
if pkgConfig != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pkgConfig") }
if providers != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "providers") }
if pluginCapability == nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginCapability") }
if !settings.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "settings") }
if pluginUsages != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginUsages") }
case .macro:
if url != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "url") }
if !resources.isEmpty { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "resources") }
if publicHeadersPath != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "publicHeadersPath") }
if pkgConfig != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pkgConfig") }
if providers != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "providers") }
if pluginCapability != nil { throw Error.disallowedPropertyInTarget(targetName: name, propertyName: "pluginCapability") }
}
self.name = name
self.dependencies = dependencies
self.path = path
self.url = url
self.publicHeadersPath = publicHeadersPath
self.sources = sources
self.exclude = exclude
self.resources = resources
self.type = type
self.packageAccess = packageAccess
self.pkgConfig = pkgConfig
self.providers = providers
self.pluginCapability = pluginCapability
self.settings = settings
self.checksum = checksum
self.pluginUsages = pluginUsages
}
}
extension TargetDescription.Dependency: Codable {
private enum CodingKeys: String, CodingKey {
case target, product, byName
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case let .target(a1, a2):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .target)
try unkeyedContainer.encode(a1)
try unkeyedContainer.encode(a2)
case let .product(a1, a2, a3, a4):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .product)
try unkeyedContainer.encode(a1)
try unkeyedContainer.encode(a2)
try unkeyedContainer.encode(a3)
try unkeyedContainer.encode(a4)
case let .byName(a1, a2):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .byName)
try unkeyedContainer.encode(a1)
try unkeyedContainer.encode(a2)
}
}
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 .target:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let a1 = try unkeyedValues.decode(String.self)
let a2 = try unkeyedValues.decodeIfPresent(PackageConditionDescription.self)
self = .target(name: a1, condition: a2)
case .product:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let a1 = try unkeyedValues.decode(String.self)
let a2 = try unkeyedValues.decodeIfPresent(String.self)
let a3 = try unkeyedValues.decode([String: String].self)
let a4 = try unkeyedValues.decodeIfPresent(PackageConditionDescription.self)
self = .product(name: a1, package: a2, moduleAliases: a3, condition: a4)
case .byName:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let a1 = try unkeyedValues.decode(String.self)
let a2 = try unkeyedValues.decodeIfPresent(PackageConditionDescription.self)
self = .byName(name: a1, condition: a2)
}
}
}
extension TargetDescription.Dependency: ExpressibleByStringLiteral {
public init(stringLiteral value: String) {
self = .byName(name: value, condition: nil)
}
}
extension TargetDescription.PluginCapability: Codable {
private enum CodingKeys: CodingKey {
case buildTool, command
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case .buildTool:
try container.encodeNil(forKey: .buildTool)
case .command(let a1, let a2):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .command)
try unkeyedContainer.encode(a1)
try unkeyedContainer.encode(a2)
}
}
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 .buildTool:
self = .buildTool
case .command:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let a1 = try unkeyedValues.decode(TargetDescription.PluginCommandIntent.self)
let a2 = try unkeyedValues.decode([TargetDescription.PluginPermission].self)
self = .command(intent: a1, permissions: a2)
}
}
}
extension TargetDescription.PluginUsage: Codable {
private enum CodingKeys: String, CodingKey {
case plugin
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case let .plugin(name, package):
var unkeyedContainer = container.nestedUnkeyedContainer(forKey: .plugin)
try unkeyedContainer.encode(name)
try unkeyedContainer.encode(package)
}
}
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 .plugin:
var unkeyedValues = try values.nestedUnkeyedContainer(forKey: key)
let name = try unkeyedValues.decode(String.self)
let package = try unkeyedValues.decodeIfPresent(String.self)
self = .plugin(name: name, package: package)
}
}
}
import protocol Foundation.LocalizedError
private enum Error: LocalizedError, Equatable {
case binaryTargetRequiresEitherPathOrURL(targetName: String)
case disallowedPropertyInTarget(targetName: String, propertyName: String)
var errorDescription: String? {
switch self {
case .binaryTargetRequiresEitherPathOrURL(let targetName):
return "binary target '\(targetName)' neither defines neither path nor URL for its artifacts"
case .disallowedPropertyInTarget(let targetName, let propertyName):
return "target '\(targetName)' contains a value for disallowed property '\(propertyName)'"
}
}
}
|