forked from Carthage/Carthage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersionFile.swift
More file actions
324 lines (284 loc) · 11.9 KB
/
VersionFile.swift
File metadata and controls
324 lines (284 loc) · 11.9 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
//
// VersionFile.swift
// Carthage
//
// Created by Jason Boyle on 8/11/16.
// Copyright © 2016 Carthage. All rights reserved.
//
import Foundation
import Runes
import Argo
import Curry
import ReactiveSwift
import ReactiveTask
import Result
import XCDBLD
struct CachedFramework {
let name: String
let hash: String
static let nameKey = "name"
static let hashKey = "hash"
func toJSONObject() -> Any {
return [
CachedFramework.nameKey: name,
CachedFramework.hashKey: hash
]
}
}
extension CachedFramework: Decodable {
static func decode(_ j: JSON) -> Decoded<CachedFramework> {
return curry(self.init)
<^> j <| CachedFramework.nameKey
<*> j <| CachedFramework.hashKey
}
}
struct VersionFile {
let commitish: String
let macOS: [CachedFramework]?
let iOS: [CachedFramework]?
let watchOS: [CachedFramework]?
let tvOS: [CachedFramework]?
static let commitishKey = "commitish"
/// 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
}
}
func toJSONObject() -> Any {
var dict: [String: Any] = [
VersionFile.commitishKey : commitish,
]
for platform in Platform.supportedPlatforms {
if let caches = self[platform] {
dict[platform.rawValue] = caches.map { $0.toJSONObject() }
}
}
return dict
}
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 json = try? JSONSerialization.jsonObject(with: jsonData, options: .allowFragments),
let versionFile: VersionFile = Argo.decode(json) 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(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(cachedFrameworks)
.flatMap(.concat) { cachedFramework -> SignalProducer<Bool, CarthageError> in
let frameworkURL = self.frameworkURL(for: cachedFramework, platform: platform, binariesDirectoryURL: binariesDirectoryURL)
return isSwiftFramework(frameworkURL)
.flatMap(.concat) { isSwift -> SignalProducer<Bool, SwiftVersionError> in
if !isSwift {
return SignalProducer(value: true)
}
return frameworkSwiftVersion(frameworkURL).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
guard let hash = hash else {
return false
}
return hash == cachedFramework.hash && swiftVersionMatches
}
.reduce(true) { (result, current) -> Bool in
return result && current
}
}
func write(to url: URL) -> Result<(), CarthageError> {
do {
let json = toJSONObject()
let jsonData = try JSONSerialization.data(withJSONObject: json, options: .prettyPrinted)
try jsonData.write(to: url, options: .atomic)
return .success(())
} catch let error as NSError {
return .failure(.writeFailed(url, error))
}
}
}
extension VersionFile: Decodable {
static func decode(_ j: JSON) -> Decoded<VersionFile> {
return curry(self.init)
<^> j <| VersionFile.commitishKey
<*> j <||? Platform.macOS.rawValue
<*> j <||? Platform.iOS.rawValue
<*> j <||? Platform.watchOS.rawValue
<*> j <||? Platform.tvOS.rawValue
}
}
/// 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)
}
/// 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] = []
}
let writeVersionFile = SignalProducer<(), CarthageError>.attempt {
let rootBinariesURL = rootDirectoryURL.appendingPathComponent(CarthageBinariesFolderPath, 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)
}
if !buildProducts.isEmpty {
return SignalProducer<URL, CarthageError>(buildProducts)
.flatMap(.merge) { url -> SignalProducer<String, CarthageError> in
let platformName = url.deletingLastPathComponent().lastPathComponent
let frameworkName = url.deletingPathExtension().lastPathComponent
let frameworkURL = url.appendingPathComponent(frameworkName, isDirectory: false)
return hashForFileAtURL(frameworkURL)
.on(value: { hash in
let cachedFramework = CachedFramework(name: frameworkName, hash: hash)
if var frameworks = platformCaches[platformName] {
frameworks.append(cachedFramework)
platformCaches[platformName] = frameworks
}
})
}
.then(writeVersionFile)
} 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 writeVersionFile
}
}
/// 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(CarthageBinariesFolderPath, 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) { current, result in
guard let current = current else {
return false
}
return current && result
}
}
}
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))
}
}