-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsyntax_node_identifier_child_multi.go
71 lines (57 loc) · 1.69 KB
/
syntax_node_identifier_child_multi.go
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
69
70
71
package jsonpath
import "reflect"
type syntaxChildMultiIdentifier struct {
*syntaxBasicNode
identifiers []syntaxNode
isAllWildcard bool
unionQualifier syntaxUnionQualifier
}
func (i *syntaxChildMultiIdentifier) retrieve(
root, current interface{}, container *bufferContainer) errorRuntime {
if i.isAllWildcard {
if _, ok := current.([]interface{}); ok {
// If the "current" variable points to the array structure
// and only wildcards are specified for qualifier,
// then switch to syntaxUnionQualifier.
return i.unionQualifier.retrieve(root, current, container)
}
}
if srcMap, ok := current.(map[string]interface{}); ok {
return i.retrieveMap(root, srcMap, container)
}
foundType := msgTypeNull
if current != nil {
foundType = reflect.TypeOf(current).String()
}
return ErrorTypeUnmatched{
errorBasicRuntime: i.errorRuntime,
expectedType: msgTypeObject,
foundType: foundType,
}
}
func (i *syntaxChildMultiIdentifier) retrieveMap(
root interface{}, srcMap map[string]interface{}, container *bufferContainer) errorRuntime {
var deepestTextLen int
var deepestError errorRuntime
for _, identifier := range i.identifiers {
if singleIdentifier, ok := identifier.(*syntaxChildSingleIdentifier); ok {
if _, ok = srcMap[singleIdentifier.identifier]; !ok {
continue
}
}
if err := identifier.retrieve(root, srcMap, container); err != nil {
if len(container.result) == 0 {
deepestTextLen, deepestError = i.addDeepestError(err, deepestTextLen, deepestError)
}
}
}
if len(container.result) > 0 {
return nil
}
if deepestError == nil {
return ErrorMemberNotExist{
errorBasicRuntime: i.errorRuntime,
}
}
return deepestError
}