mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
70 lines
2.2 KiB
Swift
70 lines
2.2 KiB
Swift
import Foundation
|
|
import JSONUtilities
|
|
|
|
public struct BuildScript: Equatable {
|
|
|
|
public var script: ScriptType
|
|
public var name: String?
|
|
public var shell: String?
|
|
public var inputFiles: [String]
|
|
public var outputFiles: [String]
|
|
public var runOnlyWhenInstalling: Bool
|
|
|
|
public enum ScriptType: Equatable {
|
|
case path(String)
|
|
case script(String)
|
|
|
|
public static func == (lhs: ScriptType, rhs: ScriptType) -> Bool {
|
|
switch (lhs, rhs) {
|
|
case let (.path(lhs), .path(rhs)): return lhs == rhs
|
|
case let (.script(lhs), .script(rhs)): return lhs == rhs
|
|
default: return false
|
|
}
|
|
}
|
|
}
|
|
|
|
public init(
|
|
script: ScriptType,
|
|
name: String? = nil,
|
|
inputFiles: [String] = [],
|
|
outputFiles: [String] = [],
|
|
shell: String? = nil,
|
|
runOnlyWhenInstalling: Bool = false
|
|
) {
|
|
self.script = script
|
|
self.name = name
|
|
self.inputFiles = inputFiles
|
|
self.outputFiles = outputFiles
|
|
self.shell = shell
|
|
self.runOnlyWhenInstalling = runOnlyWhenInstalling
|
|
}
|
|
|
|
public static func == (lhs: BuildScript, rhs: BuildScript) -> Bool {
|
|
return lhs.script == rhs.script &&
|
|
lhs.name == rhs.name &&
|
|
lhs.script == rhs.script &&
|
|
lhs.inputFiles == rhs.inputFiles &&
|
|
lhs.outputFiles == rhs.outputFiles &&
|
|
lhs.shell == rhs.shell &&
|
|
lhs.runOnlyWhenInstalling == rhs.runOnlyWhenInstalling
|
|
}
|
|
}
|
|
|
|
extension BuildScript: JSONObjectConvertible {
|
|
|
|
public init(jsonDictionary: JSONDictionary) throws {
|
|
name = jsonDictionary.json(atKeyPath: "name")
|
|
inputFiles = jsonDictionary.json(atKeyPath: "inputFiles") ?? []
|
|
outputFiles = jsonDictionary.json(atKeyPath: "outputFiles") ?? []
|
|
|
|
if let string: String = jsonDictionary.json(atKeyPath: "script") {
|
|
script = .script(string)
|
|
} else {
|
|
let path: String = try jsonDictionary.json(atKeyPath: "path")
|
|
script = .path(path)
|
|
}
|
|
shell = jsonDictionary.json(atKeyPath: "shell")
|
|
runOnlyWhenInstalling = jsonDictionary.json(atKeyPath: "runOnlyWhenInstalling") ?? false
|
|
}
|
|
}
|