goparsify/json/json.go
2017-08-07 21:45:12 +10:00

68 lines
1.3 KiB
Go

package json
import (
"errors"
. "github.com/vektah/goparsify"
)
var (
value Parser
_array = Map(And("[", Kleene(&value, ","), "]"), func(n Node) Node {
ret := []interface{}{}
for _, child := range n.Children[1].Children {
ret = append(ret, child.Result)
}
return Node{Result: ret}
})
properties = Kleene(And(String('"'), ":", &value), ",")
_object = Map(And("{", properties, "}"), func(n Node) Node {
ret := map[string]interface{}{}
for _, prop := range n.Children[1].Children {
ret[prop.Children[0].Token] = prop.Children[2].Result
}
return Node{Result: ret}
})
_null = Map("null", func(n Node) Node {
return Node{Result: nil}
})
_true = Map("true", func(n Node) Node {
return Node{Result: true}
})
_false = Map("false", func(n Node) Node {
return Node{Result: false}
})
_string = Map(String('"'), func(n Node) Node {
return Node{Result: n.Token}
})
Y = Map(&value, func(n Node) Node {
return Node{Result: n.Result}
})
)
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
}