summaryrefslogtreecommitdiff
path: root/json/json.go
blob: 3aa51634536c6e324bdbb410a67f35a8f1d256c8 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package json

import (
	"errors"

	. "github.com/vektah/goparsify"
)

var (
	value Parser

	array = Map(And(WS, "[", Kleene(&value, And(WS, ",")), "]"), func(n Node) Node {
		return n.([]Node)[1].([]Node)
	})
	properties = Kleene(And(WS, String('"'), WS, ":", WS, &value), ",")
	object     = Map(And(WS, "{", WS, properties, WS, "}"), func(n Node) Node {
		ret := map[string]interface{}{}

		for _, prop := range n.([]Node)[1].([]Node) {
			vals := prop.([]Node)
			if len(vals) == 3 {
				ret[vals[0].(string)] = vals[2]
			} else {
				ret[vals[0].(string)] = nil
			}
		}

		return ret
	})

	_null = Map(And(WS, "null"), func(n Node) Node {
		return nil
	})

	_true = Map(And(WS, "true"), func(n Node) Node {
		return true
	})

	_false = Map(And(WS, "false"), func(n Node) Node {
		return false
	})

	Y = Map(And(&value, WS), func(n Node) Node {
		nodes := n.([]Node)
		if len(nodes) > 0 {
			return nodes[0]
		}
		return nil
	})
)

func init() {
	value = Any(_null, _true, _false, String('"'), array, object)
}

func Unmarshal(input string) (interface{}, error) {
	result, remaining, err := ParseString(Y, input)

	if err != nil {
		return result, err
	}

	if remaining != "" {
		return result, errors.New("left unparsed: " + remaining)
	}

	return result, err
}