-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathPackageGraphRoot.swift
280 lines (242 loc) · 11.3 KB
/
PackageGraphRoot.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2017 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
import PackageModel
import enum TSCUtility.Git
/// Represents the input to the package graph root.
public struct PackageGraphRootInput {
/// The list of root packages.
public let packages: [AbsolutePath]
/// Top level dependencies to the graph.
public let dependencies: [PackageDependency]
/// The trait configuration for the root packages.
public let traitConfiguration: TraitConfiguration
/// Create a package graph root.
public init(
packages: [AbsolutePath],
dependencies: [PackageDependency] = [],
traitConfiguration: TraitConfiguration = .default
) {
self.packages = packages
self.dependencies = dependencies
self.traitConfiguration = traitConfiguration
}
}
/// Represents the inputs to the package graph.
public struct PackageGraphRoot {
/// The root packages.
public let packages: [PackageIdentity: (reference: PackageReference, manifest: Manifest)]
/// The root manifests.
public var manifests: [PackageIdentity: Manifest] {
return self.packages.compactMapValues { $0.manifest }
}
/// The root manifest(s)'s enabled traits (and their transitively enabled traits).
public var enabledTraits: [PackageIdentity: Set<String>]
/// The root package references.
public var packageReferences: [PackageReference] {
return self.packages.values.map { $0.reference }
}
private let _dependencies: [PackageDependency]
/// The top level dependencies.
public var dependencies: [PackageDependency] {
guard let dependencyMapper else {
return self._dependencies
}
return self._dependencies.map { dependency in
do {
return try dependencyMapper.mappedDependency(
MappablePackageDependency(
dependency,
parentPackagePath: localFileSystem.currentWorkingDirectory ?? .root
),
fileSystem: localFileSystem
)
} catch {
observabilityScope.emit(warning: "could not map dependency \(dependency.identity): \(error.interpolationDescription)")
return dependency
}
}
}
private let dependencyMapper: DependencyMapper?
private let observabilityScope: ObservabilityScope
/// Create a package graph root.
/// Note this quietly skip inputs for which manifests are not found. this could be because the manifest failed to load or for some other reasons
// FIXME: This API behavior wrt to non-found manifests is fragile, but required by IDEs
// it may lead to incorrect assumption in downstream code which may expect an error if a manifest was not found
// we should refactor this API to more clearly return errors for inputs that do not have a corresponding manifest
public init(
input: PackageGraphRootInput,
manifests: [AbsolutePath: Manifest],
explicitProduct: String? = nil,
dependencyMapper: DependencyMapper? = nil,
observabilityScope: ObservabilityScope
) throws {
self.packages = input.packages.reduce(into: .init(), { partial, inputPath in
if let manifest = manifests[inputPath] {
let packagePath = manifest.path.parentDirectory
let identity = PackageIdentity(path: packagePath) // this does not use the identity resolver which is fine since these are the root packages
partial[identity] = (.root(identity: identity, path: packagePath), manifest)
}
})
// Calculate the enabled traits for root.
var enableTraitsMap: [PackageIdentity: Set<String>] = [:]
enableTraitsMap = try packages.reduce(into: [PackageIdentity: Set<String>]()) { traitsMap, package in
let manifest = package.value.manifest
let traitConfiguration = input.traitConfiguration
// Should only ever have to use trait configuration here for roots.
let enabledTraits = try manifest.enabledTraits2(using: traitConfiguration)
traitsMap[package.key] = enabledTraits
}
self.enabledTraits = enableTraitsMap
// FIXME: Deprecate special casing once the manifest supports declaring used executable products.
// Special casing explicit products like this is necessary to pass the test suite and satisfy backwards compatibility.
// However, changing the dependencies based on the command line arguments may force `Package.resolved` to temporarily change,
// which can become a nuisance.
// Such pin switching can currently be worked around by declaring the executable product as a dependency of a dummy target.
// But in the future it might be worth providing a way of declaring them in the manifest without a dummy target,
// at which time the current special casing can be deprecated.
var adjustedDependencies = input.dependencies.filter({ dep in
guard !manifests.isEmpty else { return true }
// Check that the dependency is used in at least one of the manifests.
// If not, then we can omit this dependency if pruning unused dependencies
// is enabled.
return manifests.values.reduce(false) { result, manifest in
guard manifest.pruneDependencies else { return true }
let enabledTraits: Set<String>? = enableTraitsMap[manifest.packageIdentity]
if let isUsed = try? manifest.isPackageDependencyUsed(dep, enabledTraits: enabledTraits) {
return result || isUsed
}
return true
}
})
if let explicitProduct {
// FIXME: `dependenciesRequired` modifies manifests and prevents conversion of `Manifest` to a value type
let deps = try? manifests.values.lazy
.map({ manifest -> [PackageDependency] in
let enabledTraits: Set<String>? = enableTraitsMap[manifest.packageIdentity]
return try manifest.dependenciesRequired(for: .everything, enabledTraits)
})
.flatMap({ $0 })
for dependency in deps ?? [] {
adjustedDependencies.append(dependency.filtered(by: .specific([explicitProduct])))
}
}
self._dependencies = adjustedDependencies
self.dependencyMapper = dependencyMapper
self.observabilityScope = observabilityScope
}
/// Returns the constraints imposed by root manifests + dependencies.
public func constraints() throws -> [PackageContainerConstraint] {
let constraints = self.packages.map { (identity, package) in
// Since these are root packages, can apply trait configuration as this is a root package concept.
let enabledTraits = self.enabledTraits[identity]
return PackageContainerConstraint(
package: package.reference,
requirement: .unversioned,
products: .everything,
enabledTraits: enabledTraits
)
}
let depend = try dependencies
.map { dep in
var enabledTraits: Set<String>?
if let traits = dep.traits {
enabledTraits = Set(traits.map(\.name))
}
return PackageContainerConstraint(
package: dep.packageRef,
requirement: try dep.toConstraintRequirement(),
products: dep.productFilter,
enabledTraits: enabledTraits
)
}
return constraints + depend
}
}
extension PackageDependency {
/// Returns the constraint requirement representation.
public func toConstraintRequirement() throws -> PackageRequirement {
switch self {
case .fileSystem:
return .unversioned
case .sourceControl(let settings):
return try settings.requirement.toConstraintRequirement()
case .registry(let settings):
return try settings.requirement.toConstraintRequirement()
}
}
}
extension PackageDependency.SourceControl.Requirement {
/// Returns the constraint requirement representation.
public func toConstraintRequirement() throws -> PackageRequirement {
switch self {
case .range(let range):
return .versionSet(.range(range))
case .revision(let identifier):
return .revision(identifier)
case .branch(let name):
return .revision(name)
case .exact(let version):
return .versionSet(.exact(version))
}
}
}
extension PackageDependency.Registry.Requirement {
/// Returns the constraint requirement representation.
public func toConstraintRequirement() throws -> PackageRequirement {
switch self {
case .range(let range):
return .versionSet(.range(range))
case .exact(let version):
return .versionSet(.exact(version))
}
}
}
// TODO: bp to move to Manifest+Traits.swift file
extension Manifest {
/// Calculates the set of all transitive traits that are enabled for this manifest using the passed set of
/// explicitly enabled traits and a flag that
/// determines whether all traits are enabled.
public func enabledTraits2(using traitConfiguration: TraitConfiguration) throws -> Set<String>? {
guard supportsTraits else {
// If this manifest does not support traits, but the passed configuration either
// disables default traits or enables non-default traits (i.e. traits that would
// not exist for this manifest) then we must throw an error.
if !traitConfiguration.enablesDefaultTraits && traitConfiguration.enablesNonDefaultTraits {
// TODO: bp add parent package to error message like in modulesgraph+loading.swift
// TODO: bp fix explicitlyEnabledTraits value passed here
throw TraitError.traitsNotSupported(
package: displayName,
explicitlyEnabledTraits: traits.map(\.name)
)
}
return nil
}
var enabledTraits: Set<String> = []
switch traitConfiguration {
case .enableAllTraits:
enabledTraits = Set(traits.map(\.name))
case .noConfiguration:
if let defaultTraits = defaultTraits?.map(\.name) {
enabledTraits = Set(defaultTraits)
}
case .noEnabledTraits:
return []
case .enabledTraits(let explicitlyEnabledTraits):
enabledTraits = explicitlyEnabledTraits
}
if let allEnabledTraits = try? calculateAllEnabledTraits(explictlyEnabledTraits: enabledTraits) {
enabledTraits = allEnabledTraits
}
return enabledTraits
}
}