forked from Carthage/Carthage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VersionFile.swift
523 lines (469 loc) · 16.6 KB
/
VersionFile.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
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
import Foundation
import ReactiveSwift
import ReactiveTask
import Result
import XCDBLD
struct CachedFramework: Codable {
enum CodingKeys: String, CodingKey {
case name = "name"
case hash = "hash"
case swiftToolchainVersion = "swiftToolchainVersion"
}
let name: String
let hash: String
let swiftToolchainVersion: String?
var isSwiftFramework: Bool {
return swiftToolchainVersion != nil
}
}
struct VersionFile: Codable {
enum CodingKeys: String, CodingKey {
case commitish = "commitish"
case macOS = "Mac"
case iOS = "iOS"
case watchOS = "watchOS"
case tvOS = "tvOS"
}
let commitish: String
let macOS: [CachedFramework]?
let iOS: [CachedFramework]?
let watchOS: [CachedFramework]?
let tvOS: [CachedFramework]?
/// The extension representing a serialized VersionFile.
static let pathExtension = "version"
subscript(_ platform: Platform) -> [CachedFramework]? {
switch platform {
case .macOS:
return macOS
case .iOS:
return iOS
case .watchOS:
return watchOS
case .tvOS:
return tvOS
}
}
init(
commitish: String,
macOS: [CachedFramework]?,
iOS: [CachedFramework]?,
watchOS: [CachedFramework]?,
tvOS: [CachedFramework]?
) {
self.commitish = commitish
self.macOS = macOS
self.iOS = iOS
self.watchOS = watchOS
self.tvOS = tvOS
}
init?(url: URL) {
guard
FileManager.default.fileExists(atPath: url.path),
let jsonData = try? Data(contentsOf: url),
let versionFile = try? JSONDecoder().decode(VersionFile.self, from: jsonData) else
{
return nil
}
self = versionFile
}
func frameworkURL(
for cachedFramework: CachedFramework,
platform: Platform,
binariesDirectoryURL: URL
) -> URL {
return binariesDirectoryURL
.appendingPathComponent(platform.rawValue, isDirectory: true)
.resolvingSymlinksInPath()
.appendingPathComponent("\(cachedFramework.name).framework", isDirectory: true)
}
func frameworkBinaryURL(
for cachedFramework: CachedFramework,
platform: Platform,
binariesDirectoryURL: URL
) -> URL {
return frameworkURL(
for: cachedFramework,
platform: platform,
binariesDirectoryURL: binariesDirectoryURL
)
.appendingPathComponent("\(cachedFramework.name)", isDirectory: false)
}
/// Sends the hashes of the provided cached framework's binaries in the
/// order that they were provided in.
func hashes(
for cachedFrameworks: [CachedFramework],
platform: Platform,
binariesDirectoryURL: URL
) -> SignalProducer<String?, CarthageError> {
return SignalProducer<CachedFramework, CarthageError>(cachedFrameworks)
.flatMap(.concat) { cachedFramework -> SignalProducer<String?, CarthageError> in
let frameworkBinaryURL = self.frameworkBinaryURL(
for: cachedFramework,
platform: platform,
binariesDirectoryURL: binariesDirectoryURL
)
return hashForFileAtURL(frameworkBinaryURL)
.map { hash -> String? in
return hash
}
.flatMapError { _ in
return SignalProducer(value: nil)
}
}
}
/// Sends values indicating whether the provided cached frameworks match the
/// given local Swift version, in the order of the provided cached
/// frameworks.
///
/// Non-Swift frameworks are considered as matching the local Swift version,
/// as they will be compatible with it by definition.
func swiftVersionMatches(
for cachedFrameworks: [CachedFramework],
platform: Platform,
binariesDirectoryURL: URL,
localSwiftVersion: String
) -> SignalProducer<Bool, CarthageError> {
return SignalProducer<CachedFramework, CarthageError>(cachedFrameworks)
.flatMap(.concat) { cachedFramework -> SignalProducer<Bool, CarthageError> in
let frameworkURL = self.frameworkURL(
for: cachedFramework,
platform: platform,
binariesDirectoryURL: binariesDirectoryURL
)
if !isSwiftFramework(frameworkURL) {
return SignalProducer(value: true)
} else {
return frameworkSwiftVersion(frameworkURL)
.flatMapError { _ in dSYMSwiftVersion(frameworkURL.appendingPathExtension("dSYM")) }
.map { swiftVersion -> Bool in
return swiftVersion == localSwiftVersion
}
.flatMapError { _ in SignalProducer<Bool, CarthageError>(value: false) }
}
}
}
func satisfies(
platform: Platform,
commitish: String,
binariesDirectoryURL: URL,
localSwiftVersion: String
) -> SignalProducer<Bool, CarthageError> {
guard let cachedFrameworks = self[platform] else {
return SignalProducer(value: false)
}
let hashes = self.hashes(
for: cachedFrameworks,
platform: platform,
binariesDirectoryURL: binariesDirectoryURL
)
.collect()
let swiftVersionMatches = self
.swiftVersionMatches(
for: cachedFrameworks, platform: platform,
binariesDirectoryURL: binariesDirectoryURL, localSwiftVersion: localSwiftVersion
)
.collect()
return SignalProducer.zip(hashes, swiftVersionMatches)
.flatMap(.concat) { hashes, swiftVersionMatches -> SignalProducer<Bool, CarthageError> in
return self.satisfies(
platform: platform,
commitish: commitish,
hashes: hashes,
swiftVersionMatches: swiftVersionMatches
)
}
}
func satisfies(
platform: Platform,
commitish: String,
hashes: [String?],
swiftVersionMatches: [Bool]
) -> SignalProducer<Bool, CarthageError> {
guard let cachedFrameworks = self[platform], commitish == self.commitish else {
return SignalProducer(value: false)
}
return SignalProducer
.zip(
SignalProducer(hashes),
SignalProducer(cachedFrameworks),
SignalProducer(swiftVersionMatches)
)
.map { hash, cachedFramework, swiftVersionMatches -> Bool in
if let hash = hash {
return hash == cachedFramework.hash && swiftVersionMatches
} else {
return false
}
}
.reduce(true) { result, current -> Bool in
return result && current
}
}
func write(to url: URL) -> Result<(), CarthageError> {
return Result(at: url, attempt: {
let encoder = JSONEncoder()
encoder.outputFormatting = .prettyPrinted
let jsonData = try encoder.encode(self)
try FileManager
.default
.createDirectory(
at: $0.deletingLastPathComponent(),
withIntermediateDirectories: true,
attributes: nil
)
try jsonData.write(to: $0, options: .atomic)
})
}
}
/// Creates a version file for the current project in the
/// Carthage/Build directory which associates its commitish with
/// the hashes (e.g. SHA256) of the built frameworks for each platform
/// in order to allow those frameworks to be skipped in future builds.
///
/// Derives the current project name from `git remote get-url origin`
///
/// Returns a signal that succeeds once the file has been created.
public func createVersionFileForCurrentProject(
platforms: Set<Platform>,
buildProducts: [URL],
rootDirectoryURL: URL
) -> SignalProducer<(), CarthageError> {
/*
List all remotes known for this repository
and keep only the "fetch" urls by which the current repository
would be known for the purpose of fetching anyways.
Example of well-formed output:
$ git remote -v
origin https://github.com/blender/Carthage.git (fetch)
origin https://github.com/blender/Carthage.git (push)
upstream https://github.com/Carthage/Carthage.git (fetch)
upstream https://github.com/Carthage/Carthage.git (push)
Example of ill-formed output where upstream does not have a url:
$ git remote -v
origin https://github.com/blender/Carthage.git (fetch)
origin https://github.com/blender/Carthage.git (push)
upstream
*/
let allRemoteURLs = launchGitTask(["remote", "-v"])
.flatMap(.concat) { $0.linesProducer }
.map { $0.components(separatedBy: .whitespacesAndNewlines) }
.filter { $0.count >= 3 && $0.last == "(fetch)" } // Discard ill-formed output as of example
.map { ($0[0], $0[1]) }
.collect()
let currentProjectName = allRemoteURLs
// Assess the popularity of each remote url
.map { $0.reduce([String: (popularity: Int, remoteNameAndURL: (name: String, url: String))]()) { remoteURLPopularityMap, remoteNameAndURL in
let (remoteName, remoteUrl) = remoteNameAndURL
var remoteURLPopularityMap = remoteURLPopularityMap
if let existingEntry = remoteURLPopularityMap[remoteName] {
remoteURLPopularityMap[remoteName] = (existingEntry.popularity + 1, existingEntry.remoteNameAndURL)
} else {
remoteURLPopularityMap[remoteName] = (0, (remoteName, remoteUrl))
}
return remoteURLPopularityMap
}
}
// Pick "origin" if it exists,
// otherwise sort remotes by popularity
// or alphabetically in case of a draw
.map { (remotePopularityMap: [String: (popularity: Int, remoteNameAndURL: (name: String, url: String))]) -> String in
guard let origin = remotePopularityMap["origin"] else {
let urlOfMostPopularRemote = remotePopularityMap.sorted { lhs, rhs in
if lhs.value.popularity == rhs.value.popularity {
return lhs.key < rhs.key
}
return lhs.value.popularity > rhs.value.popularity
}
.first?.value.remoteNameAndURL.url
// If the reposiroty is not pushed to any remote
// the list of remotes is empty, so call the current project... "_Current"
return urlOfMostPopularRemote.flatMap { Dependency.git(GitURL($0)).name } ?? "_Current"
}
return Dependency.git(GitURL(origin.remoteNameAndURL.url)).name
}
let currentGitTagOrCommitish = launchGitTask(["rev-parse", "HEAD"])
.map { $0.trimmingCharacters(in: .whitespacesAndNewlines) }
.flatMap(.merge) { headCommitish in
launchGitTask(["describe", "--tags", "--exact-match", headCommitish])
.map { $0.trimmingCharacters(in: .whitespacesAndNewlines) }
.flatMapError { _ in SignalProducer(value: headCommitish) }
}
return SignalProducer.zip(currentProjectName, currentGitTagOrCommitish)
.flatMap(.merge) { currentProjectNameString, version in
createVersionFileForCommitish(
version,
dependencyName: currentProjectNameString,
platforms: platforms,
buildProducts: buildProducts,
rootDirectoryURL: rootDirectoryURL
)
}
}
/// Creates a version file for the current dependency in the
/// Carthage/Build directory which associates its commitish with
/// the hashes (e.g. SHA256) of the built frameworks for each platform
/// in order to allow those frameworks to be skipped in future builds.
///
/// Returns a signal that succeeds once the file has been created.
public func createVersionFile(
for dependency: Dependency,
version: PinnedVersion,
platforms: Set<Platform>,
buildProducts: [URL],
rootDirectoryURL: URL
) -> SignalProducer<(), CarthageError> {
return createVersionFileForCommitish(
version.commitish,
dependencyName: dependency.name,
platforms: platforms,
buildProducts: buildProducts,
rootDirectoryURL: rootDirectoryURL
)
}
private func createVersionFile(
_ commitish: String,
dependencyName: String,
rootDirectoryURL: URL,
platformCaches: [String: [CachedFramework]]
) -> SignalProducer<(), CarthageError> {
return SignalProducer<(), CarthageError> { () -> Result<(), CarthageError> in
let rootBinariesURL = rootDirectoryURL
.appendingPathComponent(Constants.binariesFolderPath, isDirectory: true)
.resolvingSymlinksInPath()
let versionFileURL = rootBinariesURL
.appendingPathComponent(".\(dependencyName).\(VersionFile.pathExtension)")
let versionFile = VersionFile(
commitish: commitish,
macOS: platformCaches[Platform.macOS.rawValue],
iOS: platformCaches[Platform.iOS.rawValue],
watchOS: platformCaches[Platform.watchOS.rawValue],
tvOS: platformCaches[Platform.tvOS.rawValue])
return versionFile.write(to: versionFileURL)
}
}
/// Creates a version file for the dependency in the given root directory with:
/// - The given commitish
/// - The provided project name
/// - The location of the built frameworks products for all platforms
///
/// Returns a signal that succeeds once the file has been created.
public func createVersionFileForCommitish(
_ commitish: String,
dependencyName: String,
platforms: Set<Platform> = Set(Platform.supportedPlatforms),
buildProducts: [URL],
rootDirectoryURL: URL
) -> SignalProducer<(), CarthageError> {
var platformCaches: [String: [CachedFramework]] = [:]
let platformsToCache = platforms.isEmpty ? Set(Platform.supportedPlatforms) : platforms
for platform in platformsToCache {
platformCaches[platform.rawValue] = []
}
struct FrameworkDetail {
let platformName: String
let frameworkName: String
let frameworkSwiftVersion: String?
}
if !buildProducts.isEmpty {
return SignalProducer<URL, CarthageError>(buildProducts)
.flatMap(.merge) { url -> SignalProducer<(String, FrameworkDetail), CarthageError> in
let frameworkName = url.deletingPathExtension().lastPathComponent
let platformName = url.deletingLastPathComponent().lastPathComponent
return frameworkSwiftVersionIfIsSwiftFramework(url)
.mapError { swiftVersionError -> CarthageError in .unknownFrameworkSwiftVersion(swiftVersionError.description) }
.flatMap(.merge) { frameworkSwiftVersion -> SignalProducer<(String, FrameworkDetail), CarthageError> in
let frameworkDetail: FrameworkDetail = .init(platformName: platformName,
frameworkName: frameworkName,
frameworkSwiftVersion: frameworkSwiftVersion)
let details = SignalProducer<FrameworkDetail, CarthageError>(value: frameworkDetail)
let binaryURL = url.appendingPathComponent(frameworkName, isDirectory: false)
return SignalProducer.zip(hashForFileAtURL(binaryURL), details)
}
}
.reduce(into: platformCaches) { (platformCaches: inout [String: [CachedFramework]], values: (String, FrameworkDetail)) in
let hash = values.0
let platformName = values.1.platformName
let frameworkName = values.1.frameworkName
let frameworkSwiftVersion = values.1.frameworkSwiftVersion
let cachedFramework = CachedFramework(name: frameworkName, hash: hash, swiftToolchainVersion: frameworkSwiftVersion)
if var frameworks = platformCaches[platformName] {
frameworks.append(cachedFramework)
platformCaches[platformName] = frameworks
}
}
.flatMap(.merge) { platformCaches -> SignalProducer<(), CarthageError> in
createVersionFile(
commitish,
dependencyName: dependencyName,
rootDirectoryURL: rootDirectoryURL,
platformCaches: platformCaches
)
}
} else {
// Write out an empty version file for dependencies with no built frameworks, so cache builds can differentiate between
// no cache and a dependency that has no frameworks
return createVersionFile(
commitish,
dependencyName: dependencyName,
rootDirectoryURL: rootDirectoryURL,
platformCaches: platformCaches
)
}
}
/// Determines whether a dependency can be skipped because it is
/// already cached.
///
/// If a set of platforms is not provided, all platforms are checked.
///
/// Returns an optional bool which is nil if no version file exists,
/// otherwise true if the version file matches and the build can be
/// skipped or false if there is a mismatch of some kind.
public func versionFileMatches(
_ dependency: Dependency,
version: PinnedVersion,
platforms: Set<Platform>,
rootDirectoryURL: URL,
toolchain: String?
) -> SignalProducer<Bool?, CarthageError> {
let rootBinariesURL = rootDirectoryURL
.appendingPathComponent(Constants.binariesFolderPath, isDirectory: true)
.resolvingSymlinksInPath()
let versionFileURL = rootBinariesURL
.appendingPathComponent(".\(dependency.name).\(VersionFile.pathExtension)")
guard let versionFile = VersionFile(url: versionFileURL) else {
return SignalProducer(value: nil)
}
let commitish = version.commitish
let platformsToCheck = platforms.isEmpty ? Set<Platform>(Platform.supportedPlatforms) : platforms
return swiftVersion(usingToolchain: toolchain)
.mapError { error in CarthageError.internalError(description: error.description) }
.flatMap(.concat) { localSwiftVersion in
return SignalProducer<Platform, CarthageError>(platformsToCheck)
.flatMap(.merge) { platform in
return versionFile.satisfies(
platform: platform,
commitish: commitish,
binariesDirectoryURL: rootBinariesURL,
localSwiftVersion: localSwiftVersion
)
}
.reduce(true) { $0 && $1 }
.map { .some($0) }
}
}
private func hashForFileAtURL(_ frameworkFileURL: URL) -> SignalProducer<String, CarthageError> {
guard FileManager.default.fileExists(atPath: frameworkFileURL.path) else {
return SignalProducer(error: .readFailed(frameworkFileURL, nil))
}
let task = Task("/usr/bin/shasum", arguments: ["-a", "256", frameworkFileURL.path])
return task.launch()
.mapError(CarthageError.taskError)
.ignoreTaskData()
.attemptMap { data in
guard let taskOutput = String(data: data, encoding: .utf8) else {
return .failure(.readFailed(frameworkFileURL, nil))
}
let hashStr = taskOutput.components(separatedBy: CharacterSet.whitespaces)[0]
return .success(hashStr.trimmingCharacters(in: .whitespacesAndNewlines))
}
}