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 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2023 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 Basics.AbsolutePath
import struct Basics.InternalError
import class Basics.ObservabilityScope
import func Basics.os_signpost
import struct Basics.RelativePath
import enum Basics.SignpostName
import func Basics.temp_await
import class Basics.ThreadSafeKeyValueStore
import class Dispatch.DispatchGroup
import struct Dispatch.DispatchTime
import enum Dispatch.DispatchTimeInterval
import struct PackageGraph.Assignment
import enum PackageGraph.BoundVersion
import enum PackageGraph.ContainerUpdateStrategy
import protocol PackageGraph.CustomPackageContainer
import struct PackageGraph.DependencyResolverBinding
import protocol PackageGraph.DependencyResolverDelegate
import struct PackageGraph.Incompatibility
import struct PackageGraph.MultiplexResolverDelegate
import struct PackageGraph.ObservabilityDependencyResolverDelegate
import struct PackageGraph.PackageContainerConstraint
import struct PackageGraph.PackageGraphRoot
import struct PackageGraph.PackageGraphRootInput
import class PackageGraph.PinsStore
import struct PackageGraph.PubGrubDependencyResolver
import struct PackageGraph.Term
import class PackageLoading.ManifestLoader
import enum PackageModel.PackageDependency
import struct PackageModel.PackageIdentity
import struct PackageModel.PackageReference
import enum PackageModel.ProductFilter
import struct PackageModel.ToolsVersion
import struct SourceControl.Revision
import struct TSCUtility.Version
extension Workspace {
enum ResolvedFileStrategy {
case lockFile
case update(forceResolution: Bool)
case bestEffort
}
func _updateDependencies(
root: PackageGraphRootInput,
packages: [String] = [],
dryRun: Bool = false,
observabilityScope: ObservabilityScope
) throws -> [(PackageReference, Workspace.PackageStateChange)]? {
let start = DispatchTime.now()
self.delegate?.willUpdateDependencies()
defer {
self.delegate?.didUpdateDependencies(duration: start.distance(to: .now()))
}
// Create cache directories.
self.createCacheDirectories(observabilityScope: observabilityScope)
// FIXME: this should not block
// Load the root manifests and currently checked out manifests.
let rootManifests = try temp_await { self.loadRootManifests(
packages: root.packages,
observabilityScope: observabilityScope,
completion: $0
) }
let rootManifestsMinimumToolsVersion = rootManifests.values.map(\.toolsVersion).min() ?? ToolsVersion.current
let resolvedFileOriginHash = try self.computeResolvedFileOriginHash(root: root)
// Load the current manifests.
let graphRoot = PackageGraphRoot(
input: root,
manifests: rootManifests,
dependencyMapper: self.dependencyMapper,
observabilityScope: observabilityScope
)
let currentManifests = try self.loadDependencyManifests(root: graphRoot, observabilityScope: observabilityScope)
// Abort if we're unable to load the pinsStore or have any diagnostics.
guard let pinsStore = observabilityScope.trap({ try self.pinsStore.load() }) else { return nil }
// Ensure we don't have any error at this point.
guard !observabilityScope.errorsReported else {
return nil
}
// Add unversioned constraints for edited packages.
var updateConstraints = currentManifests.editedPackagesConstraints
// Create constraints based on root manifest and pins for the update resolution.
updateConstraints += try graphRoot.constraints()
let pins: PinsStore.Pins
if packages.isEmpty {
// No input packages so we have to do a full update. Set pins map to empty.
pins = [:]
} else {
// We have input packages so we have to partially update the package graph. Remove
// the pins for the input packages so only those packages are updated.
pins = pinsStore.pins
.filter {
!packages.contains($0.value.packageRef.identity.description) && !packages
.contains($0.value.packageRef.deprecatedName)
}
}
// Resolve the dependencies.
let resolver = try self.createResolver(pins: pins, observabilityScope: observabilityScope)
self.activeResolver = resolver
let updateResults = self.resolveDependencies(
resolver: resolver,
constraints: updateConstraints,
observabilityScope: observabilityScope
)
// Reset the active resolver.
self.activeResolver = nil
guard !observabilityScope.errorsReported else {
return nil
}
if dryRun {
return observabilityScope.trap {
try self.computePackageStateChanges(
root: graphRoot,
resolvedDependencies: updateResults,
updateBranches: true,
observabilityScope: observabilityScope
)
}
}
// Update the checkouts based on new dependency resolution.
let packageStateChanges = self.updateDependenciesCheckouts(
root: graphRoot,
updateResults: updateResults,
updateBranches: true,
observabilityScope: observabilityScope
)
guard !observabilityScope.errorsReported else {
return nil
}
// Load the updated manifests.
let updatedDependencyManifests = try self.loadDependencyManifests(
root: graphRoot,
observabilityScope: observabilityScope
)
// If we have missing packages, something is fundamentally wrong with the resolution of the graph
let stillMissingPackages = try updatedDependencyManifests.missingPackages
guard stillMissingPackages.isEmpty else {
observabilityScope.emit(.exhaustedAttempts(missing: stillMissingPackages))
return nil
}
// Update the resolved file.
try self.saveResolvedFile(
pinsStore: pinsStore,
dependencyManifests: updatedDependencyManifests,
originHash: resolvedFileOriginHash,
rootManifestsMinimumToolsVersion: rootManifestsMinimumToolsVersion,
observabilityScope: observabilityScope
)
// Update the binary target artifacts.
let addedOrUpdatedPackages = packageStateChanges.compactMap { $0.1.isAddedOrUpdated ? $0.0 : nil }
try self.updateBinaryArtifacts(
manifests: updatedDependencyManifests,
addedOrUpdatedPackages: addedOrUpdatedPackages,
observabilityScope: observabilityScope
)
return packageStateChanges
}
@discardableResult
func _resolve(
root: PackageGraphRootInput,
explicitProduct: String?,
resolvedFileStrategy: ResolvedFileStrategy,
observabilityScope: ObservabilityScope
) throws -> DependencyManifests {
let start = DispatchTime.now()
self.delegate?.willResolveDependencies()
defer {
self.delegate?.didResolveDependencies(duration: start.distance(to: .now()))
}
switch resolvedFileStrategy {
case .lockFile:
observabilityScope.emit(info: "using '\(self.location.resolvedVersionsFile.basename)' file as lock file")
return try self._resolveBasedOnResolvedVersionsFile(
root: root,
explicitProduct: explicitProduct,
observabilityScope: observabilityScope
)
case .update(let forceResolution):
return try resolveAndUpdateResolvedFile(forceResolution: forceResolution)
case .bestEffort:
guard !self.state.dependencies.hasEditedDependencies() else {
return try resolveAndUpdateResolvedFile(forceResolution: false)
}
guard self.fileSystem.exists(self.location.resolvedVersionsFile) else {
return try resolveAndUpdateResolvedFile(forceResolution: false)
}
guard let pinsStore = try? self.pinsStore.load(), let storedHash = pinsStore.originHash else {
observabilityScope
.emit(
debug: "'\(self.location.resolvedVersionsFile.basename)' origin hash is missing. resolving and updating accordingly"
)
return try resolveAndUpdateResolvedFile(forceResolution: false)
}
let currentHash = try self.computeResolvedFileOriginHash(root: root)
guard storedHash == currentHash else {
observabilityScope
.emit(
debug: "'\(self.location.resolvedVersionsFile.basename)' origin hash does do not match manifest dependencies. resolving and updating accordingly"
)
return try resolveAndUpdateResolvedFile(forceResolution: false)
}
observabilityScope
.emit(
debug: "'\(self.location.resolvedVersionsFile.basename)' origin hash matches manifest dependencies, attempting resolution based on this file"
)
let (manifests, precomputationResult) = try self.tryResolveBasedOnResolvedVersionsFile(
root: root,
explicitProduct: explicitProduct,
observabilityScope: observabilityScope
)
switch precomputationResult {
case .notRequired:
return manifests
case .required(reason: .errorsPreviouslyReported):
return manifests
case .required(let reason):
// FIXME: ideally this is not done based on a side-effect
let reasonString = Self.format(workspaceResolveReason: reason)
observabilityScope
.emit(
debug: "resolution based on '\(self.location.resolvedVersionsFile.basename)' could not be completed because \(reasonString). resolving and updating accordingly"
)
return try resolveAndUpdateResolvedFile(forceResolution: false)
}
}
func resolveAndUpdateResolvedFile(forceResolution: Bool) throws -> DependencyManifests {
observabilityScope.emit(debug: "resolving and updating '\(self.location.resolvedVersionsFile.basename)'")
return try self.resolveAndUpdateResolvedFile(
root: root,
explicitProduct: explicitProduct,
forceResolution: forceResolution,
constraints: [],
observabilityScope: observabilityScope
)
}
}
private func computeResolvedFileOriginHash(root: PackageGraphRootInput) throws -> String {
var content = try root.packages.reduce(into: "") { partial, element in
let path = try ManifestLoader.findManifest(
packagePath: element,
fileSystem: self.fileSystem,
currentToolsVersion: self.currentToolsVersion
)
try partial.append(self.fileSystem.readFileContents(path))
}
content += root.dependencies.reduce(into: "") { partial, element in
partial += element.locationString
}
return content.sha256Checksum
}
@discardableResult
func _resolveBasedOnResolvedVersionsFile(
root: PackageGraphRootInput,
explicitProduct: String?,
observabilityScope: ObservabilityScope
) throws -> DependencyManifests {
let (manifests, precomputationResult) = try self.tryResolveBasedOnResolvedVersionsFile(
root: root,
explicitProduct: explicitProduct,
observabilityScope: observabilityScope
)
switch precomputationResult {
case .notRequired:
return manifests
case .required(reason: .errorsPreviouslyReported):
return manifests
case .required(let reason):
// FIXME: ideally this is not done based on a side-effect
let reasonString = Self.format(workspaceResolveReason: reason)
if !self.fileSystem.exists(self.location.resolvedVersionsFile) {
observabilityScope
.emit(
error: "a resolved file is required when automatic dependency resolution is disabled and should be placed at \(self.location.resolvedVersionsFile.pathString). \(reasonString)"
)
} else {
observabilityScope
.emit(
error: "an out-of-date resolved file was detected at \(self.location.resolvedVersionsFile.pathString), which is not allowed when automatic dependency resolution is disabled; please make sure to update the file to reflect the changes in dependencies. \(reasonString)"
)
}
return manifests
}
}
/// Resolves the dependencies according to the entries present in the Package.resolved file.
///
/// This method bypasses the dependency resolution and resolves dependencies
/// according to the information in the resolved file.
fileprivate func tryResolveBasedOnResolvedVersionsFile(
root: PackageGraphRootInput,
explicitProduct: String?,
observabilityScope: ObservabilityScope
) throws -> (DependencyManifests, ResolutionPrecomputationResult) {
// Ensure the cache path exists.
self.createCacheDirectories(observabilityScope: observabilityScope)
// FIXME: this should not block
let rootManifests = try temp_await { self.loadRootManifests(
packages: root.packages,
observabilityScope: observabilityScope,
completion: $0
) }
let graphRoot = PackageGraphRoot(
input: root,
manifests: rootManifests,
explicitProduct: explicitProduct,
dependencyMapper: self.dependencyMapper,
observabilityScope: observabilityScope
)
// Load the pins store or abort now.
guard let pinsStore = observabilityScope.trap({ try self.pinsStore.load() }),
!observabilityScope.errorsReported
else {
return try (
self.loadDependencyManifests(root: graphRoot, observabilityScope: observabilityScope),
.notRequired
)
}
// Request all the containers to fetch them in parallel.
//
// We just request the packages here, repository manager will
// automatically manage the parallelism.
let group = DispatchGroup()
for pin in pinsStore.pins.values {
group.enter()
let observabilityScope = observabilityScope.makeChildScope(
description: "requesting package containers",
metadata: pin.packageRef.diagnosticsMetadata
)
let updateStrategy: ContainerUpdateStrategy = {
if self.configuration.skipDependenciesUpdates {
return .never
} else {
switch pin.state {
case .branch(_, let revision):
return .ifNeeded(revision: revision)
case .revision(let revision):
return .ifNeeded(revision: revision)
case .version(_, .some(let revision)):
return .ifNeeded(revision: revision)
case .version(_, .none):
return .always
}
}
}()
self.packageContainerProvider.getContainer(
for: pin.packageRef,
updateStrategy: updateStrategy,
observabilityScope: observabilityScope,
on: .sharedConcurrent,
completion: { _ in group.leave() }
)
}
group.wait()
// Compute the pins that we need to actually clone.
//
// We require cloning if there is no checkout or if the checkout doesn't
// match with the pin.
let requiredPins = pinsStore.pins.values.filter { pin in
// also compare the location in case it has changed
guard let dependency = state.dependencies[comparingLocation: pin.packageRef] else {
return true
}
switch dependency.state {
case .sourceControlCheckout(let checkoutState):
return !pin.state.equals(checkoutState)
case .registryDownload(let version):
return !pin.state.equals(version)
case .edited, .fileSystem, .custom:
return true
}
}
// Retrieve the required pins.
for pin in requiredPins {
observabilityScope.makeChildScope(
description: "retrieving dependency pins",
metadata: pin.packageRef.diagnosticsMetadata
).trap {
switch pin.packageRef.kind {
case .localSourceControl, .remoteSourceControl:
_ = try self.checkoutRepository(
package: pin.packageRef,
at: pin.state,
observabilityScope: observabilityScope
)
case .registry:
_ = try self.downloadRegistryArchive(
package: pin.packageRef,
at: pin.state,
observabilityScope: observabilityScope
)
default:
throw InternalError("invalid pin type \(pin.packageRef.kind)")
}
}
}
let currentManifests = try self.loadDependencyManifests(
root: graphRoot,
automaticallyAddManagedDependencies: true,
observabilityScope: observabilityScope
)
try self.updateBinaryArtifacts(
manifests: currentManifests,
addedOrUpdatedPackages: [],
observabilityScope: observabilityScope
)
let precomputationResult = try self.precomputeResolution(
root: graphRoot,
dependencyManifests: currentManifests,
pinsStore: pinsStore,
constraints: [],
observabilityScope: observabilityScope
)
return (currentManifests, precomputationResult)
}
/// Implementation of resolve(root:diagnostics:).
///
/// The extra constraints will be added to the main requirements.
/// It is useful in situations where a requirement is being
/// imposed outside of manifest and pins file. E.g., when using a command
/// like `$ swift package resolve foo --version 1.0.0`.
@discardableResult
func resolveAndUpdateResolvedFile(
root: PackageGraphRootInput,
explicitProduct: String? = nil,
forceResolution: Bool,
constraints: [PackageContainerConstraint],
observabilityScope: ObservabilityScope
) throws -> DependencyManifests {
// Ensure the cache path exists and validate that edited dependencies.
self.createCacheDirectories(observabilityScope: observabilityScope)
// FIXME: this should not block
// Load the root manifests and currently checked out manifests.
let rootManifests = try temp_await { self.loadRootManifests(
packages: root.packages,
observabilityScope: observabilityScope,
completion: $0
) }
let rootManifestsMinimumToolsVersion = rootManifests.values.map(\.toolsVersion).min() ?? ToolsVersion.current
let resolvedFileOriginHash = try self.computeResolvedFileOriginHash(root: root)
// Load the current manifests.
let graphRoot = PackageGraphRoot(
input: root,
manifests: rootManifests,
explicitProduct: explicitProduct,
dependencyMapper: self.dependencyMapper,
observabilityScope: observabilityScope
)
let currentManifests = try self.loadDependencyManifests(root: graphRoot, observabilityScope: observabilityScope)
guard !observabilityScope.errorsReported else {
return currentManifests
}
// load and update the pins store with any changes from loading the top level dependencies
guard let pinsStore = self.loadAndUpdatePinsStore(
dependencyManifests: currentManifests,
rootManifestsMinimumToolsVersion: rootManifestsMinimumToolsVersion,
observabilityScope: observabilityScope
) else {
// abort if PinsStore reported any errors.
return currentManifests
}
// abort if PinsStore reported any errors.
guard !observabilityScope.errorsReported else {
return currentManifests
}
// Compute the missing package identities.
let missingPackages = try currentManifests.missingPackages
// Compute if we need to run the resolver. We always run the resolver if
// there are extra constraints.
if !missingPackages.isEmpty {
delegate?.willResolveDependencies(reason: .newPackages(packages: Array(missingPackages)))
} else if !constraints.isEmpty || forceResolution {
delegate?.willResolveDependencies(reason: .forced)
} else {
let result = try self.precomputeResolution(
root: graphRoot,
dependencyManifests: currentManifests,
pinsStore: pinsStore,
constraints: constraints,
observabilityScope: observabilityScope
)
switch result {
case .notRequired:
// since nothing changed we can exit early,
// but need update resolved file and download an missing binary artifact
try self.saveResolvedFile(
pinsStore: pinsStore,
dependencyManifests: currentManifests,
originHash: resolvedFileOriginHash,
rootManifestsMinimumToolsVersion: rootManifestsMinimumToolsVersion,
observabilityScope: observabilityScope
)
try self.updateBinaryArtifacts(
manifests: currentManifests,
addedOrUpdatedPackages: [],
observabilityScope: observabilityScope
)
return currentManifests
case .required(let reason):
delegate?.willResolveDependencies(reason: reason)
}
}
// Create the constraints.
var computedConstraints = [PackageContainerConstraint]()
computedConstraints += currentManifests.editedPackagesConstraints
computedConstraints += try graphRoot.constraints() + constraints
// Perform dependency resolution.
let resolver = try self.createResolver(pins: pinsStore.pins, observabilityScope: observabilityScope)
self.activeResolver = resolver
let result = self.resolveDependencies(
resolver: resolver,
constraints: computedConstraints,
observabilityScope: observabilityScope
)
// Reset the active resolver.
self.activeResolver = nil
guard !observabilityScope.errorsReported else {
return currentManifests
}
// Update the checkouts with dependency resolution result.
let packageStateChanges = self.updateDependenciesCheckouts(
root: graphRoot,
updateResults: result,
observabilityScope: observabilityScope
)
guard !observabilityScope.errorsReported else {
return currentManifests
}
// Update the pinsStore.
let updatedDependencyManifests = try self.loadDependencyManifests(
root: graphRoot,
observabilityScope: observabilityScope
)
// If we still have missing packages, something is fundamentally wrong with the resolution of the graph
let stillMissingPackages = try updatedDependencyManifests.missingPackages
guard stillMissingPackages.isEmpty else {
observabilityScope.emit(.exhaustedAttempts(missing: stillMissingPackages))
return updatedDependencyManifests
}
// Update the resolved file.
try self.saveResolvedFile(
pinsStore: pinsStore,
dependencyManifests: updatedDependencyManifests,
originHash: resolvedFileOriginHash,
rootManifestsMinimumToolsVersion: rootManifestsMinimumToolsVersion,
observabilityScope: observabilityScope
)
let addedOrUpdatedPackages = packageStateChanges.compactMap { $0.1.isAddedOrUpdated ? $0.0 : nil }
try self.updateBinaryArtifacts(
manifests: updatedDependencyManifests,
addedOrUpdatedPackages: addedOrUpdatedPackages,
observabilityScope: observabilityScope
)
return updatedDependencyManifests
}
/// Updates the current working checkouts i.e. clone or remove based on the
/// provided dependency resolution result.
///
/// - Parameters:
/// - updateResults: The updated results from dependency resolution.
/// - diagnostics: The diagnostics engine that reports errors, warnings
/// and notes.
/// - updateBranches: If the branches should be updated in case they're pinned.
@discardableResult
fileprivate func updateDependenciesCheckouts(
root: PackageGraphRoot,
updateResults: [DependencyResolverBinding],
updateBranches: Bool = false,
observabilityScope: ObservabilityScope
) -> [(PackageReference, PackageStateChange)] {
// Get the update package states from resolved results.
guard let packageStateChanges = observabilityScope.trap({
try self.computePackageStateChanges(
root: root,
resolvedDependencies: updateResults,
updateBranches: updateBranches,
observabilityScope: observabilityScope
)
}) else {
return []
}
// First remove the checkouts that are no longer required.
for (packageRef, state) in packageStateChanges {
observabilityScope.makeChildScope(
description: "removing unneeded checkouts",
metadata: packageRef.diagnosticsMetadata
).trap {
switch state {
case .added, .updated, .unchanged:
break
case .removed:
try self.remove(package: packageRef)
}
}
}
// Update or clone new packages.
for (packageRef, state) in packageStateChanges {
observabilityScope.makeChildScope(
description: "updating or cloning new packages",
metadata: packageRef.diagnosticsMetadata
).trap {
switch state {
case .added(let state):
_ = try self.updateDependency(
package: packageRef,
requirement: state.requirement,
productFilter: state.products,
observabilityScope: observabilityScope
)
case .updated(let state):
_ = try self.updateDependency(
package: packageRef,
requirement: state.requirement,
productFilter: state.products,
observabilityScope: observabilityScope
)
case .removed, .unchanged:
break
}
}
}
// Inform the delegate if nothing was updated.
if packageStateChanges.filter({ $0.1 == .unchanged }).count == packageStateChanges.count {
delegate?.dependenciesUpToDate()
}
return packageStateChanges
}
private func updateDependency(
package: PackageReference,
requirement: PackageStateChange.Requirement,
productFilter: ProductFilter,
observabilityScope: ObservabilityScope
) throws -> AbsolutePath {
switch requirement {
case .version(let version):
// FIXME: this should not block
let container = try temp_await {
packageContainerProvider.getContainer(
for: package,
updateStrategy: .never,
observabilityScope: observabilityScope,
on: .sharedConcurrent,
completion: $0
)
}
if let container = container as? SourceControlPackageContainer {
// FIXME: We need to get the revision here, and we don't have a
// way to get it back out of the resolver which is very
// annoying. Maybe we should make an SPI on the provider for this?
guard let tag = container.getTag(for: version) else {
throw try InternalError(
"unable to get tag for \(package) \(version); available versions \(container.versionsDescending())"
)
}
let revision = try container.getRevision(forTag: tag)
try container.checkIntegrity(version: version, revision: revision)
return try self.checkoutRepository(
package: package,
at: .version(version, revision: revision),
observabilityScope: observabilityScope
)
} else if let _ = container as? RegistryPackageContainer {
return try self.downloadRegistryArchive(
package: package,
at: version,
observabilityScope: observabilityScope
)
} else if let customContainer = container as? CustomPackageContainer {
let path = try customContainer.retrieve(at: version, observabilityScope: observabilityScope)
let dependency = try ManagedDependency(
packageRef: package,
state: .custom(version: version, path: path),
subpath: RelativePath(validating: "")
)
self.state.dependencies.add(dependency)
try self.state.save()
return path
} else {
throw InternalError("invalid container for \(package.identity) of type \(package.kind)")
}
case .revision(let revision, .none):
return try self.checkoutRepository(
package: package,
at: .revision(revision),
observabilityScope: observabilityScope
)
case .revision(let revision, .some(let branch)):
return try self.checkoutRepository(
package: package,
at: .branch(name: branch, revision: revision),
observabilityScope: observabilityScope
)
case .unversioned:
let dependency = try ManagedDependency.fileSystem(packageRef: package)
// this is silly since we just created it above, but no good way to force cast it and extract the path
guard case .fileSystem(let path) = dependency.state else {
throw InternalError("invalid package type: \(package.kind)")
}
self.state.dependencies.add(dependency)
try self.state.save()
return path
}
}
public enum ResolutionPrecomputationResult: Equatable {
case required(reason: WorkspaceResolveReason)
case notRequired
public var isRequired: Bool {
switch self {
case .required: return true
case .notRequired: return false
}
}
}
/// Computes if dependency resolution is required based on input constraints and pins.
///
/// - Returns: Returns a result defining whether dependency resolution is required and the reason for it.
// @testable internal
public func precomputeResolution(
root: PackageGraphRoot,
dependencyManifests: DependencyManifests,
pinsStore: PinsStore,
constraints: [PackageContainerConstraint],
observabilityScope: ObservabilityScope
) throws -> ResolutionPrecomputationResult {
let computedConstraints =
try root.constraints() +
// Include constraints from the manifests in the graph root.
root.manifests.values.flatMap { try $0.dependencyConstraints(productFilter: .everything) } +
dependencyManifests.dependencyConstraints +
constraints
let precomputationProvider = ResolverPrecomputationProvider(
root: root,
dependencyManifests: dependencyManifests
)
let resolver = PubGrubDependencyResolver(
provider: precomputationProvider,
pins: pinsStore.pins,
observabilityScope: observabilityScope
)
let result = resolver.solve(constraints: computedConstraints)
guard !observabilityScope.errorsReported else {
return .required(reason: .errorsPreviouslyReported)
}
switch result {
case .success:
return .notRequired
case .failure(ResolverPrecomputationError.missingPackage(let package)):
return .required(reason: .newPackages(packages: [package]))
case .failure(ResolverPrecomputationError.differentRequirement(let package, let state, let requirement)):
return .required(reason: .packageRequirementChange(
package: package,
state: state,
requirement: requirement
))
case .failure(let error):
return .required(reason: .other("\(error.interpolationDescription)"))
}
}
/// Validates that each checked out managed dependency has an entry in pinsStore.
private func loadAndUpdatePinsStore(
dependencyManifests: DependencyManifests,
rootManifestsMinimumToolsVersion: ToolsVersion,
observabilityScope: ObservabilityScope
) -> PinsStore? {
guard let pinsStore = observabilityScope.trap({ try self.pinsStore.load() }) else {
return nil
}
guard let requiredDependencies = observabilityScope
.trap({ try dependencyManifests.requiredPackages.filter(\.kind.isPinnable) })
else {
return nil
}
for dependency in self.state.dependencies.filter(\.packageRef.kind.isPinnable) {
// a required dependency that is already loaded (managed) should be represented in the pins store.
// also comparing location as it may have changed at this point
if requiredDependencies.contains(where: { $0.equalsIncludingLocation(dependency.packageRef) }) {
// if pin not found, or location is different (it may have changed at this point) pin it
if pinsStore.pins[comparingLocation: dependency.packageRef] == .none {
pinsStore.pin(dependency)
}
} else if let pin = pinsStore.pins[dependency.packageRef.identity] {
// otherwise, it should *not* be in the pins store.
pinsStore.remove(pin)
}
}
return pinsStore
}
/// This enum represents state of an external package.
public enum PackageStateChange: Equatable, CustomStringConvertible {
/// The requirement imposed by the the state.
public enum Requirement: Equatable, CustomStringConvertible {
/// A version requirement.
case version(Version)
/// A revision requirement.
case revision(Revision, branch: String?)
case unversioned
public var description: String {
switch self {
case .version(let version):
return "requirement(\(version))"
case .revision(let revision, let branch):
return "requirement(\(revision) \(branch ?? ""))"
case .unversioned:
return "requirement(unversioned)"
}
}
public var prettyPrinted: String {
switch self {
case .version(let version):
return "\(version)"
case .revision(let revision, let branch):
return "\(revision) \(branch ?? "")"
case .unversioned:
return "unversioned"
}
}
}
public struct State: Equatable {
public let requirement: Requirement
public let products: ProductFilter
public init(requirement: Requirement, products: ProductFilter) {
self.requirement = requirement
self.products = products
}
}
/// The package is added.
case added(State)
/// The package is removed.
case removed
/// The package is unchanged.
case unchanged
/// The package is updated.
case updated(State)
public var description: String {
switch self {
case .added(let requirement):
return "added(\(requirement))"
case .removed:
return "removed"
case .unchanged:
return "unchanged"
case .updated(let requirement):
return "updated(\(requirement))"
}
}
public var isAddedOrUpdated: Bool {
switch self {
case .added, .updated:
return true
case .unchanged, .removed:
return false
}
}
}
/// Computes states of the packages based on last stored state.
fileprivate func computePackageStateChanges(
root: PackageGraphRoot,
resolvedDependencies: [DependencyResolverBinding],
updateBranches: Bool,
observabilityScope: ObservabilityScope
) throws -> [(PackageReference, PackageStateChange)] {
// Load pins store and managed dependencies.
let pinsStore = try self.pinsStore.load()
var packageStateChanges: [PackageIdentity: (PackageReference, PackageStateChange)] = [:]
// Set the states from resolved dependencies results.
for binding in resolvedDependencies {
// Get the existing managed dependency for this package ref, if any.
// first find by identity only since edit location may be different by design
var currentDependency = self.state.dependencies[binding.package.identity]
// Check if this is an edited dependency.
if case .edited(let basedOn, _) = currentDependency?.state, let originalReference = basedOn?.packageRef {
packageStateChanges[originalReference.identity] = (originalReference, .unchanged)
} else {
// if not edited, also compare by location since it may have changed
currentDependency = self.state.dependencies[comparingLocation: binding.package]
}
switch binding.boundVersion {
case .excluded:
throw InternalError("Unexpected excluded binding")
case .unversioned:
// Ignore the root packages.
if root.packages.keys.contains(binding.package.identity) {
continue
}
if let currentDependency {
switch currentDependency.state {
case .fileSystem, .edited:
packageStateChanges[binding.package.identity] = (binding.package, .unchanged)
case .sourceControlCheckout:
let newState = PackageStateChange.State(requirement: .unversioned, products: binding.products)
packageStateChanges[binding.package.identity] = (binding.package, .updated(newState))
case .registryDownload:
throw InternalError("Unexpected unversioned binding for downloaded dependency")
case .custom:
throw InternalError("Unexpected unversioned binding for custom dependency")
}
} else {
let newState = PackageStateChange.State(requirement: .unversioned, products: binding.products)
packageStateChanges[binding.package.identity] = (binding.package, .added(newState))
}
case .revision(let identifier, let branch):
// Get the latest revision from the container.
// TODO: replace with async/await when available
guard let container = try (temp_await {
packageContainerProvider.getContainer(
for: binding.package,
updateStrategy: .never,
observabilityScope: observabilityScope,
on: .sharedConcurrent,
completion: $0
)
}) as? SourceControlPackageContainer else {
throw InternalError("invalid container for \(binding.package) expected a SourceControlPackageContainer")
}
var revision = try container.getRevision(forIdentifier: identifier)
let branch = branch ?? (identifier == revision.identifier ? nil : identifier)
// If we have a branch and we shouldn't be updating the
// branches, use the revision from pin instead (if present).
if branch != nil, !updateBranches {
if case .branch(branch, let pinRevision) = pinsStore.pins.values
.first(where: { $0.packageRef == binding.package })?.state
{
revision = Revision(identifier: pinRevision)
}
}
// First check if we have this dependency.
if let currentDependency {
// If current state and new state are equal, we don't need
// to do anything.
let newState: CheckoutState
if let branch {
newState = .branch(name: branch, revision: revision)
} else {
newState = .revision(revision)
}
if case .sourceControlCheckout(let checkoutState) = currentDependency.state,
checkoutState == newState
{
packageStateChanges[binding.package.identity] = (binding.package, .unchanged)
} else {
// Otherwise, we need to update this dependency to this revision.
let newState = PackageStateChange.State(
requirement: .revision(revision, branch: branch),
products: binding.products
)
packageStateChanges[binding.package.identity] = (binding.package, .updated(newState))
}
} else {
let newState = PackageStateChange.State(
requirement: .revision(revision, branch: branch),
products: binding.products
)
packageStateChanges[binding.package.identity] = (binding.package, .added(newState))
}
case .version(let version):
let stateChange: PackageStateChange
switch currentDependency?.state {
case .sourceControlCheckout(.version(version, _)), .registryDownload(version), .custom(version, _):
stateChange = .unchanged
case .edited, .fileSystem, .sourceControlCheckout, .registryDownload, .custom:
stateChange = .updated(.init(requirement: .version(version), products: binding.products))
case nil:
stateChange = .added(.init(requirement: .version(version), products: binding.products))
}
packageStateChanges[binding.package.identity] = (binding.package, stateChange)
}
}
// Set the state of any old package that might have been removed.
for packageRef in self.state.dependencies.lazy.map(\.packageRef)
where packageStateChanges[packageRef.identity] == nil
{
packageStateChanges[packageRef.identity] = (packageRef, .removed)
}
return Array(packageStateChanges.values)
}
/// Creates resolver for the workspace.
fileprivate func createResolver(
pins: PinsStore.Pins,
observabilityScope: ObservabilityScope
) throws -> PubGrubDependencyResolver {
var delegate: DependencyResolverDelegate
let observabilityDelegate = ObservabilityDependencyResolverDelegate(observabilityScope: observabilityScope)
if let workspaceDelegate = self.delegate {
delegate = MultiplexResolverDelegate([
observabilityDelegate,
WorkspaceDependencyResolverDelegate(workspaceDelegate),
])
} else {
delegate = observabilityDelegate
}
return PubGrubDependencyResolver(
provider: packageContainerProvider,
pins: pins,
skipDependenciesUpdates: self.configuration.skipDependenciesUpdates,
prefetchBasedOnResolvedFile: self.configuration.prefetchBasedOnResolvedFile,
observabilityScope: observabilityScope,
delegate: delegate
)
}
/// Runs the dependency resolver based on constraints provided and returns the results.
fileprivate func resolveDependencies(
resolver: PubGrubDependencyResolver,
constraints: [PackageContainerConstraint],
observabilityScope: ObservabilityScope
) -> [DependencyResolverBinding] {
os_signpost(.begin, name: SignpostName.pubgrub)
let result = resolver.solve(constraints: constraints)
os_signpost(.end, name: SignpostName.pubgrub)
// Take an action based on the result.
switch result {
case .success(let bindings):
return bindings
case .failure(let error):
observabilityScope.emit(error)
return []
}
}
/// Create the cache directories.
fileprivate func createCacheDirectories(observabilityScope: ObservabilityScope) {
observabilityScope.trap {
try fileSystem.createDirectory(self.repositoryManager.path, recursive: true)
try fileSystem.createDirectory(self.location.repositoriesCheckoutsDirectory, recursive: true)
try fileSystem.createDirectory(self.location.artifactsDirectory, recursive: true)
}
}
}
private struct WorkspaceDependencyResolverDelegate: DependencyResolverDelegate {
private weak var workspaceDelegate: Workspace.Delegate?
private let resolving = ThreadSafeKeyValueStore<PackageIdentity, Bool>()
init(_ delegate: Workspace.Delegate) {
self.workspaceDelegate = delegate
}
func willResolve(term: Term) {
// this may be called multiple time by the resolver for various version ranges, but we only want to propagate
// once since we report at package level
self.resolving.memoize(term.node.package.identity) {
self.workspaceDelegate?.willComputeVersion(
package: term.node.package.identity,
location: term.node.package.locationString
)
return true
}
}
func didResolve(term: Term, version: Version, duration: DispatchTimeInterval) {
self.workspaceDelegate?.didComputeVersion(
package: term.node.package.identity,
location: term.node.package.locationString,
version: version.description,
duration: duration
)
}
// noop
func derived(term: Term) {}
func conflict(conflict: Incompatibility) {}
func satisfied(term: Term, by assignment: Assignment, incompatibility: Incompatibility) {}
func partiallySatisfied(
term: Term,
by assignment: Assignment,
incompatibility: Incompatibility,
difference: Term
) {}
func failedToResolve(incompatibility: Incompatibility) {}
func solved(result: [DependencyResolverBinding]) {}
}
// FIXME: the manifest loading logic should be changed to use identity instead of location once identity is unique
// at that time we should remove this
// @available(*, deprecated)
extension PackageDependency {
var locationString: String {
switch self {
case .fileSystem(let settings):
return settings.path.pathString
case .sourceControl(let settings):
switch settings.location {
case .local(let path):
return path.pathString
case .remote(let url):
return url.absoluteString
}
case .registry:
// FIXME: placeholder
return self.identity.description
}
}
}
extension Workspace.ManagedDependencies {
fileprivate func hasEditedDependencies() -> Bool {
self.contains(where: {
switch $0.state {
case .edited:
return true
default:
return false
}
})
}
}
|