1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/prototype/doubt-swift/main.swift

112 lines
3.0 KiB
Swift

import Doubt
import SourceKittenFramework
let arguments = BoundsCheckedArray(array: Process.arguments)
public protocol StringConvertible {
init(string: String)
}
extension String: StringConvertible {
public init(string: String) {
self = string
}
}
extension Info: StringConvertible {
public init(string: String) {
self = .Literal(string, [])
}
}
private struct Bail: ErrorType {}
extension Fix where A: StringConvertible {
/// Constructs a term representing `JSON`.
init?(JSON: Doubt.JSON) {
func bail<B>() throws -> B {
throw Bail()
}
do {
switch JSON {
case let .Dictionary(d) where d["key.name"] != nil:
let name = d["key.name"]?.string ?? ""
let substructure = d["key.substructure"]?.array ?? []
let kind = d["key.kind"]?.string
switch kind {
case
.Some("source.lang.swift.decl.class"),
.Some("source.lang.swift.decl.extension"),
.Some("source.lang.swift.decl.enum"),
.Some("source.lang.swift.decl.struct"),
.Some("source.lang.swift.decl.protocol"):
self = .Indexed([ .Leaf(A(string: name)), .Indexed(try substructure.map { try Fix(JSON: $0) ?? bail() }) ])
case .Some("source.lang.swift.decl.enumelement"):
fallthrough
case
.Some("source.lang.swift.decl.function.method.instance"),
.Some("source.lang.swift.decl.function.free"):
self = .Indexed([ .Leaf(A(string: name)), .Indexed(try substructure.map { try Fix(JSON: $0) ?? bail() }) ])
case
.Some("source.lang.swift.decl.var.instance"),
.Some("source.lang.swift.decl.var.static"):
self = .Leaf(A(string: name))
default:
return nil
}
case let .Dictionary(d) where d["key.kind"]?.string == "source.lang.swift.decl.enumcase" && d["key.substructure"]?.array?.count == 1:
let substructure = d["key.substructure"]?.array ?? []
self = try Fix(JSON: substructure[0]) ?? bail()
case let .Dictionary(d) where d["key.kind"]?.string == "source.lang.swift.syntaxtype.comment.mark":
self = .Leaf(A(string: "mark"))
default:
return nil
}
} catch _ {
return nil
}
}
/// Constructs a term representing the `JSON` in a file at `path`.
init?(path: String, JSON: Doubt.JSON) {
func bail<B>() throws -> B {
throw Bail()
}
do {
switch JSON.dictionary?["key.substructure"] {
case let .Some(.Array(a)):
self = .Indexed(try a.map { try Fix(JSON: $0) ?? bail() })
default:
return nil
}
} catch _ {
return nil
}
}
init?(path: String) {
guard path != "/dev/null" else {
return nil
}
guard let term = File(path: path)
.map(Structure.init)
.map({ $0.dictionary })
.map(toAnyObject)
.flatMap({ Doubt.JSON(object: $0).flatMap { Fix(path: path, JSON: $0) } }) else { return nil }
self = term
}
}
if let a = arguments[1].flatMap({ Fix<Info>(path: $0) }), b = arguments[2].flatMap({ Fix<Info>(path: $0) }) {
let diff = Algorithm<Info, Free<Info, Patch<Info>>>(a, b).evaluate()
if let JSON = NSString(data: diff.JSON.serialize(), encoding: NSUTF8StringEncoding) {
print(JSON)
}
}