-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsyntax_basic_node.go
132 lines (104 loc) · 2.88 KB
/
syntax_basic_node.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package jsonpath
type syntaxBasicNode struct {
text string
connectedText string
valueGroup bool
next syntaxNode
accessorMode bool
errorRuntime *errorBasicRuntime
}
func (i *syntaxBasicNode) setText(text string) {
i.text = text
}
func (i *syntaxBasicNode) getText() string {
return i.text
}
func (i *syntaxBasicNode) setValueGroup() {
i.valueGroup = true
}
func (i *syntaxBasicNode) isValueGroup() bool {
return i.valueGroup
}
func (i *syntaxBasicNode) setConnectedText(text string) {
i.connectedText = text
}
func (i *syntaxBasicNode) getConnectedText() string {
return i.connectedText
}
func (i *syntaxBasicNode) setNext(next syntaxNode) {
if i.next != nil {
i.next.setNext(next)
} else {
i.next = next
}
}
func (i *syntaxBasicNode) getNext() syntaxNode {
return i.next
}
func (i *syntaxBasicNode) retrieveAnyValueNext(
root interface{}, nextSrc interface{}, container *bufferContainer) errorRuntime {
if i.next != nil {
return i.next.retrieve(root, nextSrc, container)
}
if i.accessorMode {
container.result = append(container.result, Accessor{
Get: func() interface{} { return nextSrc },
Set: nil,
})
} else {
container.result = append(container.result, nextSrc)
}
return nil
}
func (i *syntaxBasicNode) retrieveMapNext(
root interface{}, currentMap map[string]interface{}, key string, container *bufferContainer) errorRuntime {
nextNode, ok := currentMap[key]
if !ok {
return ErrorMemberNotExist{
errorBasicRuntime: i.errorRuntime,
}
}
if i.next != nil {
return i.next.retrieve(root, nextNode, container)
}
if i.accessorMode {
container.result = append(container.result, Accessor{
Get: func() interface{} { return currentMap[key] },
Set: func(value interface{}) { currentMap[key] = value },
})
} else {
container.result = append(container.result, nextNode)
}
return nil
}
func (i *syntaxBasicNode) retrieveListNext(
root interface{}, currentList []interface{}, index int, container *bufferContainer) errorRuntime {
if i.next != nil {
return i.next.retrieve(root, currentList[index], container)
}
if i.accessorMode {
container.result = append(container.result, Accessor{
Get: func() interface{} { return currentList[index] },
Set: func(value interface{}) { currentList[index] = value },
})
} else {
container.result = append(container.result, currentList[index])
}
return nil
}
func (i *syntaxBasicNode) setAccessorMode(mode bool) {
i.accessorMode = mode
}
func (i *syntaxBasicNode) addDeepestError(
err errorRuntime, deepestTextLen int, deepestError errorRuntime) (int, errorRuntime) {
textLength := len(err.getSyntaxNode().getConnectedText())
if deepestTextLen == 0 || deepestTextLen > textLength {
return textLength, err
}
if deepestTextLen == textLength {
if _, ok := deepestError.(ErrorTypeUnmatched); ok {
return deepestTextLen, err
}
}
return deepestTextLen, deepestError
}