1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 21:31:48 +03:00
semantic/prototype/doubt-difftool/Unified.swift

66 lines
2.2 KiB
Swift
Raw Normal View History

2015-11-03 01:22:39 +03:00
private func unified(term: Term, source: String) -> String {
return term.cata { info, syntax -> (String, Range<Int>?) in
2015-11-03 01:24:22 +03:00
switch syntax {
case .Leaf:
return (String(source.utf16[info.range]), info.range)
2015-11-03 01:26:28 +03:00
case let .Indexed(i):
return (unified(info.range, children: i, source: source), info.range)
2015-11-03 01:26:38 +03:00
case let .Fixed(f):
return (unified(info.range, children: f, source: source), info.range)
2015-11-03 01:28:21 +03:00
case let .Keyed(k):
return (unified(info.range, children: k.values.sort(isOrderedBefore), source: source), info.range)
2015-11-03 01:22:39 +03:00
}
}.0
2015-11-03 01:22:39 +03:00
}
private func isOrderedBefore(a: (String, Range<Int>?), _ b: (String, Range<Int>?)) -> Bool {
if let a = a.1, b = b.1 {
return a.startIndex < b.startIndex
}
return false
}
2015-11-03 01:39:42 +03:00
private var isTTY = isatty(STDOUT_FILENO) != 0
2015-11-03 01:39:47 +03:00
private var isDumb = String.fromCString(getenv("TERM")).map { !$0.hasPrefix("dumb") } ?? false
2015-11-03 01:41:56 +03:00
private var shouldFormat = isTTY && !isDumb
2015-11-03 01:39:42 +03:00
private func unified(patch: Patch<Term>, before: String, after: String) -> String {
2015-11-03 01:30:41 +03:00
return (patch.state.before.map { "{-\(unified($0, source: before))-}" } ?? "")
+ (patch.state.after.map { "{+\(unified($0, source: after))+}" } ?? "")
}
2015-11-03 00:07:34 +03:00
private func range(patch: Patch<Term>) -> Range<Int>? {
2015-11-03 00:07:57 +03:00
return patch.state.after?.extract.range
}
private func unified(range: Range<Int>, children: [(String, Range<Int>?)], source: String) -> String {
var previous = range.startIndex
var out: String = ""
for (string, range) in children {
if let range = range {
out += String(source.utf16[previous..<range.startIndex])
previous = range.endIndex
}
out += string
}
return out + String(source.utf16[previous..<range.endIndex])
}
2015-11-02 22:19:10 +03:00
func unified(diff: Diff, before: String, after: String) -> String {
return diff.map { (unified($0, before: before, after: after), range($0)) }.cata { info, syntax in
switch syntax {
case .Leaf:
return (String(after.utf16[info.1.range]), info.1.range)
case let .Indexed(i):
return (unified(info.1.range, children: i, source: after), info.1.range)
case let .Fixed(f):
return (unified(info.1.range, children: f, source: after), info.1.range)
case let .Keyed(k):
return (unified(info.1.range, children: k.values.sort(isOrderedBefore), source: after), info.1.range)
}
}.0
}
import Doubt