mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
74 lines
2.0 KiB
Swift
74 lines
2.0 KiB
Swift
//
|
|
// Source.swift
|
|
// ProjectSpec
|
|
//
|
|
// Created by Yonas Kolb on 31/10/17.
|
|
//
|
|
|
|
import Foundation
|
|
import JSONUtilities
|
|
import PathKit
|
|
|
|
public struct TargetSource {
|
|
|
|
public var path: String
|
|
public var name: String?
|
|
public var compilerFlags: [String]
|
|
public var excludes: [String]
|
|
|
|
public init(path: String, name: String? = nil, compilerFlags: [String] = [], excludes: [String] = []) {
|
|
self.path = path
|
|
self.name = name
|
|
self.compilerFlags = compilerFlags
|
|
self.excludes = excludes
|
|
}
|
|
}
|
|
|
|
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") ?? []
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
extension TargetSource: Hashable {
|
|
public var hashValue: Int {
|
|
return path.hashValue
|
|
^ compilerFlags.joined(separator: ":").hashValue
|
|
^ excludes.joined(separator: ":").hashValue
|
|
}
|
|
}
|