2015-10-26 23:00:52 +03:00
|
|
|
import Cocoa
|
|
|
|
import Doubt
|
2015-10-28 01:38:25 +03:00
|
|
|
import Prelude
|
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-29 01:17:01 +03:00
|
|
|
extension String: ErrorType {}
|
|
|
|
|
2015-10-29 01:12:16 +03:00
|
|
|
typealias Term = Cofree<String, Info>
|
2015-10-28 01:37:34 +03:00
|
|
|
|
2015-10-29 17:00:56 +03:00
|
|
|
|
|
|
|
extension String.UTF16View {
|
|
|
|
subscript (range: Range<Int>) -> String.UTF16View {
|
|
|
|
return self[Index(_offset: range.startIndex)..<Index(_offset: range.endIndex)]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-29 21:59:18 +03:00
|
|
|
let languagesByFileExtension: [String:TSLanguage] = [
|
|
|
|
"js": ts_language_javascript(),
|
2015-10-29 22:00:07 +03:00
|
|
|
"c": ts_language_c(),
|
2015-10-29 21:59:18 +03:00
|
|
|
]
|
|
|
|
|
2015-10-29 22:10:30 +03:00
|
|
|
let keyedProductions: Set<String> = [ "object" ]
|
|
|
|
|
2015-10-29 22:09:57 +03:00
|
|
|
/// Allow predicates to occur in pattern matching.
|
2015-10-29 22:09:52 +03:00
|
|
|
func ~= <A> (left: A -> Bool, right: A) -> Bool {
|
|
|
|
return left(right)
|
|
|
|
}
|
|
|
|
|
2015-10-29 17:00:56 +03:00
|
|
|
|
2015-10-28 01:37:59 +03:00
|
|
|
func termWithInput(string: String) -> Term? {
|
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 21:20:46 +03:00
|
|
|
return try? Cofree
|
|
|
|
.ana { node, category in
|
2015-10-28 22:38:20 +03:00
|
|
|
let count = node.namedChildren.count
|
2015-10-29 17:10:13 +03:00
|
|
|
guard count > 0 else { return try Syntax.Leaf(node.substring(string)) }
|
2015-10-28 22:05:25 +03:00
|
|
|
switch category {
|
2015-10-29 01:42:10 +03:00
|
|
|
case "pair", "rel_op", "math_op", "bool_op", "bitwise_op", "type_op", "math_assignment", "assignment", "subscript_access", "member_access", "new_expression", "function_call", "function", "ternary":
|
2015-10-28 23:20:39 +03:00
|
|
|
return try .Fixed(node.namedChildren.map {
|
2015-10-29 00:28:58 +03:00
|
|
|
($0, try $0.category(document))
|
2015-10-28 23:20:39 +03:00
|
|
|
})
|
2015-10-29 00:48:51 +03:00
|
|
|
case "object":
|
2015-10-28 23:18:38 +03:00
|
|
|
return try .Keyed(Dictionary(elements: node.namedChildren.map {
|
2015-10-29 01:32:34 +03:00
|
|
|
switch try $0.category(document) {
|
|
|
|
case "pair":
|
2015-10-29 17:03:53 +03:00
|
|
|
return try ($0.namedChildren[0].substring(string), ($0, "pair"))
|
2015-10-29 01:32:34 +03:00
|
|
|
default:
|
2015-10-29 01:33:04 +03:00
|
|
|
// We might have a comment inside an object literal. It should still be assigned a key, however.
|
2015-10-29 17:10:13 +03:00
|
|
|
return try (try node.substring(string), ($0, $0.category(document)))
|
2015-10-29 01:32:34 +03:00
|
|
|
}
|
2015-10-28 23:18:38 +03:00
|
|
|
}))
|
2015-10-28 22:05:25 +03:00
|
|
|
default:
|
2015-10-28 22:31:08 +03:00
|
|
|
return try .Indexed(node.namedChildren.map {
|
2015-10-29 00:28:58 +03:00
|
|
|
($0, try $0.category(document))
|
2015-10-28 22:05:25 +03:00
|
|
|
})
|
|
|
|
}
|
2015-10-29 00:48:51 +03:00
|
|
|
} (root, "program")
|
2015-10-28 21:20:46 +03:00
|
|
|
.map { node, category in
|
2015-10-29 01:12:16 +03:00
|
|
|
Info(range: node.range, categories: [ category ])
|
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:53:48 +03:00
|
|
|
if let aString = arguments[1].flatMap(readFile), bString = arguments[2].flatMap(readFile), c = arguments[3], ui = arguments[4] {
|
2015-10-28 01:38:25 +03:00
|
|
|
if let a = termWithInput(aString), b = termWithInput(bString) {
|
2015-10-29 17:05:30 +03:00
|
|
|
let diff = Interpreter<Term>(equal: Term.equals(annotation: const(true), leaf: ==), comparable: Interpreter<Term>.comparable { $0.extract.categories }, cost: Free.sum(Patch.sum)).run(a, b)
|
2015-10-28 01:38:31 +03:00
|
|
|
let JSON: Doubt.JSON = [
|
|
|
|
"before": .String(aString),
|
|
|
|
"after": .String(bString),
|
2015-10-29 01:12:16 +03:00
|
|
|
"diff": diff.JSON(pure: { $0.JSON { $0.JSON(annotation: { $0.range.JSON }, leaf: Doubt.JSON.String) } }, leaf: Doubt.JSON.String, annotation: {
|
2015-10-28 01:38:31 +03:00
|
|
|
[
|
2015-10-29 01:12:16 +03:00
|
|
|
"before": $0.range.JSON,
|
|
|
|
"after": $1.range.JSON,
|
2015-10-28 01:38:31 +03:00
|
|
|
]
|
|
|
|
}),
|
|
|
|
]
|
2015-10-28 01:39:11 +03:00
|
|
|
let data = JSON.serialize()
|
|
|
|
try data.writeToFile(c, options: .DataWritingAtomic)
|
2015-10-28 01:53:48 +03:00
|
|
|
|
|
|
|
let components = NSURLComponents()
|
|
|
|
components.scheme = "file"
|
|
|
|
components.path = ui
|
2015-10-28 01:56:53 +03:00
|
|
|
components.query = c
|
2015-10-28 01:53:48 +03:00
|
|
|
if let URL = components.URL {
|
|
|
|
NSWorkspace.sharedWorkspace().openURL(URL)
|
|
|
|
}
|
2015-10-28 01:38:25 +03:00
|
|
|
}
|
2015-10-27 18:04:18 +03:00
|
|
|
}
|