1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00
semantic/prototype/doubt-difftool/main.swift

39 lines
1.1 KiB
Swift
Raw Normal View History

import Cocoa
import Doubt
2015-10-27 18:04:39 +03:00
2015-10-28 01:29:27 +03:00
func readFile(path: String) -> String? {
guard let data = try? NSString(contentsOfFile: path, encoding: NSUTF8StringEncoding) else { return nil }
return data as String?
}
2015-10-28 01:37:34 +03:00
typealias Term = Cofree<String, Range<Int>>
2015-10-28 01:29:44 +03:00
func termWithInput(string: String) -> Cofree<String, Range<Int>>? {
2015-10-27 18:04:18 +03:00
let document = ts_document_make()
2015-10-28 01:26:39 +03:00
defer { ts_document_free(document) }
2015-10-28 01:29:44 +03:00
return string.withCString {
ts_document_set_language(document, ts_language_javascript())
ts_document_set_input_string(document, $0)
ts_document_parse(document)
let root = ts_document_root_node(document)
2015-10-28 01:07:00 +03:00
2015-10-28 01:29:44 +03:00
return Cofree
.ana { node in
let count = ts_node_named_child_count(node)
guard count > 0 else {
return String.fromCString(ts_node_name(node, document)).map(Syntax.Leaf)!
}
return .Indexed((0..<count).map { ts_node_named_child(node, $0) })
} (root)
.map {
let start = ts_node_pos($0).chars
return start..<(start + ts_node_size($0).chars)
2015-10-28 01:10:17 +03:00
}
2015-10-28 01:29:44 +03:00
}
2015-10-28 01:26:39 +03:00
}
2015-10-28 01:10:17 +03:00
2015-10-28 01:26:39 +03:00
let arguments = BoundsCheckedArray(array: Process.arguments)
2015-10-28 01:29:44 +03:00
if let a = arguments[1].flatMap(readFile).flatMap(termWithInput) {
2015-10-28 01:26:39 +03:00
print(a)
2015-10-27 18:04:18 +03:00
}