1
1
mirror of https://github.com/github/semantic.git synced 2025-01-04 21:47:07 +03:00
semantic/prototype/Doubt/Patch.swift

100 lines
1.9 KiB
Swift
Raw Normal View History

2015-10-02 23:36:05 +03:00
/// A patch to some part of a `Syntax` tree.
public enum Patch<A>: CustomDebugStringConvertible {
case Replace(A, A)
case Insert(A)
case Delete(A)
public var state: (before: A?, after: A?) {
2015-10-02 23:38:02 +03:00
switch self {
case let .Replace(a, b):
return (a, b)
case let .Insert(b):
return (nil, b)
case let .Delete(a):
return (a, nil)
2015-10-02 23:38:02 +03:00
}
}
2015-10-06 23:45:36 +03:00
2015-10-07 15:41:54 +03:00
public var inverse: Patch {
switch self {
case let .Replace(a, b):
return .Replace(b, a)
case let .Insert(b):
return .Delete(b)
case let .Delete(a):
return .Insert(a)
}
}
2015-10-06 23:45:36 +03:00
// MARK: CustomDebugStringConvertible
public var debugDescription: String {
switch self {
case let .Replace(a, b):
return ".Replace(\(String(reflecting: a)), \(String(reflecting: b)))"
case let .Insert(b):
return ".Insert(\(String(reflecting: b)))"
case let .Delete(a):
return ".Delete(\(String(reflecting: a)))"
}
}
2015-10-02 23:34:00 +03:00
}
2015-10-02 23:49:04 +03:00
// MARK: - Equality
extension Patch {
public static func equals(param: (A, A) -> Bool)(_ left: Patch, _ right: Patch) -> Bool {
return Optional.equals(param)(left.state.before, right.state.before)
&& Optional.equals(param)(left.state.after, right.state.after)
2015-10-02 23:49:04 +03:00
}
}
2015-10-02 23:50:59 +03:00
2015-10-09 15:41:08 +03:00
// MARK: - JSON
2015-10-08 14:28:03 +03:00
extension Patch {
public func JSON(ifLeaf: A -> Doubt.JSON) -> Doubt.JSON {
switch self {
case let .Replace(a, b):
return [
"replace": [
"before": ifLeaf(a),
"after": ifLeaf(b),
]
]
2015-10-08 14:28:03 +03:00
case let .Insert(b):
return [
"insert": ifLeaf(b),
]
2015-10-08 14:28:03 +03:00
case let .Delete(a):
return [
"delete": ifLeaf(a)
]
2015-10-08 14:28:03 +03:00
}
}
}
extension Patch where A: CustomJSONConvertible {
public var JSON: Doubt.JSON {
return JSON { $0.JSON }
}
}
2015-10-15 16:01:07 +03:00
/// A hack to enable constrained extensions on `Free<A, Patch<Term: TermType where LeafType == A>`.
public protocol PatchConvertible {
typealias Element
init(patch: Patch<Element>)
var patch: Patch<Element> { get }
}
2015-10-07 04:24:43 +03:00
extension Patch: PatchConvertible {
public init(patch: Patch) { self = patch }
public var patch: Patch { return self }
}