mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
100 lines
3.0 KiB
Swift
100 lines
3.0 KiB
Swift
import Foundation
|
|
import JSONUtilities
|
|
import PathKit
|
|
import xcproj
|
|
|
|
public struct TargetSource {
|
|
|
|
public var path: String
|
|
public var name: String?
|
|
public var compilerFlags: [String]
|
|
public var excludes: [String]
|
|
public var type: SourceType?
|
|
public var optional: Bool
|
|
public var buildPhase: BuildPhase?
|
|
|
|
public enum BuildPhase: String {
|
|
case sources
|
|
case headers
|
|
case resources
|
|
case none
|
|
|
|
public var buildPhase: xcproj.BuildPhase? {
|
|
switch self {
|
|
case .sources: return .sources
|
|
case .headers: return .headers
|
|
case .resources: return .resources
|
|
case .none: return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum SourceType: String {
|
|
case group
|
|
case file
|
|
case folder
|
|
}
|
|
|
|
public init(path: String, name: String? = nil, compilerFlags: [String] = [], excludes: [String] = [], type: SourceType? = nil, optional: Bool = false, buildPhase: BuildPhase? = nil) {
|
|
self.path = path
|
|
self.name = name
|
|
self.compilerFlags = compilerFlags
|
|
self.excludes = excludes
|
|
self.type = type
|
|
self.optional = optional
|
|
self.buildPhase = buildPhase
|
|
}
|
|
}
|
|
|
|
extension TargetSource: ExpressibleByStringLiteral {
|
|
|
|
public init(stringLiteral value: String) {
|
|
self = TargetSource(path: value)
|
|
}
|
|
|
|
public init(extendedGraphemeClusterLiteral value: String) {
|
|
self = TargetSource(path: value)
|
|
}
|
|
|
|
public init(unicodeScalarLiteral value: String) {
|
|
self = TargetSource(path: value)
|
|
}
|
|
}
|
|
|
|
extension TargetSource: JSONObjectConvertible {
|
|
|
|
public init(jsonDictionary: JSONDictionary) throws {
|
|
path = try jsonDictionary.json(atKeyPath: "path")
|
|
name = jsonDictionary.json(atKeyPath: "name")
|
|
|
|
let maybeCompilerFlagsString: String? = jsonDictionary.json(atKeyPath: "compilerFlags")
|
|
let maybeCompilerFlagsArray: [String]? = jsonDictionary.json(atKeyPath: "compilerFlags")
|
|
compilerFlags = maybeCompilerFlagsArray ??
|
|
maybeCompilerFlagsString.map { $0.split(separator: " ").map { String($0) } } ?? []
|
|
|
|
excludes = jsonDictionary.json(atKeyPath: "excludes") ?? []
|
|
type = jsonDictionary.json(atKeyPath: "type")
|
|
optional = jsonDictionary.json(atKeyPath: "optional") ?? false
|
|
if let string: String = jsonDictionary.json(atKeyPath: "buildPhase") {
|
|
if let buildPhase = BuildPhase(rawValue: string) {
|
|
self.buildPhase = buildPhase
|
|
} else {
|
|
throw SpecParsingError.unknownSourceBuildPhase(string)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
extension TargetSource: Equatable {
|
|
|
|
public static func == (lhs: TargetSource, rhs: TargetSource) -> Bool {
|
|
return lhs.path == rhs.path
|
|
&& lhs.name == rhs.name
|
|
&& lhs.compilerFlags == rhs.compilerFlags
|
|
&& lhs.excludes == rhs.excludes
|
|
&& lhs.type == rhs.type
|
|
&& lhs.optional == rhs.optional
|
|
&& lhs.buildPhase == rhs.buildPhase
|
|
}
|
|
}
|