-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsankey.go
205 lines (177 loc) · 5.16 KB
/
sankey.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package iosankey
import (
"context"
"fmt"
"github.com/bytedance/sonic"
"github.com/expr-lang/expr"
"github.com/expr-lang/expr/patcher"
"github.com/go-playground/validator/v10"
"github.com/jinzhu/copier"
"github.com/mitchellh/mapstructure"
"github.com/samber/lo"
"github.com/tidwall/sjson"
"strings"
)
var (
validate *validator.Validate
optsInPlace = &sjson.Options{Optimistic: true, ReplaceInPlace: true}
copyOption = copier.Option{IgnoreEmpty: true, DeepCopy: true}
)
func init() {
validate = validator.New(validator.WithRequiredStructEnabled())
}
// SankeyTransformer
// @Description:
type SankeyTransformer struct {
expressions []string
envs map[string]any
exprOptions []expr.Option
}
// NewSankeyTransformer
//
// @Description:
// @param opts
// @return *SankeyTransformer
func NewSankeyTransformer(opts ...SankeyOption) *SankeyTransformer {
transformer := &SankeyTransformer{
expressions: make([]string, 0),
envs: make(map[string]any),
exprOptions: make([]expr.Option, 0),
}
for _, opt := range opts {
opt(transformer)
}
return transformer
}
type SankeyOption func(*SankeyTransformer)
// WithExprOptions
//
// @Description:
// @param exprOptions
// @return SankeyOption
func WithExprOptions(exprOptions ...expr.Option) SankeyOption {
return func(st *SankeyTransformer) {
st.exprOptions = append(st.exprOptions, exprOptions...)
}
}
// WithExpressions
//
// @Description:
// @param expressions
// @return SankeyOption
func WithExpressions(expressions ...string) SankeyOption {
return func(st *SankeyTransformer) {
st.expressions = append(st.expressions, expressions...)
}
}
// WithEnvs
//
// @Description:
// @param envs
// @return SankeyOption
func WithEnvs(envs map[string]interface{}) SankeyOption {
return func(st *SankeyTransformer) {
for k, v := range envs {
st.envs[k] = v
}
}
}
// Map
//
// @Description: Map a JSON Object to map[string]any through expressions.
// @receiver s
// @param src
// @return map[string]any
// @return error
func (s *SankeyTransformer) Map(src any) (map[string]any, error) {
atSrc := make(map[string]any)
if err := mapstructure.Decode(src, &atSrc); err != nil {
return nil, fmt.Errorf("failed to decode source: %w", err)
}
atDst := make(map[string]any)
if err := copier.CopyWithOption(&atDst, &atSrc, copyOption); err != nil {
return nil, fmt.Errorf("failed to deepcopy dst map: %w", err)
}
atDstStr, err := sonic.MarshalString(atDst)
if err != nil {
return nil, fmt.Errorf("failed to marshal dst string: %w", err)
}
mergedOptions := append(builtinOptions, s.exprOptions...)
// nolint
ctx := context.WithValue(context.TODO(), "dstCtxKey", atDstStr)
mergedEnvs := lo.Assign[string, any](
s.envs,
map[string]any{
"$src": src,
"$dst": ctx,
"reset": func(ctx context.Context) string {
return "{}"
},
"set": func(ctx context.Context, k string, v any) string {
dstStr := ctx.Value("dstCtxKey").(string)
dstStr, _ = sjson.SetOptions(dstStr, k, v, optsInPlace)
return dstStr
},
"drop": func(ctx context.Context, k string) string {
dstStr := ctx.Value("dstCtxKey").(string)
dstStr, _ = sjson.Delete(dstStr, k)
return dstStr
},
},
)
origEvalOptions := append(mergedOptions, expr.Env(mergedEnvs))
shelfEvalOptions := append(origEvalOptions, expr.Patch(patcher.WithContext{Name: "$dst"}))
for _, expression := range s.expressions {
if strings.HasPrefix(expression, "reset(") ||
strings.HasPrefix(expression, "set(") ||
strings.HasPrefix(expression, "drop(") {
program, compileErr := expr.Compile(expression, shelfEvalOptions...)
if compileErr != nil {
return nil, fmt.Errorf("failed to compile expression '%s': %w", expression, compileErr)
}
output, runErr := expr.Run(program, mergedEnvs)
if runErr != nil {
return nil, fmt.Errorf("failed to run program with expression '%s': %w", expression, runErr)
}
// nolint
ctx = context.WithValue(ctx, "dstCtxKey", output)
mergedEnvs["$dst"] = ctx
} else {
program, compileErr := expr.Compile(expression, origEvalOptions...)
if compileErr != nil {
return nil, fmt.Errorf("failed to compile expression '%s': %w", expression, compileErr)
}
_, runErr := expr.Run(program, mergedEnvs)
if runErr != nil {
return nil, fmt.Errorf("failed to run program with expression '%s': %w", expression, runErr)
}
}
}
ctx = mergedEnvs["$dst"].(context.Context)
var dstMap map[string]any
if err := sonic.UnmarshalString(ctx.Value("dstCtxKey").(string), &dstMap); err != nil {
return nil, fmt.Errorf("failed to unmarshal destination string to map: %w", err)
}
return dstMap, nil
}
// Transform
//
// @Description: Transform a JSON Object to another one through expressions
// @receiver s
// @param src
// @param dst
// @return error
func (s *SankeyTransformer) Transform(src any, dst any) error {
var err error
dstMap, err := s.Map(src)
if err != nil {
return fmt.Errorf("error mapping source to destination: %w", err)
}
if err = mapstructure.Decode(dstMap, dst); err != nil {
return fmt.Errorf("error decoding to destination: %w", err)
}
if err = validate.Struct(dst); err != nil {
return fmt.Errorf("error validating destination structure: %w", err)
}
return err
}