1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/prototype/Doubt/Syntax.swift
2015-09-23 18:22:27 -04:00

213 lines
5.6 KiB
Swift

public enum Term: CustomDebugStringConvertible, CustomDocConvertible, CustomStringConvertible, Equatable {
public init(_ out: Syntax<Term>) {
self = .Roll(out)
}
case Empty
indirect case Roll(Syntax<Term>)
public var debugDescription: String {
switch self {
case .Empty:
return ".Empty"
case let .Roll(s):
return s.debugDescription
}
}
public var doc: Doc {
switch self {
case .Empty:
return .Empty
case let .Roll(s):
return s.doc
}
}
public static let Apply: (Term, [Term]) -> Term = Syntax.Apply >>> Roll
public static let Abstract: ([Term], [Term]) -> Term = Syntax.Abstract >>> Roll
public static let Assign: (String, Term) -> Term = Syntax.Assign >>> Roll
public static let Variable = Syntax.Variable >>> Roll
public static let Literal = Syntax.Literal >>> Roll
public static let Group: (Term, [Term]) -> Term = Syntax.Group >>> Roll
// MARK: JSON representation.
/// Constructs a Term representing the `JSON` in a file at `path`.
public init?(path: String, JSON: Doubt.JSON) {
struct E: ErrorType {}
func die<A>() throws -> A {
throw E()
}
do {
switch JSON.dictionary?["key.substructure"] {
case let .Some(.Array(a)):
self = .Roll(.Group(.Roll(.Literal(path)), try a.map { try Term(JSON: $0) ?? die() }))
default:
return nil
}
} catch _ {
return nil
}
}
/// Constructs a Term representing `JSON`.
public init?(JSON: Doubt.JSON) {
enum Key: String {
case Name = "key.name"
case Substructure = "key.substructure"
}
struct E: ErrorType {}
func die<A>() throws -> A {
throw E()
}
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"):
self = .Group(.Literal(name), try substructure.map { try Term(JSON: $0) ?? die() })
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 = .Assign(name, .Abstract([], try substructure.map { try Term(JSON: $0) ?? die() }))
case
.Some("source.lang.swift.decl.var.instance"),
.Some("source.lang.swift.decl.var.static"):
self = .Variable(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 Term(JSON: substructure[0]) ?? die()
case let .Dictionary(d) where d["key.kind"]?.string == "source.lang.swift.syntaxtype.comment.mark":
self = .Empty
case .Null:
self = .Empty
default:
return nil
}
} catch _ {
return nil
}
}
}
public enum Syntax<Payload>: CustomDebugStringConvertible, CustomDocConvertible {
case Apply(Payload, [Payload])
case Abstract([Payload], [Payload])
case Assign(String, Payload)
case Variable(String)
case Literal(String)
case Group(Payload, [Payload])
public func map<T>(@noescape transform: Payload -> T) -> Syntax<T> {
switch self {
case let .Apply(f, args):
return .Apply(transform(f), args.map(transform))
case let .Abstract(parameters, body):
return .Abstract(parameters.map(transform), body.map(transform))
case let .Assign(n, v):
return .Assign(n, transform(v))
case let .Variable(n):
return .Variable(n)
case let .Literal(v):
return .Literal(v)
case let .Group(n, v):
return .Group(transform(n), v.map(transform))
}
}
public func reduce<T>(var initial: T, @noescape combine: (T, Payload) throws -> T) rethrows -> T {
switch self {
case let .Apply(x, xs):
initial = try combine(initial, x)
return try xs.reduce(initial, combine: combine)
case let .Abstract(xs, x):
initial = try xs.reduce(initial, combine: combine)
return try x.reduce(initial, combine: combine)
case let .Assign(_, x):
return try combine(initial, x)
case let .Group(x, xs):
initial = try combine(initial, x)
return try xs.reduce(initial, combine: combine)
default:
return initial
}
}
public typealias Recur = Payload
public var debugDescription: String {
switch self {
case let .Apply(f, vs):
let s = vs.map { String(reflecting: $0) }.joinWithSeparator(", ")
return ".Apply(\(f), [ \(s) ])"
case let .Abstract(parameters, body):
let s = parameters.map { String(reflecting: $0) }.joinWithSeparator(", ")
return ".Abstract([ \(s) ], \(body))"
case let .Assign(n, v):
return ".Assign(\(n), \(v))"
case let .Variable(n):
return ".Variable(\(n))"
case let .Literal(s):
return ".Literal(\(s))"
case let .Group(n, vs):
let s = vs.map { String(reflecting: $0) }.joinWithSeparator(", ")
return ".Group(\(String(reflecting: n)), [ \(s) ])"
}
}
public var doc: Doc {
switch self {
case let .Apply(f, vs):
return .Horizontal([
Doc(f),
.Wrap(.Text("("), .Join(.Text(", "), vs.map(Doc.init)), .Text(")"))
])
case let .Abstract(parameters, body):
return .Horizontal([
.Text("λ"),
.Join(.Text(", "), parameters.map(Doc.init)),
.Text("."),
.Vertical(body.map(Doc.init))
])
case let .Assign(n, v):
return .Horizontal([ .Text(n), .Text("="), Doc(v) ])
case let .Variable(n):
return .Text(n)
case let .Literal(s):
return .Text(s)
case let .Group(n, vs):
return .Horizontal([
Doc(n),
.Wrap(.Text("{"), .Vertical(vs.map(Doc.init)), .Text("}"))
])
}
}
}