-
Notifications
You must be signed in to change notification settings - Fork 7
/
options.go
54 lines (47 loc) · 1.87 KB
/
options.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
package jsonpatch
// Option allow to configure the walker instance
type Option func(r *walker)
// WithPredicate set a patch Predicate for the walker. This can be used to filter or validate the patch creation
func WithPredicate(predicate Predicate) Option {
return func(w *walker) {
w.predicate = predicate
}
}
// WithHandler set a patch Handler for the walker. This can be used to customize the patch creation
func WithHandler(handler Handler) Option {
return func(w *walker) {
w.handler = handler
}
}
// WithPrefix is used to specify a prefix if only a sub part of JSON structure needs to be patched
func WithPrefix(prefix []string) Option {
return func(w *walker) {
if len(prefix) > 0 && prefix[0] == "" {
w.prefix = append(w.prefix, prefix[1:]...)
} else {
w.prefix = append(w.prefix, prefix...)
}
}
}
// IgnoreSliceOrder will ignore the order of all slices of built-in types during the walk and will use instead the value
// itself in order to compare the current and modified JSON.
// NOTE: ignoring order only works if the elements in each slice are unique
func IgnoreSliceOrder() Option {
return func(w *walker) {
w.ignoredSlices = append(w.ignoredSlices, IgnorePattern{Pattern: "*"})
}
}
// IgnoreSliceOrderWithPattern will ignore the order of slices which paths match the pattern during the walk
// and will use instead the value in order to compare the current and modified JSON.
// (For structs (and pointers of structs) the value of the JSON field specified in IgnorePattern is used for comparison.)
// NOTE: ignoring order only works if the elements in each slice are unique
func IgnoreSliceOrderWithPattern(slices []IgnorePattern) Option {
return func(w *walker) {
w.ignoredSlices = append(slices, w.ignoredSlices...)
}
}
// IgnorePattern specifies a JSONPointer Pattern and a an optional JSONField
type IgnorePattern struct {
Pattern string
JSONField string
}