-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathPIFManipulator.swift
50 lines (42 loc) · 1.82 KB
/
PIFManipulator.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
import Foundation
import SwiftyJSON
/// Manipulates PIF JSON data
package class PIFManipulator {
private var topLevelObject: JSON
/// Initialize PIFManipulator with JSON data
/// - Parameters jsonData: JSON data
package init(jsonData: Data) throws {
self.topLevelObject = try JSON(data: jsonData)
}
/// Update targets in PIF JSON data
/// - Parameters modifier: Closure to modify Target
package func updateTargets(_ modifier: (inout Target) -> Void) {
for index in 0..<topLevelObject.arrayValue.count {
guard topLevelObject[index]["type"].stringValue == "target", var target = try? Target(from: topLevelObject[index]["contents"]) else {
continue
}
modifier(&target)
apply(target, to: &topLevelObject[index])
}
}
/// Dump manipulating JSON data
/// - Returns: JSON data
package func dump() throws -> Data {
try topLevelObject.rawData(options: [.prettyPrinted])
}
/// Apply target to JSON object
/// Currently, Target is a subset of an actual PIF target. So, we have to apply only the properties that are present in the Target.
/// - Parameters target: Target to apply
/// - Parameters pifObject: JSON object to apply the target to
private func apply(_ target: Target, to pifObject: inout JSON) {
pifObject["contents"]["name"].string = target.name
pifObject["contents"]["productTypeIdentifier"].string = target.productType?.rawValue
pifObject["contents"]["buildConfigurations"].arrayObject = target.buildConfigurations.compactMap { try? $0.toJSON() }
}
}
extension BuildConfiguration {
fileprivate func toJSON(using encoder: JSONEncoder = JSONEncoder()) throws -> JSON {
let data = try encoder.encode(self)
return try JSON(data: data)
}
}