mirror of https://github.com/tidwall/gjson.git
Support getting index for hastags
This commit is contained in:
parent
2feb4037b4
commit
34ea511746
11
gjson.go
11
gjson.go
|
@ -64,6 +64,8 @@ type Result struct {
|
||||||
Num float64
|
Num float64
|
||||||
// Index of raw value in original json, zero means index unknown
|
// Index of raw value in original json, zero means index unknown
|
||||||
Index int
|
Index int
|
||||||
|
// ArrayIndex is the Index of each returned element in the original json
|
||||||
|
ArrayIndex []int
|
||||||
}
|
}
|
||||||
|
|
||||||
// String returns a string representation of the value.
|
// String returns a string representation of the value.
|
||||||
|
@ -1476,6 +1478,7 @@ func parseArray(c *parseContext, i int, path string) (int, bool) {
|
||||||
c.pipe = right
|
c.pipe = right
|
||||||
c.piped = true
|
c.piped = true
|
||||||
}
|
}
|
||||||
|
var arrayIndex = make([]int, 0, 64)
|
||||||
var jsons = make([]byte, 0, 64)
|
var jsons = make([]byte, 0, 64)
|
||||||
jsons = append(jsons, '[')
|
jsons = append(jsons, '[')
|
||||||
for j, k := 0, 0; j < len(alog); j++ {
|
for j, k := 0, 0; j < len(alog); j++ {
|
||||||
|
@ -1490,6 +1493,7 @@ func parseArray(c *parseContext, i int, path string) (int, bool) {
|
||||||
}
|
}
|
||||||
if idx < len(c.json) && c.json[idx] != ']' {
|
if idx < len(c.json) && c.json[idx] != ']' {
|
||||||
_, res, ok := parseAny(c.json, idx, true)
|
_, res, ok := parseAny(c.json, idx, true)
|
||||||
|
parentIndex := res.Index
|
||||||
if ok {
|
if ok {
|
||||||
res := res.Get(rp.alogkey)
|
res := res.Get(rp.alogkey)
|
||||||
if res.Exists() {
|
if res.Exists() {
|
||||||
|
@ -1501,6 +1505,7 @@ func parseArray(c *parseContext, i int, path string) (int, bool) {
|
||||||
raw = res.String()
|
raw = res.String()
|
||||||
}
|
}
|
||||||
jsons = append(jsons, []byte(raw)...)
|
jsons = append(jsons, []byte(raw)...)
|
||||||
|
arrayIndex = append(arrayIndex, res.Index+parentIndex)
|
||||||
k++
|
k++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1509,6 +1514,7 @@ func parseArray(c *parseContext, i int, path string) (int, bool) {
|
||||||
jsons = append(jsons, ']')
|
jsons = append(jsons, ']')
|
||||||
c.value.Type = JSON
|
c.value.Type = JSON
|
||||||
c.value.Raw = string(jsons)
|
c.value.Raw = string(jsons)
|
||||||
|
c.value.ArrayIndex = arrayIndex
|
||||||
return i + 1, true
|
return i + 1, true
|
||||||
}
|
}
|
||||||
if rp.alogok {
|
if rp.alogok {
|
||||||
|
@ -2046,7 +2052,10 @@ func parseAny(json string, i int, hit bool) (int, Result, bool) {
|
||||||
res.Raw = val
|
res.Raw = val
|
||||||
res.Type = JSON
|
res.Type = JSON
|
||||||
}
|
}
|
||||||
return i, res, true
|
var c parseContext
|
||||||
|
c.value = res
|
||||||
|
fillIndex(json, &c)
|
||||||
|
return i, c.value, true
|
||||||
}
|
}
|
||||||
if json[i] <= ' ' {
|
if json[i] <= ' ' {
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -2119,4 +2119,51 @@ func TestModifierDoubleQuotes(t *testing.T) {
|
||||||
`{"name":"Product P4","value":"{\"productId\":\"1cc3\",\"vendorId\":\"20de\"}"},`+
|
`{"name":"Product P4","value":"{\"productId\":\"1cc3\",\"vendorId\":\"20de\"}"},`+
|
||||||
`{"name":"Product P4","value":"{\"productId\":\"1dd3\",\"vendorId\":\"30de\"}"}`+
|
`{"name":"Product P4","value":"{\"productId\":\"1dd3\",\"vendorId\":\"30de\"}"}`+
|
||||||
`]`)
|
`]`)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestArrayIndex(t *testing.T) {
|
||||||
|
json := `{
|
||||||
|
"vals": [
|
||||||
|
[
|
||||||
|
2,
|
||||||
|
2,
|
||||||
|
{
|
||||||
|
"wut",
|
||||||
|
"yup"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}`
|
||||||
|
r := Get(json, `vals.#.2`)
|
||||||
|
fmt.Println(r.ArrayIndex)
|
||||||
|
fmt.Println(string(json[37]))
|
||||||
|
|
||||||
|
all := Get(json, `@this`)
|
||||||
|
all.ForEach(func(_, value Result) bool {
|
||||||
|
println(value.Raw, "index", value.Index)
|
||||||
|
println(string(json[value.Index : value.Index+len(value.Raw)]))
|
||||||
|
if value.IsArray() {
|
||||||
|
value.ForEach(func(_, v Result) bool {
|
||||||
|
println(v.Raw, "index", v.Index)
|
||||||
|
parentIndex := value.Index + v.Index
|
||||||
|
println(string(json[parentIndex : parentIndex+len(v.Raw)]))
|
||||||
|
|
||||||
|
if v.IsArray() {
|
||||||
|
v.ForEach(func(_, sv Result) bool {
|
||||||
|
println(sv.Raw, "index", sv.Index+parentIndex)
|
||||||
|
println(string(json[sv.Index+parentIndex : sv.Index+parentIndex+len(sv.Raw)]))
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return true // keep iterating
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue