-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathWorkspace+Configuration.swift
More file actions
929 lines (797 loc) · 36.6 KB
/
Workspace+Configuration.swift
File metadata and controls
929 lines (797 loc) · 36.6 KB
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2018-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 Basics
import Foundation
import PackageFingerprint
import PackageGraph
import PackageLoading
import PackageModel
import PackageRegistry
import struct TSCBasic.ByteString
import protocol TSCUtility.SimplePersistanceProtocol
import class TSCUtility.SimplePersistence
// MARK: - Location
extension Workspace {
/// Workspace location configuration
public struct Location {
/// Path to scratch space (working) directory for this workspace (aka .build).
public var scratchDirectory: AbsolutePath
/// Path to store the editable versions of dependencies.
public var editsDirectory: AbsolutePath
/// Path to the Package.resolved file.
public var resolvedVersionsFile: AbsolutePath
/// Path to the local configuration directory.
public var localConfigurationDirectory: AbsolutePath
/// Path to the shared configuration directory.
public var sharedConfigurationDirectory: AbsolutePath?
/// Path to the shared security directory.
public var sharedSecurityDirectory: AbsolutePath?
/// Path to the shared cache directory.
public var sharedCacheDirectory: AbsolutePath?
/// Path to the shared Swift SDKs directory.
public var sharedSwiftSDKsDirectory: AbsolutePath?
/// Whether or not to emit a warning about the existence of deprecated configuration files.
public var emitDeprecatedConfigurationWarning: Bool
// working directories
/// Path to the repositories clones.
public var repositoriesDirectory: AbsolutePath {
self.scratchDirectory.appending("repositories")
}
/// Path to the repository checkouts.
public var repositoriesCheckoutsDirectory: AbsolutePath {
self.scratchDirectory.appending("checkouts")
}
/// Path to the registry downloads.
public var registryDownloadDirectory: AbsolutePath {
self.scratchDirectory.appending(components: "registry", "downloads")
}
/// Path to the downloaded binary artifacts.
public var artifactsDirectory: AbsolutePath {
self.scratchDirectory.appending("artifacts")
}
/// Path to the downloaded prebuilts directory
public var prebuiltsDirectory: AbsolutePath {
self.scratchDirectory.appending("prebuilts")
}
// Path to temporary files related to running plugins in the workspace
public var pluginWorkingDirectory: AbsolutePath {
self.scratchDirectory.appending("plugins")
}
// config locations
/// Path to the local mirrors configuration.
public var localMirrorsConfigurationFile: AbsolutePath {
get throws {
// backwards compatibility
if let customPath = Environment.current["SWIFTPM_MIRROR_CONFIG"] {
return try AbsolutePath(validating: customPath)
}
return DefaultLocations.mirrorsConfigurationFile(at: self.localConfigurationDirectory)
}
}
/// Path to the shared mirrors configuration.
public var sharedMirrorsConfigurationFile: AbsolutePath? {
self.sharedConfigurationDirectory.map { DefaultLocations.mirrorsConfigurationFile(at: $0) }
}
/// Path to the local registries configuration.
public var localRegistriesConfigurationFile: AbsolutePath {
DefaultLocations.registriesConfigurationFile(at: self.localConfigurationDirectory)
}
/// Path to the shared registries configuration.
public var sharedRegistriesConfigurationFile: AbsolutePath? {
self.sharedConfigurationDirectory.map { DefaultLocations.registriesConfigurationFile(at: $0) }
}
// security locations
/// Path to the shared fingerprints directory.
public var sharedFingerprintsDirectory: AbsolutePath? {
self.sharedSecurityDirectory.map { $0.appending("fingerprints") }
}
/// Path to the shared directory where package signing records are kept.
public var sharedSigningEntitiesDirectory: AbsolutePath? {
self.sharedSecurityDirectory.map { $0.appending("signing-entities") }
}
/// Path to the shared trusted root certificates directory.
public var sharedTrustedRootCertificatesDirectory: AbsolutePath? {
self.sharedSecurityDirectory.map { $0.appending("trusted-root-certs") }
}
// cache locations
/// Path to the shared manifests cache.
public var sharedManifestsCacheDirectory: AbsolutePath? {
self.sharedCacheDirectory.map { DefaultLocations.manifestsDirectory(at: $0) }
}
/// Path to the shared repositories cache.
public var sharedRepositoriesCacheDirectory: AbsolutePath? {
self.sharedCacheDirectory.map { $0.appending("repositories") }
}
/// Path to the shared registry download cache.
public var sharedRegistryDownloadsCacheDirectory: AbsolutePath? {
self.sharedCacheDirectory.map { $0.appending(components: "registry", "downloads") }
}
/// Path to the shared repositories cache.
public var sharedBinaryArtifactsCacheDirectory: AbsolutePath? {
self.sharedCacheDirectory.map { $0.appending("artifacts") }
}
/// Path to the shared prebuilts cache
public var sharedPrebuiltsCacheDirectory: AbsolutePath? {
self.sharedCacheDirectory.map { $0.appending("prebuilts")}
}
/// Create a new workspace location.
///
/// - Parameters:
/// - scratchDirectory: Path to scratch space (working) directory for this workspace.
/// - editsDirectory: Path to store the editable versions of dependencies.
/// - resolvedVersionsFile: Path to the Package.resolved file.
/// - sharedSecurityDirectory: Path to the shared security directory.
/// - sharedCacheDirectory: Path to the shared cache directory.
/// - sharedConfigurationDirectory: Path to the shared configuration directory.
public init(
scratchDirectory: AbsolutePath,
editsDirectory: AbsolutePath,
resolvedVersionsFile: AbsolutePath,
localConfigurationDirectory: AbsolutePath,
sharedConfigurationDirectory: AbsolutePath?,
sharedSecurityDirectory: AbsolutePath?,
sharedCacheDirectory: AbsolutePath?,
emitDeprecatedConfigurationWarning: Bool = true
) {
self.scratchDirectory = scratchDirectory
self.editsDirectory = editsDirectory
self.resolvedVersionsFile = resolvedVersionsFile
self.localConfigurationDirectory = localConfigurationDirectory
self.sharedConfigurationDirectory = sharedConfigurationDirectory
self.sharedSecurityDirectory = sharedSecurityDirectory
self.sharedCacheDirectory = sharedCacheDirectory
self.emitDeprecatedConfigurationWarning = emitDeprecatedConfigurationWarning
}
/// Create a new workspace location.
///
/// - Parameters:
/// - rootPath: Path to the root of the package, from which other locations can be derived.
public init(forRootPackage rootPath: AbsolutePath, fileSystem: FileSystem) throws {
try self.init(
scratchDirectory: DefaultLocations.scratchDirectory(forRootPackage: rootPath),
editsDirectory: DefaultLocations.editsDirectory(forRootPackage: rootPath),
resolvedVersionsFile: DefaultLocations.resolvedVersionsFile(forRootPackage: rootPath),
localConfigurationDirectory: DefaultLocations.configurationDirectory(forRootPackage: rootPath),
sharedConfigurationDirectory: fileSystem.swiftPMConfigurationDirectory,
sharedSecurityDirectory: fileSystem.swiftPMSecurityDirectory,
sharedCacheDirectory: fileSystem.swiftPMCacheDirectory
)
}
}
}
// MARK: - Default locations
extension Workspace {
/// Workspace default locations utilities
public struct DefaultLocations {
public static var resolvedFileName = "Package.resolved"
public static func scratchDirectory(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
rootPath.appending(".build")
}
public static func editsDirectory(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
rootPath.appending("Packages")
}
public static func resolvedVersionsFile(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
rootPath.appending(self.resolvedFileName)
}
public static func configurationDirectory(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
rootPath.appending(components: ".swiftpm", "configuration")
}
public static func mirrorsConfigurationFile(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
self.mirrorsConfigurationFile(at: self.configurationDirectory(forRootPackage: rootPath))
}
public static func mirrorsConfigurationFile(at path: AbsolutePath) -> AbsolutePath {
path.appending("mirrors.json")
}
public static func registriesConfigurationFile(forRootPackage rootPath: AbsolutePath) -> AbsolutePath {
self.registriesConfigurationFile(at: self.configurationDirectory(forRootPackage: rootPath))
}
public static func registriesConfigurationFile(at path: AbsolutePath) -> AbsolutePath {
path.appending("registries.json")
}
public static func manifestsDirectory(at path: AbsolutePath) -> AbsolutePath {
path.appending("manifests")
}
}
public static func migrateMirrorsConfiguration(
from legacyPath: AbsolutePath,
to newPath: AbsolutePath,
observabilityScope: ObservabilityScope
) throws -> AbsolutePath {
if localFileSystem.isFile(legacyPath) {
if localFileSystem.isSymlink(legacyPath) {
let resolvedLegacyPath = try resolveSymlinks(legacyPath)
return try self.migrateMirrorsConfiguration(
from: resolvedLegacyPath,
to: newPath,
observabilityScope: observabilityScope
)
} else if localFileSystem.isFile(newPath.parentDirectory) {
observabilityScope
.emit(
warning: "Unable to migrate legacy mirrors configuration, because \(newPath.parentDirectory) already exists."
)
} else if let content = try? localFileSystem.readFileContents(legacyPath), content.count > 0 {
observabilityScope
.emit(
warning: "Usage of \(legacyPath) has been deprecated. Please delete it and use the new \(newPath) instead."
)
if !localFileSystem.exists(newPath, followSymlink: false) {
try localFileSystem.createDirectory(newPath.parentDirectory, recursive: true)
try localFileSystem.copy(from: legacyPath, to: newPath)
}
}
}
return newPath.parentDirectory
}
}
// MARK: - Authorization
extension Workspace.Configuration {
public struct Authorization {
public var netrc: Netrc
public var keychain: Keychain
public static var `default`: Self {
#if canImport(Security)
Self(netrc: .user, keychain: .enabled)
#else
Self(netrc: .user, keychain: .disabled)
#endif
}
public init(netrc: Netrc, keychain: Keychain) {
self.netrc = netrc
self.keychain = keychain
}
public func makeAuthorizationProvider(
fileSystem: FileSystem,
observabilityScope: ObservabilityScope
) throws -> AuthorizationProvider? {
var providers = [AuthorizationProvider]()
let env = Environment.current
if let token = env[.swiftpmSourceControlToken], !token.isEmpty {
providers.append(EnvironmentAuthorizationProvider(kind: .sourceControl))
}
if let netrcData = env[.swiftpmNetrcData], !netrcData.isEmpty {
do {
providers.append(try InMemoryNetrcAuthorizationProvider(content: netrcData))
} catch {
observabilityScope.emit(
warning: "Failed to parse SWIFTPM_NETRC_DATA environment variable",
underlyingError: error
)
}
}
switch self.netrc {
case .custom(let path):
guard fileSystem.exists(path) else {
throw StringError("Did not find netrc file at \(path).")
}
try providers.append(NetrcAuthorizationProvider(path: path, fileSystem: fileSystem))
case .user:
// user .netrc file (most typical)
let userHomePath = try fileSystem.homeDirectory.appending(".netrc")
// user didn't tell us to explicitly use these .netrc files so be more lenient with errors
if let userHomeProvider = self.loadOptionalNetrc(
fileSystem: fileSystem,
path: userHomePath,
observabilityScope: observabilityScope
) {
providers.append(userHomeProvider)
}
case .disabled:
// noop
break
}
switch self.keychain {
case .enabled:
#if canImport(Security)
providers.append(KeychainAuthorizationProvider(observabilityScope: observabilityScope))
#else
throw InternalError("Keychain not supported on this platform")
#endif
case .disabled:
// noop
break
}
return providers.isEmpty ? .none : CompositeAuthorizationProvider(
providers,
observabilityScope: observabilityScope
)
}
public func makeRegistryAuthorizationProvider(
fileSystem: FileSystem,
observabilityScope: ObservabilityScope
) throws -> AuthorizationProvider? {
let env = Environment.current
if let token = env[.swiftpmRegistryToken], !token.isEmpty {
return EnvironmentAuthorizationProvider(kind: .registry)
}
if let login = env[.swiftpmRegistryLogin], !login.isEmpty,
let password = env[.swiftpmRegistryPassword], !password.isEmpty {
return EnvironmentAuthorizationProvider(kind: .registry)
} else if let login = env[.swiftpmRegistryLogin], !login.isEmpty {
observabilityScope.emit(
warning: "SWIFTPM_REGISTRY_LOGIN is set but SWIFTPM_REGISTRY_PASSWORD is not; both are required for login/password authentication"
)
} else if let password = env[.swiftpmRegistryPassword], !password.isEmpty {
observabilityScope.emit(
warning: "SWIFTPM_REGISTRY_PASSWORD is set but SWIFTPM_REGISTRY_LOGIN is not; both are required for login/password authentication"
)
}
if let netrcData = env[.swiftpmNetrcData], !netrcData.isEmpty {
do {
return try InMemoryNetrcAuthorizationProvider(content: netrcData)
} catch {
observabilityScope.emit(
warning: "Failed to parse SWIFTPM_NETRC_DATA environment variable",
underlyingError: error
)
}
}
var providers = [AuthorizationProvider]()
// OS-specific AuthorizationProvider has higher precedence
switch self.keychain {
case .enabled:
#if canImport(Security)
providers.append(KeychainAuthorizationProvider(observabilityScope: observabilityScope))
#else
throw InternalError("Keychain not supported on this platform")
#endif
case .disabled:
// noop
break
}
switch self.netrc {
case .custom(let path):
guard fileSystem.exists(path) else {
throw StringError("did not find netrc file at \(path)")
}
try providers.append(NetrcAuthorizationProvider(path: path, fileSystem: fileSystem))
case .user:
let userHomePath = try fileSystem.homeDirectory.appending(".netrc")
// Add user .netrc file unless we don't have access
if let userHomeProvider = try? NetrcAuthorizationProvider(path: userHomePath, fileSystem: fileSystem) {
providers.append(userHomeProvider)
}
case .disabled:
throw InternalError("netrc file should not have been disabled")
}
// Use at-most one AuthorizationProvider (i.e., no CompositeAuthorizationProvider)
return providers.first
}
private func loadOptionalNetrc(
fileSystem: FileSystem,
path: AbsolutePath,
observabilityScope: ObservabilityScope
) -> NetrcAuthorizationProvider? {
guard fileSystem.exists(path) && fileSystem.isReadable(path) else {
return .none
}
do {
return try NetrcAuthorizationProvider(path: path, fileSystem: fileSystem)
} catch {
observabilityScope.emit(
warning: "Failed to load netrc file at \(path)",
underlyingError: error
)
return .none
}
}
public enum Netrc {
case disabled
case custom(AbsolutePath)
case user
}
public enum Keychain {
case disabled
case enabled
}
}
}
// MARK: - Mirrors
extension Workspace.Configuration {
public struct Mirrors {
private let localMirrors: MirrorsStorage
private let sharedMirrors: MirrorsStorage?
private let fileSystem: FileSystem
private var _mirrors: DependencyMirrors
private let lock = NSLock()
/// The mirrors in this configuration
public var mirrors: DependencyMirrors {
self.lock.withLock {
self._mirrors
}
}
/// A convenience initializer for creating a workspace mirrors configuration for the given root
/// package path.
///
/// - Parameters:
/// - forRootPackage: The path for the root package.
/// - sharedMirrorFile: Path to the shared mirrors configuration file, defaults to the standard location.
/// - fileSystem: The file system to use.
public init(
forRootPackage rootPath: AbsolutePath,
sharedMirrorFile: AbsolutePath?,
fileSystem: FileSystem
) throws {
let localMirrorConfigFile = Workspace.DefaultLocations.mirrorsConfigurationFile(forRootPackage: rootPath)
try self.init(
fileSystem: fileSystem,
localMirrorsFile: localMirrorConfigFile,
sharedMirrorsFile: sharedMirrorFile
)
}
/// Initialize the workspace mirrors configuration
///
/// - Parameters:
/// - fileSystem: The file system to use.
/// - localMirrorsFile: Path to the workspace mirrors configuration file
/// - sharedMirrorsFile: Path to the shared mirrors configuration file, defaults to the standard location.
public init(
fileSystem: FileSystem,
localMirrorsFile: AbsolutePath,
sharedMirrorsFile: AbsolutePath?
) throws {
self.localMirrors = .init(path: localMirrorsFile, fileSystem: fileSystem, deleteWhenEmpty: true)
self.sharedMirrors = sharedMirrorsFile
.map { .init(path: $0, fileSystem: fileSystem, deleteWhenEmpty: false) }
self.fileSystem = fileSystem
// computes the initial mirrors
self._mirrors = try DependencyMirrors()
try self.computeMirrors()
}
@discardableResult
public func applyLocal(handler: (inout DependencyMirrors) throws -> Void) throws -> DependencyMirrors {
try self.localMirrors.apply(handler: handler)
try self.computeMirrors()
return self.mirrors
}
@discardableResult
public func applyShared(handler: (inout DependencyMirrors) throws -> Void) throws -> DependencyMirrors {
guard let sharedMirrors else {
throw InternalError("shared mirrors not configured")
}
try sharedMirrors.apply(handler: handler)
try self.computeMirrors()
return self.mirrors
}
// mutating the state we hold since we are passing it by reference to the workspace
// access should be done using a lock
private func computeMirrors() throws {
try self.lock.withLock {
self._mirrors.removeAll()
// prefer local mirrors to shared ones
let local = try self.localMirrors.get()
if !local.isEmpty {
try self._mirrors.append(contentsOf: local)
return
}
// use shared if local was not found or empty
if let shared = try self.sharedMirrors?.get(), !shared.isEmpty {
try self._mirrors.append(contentsOf: shared)
}
}
}
}
}
extension Workspace.Configuration {
public struct MirrorsStorage {
private let path: AbsolutePath
private let fileSystem: FileSystem
private let deleteWhenEmpty: Bool
public init(path: AbsolutePath, fileSystem: FileSystem, deleteWhenEmpty: Bool) {
self.path = path
self.fileSystem = fileSystem
self.deleteWhenEmpty = deleteWhenEmpty
}
/// The mirrors in this configuration
public func get() throws -> DependencyMirrors {
guard self.fileSystem.exists(self.path) else {
return try DependencyMirrors()
}
return try self.fileSystem.withLock(on: self.path.parentDirectory, type: .shared) {
try DependencyMirrors(Self.load(self.path, fileSystem: self.fileSystem))
}
}
/// Apply a mutating handler on the mirrors in this configuration
@discardableResult
public func apply(handler: (inout DependencyMirrors) throws -> Void) throws -> DependencyMirrors {
if !self.fileSystem.exists(self.path.parentDirectory) {
try self.fileSystem.createDirectory(self.path.parentDirectory, recursive: true)
}
return try self.fileSystem.withLock(on: self.path.parentDirectory, type: .exclusive) {
let mirrors = try DependencyMirrors(Self.load(self.path, fileSystem: self.fileSystem))
var updatedMirrors = try DependencyMirrors(mirrors.mapping)
try handler(&updatedMirrors)
if updatedMirrors != mirrors {
try Self.save(
updatedMirrors.mapping,
to: self.path,
fileSystem: self.fileSystem,
deleteWhenEmpty: self.deleteWhenEmpty
)
}
return updatedMirrors
}
}
private static func load(_ path: AbsolutePath, fileSystem: FileSystem) throws -> [String: String] {
guard fileSystem.exists(path) else {
return [:]
}
let data: Data = try fileSystem.readFileContents(path)
let decoder = JSONDecoder.makeWithDefaults()
let mirrors = try decoder.decode(MirrorsStorage.self, from: data)
let mirrorsMap = Dictionary(
mirrors.object.map { ($0.original, $0.mirror) },
uniquingKeysWith: { first, _ in first }
)
return mirrorsMap
}
private static func save(
_ mirrors: [String: String],
to path: AbsolutePath,
fileSystem: FileSystem,
deleteWhenEmpty: Bool
) throws {
if mirrors.isEmpty {
if deleteWhenEmpty && fileSystem.exists(path) {
// deleteWhenEmpty is a backward compatibility mode
return try fileSystem.removeFileTree(path)
} else if !fileSystem.exists(path) {
// nothing to do
return
}
}
let encoder = JSONEncoder.makeWithDefaults()
let mirrors = MirrorsStorage(version: 1, object: mirrors.map { .init(original: $0, mirror: $1) })
let data = try encoder.encode(mirrors)
if !fileSystem.exists(path.parentDirectory) {
try fileSystem.createDirectory(path.parentDirectory, recursive: true)
}
try fileSystem.writeFileContents(path, data: data)
}
// structure is for backwards compatibility
private struct MirrorsStorage: Codable {
var version: Int
var object: [Mirror]
struct Mirror: Codable {
var original: String
var mirror: String
}
}
}
}
// MARK: - Registries
extension Workspace.Configuration {
public class Registries {
private let localRegistries: RegistriesStorage?
private let sharedRegistries: RegistriesStorage?
private let fileSystem: FileSystem
private var _configuration = RegistryConfiguration()
private let lock = NSLock()
/// The registry configuration
public var configuration: RegistryConfiguration {
self.lock.withLock {
self._configuration
}
}
/// Initialize the workspace registries configuration
///
/// - Parameters:
/// - fileSystem: The file system to use.
/// - localRegistriesFile: Path to the workspace registries configuration file
/// - sharedRegistriesFile: Path to the shared registries configuration file,
/// defaults to the standard location.
public init(
fileSystem: FileSystem,
localRegistriesFile: AbsolutePath?,
sharedRegistriesFile: AbsolutePath?
) throws {
// At least one of local or shared is required
if localRegistriesFile == nil, sharedRegistriesFile == nil {
throw StringError("No registries configuration provided")
}
self.fileSystem = fileSystem
self.localRegistries = localRegistriesFile.map { .init(path: $0, fileSystem: fileSystem) }
self.sharedRegistries = sharedRegistriesFile.map { .init(path: $0, fileSystem: fileSystem) }
try self.computeRegistries()
}
@discardableResult
public func updateLocal(with handler: (inout RegistryConfiguration) throws -> Void) throws
-> RegistryConfiguration
{
guard let localRegistries else {
throw InternalError("local registries not configured")
}
try localRegistries.update(with: handler)
try self.computeRegistries()
return self.configuration
}
@discardableResult
public func updateShared(with handler: (inout RegistryConfiguration) throws -> Void) throws
-> RegistryConfiguration
{
guard let sharedRegistries else {
throw InternalError("shared registries not configured")
}
try sharedRegistries.update(with: handler)
try self.computeRegistries()
return self.configuration
}
// mutating the state we hold since we are passing it by reference to the workspace
// access should be done using a lock
private func computeRegistries() throws {
try self.lock.withLock {
var configuration = RegistryConfiguration()
if let sharedConfiguration = try sharedRegistries?.load() {
configuration.merge(sharedConfiguration)
}
if let localConfiguration = try localRegistries?.load() {
configuration.merge(localConfiguration)
}
self._configuration = configuration
}
}
}
}
extension Workspace.Configuration {
private struct RegistriesStorage {
private let path: AbsolutePath
private let fileSystem: FileSystem
public init(path: AbsolutePath, fileSystem: FileSystem) {
self.path = path
self.fileSystem = fileSystem
}
public func load() throws -> RegistryConfiguration {
guard self.fileSystem.exists(self.path) else {
return RegistryConfiguration()
}
do {
let decoder = JSONDecoder.makeWithDefaults()
return try decoder.decode(path: self.path, fileSystem: self.fileSystem, as: RegistryConfiguration.self)
} catch {
throw StringError(
"Failed loading registries configuration from '\(self.path)': \(error.interpolationDescription)"
)
}
}
public func save(_ configuration: RegistryConfiguration) throws {
let encoder = JSONEncoder.makeWithDefaults()
let data = try encoder.encode(configuration)
if !self.fileSystem.exists(self.path.parentDirectory) {
try self.fileSystem.createDirectory(self.path.parentDirectory, recursive: true)
}
try self.fileSystem.writeFileContents(self.path, data: data)
}
@discardableResult
public func update(with handler: (inout RegistryConfiguration) throws -> Void) throws -> RegistryConfiguration {
let configuration = try load()
var updatedConfiguration = configuration
try handler(&updatedConfiguration)
if updatedConfiguration != configuration {
try self.save(updatedConfiguration)
}
return updatedConfiguration
}
}
}
// FIXME: better name
public struct WorkspaceConfiguration {
/// Enables the dependencies resolver automatic version updates. Disabled by default.
/// When disabled the resolver does not attempt to update the dependencies as part of resolution.
public var skipDependenciesUpdates: Bool
/// Enables the dependencies resolver prefetching based on the resolved versions file. Enabled by default.
/// When disabled the resolver does not attempt to pre-fetch the dependencies based on the resolved versions file.
public var prefetchBasedOnResolvedFile: Bool
/// File rules to determine resource handling behavior.
public var additionalFileRules: [FileRuleDescription]
/// Enables the shared dependencies cache. Enabled by default.
public var sharedDependenciesCacheEnabled: Bool
/// Fingerprint checking mode. Defaults to strict.
public var fingerprintCheckingMode: CheckingMode
/// Signing entity checking mode. Defaults to warn.
public var signingEntityCheckingMode: CheckingMode
/// Whether to skip validating signature of signed packages downloaded from registry
public var skipSignatureValidation: Bool
/// Attempt to transform source control based dependencies to registry ones
public var sourceControlToRegistryDependencyTransformation: SourceControlToRegistryDependencyTransformation?
/// URL of the implicitly configured, default registry
public var defaultRegistry: Registry?
/// Whether to create multiple test products or one per package
public var shouldCreateMultipleTestProducts: Bool
/// Whether to create a product for use in the Swift REPL
public var createREPLProduct: Bool
/// Whether or not there should be import restrictions applied when loading manifests
public var manifestImportRestrictions: (startingToolsVersion: ToolsVersion, allowedImports: [String])?
/// Whether or not to use prebuilt swift-syntax for macros
public var usePrebuilts: Bool
/// String URL to allow override of the prebuilts download location
public var prebuiltsDownloadURL: String?
/// Path to root certificate used when validating the manifest signing during testing
public var prebuiltsRootCertPath: String?
/// Whether to omit unused dependencies.
public var pruneDependencies: Bool
/// The trait configuration for the root.
public var traitConfiguration: TraitConfiguration
public init(
skipDependenciesUpdates: Bool,
prefetchBasedOnResolvedFile: Bool,
shouldCreateMultipleTestProducts: Bool,
createREPLProduct: Bool,
additionalFileRules: [FileRuleDescription],
sharedDependenciesCacheEnabled: Bool,
fingerprintCheckingMode: CheckingMode,
signingEntityCheckingMode: CheckingMode,
skipSignatureValidation: Bool,
sourceControlToRegistryDependencyTransformation: SourceControlToRegistryDependencyTransformation?,
defaultRegistry: Registry?,
manifestImportRestrictions: (startingToolsVersion: ToolsVersion, allowedImports: [String])?,
usePrebuilts: Bool,
prebuiltsDownloadURL: String?,
prebuiltsRootCertPath: String?,
pruneDependencies: Bool,
traitConfiguration: TraitConfiguration
) {
self.skipDependenciesUpdates = skipDependenciesUpdates
self.prefetchBasedOnResolvedFile = prefetchBasedOnResolvedFile
self.shouldCreateMultipleTestProducts = shouldCreateMultipleTestProducts
self.createREPLProduct = createREPLProduct
self.additionalFileRules = additionalFileRules
self.sharedDependenciesCacheEnabled = sharedDependenciesCacheEnabled
self.fingerprintCheckingMode = fingerprintCheckingMode
self.signingEntityCheckingMode = signingEntityCheckingMode
self.skipSignatureValidation = skipSignatureValidation
self.sourceControlToRegistryDependencyTransformation = sourceControlToRegistryDependencyTransformation
self.defaultRegistry = defaultRegistry
self.manifestImportRestrictions = manifestImportRestrictions
self.usePrebuilts = usePrebuilts
self.prebuiltsDownloadURL = prebuiltsDownloadURL
self.prebuiltsRootCertPath = prebuiltsRootCertPath
self.pruneDependencies = pruneDependencies
self.traitConfiguration = traitConfiguration
}
/// Default instance of WorkspaceConfiguration
public static var `default`: Self {
.init(
skipDependenciesUpdates: false,
prefetchBasedOnResolvedFile: true,
shouldCreateMultipleTestProducts: false,
createREPLProduct: false,
additionalFileRules: [],
sharedDependenciesCacheEnabled: true,
fingerprintCheckingMode: .strict,
signingEntityCheckingMode: .warn,
skipSignatureValidation: false,
sourceControlToRegistryDependencyTransformation: nil,
defaultRegistry: .none,
manifestImportRestrictions: .none,
usePrebuilts: false,
prebuiltsDownloadURL: nil,
prebuiltsRootCertPath: nil,
pruneDependencies: false,
traitConfiguration: .default
)
}
public enum SourceControlToRegistryDependencyTransformation {
case disabled
case identity
case swizzle
}
public enum CheckingMode: String {
case strict
case warn
}
}
// MARK: - Deprecated 8/20201
extension Workspace {
/// Manages a package workspace's configuration.
// FIXME: change into enum after deprecation grace period
public final class Configuration {}
}