-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiffdoc.go
65 lines (59 loc) · 1.37 KB
/
diffdoc.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
package json_diff
type DiffType int
// RFC6902 https://tools.ietf.org/html/rfc6902
const (
DiffTypeAdd = iota + 1
DiffTypeRemove
DiffTypeReplace
DiffTypeMove
DiffTypeCopy
DiffTypeTest
)
func translateDiffType(t DiffType) string {
switch t {
case DiffTypeAdd:
return "add"
case DiffTypeCopy:
return "copy"
case DiffTypeMove:
return "move"
case DiffTypeRemove:
return "remove"
case DiffTypeReplace:
return "replace"
case DiffTypeTest:
return "test"
}
return ""
}
var diffTypeTable = map[string]DiffType{
"add": DiffTypeAdd,
"remove": DiffTypeRemove,
"move": DiffTypeMove,
"replace": DiffTypeReplace,
"copy": DiffTypeCopy,
"test": DiffTypeTest,
}
func stringToDiffType(s string) (DiffType, bool) {
v, ok := diffTypeTable[s]
return v, ok
}
func newDiffNode(diffType DiffType, path string, value *JsonNode, from string, opt JsonDiffOption) *JsonNode {
n := &JsonNode{
Type: JsonNodeTypeObject,
ChildrenMap: make(map[string]*JsonNode),
}
_ = n.ADD("op", NewValueNode(translateDiffType(diffType), 1))
_ = n.ADD("path", NewValueNode(path, 1))
switch diffType {
case DiffTypeAdd, DiffTypeTest, DiffTypeReplace:
_ = n.ADD("value", value)
case DiffTypeMove, DiffTypeCopy:
_ = n.ADD("from", NewValueNode(from, 1))
case DiffTypeRemove:
if opt&UseFullRemoveOption == UseFullRemoveOption {
_ = n.ADD("value", value)
}
}
return n
}