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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2022 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 Foundation
import PackageLoading
import PackageModel
import SPMBuildCore
import struct TSCBasic.ByteString
import protocol TSCBasic.HashAlgorithm
import struct TSCBasic.SHA256
import enum TSCUtility.Diagnostics
extension Workspace {
// marked public for testing
public struct CustomBinaryArtifactsManager {
let httpClient: LegacyHTTPClient?
let archiver: Archiver?
let useCache: Bool?
public init(
httpClient: LegacyHTTPClient? = .none,
archiver: Archiver? = .none,
useCache: Bool? = .none
) {
self.httpClient = httpClient
self.archiver = archiver
self.useCache = useCache
}
}
// marked public since used in tools
public struct BinaryArtifactsManager: Cancellable {
public typealias Delegate = BinaryArtifactsManagerDelegate
private let fileSystem: FileSystem
private let authorizationProvider: AuthorizationProvider?
private let hostToolchain: UserToolchain
private let httpClient: LegacyHTTPClient
private let archiver: Archiver
private let checksumAlgorithm: HashAlgorithm
private let cachePath: AbsolutePath?
private let delegate: Delegate?
public init(
fileSystem: FileSystem,
authorizationProvider: AuthorizationProvider?,
hostToolchain: UserToolchain,
checksumAlgorithm: HashAlgorithm,
cachePath: AbsolutePath?,
customHTTPClient: LegacyHTTPClient?,
customArchiver: Archiver?,
delegate: Delegate?
) {
self.fileSystem = fileSystem
self.authorizationProvider = authorizationProvider
self.hostToolchain = hostToolchain
self.checksumAlgorithm = checksumAlgorithm
self.httpClient = customHTTPClient ?? LegacyHTTPClient()
self.archiver = customArchiver ?? ZipArchiver(fileSystem: fileSystem)
self.cachePath = cachePath
self.delegate = delegate
}
func parseArtifacts(
from manifests: DependencyManifests,
observabilityScope: ObservabilityScope
) throws -> (local: [ManagedArtifact], remote: [RemoteArtifact]) {
let packageAndManifests: [(reference: PackageReference, manifest: Manifest)] =
manifests.root.packages.values + // Root package and manifests.
manifests.dependencies
.map { manifest, managed, _, _ in (managed.packageRef, manifest) } // Dependency package and manifests.
var localArtifacts: [ManagedArtifact] = []
var remoteArtifacts: [RemoteArtifact] = []
for (packageReference, manifest) in packageAndManifests {
for target in manifest.targets where target.type == .binary {
if let path = target.path {
// TODO: find a better way to get the base path (not via the manifest)
let absolutePath = try manifest.path.parentDirectory.appending(RelativePath(validating: path))
if absolutePath.extension?.lowercased() == "zip" {
localArtifacts.append(
.local(
packageRef: packageReference,
targetName: target.name,
path: absolutePath,
kind: .unknown // an archive, we will extract it later
)
)
} else {
guard let (artifactPath, artifactKind) = try Self.deriveBinaryArtifact(
fileSystem: self.fileSystem,
path: absolutePath,
observabilityScope: observabilityScope
) else {
observabilityScope
.emit(.localArtifactNotFound(artifactPath: absolutePath, targetName: target.name))
continue
}
localArtifacts.append(
.local(
packageRef: packageReference,
targetName: target.name,
path: artifactPath,
kind: artifactKind
)
)
}
} else if let url = target.url.flatMap(URL.init(string:)), let checksum = target.checksum {
remoteArtifacts.append(
.init(
packageRef: packageReference,
targetName: target.name,
url: url,
checksum: checksum
)
)
} else {
throw StringError("a binary target should have either a path or a URL and a checksum")
}
}
}
return (local: localArtifacts, remote: remoteArtifacts)
}
func fetch(
_ artifacts: [RemoteArtifact],
artifactsDirectory: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> [ManagedArtifact] {
let group = DispatchGroup()
let result = ThreadSafeArrayStore<ManagedArtifact>()
// zip files to download
// stored in a thread-safe way as we may fetch more from "artifactbundleindex" files
let zipArtifacts = ThreadSafeArrayStore<RemoteArtifact>(artifacts.filter {
$0.url.pathExtension.lowercased() == "zip"
})
// fetch and parse "artifactbundleindex" files, if any
let indexFiles = artifacts.filter { $0.url.pathExtension.lowercased() == "artifactbundleindex" }
if !indexFiles.isEmpty {
let errors = ThreadSafeArrayStore<Error>()
let jsonDecoder = JSONDecoder.makeWithDefaults()
for indexFile in indexFiles {
group.enter()
var request = LegacyHTTPClient.Request(method: .get, url: indexFile.url)
request.options.validResponseCodes = [200]
request.options.authorizationProvider = self.authorizationProvider?.httpAuthorizationHeader(for:)
self.httpClient.execute(request) { result in
defer { group.leave() }
do {
switch result {
case .failure(let error):
throw error
case .success(let response):
guard let body = response.body else {
throw StringError("Body is empty")
}
// FIXME: would be nice if checksumAlgorithm.hash took Data directly
let bodyChecksum = self.checksumAlgorithm.hash(ByteString(body))
.hexadecimalRepresentation
guard bodyChecksum == indexFile.checksum else {
throw StringError(
"checksum of downloaded artifact of binary target '\(indexFile.targetName)' (\(bodyChecksum)) does not match checksum specified by the manifest (\(indexFile.checksum))"
)
}
let metadata = try jsonDecoder.decode(ArchiveIndexFile.self, from: body)
// FIXME: this filter needs to become more sophisticated
guard let supportedArchive = metadata.archives
.first(where: {
$0.fileName.lowercased().hasSuffix(".zip") && $0.supportedTriples
.contains(self.hostToolchain.targetTriple)
})
else {
throw StringError(
"No supported archive was found for '\(self.hostToolchain.targetTriple.tripleString)'"
)
}
// add relevant archive
zipArtifacts.append(
RemoteArtifact(
packageRef: indexFile.packageRef,
targetName: indexFile.targetName,
url: indexFile.url.deletingLastPathComponent()
.appendingPathComponent(supportedArchive.fileName),
checksum: supportedArchive.checksum
)
)
}
} catch {
errors.append(error)
observabilityScope.emit(
error: "failed retrieving '\(indexFile.url)'",
underlyingError: error
)
}
}
}
// wait for all "artifactbundleindex" files to be processed
group.wait()
// no reason to continue if we already ran into issues
if !errors.isEmpty {
throw Diagnostics.fatalError
}
}
// finally download zip files, if any
for artifact in zipArtifacts.get() {
let destinationDirectory = artifactsDirectory
.appending(components: [artifact.packageRef.identity.description, artifact.targetName])
guard observabilityScope
.trap({ try fileSystem.createDirectory(destinationDirectory, recursive: true) })
else {
continue
}
let archivePath = destinationDirectory.appending(component: artifact.url.lastPathComponent)
if self.fileSystem.exists(archivePath) {
guard observabilityScope.trap({ try self.fileSystem.removeFileTree(archivePath) }) else {
continue
}
}
group.enter()
let fetchStart: DispatchTime = .now()
self.fetch(
artifact: artifact,
destination: archivePath,
observabilityScope: observabilityScope,
progress: { bytesDownloaded, totalBytesToDownload in
self.delegate?.downloadingBinaryArtifact(
from: artifact.url.absoluteString,
bytesDownloaded: bytesDownloaded,
totalBytesToDownload: totalBytesToDownload
)
},
completion: { fetchResult in
defer { group.leave() }
switch fetchResult {
case .success(let cached):
// TODO: Use the same extraction logic for both remote and local archived artifacts.
group.enter()
observabilityScope.emit(debug: "validating \(archivePath)")
self.archiver.validate(path: archivePath, completion: { validationResult in
defer { group.leave() }
switch validationResult {
case .success(let valid):
guard valid else {
observabilityScope
.emit(.artifactInvalidArchive(
artifactURL: artifact.url,
targetName: artifact.targetName
))
return
}
guard let archiveChecksum = observabilityScope
.trap({ try self.checksum(forBinaryArtifactAt: archivePath) })
else {
return
}
guard archiveChecksum == artifact.checksum else {
observabilityScope.emit(.artifactInvalidChecksum(
targetName: artifact.targetName,
expectedChecksum: artifact.checksum,
actualChecksum: archiveChecksum
))
observabilityScope.trap { try self.fileSystem.removeFileTree(archivePath) }
return
}
guard let tempExtractionDirectory = observabilityScope.trap({ () -> AbsolutePath in
let path = artifactsDirectory.appending(
components: "extract",
artifact.packageRef.identity.description,
artifact.targetName,
UUID().uuidString
)
try self.fileSystem.forceCreateDirectory(at: path)
return path
}) else {
return
}
group.enter()
observabilityScope
.emit(debug: "extracting \(archivePath) to \(tempExtractionDirectory)")
self.archiver.extract(
from: archivePath,
to: tempExtractionDirectory,
completion: { extractResult in
defer { group.leave() }
switch extractResult {
case .success:
observabilityScope.trap {
try self.fileSystem.withLock(
on: destinationDirectory,
type: .exclusive
) {
// strip first level component if needed
if try self.fileSystem.shouldStripFirstLevel(
archiveDirectory: tempExtractionDirectory,
acceptableExtensions: BinaryModule.Kind.allCases
.map(\.fileExtension)
) {
observabilityScope
.emit(
debug: "stripping first level component from \(tempExtractionDirectory)"
)
try self.fileSystem
.stripFirstLevel(of: tempExtractionDirectory)
} else {
observabilityScope
.emit(
debug: "no first level component stripping needed for \(tempExtractionDirectory)"
)
}
let content = try self.fileSystem
.getDirectoryContents(tempExtractionDirectory)
// copy from temp location to actual location
for file in content {
let source = tempExtractionDirectory
.appending(component: file)
let destination = destinationDirectory
.appending(component: file)
if self.fileSystem.exists(destination) {
try self.fileSystem.removeFileTree(destination)
}
try self.fileSystem.copy(from: source, to: destination)
}
}
// remove temp location
try self.fileSystem.removeFileTree(tempExtractionDirectory)
}
// derive concrete artifact path and type
guard let (artifactPath, artifactKind) = try? Self.deriveBinaryArtifact(
fileSystem: self.fileSystem,
path: destinationDirectory,
observabilityScope: observabilityScope
) else {
return observabilityScope
.emit(.remoteArtifactNotFound(
artifactURL: artifact.url,
targetName: artifact.targetName
))
}
result.append(
.remote(
packageRef: artifact.packageRef,
targetName: artifact.targetName,
url: artifact.url.absoluteString,
checksum: artifact.checksum,
path: artifactPath,
kind: artifactKind
)
)
self.delegate?.didDownloadBinaryArtifact(
from: artifact.url.absoluteString,
result: .success((path: artifactPath, fromCache: cached)),
duration: fetchStart.distance(to: .now())
)
case .failure(let error):
observabilityScope.emit(.remoteArtifactFailedExtraction(
artifactURL: artifact.url,
targetName: artifact.targetName,
reason: error.interpolationDescription
))
self.delegate?.didDownloadBinaryArtifact(
from: artifact.url.absoluteString,
result: .failure(error),
duration: fetchStart.distance(to: .now())
)
}
observabilityScope.trap { try self.fileSystem.removeFileTree(archivePath) }
}
)
case .failure(let error):
observabilityScope.emit(.artifactFailedValidation(
artifactURL: artifact.url,
targetName: artifact.targetName,
reason: error.interpolationDescription
))
self.delegate?.didDownloadBinaryArtifact(
from: artifact.url.absoluteString,
result: .failure(error),
duration: fetchStart.distance(to: .now())
)
}
})
case .failure(let error):
observabilityScope.trap { try self.fileSystem.removeFileTree(archivePath) }
observabilityScope.emit(.artifactFailedDownload(
artifactURL: artifact.url,
targetName: artifact.targetName,
reason: error.interpolationDescription
))
self.delegate?.didDownloadBinaryArtifact(
from: artifact.url.absoluteString,
result: .failure(error),
duration: fetchStart.distance(to: .now())
)
}
}
)
}
group.wait()
if zipArtifacts.count > 0 {
delegate?.didDownloadAllBinaryArtifacts()
}
return result.get()
}
func extract(
_ artifacts: [ManagedArtifact],
artifactsDirectory: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> [ManagedArtifact] {
let result = ThreadSafeArrayStore<ManagedArtifact>()
let group = DispatchGroup()
for artifact in artifacts {
let destinationDirectory = artifactsDirectory
.appending(components: [artifact.packageRef.identity.description, artifact.targetName])
try fileSystem.createDirectory(destinationDirectory, recursive: true)
let tempExtractionDirectory = artifactsDirectory.appending(
components: "extract",
artifact.packageRef.identity.description,
artifact.targetName,
UUID().uuidString
)
try self.fileSystem.forceCreateDirectory(at: tempExtractionDirectory)
group.enter()
self.archiver.extract(from: artifact.path, to: tempExtractionDirectory, completion: { extractResult in
defer { group.leave() }
switch extractResult {
case .success:
observabilityScope.trap { () in
try self.fileSystem.withLock(on: destinationDirectory, type: .exclusive) {
// strip first level component if needed
if try self.fileSystem.shouldStripFirstLevel(
archiveDirectory: tempExtractionDirectory,
acceptableExtensions: BinaryModule.Kind.allCases.map(\.fileExtension)
) {
observabilityScope
.emit(debug: "stripping first level component from \(tempExtractionDirectory)")
try self.fileSystem.stripFirstLevel(of: tempExtractionDirectory)
} else {
observabilityScope
.emit(
debug: "no first level component stripping needed for \(tempExtractionDirectory)"
)
}
let content = try self.fileSystem.getDirectoryContents(tempExtractionDirectory)
// copy from temp location to actual location
for file in content {
let source = tempExtractionDirectory.appending(component: file)
let destination = destinationDirectory.appending(component: file)
if self.fileSystem.exists(destination) {
try self.fileSystem.removeFileTree(destination)
}
try self.fileSystem.copy(from: source, to: destination)
}
}
// remove temp location
try self.fileSystem.removeFileTree(tempExtractionDirectory)
// derive concrete artifact path and type
guard let (artifactPath, artifactKind) = try Self.deriveBinaryArtifact(
fileSystem: self.fileSystem,
path: destinationDirectory,
observabilityScope: observabilityScope
) else {
return observabilityScope
.emit(.localArchivedArtifactNotFound(
archivePath: artifact.path,
targetName: artifact.targetName
))
}
// compute the checksum
let artifactChecksum = try self.checksum(forBinaryArtifactAt: artifact.path)
result.append(
.local(
packageRef: artifact.packageRef,
targetName: artifact.targetName,
path: artifactPath,
kind: artifactKind,
checksum: artifactChecksum
)
)
}
case .failure(let error):
let reason = (error as? LocalizedError)?.errorDescription ?? error.localizedDescription
observabilityScope
.emit(.localArtifactFailedExtraction(
artifactPath: artifact.path,
targetName: artifact.targetName,
reason: reason
))
}
})
}
group.wait()
return result.get()
}
package static func checksum(
forBinaryArtifactAt path: AbsolutePath,
hashAlgorithm: HashAlgorithm = SHA256(),
archiver: (any Archiver)? = nil,
fileSystem: any FileSystem
) throws -> String {
let archiver = archiver ?? UniversalArchiver(fileSystem)
// Validate the path has a supported extension.
guard let lastPathComponent = path.components.last, archiver.isFileSupported(lastPathComponent) else {
let supportedExtensionList = archiver.supportedExtensions.joined(separator: ", ")
throw StringError("unexpected file type; supported extensions are: \(supportedExtensionList)")
}
// Ensure that the path with the accepted extension is a file.
guard fileSystem.isFile(path) else {
throw StringError("file not found at path: \(path.pathString)")
}
let contents = try fileSystem.readFileContents(path)
return hashAlgorithm.hash(contents).hexadecimalRepresentation
}
public func checksum(forBinaryArtifactAt path: AbsolutePath) throws -> String {
try Self.checksum(
forBinaryArtifactAt: path,
hashAlgorithm: self.checksumAlgorithm,
archiver: self.archiver,
fileSystem: self.fileSystem
)
}
public func cancel(deadline: DispatchTime) throws {
try self.httpClient.cancel(deadline: deadline)
if let cancellableArchiver = self.archiver as? Cancellable {
try cancellableArchiver.cancel(deadline: deadline)
}
}
private func fetch(
artifact: RemoteArtifact,
destination: AbsolutePath,
observabilityScope: ObservabilityScope,
progress: @escaping (Int64, Optional<Int64>) -> Void,
completion: @escaping (Result<Bool, Error>) -> Void
) {
// not using cache, download directly
guard let cachePath = self.cachePath else {
self.delegate?.willDownloadBinaryArtifact(from: artifact.url.absoluteString, fromCache: false)
return self.download(
artifact: artifact,
destination: destination,
observabilityScope: observabilityScope,
progress: progress,
completion: { result in
// not fetched from cache
completion(result.map{ _ in false })
}
)
}
// initialize cache if necessary
do {
if !self.fileSystem.exists(cachePath) {
try self.fileSystem.createDirectory(cachePath, recursive: true)
}
} catch {
return completion(.failure(error))
}
// try to fetch from cache, or download and cache
// / FIXME: use better escaping of URL
let cacheKey = artifact.url.absoluteString.spm_mangledToC99ExtendedIdentifier()
let cachedArtifactPath = cachePath.appending(cacheKey)
if self.fileSystem.exists(cachedArtifactPath) {
observabilityScope.emit(debug: "copying cached binary artifact for \(artifact.url) from \(cachedArtifactPath)")
self.delegate?.willDownloadBinaryArtifact(from: artifact.url.absoluteString, fromCache: true)
return completion(
Result.init(catching: {
// copy from cache to destination
try self.fileSystem.copy(from: cachedArtifactPath, to: destination)
return true // fetched from cache
})
)
}
// download to the cache
observabilityScope.emit(debug: "downloading binary artifact for \(artifact.url) to cached at \(cachedArtifactPath)")
self.download(
artifact: artifact,
destination: cachedArtifactPath,
observabilityScope: observabilityScope,
progress: progress,
completion: { result in
self.delegate?.willDownloadBinaryArtifact(from: artifact.url.absoluteString, fromCache: false)
if case .failure = result {
try? self.fileSystem.removeFileTree(cachedArtifactPath)
}
completion(result.flatMap {
Result.init(catching: {
// copy from cache to destination
try self.fileSystem.copy(from: cachedArtifactPath, to: destination)
return false // not fetched from cache
})
})
}
)
}
private func download(
artifact: RemoteArtifact,
destination: AbsolutePath,
observabilityScope: ObservabilityScope,
progress: @escaping (Int64, Optional<Int64>) -> Void,
completion: @escaping (Result<Void, Error>) -> Void
) {
observabilityScope.emit(debug: "downloading \(artifact.url) to \(destination)")
var headers = HTTPClientHeaders()
headers.add(name: "Accept", value: "application/octet-stream")
var request = LegacyHTTPClient.Request.download(
url: artifact.url,
headers: headers,
fileSystem: self.fileSystem,
destination: destination
)
request.options.authorizationProvider = self.authorizationProvider?.httpAuthorizationHeader(for:)
request.options.retryStrategy = .exponentialBackoff(maxAttempts: 3, baseDelay: .milliseconds(50))
request.options.validResponseCodes = [200]
self.httpClient.execute(
request,
progress: progress,
completion: { result in
completion(result.map{ _ in Void() })
}
)
}
}
}
/// Delegate to notify clients about actions being performed by BinaryArtifactsDownloadsManage.
public protocol BinaryArtifactsManagerDelegate {
/// The workspace has started downloading a binary artifact.
func willDownloadBinaryArtifact(from url: String, fromCache: Bool)
/// The workspace has finished downloading a binary artifact.
func didDownloadBinaryArtifact(
from url: String,
result: Result<(path: AbsolutePath, fromCache: Bool), Error>,
duration: DispatchTimeInterval
)
/// The workspace is downloading a binary artifact.
func downloadingBinaryArtifact(from url: String, bytesDownloaded: Int64, totalBytesToDownload: Int64?)
/// The workspace finished downloading all binary artifacts.
func didDownloadAllBinaryArtifacts()
}
extension Workspace.BinaryArtifactsManager {
struct RemoteArtifact {
let packageRef: PackageReference
let targetName: String
let url: URL
let checksum: String
}
}
extension Workspace.BinaryArtifactsManager {
struct ArchiveIndexFile: Decodable {
let schemaVersion: String
let archives: [Archive]
struct Archive: Decodable {
let fileName: String
let checksum: String
let supportedTriples: [Triple]
enum CodingKeys: String, CodingKey {
case fileName
case checksum
case supportedTriples
}
public init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.fileName = try container.decode(String.self, forKey: .fileName)
self.checksum = try container.decode(String.self, forKey: .checksum)
self.supportedTriples = try container.decode([String].self, forKey: .supportedTriples).map(Triple.init)
}
}
}
}
extension Workspace.BinaryArtifactsManager {
static func deriveBinaryArtifact(
fileSystem: FileSystem,
path: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> (AbsolutePath, BinaryModule.Kind)? {
let binaryArtifacts = try Self.deriveBinaryArtifacts(
fileSystem: fileSystem,
path: path,
observabilityScope: observabilityScope
)
if binaryArtifacts.count > 1, let binaryArtifact = binaryArtifacts.last {
// multiple ones, return the last one to preserve old behavior
observabilityScope
.emit(
warning: "multiple potential binary artifacts found: '\(binaryArtifacts.map(\.0.description).joined(separator: "', '"))', using the one in '\(binaryArtifact.0)'"
)
return binaryArtifact
} else if let binaryArtifact = binaryArtifacts.first {
// single one
observabilityScope.emit(info: "found binary artifact: '\(binaryArtifact)'")
return binaryArtifact
} else {
return .none
}
}
private static func deriveBinaryArtifacts(
fileSystem: FileSystem,
path: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> [(AbsolutePath, BinaryModule.Kind)] {
guard fileSystem.exists(path) else {
return []
}
let subdirectories = try fileSystem.getDirectoryContents(path)
.map { path.appending(component: $0) }
.filter { fileSystem.isDirectory($0) }
// is the current path it?
if let kind = try deriveBinaryArtifactKind(
fileSystem: fileSystem,
path: path,
observabilityScope: observabilityScope
) {
return [(path, kind)]
}
// try to find a matching subdirectory
var results = [(AbsolutePath, BinaryModule.Kind)]()
for subdirectory in subdirectories {
observabilityScope.emit(debug: "searching for binary artifact in '\(path)'")
let subdirectoryResults = try Self.deriveBinaryArtifacts(
fileSystem: fileSystem,
path: subdirectory,
observabilityScope: observabilityScope
)
results.append(contentsOf: subdirectoryResults)
}
return results
}
private static func deriveBinaryArtifactKind(
fileSystem: FileSystem,
path: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> BinaryModule.Kind? {
let files = try fileSystem.getDirectoryContents(path)
.map { path.appending(component: $0) }
.filter { fileSystem.isFile($0) }
if let infoPlist = files.first(where: { $0.basename.lowercased() == "info.plist" }) {
let decoder = PropertyListDecoder()
do {
_ = try decoder.decode(XCFrameworkMetadata.self, from: fileSystem.readFileContents(infoPlist))
return .xcframework
} catch {
observabilityScope
.emit(debug: "info.plist found in '\(path)' but failed to parse: \(error.interpolationDescription)")
}
}
if let infoJSON = files.first(where: { $0.basename.lowercased() == "info.json" }) {
do {
_ = try ArtifactsArchiveMetadata.parse(fileSystem: fileSystem, rootPath: infoJSON.parentDirectory)
return .artifactsArchive
} catch {
observabilityScope.emit(
debug: "info.json found in '\(path)' but failed to parse",
underlyingError: error
)
}
}
return .none
}
}
extension Workspace {
func updateBinaryArtifacts(
manifests: DependencyManifests,
addedOrUpdatedPackages: [PackageReference],
observabilityScope: ObservabilityScope
) throws {
let manifestArtifacts = try self.binaryArtifactsManager.parseArtifacts(
from: manifests,
observabilityScope: observabilityScope
)
var artifactsToRemove: [ManagedArtifact] = []
var artifactsToAdd: [ManagedArtifact] = []
var artifactsToDownload: [BinaryArtifactsManager.RemoteArtifact] = []
var artifactsToExtract: [ManagedArtifact] = []
for artifact in state.artifacts {
if !manifestArtifacts.local
.contains(where: { $0.packageRef == artifact.packageRef && $0.targetName == artifact.targetName }) &&
!manifestArtifacts.remote
.contains(where: { $0.packageRef == artifact.packageRef && $0.targetName == artifact.targetName })
{
artifactsToRemove.append(artifact)
}
}
for artifact in manifestArtifacts.local {
let existingArtifact = self.state.artifacts[
packageIdentity: artifact.packageRef.identity,
targetName: artifact.targetName
]
if artifact.path.extension?.lowercased() == "zip" {
// If we already have an artifact that was extracted from an archive with the same checksum,
// we don't need to extract the artifact again.
if case .local(let existingChecksum) = existingArtifact?.source,
try existingChecksum == (self.binaryArtifactsManager.checksum(forBinaryArtifactAt: artifact.path))
{
continue
}
artifactsToExtract.append(artifact)
} else {
guard let _ = try BinaryArtifactsManager.deriveBinaryArtifact(
fileSystem: self.fileSystem,
path: artifact.path,
observabilityScope: observabilityScope
) else {
observabilityScope.emit(.localArtifactNotFound(
artifactPath: artifact.path,
targetName: artifact.targetName
))
continue
}
artifactsToAdd.append(artifact)
}
if let existingArtifact, isAtArtifactsDirectory(existingArtifact) {
// Remove the old extracted artifact, be it local archived or remote one.
artifactsToRemove.append(existingArtifact)
}
}
for artifact in manifestArtifacts.remote {
let existingArtifact = self.state.artifacts[
packageIdentity: artifact.packageRef.identity,
targetName: artifact.targetName
]
if let existingArtifact {
if case .remote(let existingURL, let existingChecksum) = existingArtifact.source {
// If we already have an artifact with the same checksum, we don't need to download it again.
if artifact.checksum == existingChecksum {
continue
}
let urlChanged = artifact.url != URL(string: existingURL)
// If the checksum is different but the package wasn't updated, this is a security risk.
if !urlChanged && !addedOrUpdatedPackages.contains(artifact.packageRef) {
observabilityScope.emit(.artifactChecksumChanged(targetName: artifact.targetName))
continue
}
}
if isAtArtifactsDirectory(existingArtifact) {
// Remove the old extracted artifact, be it local archived or remote one.
artifactsToRemove.append(existingArtifact)
}
}
artifactsToDownload.append(artifact)
}
// Remove the artifacts and directories which are not needed anymore.
observabilityScope.trap {
for artifact in artifactsToRemove {
state.artifacts.remove(packageIdentity: artifact.packageRef.identity, targetName: artifact.targetName)
if isAtArtifactsDirectory(artifact) {
try fileSystem.removeFileTree(artifact.path)
}
}
for directory in try fileSystem.getDirectoryContents(self.location.artifactsDirectory) {
let directoryPath = self.location.artifactsDirectory.appending(component: directory)
if try fileSystem.isDirectory(directoryPath) && fileSystem.getDirectoryContents(directoryPath).isEmpty {
try fileSystem.removeFileTree(directoryPath)
}
}
}
guard !observabilityScope.errorsReported else {
throw Diagnostics.fatalError
}
// Download the artifacts
let downloadedArtifacts = try self.binaryArtifactsManager.fetch(
artifactsToDownload,
artifactsDirectory: self.location.artifactsDirectory,
observabilityScope: observabilityScope
)
artifactsToAdd.append(contentsOf: downloadedArtifacts)
// Extract the local archived artifacts
let extractedLocalArtifacts = try self.binaryArtifactsManager.extract(
artifactsToExtract,
artifactsDirectory: self.location.artifactsDirectory,
observabilityScope: observabilityScope
)
artifactsToAdd.append(contentsOf: extractedLocalArtifacts)
// Add the new artifacts
for artifact in artifactsToAdd {
self.state.artifacts.add(artifact)
}
guard !observabilityScope.errorsReported else {
throw Diagnostics.fatalError
}
observabilityScope.trap {
try self.state.save()
}
func isAtArtifactsDirectory(_ artifact: ManagedArtifact) -> Bool {
artifact.path.isDescendant(of: self.location.artifactsDirectory)
}
}
}
extension FileSystem {
// helper to decide if an archive directory would benefit from stripping first level
fileprivate func shouldStripFirstLevel(
archiveDirectory: AbsolutePath,
acceptableExtensions: [String]? = nil
) throws -> Bool {
let subdirectories = try self.getDirectoryContents(archiveDirectory)
.map { archiveDirectory.appending(component: $0) }
.filter { self.isDirectory($0) }
// single top-level directory required
guard subdirectories.count == 1, let rootDirectory = subdirectories.first else {
return false
}
// no acceptable extensions defined, so the single top-level directory is a good candidate
guard let acceptableExtensions else {
return true
}
// the single top-level directory is already one of the acceptable extensions, so no need to strip
if rootDirectory.extension.map({ acceptableExtensions.contains($0) }) ?? false {
return false
}
// see if there is "grand-child" directory with one of the acceptable extensions
return try self.getDirectoryContents(rootDirectory)
.map { rootDirectory.appending(component: $0) }
.first { $0.extension.map { acceptableExtensions.contains($0) } ?? false } != nil
}
}
|