2015-10-02 23:36:05 +03:00
|
|
|
/// A patch to some part of a `Syntax` tree.
|
2015-10-15 15:54:33 +03:00
|
|
|
public enum Patch<A>: CustomDebugStringConvertible {
|
2015-10-14 19:17:39 +03:00
|
|
|
case Replace(A, A)
|
|
|
|
case Insert(A)
|
|
|
|
case Delete(A)
|
2015-10-02 23:53:43 +03:00
|
|
|
|
2015-10-14 19:17:39 +03:00
|
|
|
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)
|
2015-10-06 23:31:44 +03:00
|
|
|
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 00:07:16 +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 {
|
2015-10-14 19:17:39 +03:00
|
|
|
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):
|
2015-10-09 15:43:57 +03:00
|
|
|
return [
|
|
|
|
"replace": [
|
2015-10-14 19:17:39 +03:00
|
|
|
"before": ifLeaf(a),
|
|
|
|
"after": ifLeaf(b),
|
2015-10-09 15:43:57 +03:00
|
|
|
]
|
|
|
|
]
|
2015-10-08 14:28:03 +03:00
|
|
|
case let .Insert(b):
|
2015-10-09 15:43:57 +03:00
|
|
|
return [
|
2015-10-14 19:17:39 +03:00
|
|
|
"insert": ifLeaf(b),
|
2015-10-09 15:43:57 +03:00
|
|
|
]
|
2015-10-08 14:28:03 +03:00
|
|
|
case let .Delete(a):
|
2015-10-09 15:43:57 +03:00
|
|
|
return [
|
2015-10-14 19:17:39 +03:00
|
|
|
"delete": ifLeaf(a)
|
2015-10-09 15:43:57 +03:00
|
|
|
]
|
2015-10-08 14:28:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-09 17:06:06 +03:00
|
|
|
extension Patch where A: CustomJSONConvertible {
|
|
|
|
public var JSON: Doubt.JSON {
|
2015-10-14 19:17:39 +03:00
|
|
|
return JSON { $0.JSON }
|
2015-10-09 17:06:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-15 16:01:07 +03:00
|
|
|
/// A hack to enable constrained extensions on `Free<A, Patch<Term: TermType where LeafType == A>`.
|
2015-10-07 04:24:01 +03:00
|
|
|
public protocol PatchConvertible {
|
2015-10-14 19:02:57 +03:00
|
|
|
typealias Element
|
2015-10-07 04:24:01 +03:00
|
|
|
|
2015-10-14 19:02:57 +03:00
|
|
|
init(patch: Patch<Element>)
|
|
|
|
var patch: Patch<Element> { get }
|
2015-10-07 04:24:01 +03:00
|
|
|
}
|
2015-10-07 04:24:43 +03:00
|
|
|
|
|
|
|
extension Patch: PatchConvertible {
|
|
|
|
public init(patch: Patch) { self = patch }
|
|
|
|
public var patch: Patch { return self }
|
|
|
|
}
|