summaryrefslogtreecommitdiff
path: root/json/json.go
blob: ca1a905e2abffbcc027ef35c96b9c612b6ce7146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package json

import (
	. "github.com/oec/goparsify"
)

var (
	_value      Parser
	_null       = Bind("null", nil)
	_true       = Bind("true", true)
	_false      = Bind("false", false)
	_string     = Map(StringLit(`"`), func(r *Result) { r.Result = r.Token })
	_number     = NumberLit()
	_properties = Some(Seq(StringLit(`"`), ":", &_value), ",")

	_array = Seq("[", Cut(), Some(&_value, ","), "]").Map(func(n *Result) {
		ret := []interface{}{}
		for _, child := range n.Child[2].Child {
			ret = append(ret, child.Result)
		}
		n.Result = ret
	})

	_object = Seq("{", Cut(), _properties, "}").Map(func(n *Result) {
		ret := map[string]interface{}{}

		for _, prop := range n.Child[2].Child {
			ret[prop.Child[0].Token] = prop.Child[2].Result
		}

		n.Result = ret
	})
)

func init() {
	_value = Any(_null, _true, _false, _string, _number, _array, _object)
}

// Unmarshall json string into map[string]interface{} or []interface{}
func Unmarshal(input string) (interface{}, error) {
	return Run(_value, input, ASCIIWhitespace)
}