1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 21:43:07 +03:00
semantic/prototype/Doubt/Patch.swift
2015-10-15 15:25:04 -04:00

129 lines
3.0 KiB
Swift

/// 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?) {
switch self {
case let .Replace(a, b):
return (a, b)
case let .Insert(b):
return (nil, b)
case let .Delete(a):
return (a, nil)
}
}
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)
}
}
// 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)))"
}
}
}
// 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)
}
}
// MARK: - Cost calculations
extension Patch {
/// Returns a function which computes the size of a `patch` as the sum of the sizes of its terms, as computed by `size`.
public static func sum(size: A -> Int)(_ patch: Patch) -> Int {
return (patch.state.before.map(size) ?? 0) + (patch.state.after.map(size) ?? 0)
}
/// Returns a function which computes the size of a `patch` as the absolute difference of the sizes of its terms, as computed by `size`.
public static func difference(size: A -> Int)(_ patch: Patch) -> Int {
return abs((patch.state.before.map(size) ?? 0) - (patch.state.after.map(size) ?? 0))
}
}
extension Patch where A: TermType {
/// Computes the size of a `patch` as the sum of the sizes of its terms.
public static func sum(patch: Patch) -> Int {
return sum { $0.size } (patch)
}
/// Computes the size of a `patch` as the absolute difference of the sizes of its terms.
public static func difference(patch: Patch) -> Int {
return difference { $0.size } (patch)
}
}
// MARK: - JSON
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),
]
]
case let .Insert(b):
return [
"insert": ifLeaf(b),
]
case let .Delete(a):
return [
"delete": ifLeaf(a)
]
}
}
}
extension Patch where A: CustomJSONConvertible {
public var JSON: Doubt.JSON {
return JSON { $0.JSON }
}
}
// MARK: - PatchConvertible
/// 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 }
}
extension Patch: PatchConvertible {
public init(patch: Patch) { self = patch }
public var patch: Patch { return self }
}