2015-10-16 22:41:35 +03:00
|
|
|
//
|
|
|
|
// JSONParser.swift
|
|
|
|
// Doubt
|
|
|
|
//
|
|
|
|
// Created by Josh Vera on 10/16/15.
|
|
|
|
// Copyright © 2015 GitHub. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import Madness
|
|
|
|
import Either
|
|
|
|
import Prelude
|
|
|
|
import Doubt
|
|
|
|
|
|
|
|
typealias CofreeJSON = Cofree<JSONLeaf, Range<String.CharacterView.Index>>
|
|
|
|
typealias JSONParser = Parser<String, CofreeJSON>.Function
|
|
|
|
|
|
|
|
extension String: CollectionType {
|
|
|
|
public var count: Index.Distance {
|
|
|
|
return characters.count
|
|
|
|
}
|
2015-10-20 16:17:45 +03:00
|
|
|
|
|
|
|
public static func lift<A>(parser: Parser<String.CharacterView, A>.Function) -> Parser<String, A>.Function {
|
|
|
|
return {
|
|
|
|
parser($0.characters, $1)
|
|
|
|
}
|
|
|
|
}
|
2015-10-16 22:41:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
typealias StringParser = Parser<String, String>.Function
|
|
|
|
typealias CharacterParser = Parser<String, [Character]>.Function
|
|
|
|
|
2015-10-20 18:11:06 +03:00
|
|
|
// Inlined for performance reasons
|
|
|
|
let whitespaceChars: [Character] = [" ", "\n", "\t", "\r"]
|
|
|
|
let whitespace: CharacterParser = String.lift(satisfy({ whitespaceChars.contains($0) })*)
|
|
|
|
|
|
|
|
// Quoted strings parser
|
2015-10-16 22:41:35 +03:00
|
|
|
let stringBody: StringParser = { $0.map({ String($0) }).joinWithSeparator("") } <^>
|
2015-10-20 22:28:52 +03:00
|
|
|
String.lift(noneOf("\n\"")*)
|
2015-10-20 18:11:06 +03:00
|
|
|
let quoted = %"\"" *> stringBody <* %"\"" <* whitespace
|
2015-10-16 22:41:35 +03:00
|
|
|
|
|
|
|
typealias MembersParser = Parser<String, [(String, CofreeJSON)]>.Function;
|
|
|
|
|
2015-10-20 18:11:06 +03:00
|
|
|
// Parses an array of (String, CofreeJSON) object members
|
2015-10-16 22:41:35 +03:00
|
|
|
func members(json: JSONParser) -> MembersParser {
|
|
|
|
let pairs: Parser<String, (String, CofreeJSON)>.Function = (curry(pair) <^>
|
|
|
|
quoted
|
|
|
|
<* whitespace
|
|
|
|
<* %":"
|
|
|
|
<* whitespace
|
|
|
|
<*> json)
|
|
|
|
|
|
|
|
let separatedPairs: MembersParser = (%"," *> whitespace *> pairs <* whitespace)*
|
|
|
|
|
|
|
|
let oneOrMore: MembersParser = curry { [$0] + $1 } <^>
|
2015-10-21 18:17:28 +03:00
|
|
|
pairs
|
|
|
|
<* whitespace
|
|
|
|
<*> separatedPairs
|
2015-10-16 22:41:35 +03:00
|
|
|
|
|
|
|
return oneOrMore <|> pure([])
|
|
|
|
}
|
|
|
|
|
|
|
|
typealias ValuesParser = Parser<String, [CofreeJSON]>.Function;
|
2015-10-20 18:11:06 +03:00
|
|
|
|
|
|
|
// Parses an array of CofreeJSON array values
|
2015-10-16 22:41:35 +03:00
|
|
|
func elements(json: JSONParser) -> ValuesParser {
|
|
|
|
let value: Parser<String, CofreeJSON>.Function = whitespace *> json <* whitespace
|
|
|
|
|
2015-10-19 22:15:25 +03:00
|
|
|
let separatedValues: ValuesParser = (%"," *> value)*
|
2015-10-16 22:41:35 +03:00
|
|
|
|
|
|
|
let oneOrMore: ValuesParser = curry { [$0] + $1 } <^>
|
|
|
|
value
|
|
|
|
<*> separatedValues
|
|
|
|
return oneOrMore <|> pure([])
|
|
|
|
}
|
|
|
|
|
|
|
|
let json: JSONParser = fix { json in
|
|
|
|
// TODO: Parse backslashed escape characters
|
|
|
|
|
|
|
|
let string: JSONParser = quoted --> { Cofree($1, .Leaf(.String($2))) }
|
2015-10-20 18:11:06 +03:00
|
|
|
let array: JSONParser = %"[" <* whitespace *> elements(json) <* %"]" <* whitespace --> { Cofree($1, .Indexed($2)) }
|
2015-10-16 22:41:35 +03:00
|
|
|
|
|
|
|
let object: JSONParser =
|
|
|
|
%"{"
|
|
|
|
*> whitespace
|
|
|
|
*> members(json)
|
|
|
|
<* whitespace
|
|
|
|
<* %"}"
|
2015-10-20 18:11:06 +03:00
|
|
|
<* whitespace
|
2015-10-16 22:41:35 +03:00
|
|
|
--> { (_, range, values) in
|
|
|
|
Cofree(range, .Keyed(Dictionary(elements: values)))
|
|
|
|
}
|
|
|
|
|
2015-10-21 18:11:49 +03:00
|
|
|
let doubleParser: DoubleParser = number
|
|
|
|
let numberParser: JSONParser = String.lift(doubleParser --> { _, range, value in
|
2015-10-20 16:20:08 +03:00
|
|
|
let num = JSONLeaf.Number(value)
|
|
|
|
return Cofree(range, .Leaf(num))
|
2015-10-21 18:11:49 +03:00
|
|
|
})
|
2015-10-20 18:11:06 +03:00
|
|
|
|
|
|
|
let null: JSONParser = %"null" --> { (_, range, value) in
|
|
|
|
return Cofree(range, .Leaf(.Null))
|
|
|
|
}
|
|
|
|
|
|
|
|
let boolean: JSONParser = %"false" <|> %"true" --> { (_, range, value) in
|
|
|
|
let boolean = value == "true"
|
|
|
|
return Cofree(range, .Leaf(.Boolean(boolean)))
|
|
|
|
}
|
2015-10-16 22:41:35 +03:00
|
|
|
|
2015-10-20 18:11:06 +03:00
|
|
|
// TODO: This should be JSON = dict <|> array and
|
|
|
|
// Value = dict | array | string | number | null | bool
|
2015-10-21 18:11:49 +03:00
|
|
|
return object <|> array <|> string <|> numberParser <|> boolean <|> null
|
|
|
|
}
|