dProxy is a proxy to access interface{}
(document) by simple query.
It is intented to be used with json.Unmarshal()
or json.NewDecorder()
.
See codes for overview.
import (
"encoding/json"
"github.com/koron/go-dproxy"
)
var v interface{}
json.Unmarshal([]byte(`{
"cities": [ "tokyo", 100, "osaka", 200, "hakata", 300 ],
"data": {
"custom": [ "male", 23, "female", 24 ]
}
}`), &v)
// s == "tokyo", got a string.
s, _ := dproxy.New(v).M("cities").A(0).String()
// err != nil, type not matched.
_, err := dproxy.New(v).M("cities").A(0).Float64()
// n == 200, got a float64
n, _ := dproxy.New(v).M("cities").A(3).Float64()
// can be chained.
dproxy.New(v).M("data").M("custom").A(0).String()
// err.Error() == "not found: data.kustom", wrong query can be verified.
_, err = dproxy.New(v).M("data").M("kustom").String()
-
Wrap a value (
interface{}
) withdproxy.New()
getdproxy.Proxy
.p := dproxy.New(v) // v should be a value of interface{}
-
Query as a map (
map[string]interface{}
)byM()
, returnsdproxy.Proxy
.p.M("cities")
-
Query as an array (
[]interface{}
) withA()
, returnsdproxy.Proxy
.p.A(3)
-
Therefore, can be chained queries.
p.M("cities").A(3)
-
Get a value finally.
n, _ := p.M("cities").A(3).Int64()
-
You'll get an error when getting a value, if there were some mistakes.
// OOPS! "kustom" is typo, must be "custom" _, err := p.M("data").M("kustom").A(3).Int64() // "not found: data.kustom" fmt.Println(err)
-
If you tried to get a value as different type, get an error.
// OOPS! "cities[3]" (=200) should be float64 or int64. _, err := p.M("cities").A(3).String() // "not matched types: expected=string actual=float64: cities[3]" fmt.Println(err)
-
You can verify queries easily.
Getting value and error from Proxy/ProxySet multiple times, is very awful. It must check error when every getting values.
p := dproxy.New(v)
v1, err := p.M("cities").A(3).Int64()
if err != nil {
return err
}
v2, err := p.M("data").M("kustom").A(3).Int64()
if err != nil {
return err
}
v3, err := p.M("cities").A(3).String()
if err != nil {
return err
}
It can be rewrite as simple like below with dproxy.Drain
var d Drain
p := dproxy.New(v)
v1 := d.Int64(p.M("cities").A(3))
v2 := d.Int64(p.M("data").M("kustom").A(3))
v3 := d.String(p.M("cities").A(3))
if err := d.CombineErrors(); err != nil {
return err
}
JSON Pointer can be used to query interface{}
v1, err := dproxy.New(v).P("/cities/0").Int64()
or
v1, err := dproxy.Pointer(v, "/cities/0").Int64()
See RFC6901 for details of JSON Pointer.
MIT license. See LICENSE.