types.go
10.0 KB
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
package advance
import (
"fmt"
"math"
"sort"
"strconv"
"time"
)
const (
ValueNumber ValueType = "number"
ValueDate ValueType = "date"
ValueChars ValueType = "chars"
)
const (
daySec = 60 * 60 * 24 //一天的秒数
Infinity = "$" // 表示无穷
// 分隔符
sepAnd = " and "
sepOr = " or "
)
const (
Eq OpType = "=" //eq =>>in
LessThanEqual OpType = "<=" //le
GreaterThanEqual OpType = ">=" //ge
Like OpType = "like" //like
LessThan OpType = "<" //lt
GreaterThan OpType = ">" //gt
NotEqual OpType = "<>" //ne =>> not in
NotIn OpType = "not in"
In OpType = "in" //in
Range OpType = "range" //range
Recent OpType = "recent" //recent 近几天
)
type (
ValueType string
OpType string
Column struct {
// 字段 userName
Column string `json:"column"`
// 名称
Name string `json:"name"`
// 列别名 对应数据库字段 ext->>'userName'
DbAlias string `json:"-"`
// 值类型
ValueType ValueType `json:"valueType"`
}
Expr struct {
// 操作符
OpChar OpType `json:"op"`
// 如果 OpChar=range ,LeftOp、RightOp需要有值
LeftOp OpType `json:"lop"` // "<= <"
RightOp OpType `json:"rop"` // ">= >"
// 值
Value []interface{} `json:"values"`
}
ExprResult struct {
// 操作符
OpChar OpType
// 值类型
ValueType ValueType
// 值
Value []interface{}
// 如果 OpType=range ,LeftOp、RightOp需要有值
LeftOp OpType
RightOp OpType
}
)
type (
exprCompute interface {
Append(result []ExprResult) []ExprResult
}
sqlGenerator interface {
SqlGen(q ColumnExprResult) string
}
InExprCompute struct {
expr []Expr
valueType ValueType
OpType OpType
}
RangeNumberExprCompute struct {
expr []Expr
valueType ValueType
}
RecentDateExprCompute struct {
expr []Expr
valueType ValueType
}
NotEqualExprCompute struct {
expr []Expr
valueType ValueType
OpType OpType
}
LessGreaterExprCompute struct {
expr []Expr
valueType ValueType
}
)
// in合并
func NewInExprCompute(expr []Expr, valueType ValueType) exprCompute {
inExpr := InExprCompute{valueType: valueType}
for i := 0; i < len(expr); i++ {
if expr[i].OpChar == Eq || expr[i].OpChar == In {
inExpr.expr = append(inExpr.expr, expr[i])
}
}
if len(inExpr.expr) > 0 {
return inExpr
}
return nil
}
func (ex InExprCompute) Append(result []ExprResult) []ExprResult {
var res = ExprResult{
OpChar: In,
ValueType: ex.valueType,
}
if ex.OpType != "" {
res.OpChar = ex.OpType
}
for i := range ex.expr {
res.Value = combine(append(res.Value, ex.expr[i].Value...))
}
result = append(result, res)
return result
}
func combine(arr []interface{}) []interface{} {
var mapArr = make(map[string]interface{})
for i := range arr {
key := fmt.Sprintf("%v", arr[i])
if _, ok := mapArr[key]; !ok {
mapArr[key] = arr[i]
}
}
var keys []string
for k, _ := range mapArr {
keys = append(keys, k)
}
sort.Strings(keys)
var res []interface{}
for i := range keys {
res = append(res, mapArr[keys[i]])
}
return res
}
//范围合并
func NewRangeExprCompute(expr []Expr, valueType ValueType) exprCompute {
rec := RangeNumberExprCompute{valueType: valueType}
for i := range expr {
if expr[i].OpChar == Range { // || expr[i].OpChar == LessThanEqual || expr[i].OpChar == GreaterThanEqual || expr[i].OpChar == LessThan || expr[i].OpChar == GreaterThan
rec.expr = append(rec.expr, expr[i])
}
}
if len(rec.expr) == 0 {
return nil
}
var exprSort = exprSortable(rec.expr)
sort.Sort(exprSort)
rec.expr = exprSort
return rec
}
func (ex RangeNumberExprCompute) Append(result []ExprResult) []ExprResult {
arr := &ExprResult{
OpChar: Range,
ValueType: ex.valueType,
Value: ex.expr[0].Value,
LeftOp: ex.expr[0].OpChar,
RightOp: ex.expr[0].OpChar,
}
if len(ex.expr[0].LeftOp) != 0 {
arr.LeftOp = ex.expr[0].LeftOp
}
if len(ex.expr[0].RightOp) != 0 {
arr.RightOp = ex.expr[0].RightOp
}
for i := 1; i < len(ex.expr); i++ {
if !arr.Compare(ex.expr[i]) {
result = append(result, *arr)
arr.Value = ex.expr[i].Value
arr.LeftOp = ex.expr[i].OpChar
arr.RightOp = ex.expr[i].OpChar
if len(ex.expr[0].LeftOp) != 0 {
arr.LeftOp = ex.expr[0].LeftOp
}
if len(ex.expr[0].RightOp) != 0 {
arr.RightOp = ex.expr[0].RightOp
}
continue
}
}
result = append(result, *arr)
return result
}
//范围合并
func NewLessGreaterExprCompute(expr []Expr, valueType ValueType) exprCompute {
rec := LessGreaterExprCompute{valueType: valueType}
for i := range expr {
if expr[i].OpChar == LessThanEqual || expr[i].OpChar == LessThan || expr[i].OpChar == GreaterThanEqual || expr[i].OpChar == GreaterThan {
rec.expr = append(rec.expr, expr[i])
}
}
if len(rec.expr) == 0 {
return nil
}
var exprSort = exprSortable(rec.expr)
sort.Sort(exprSort)
rec.expr = exprSort
return rec
}
func (ex LessGreaterExprCompute) Append(result []ExprResult) []ExprResult {
arr := &ExprResult{
OpChar: Range,
ValueType: ex.valueType,
Value: ex.expr[0].Value,
LeftOp: ex.expr[0].OpChar,
RightOp: ex.expr[0].OpChar,
}
x0, x1 := toFloat64(arr.Value[0], arr.Value[1])
for i := 1; i < len(ex.expr); i++ {
compare := ex.expr[i]
y0, y1 := toFloat64(compare.Value[0], compare.Value[1])
if compare.OpChar == LessThanEqual || compare.OpChar == LessThan {
if isInfinity(x1) {
arr.Value[1] = y0
arr.RightOp = compare.OpChar
} else if x1 > y1 {
arr.Value[0] = y0
arr.LeftOp = compare.OpChar
}
}
if compare.OpChar == GreaterThan || compare.OpChar == GreaterThanEqual {
if isInfinity(x0) {
arr.Value[0] = y0
arr.LeftOp = compare.OpChar
} else if y0 > x0 {
arr.Value[0] = y0
arr.LeftOp = compare.OpChar
}
}
}
if _, ok := less(arr.Value[0], arr.Value[1]); !ok {
arr.Value[0], arr.Value[1] = Infinity, Infinity
}
result = append(result, *arr)
return result
}
// recent范围
func NewRecentDateExprCompute(expr []Expr, valueType ValueType) exprCompute {
inExpr := RecentDateExprCompute{valueType: valueType}
for i := 0; i < len(expr); i++ {
if expr[i].OpChar == Recent {
inExpr.expr = append(inExpr.expr, expr[i])
}
}
if len(inExpr.expr) > 0 {
return inExpr
}
return nil
}
func (ex RecentDateExprCompute) Append(result []ExprResult) []ExprResult {
var res = ExprResult{
OpChar: Recent,
ValueType: ex.valueType,
}
var recent int64 = 0
for i := range ex.expr {
v, _ := strconv.ParseInt(fmt.Sprintf("%v", ex.expr[i].Value[0]), 10, 64)
if v > recent {
recent = v
}
}
res.Value = append(res.Value, []interface{}{time.Now().Unix() - daySec*recent, Infinity})
result = append(result, res)
return result
}
// like 合并(跟in操作一致)
func NewLikeExprCompute(expr []Expr, valueType ValueType) exprCompute {
inExpr := InExprCompute{valueType: valueType, OpType: Like}
for i := 0; i < len(expr); i++ {
if expr[i].OpChar == Like {
inExpr.expr = append(inExpr.expr, expr[i])
}
}
if len(inExpr.expr) > 0 {
return inExpr
}
return nil
}
// not equal合并
func NewNotEqualExprCompute(expr []Expr, valueType ValueType) exprCompute {
notEqualExpr := NotEqualExprCompute{valueType: valueType, OpType: NotIn}
for i := 0; i < len(expr); i++ {
if expr[i].OpChar == NotEqual {
notEqualExpr.expr = append(notEqualExpr.expr, expr[i])
}
}
if len(notEqualExpr.expr) > 0 {
return notEqualExpr
}
return nil
}
func (ex NotEqualExprCompute) Append(result []ExprResult) []ExprResult {
var res = ExprResult{
OpChar: NotIn,
ValueType: ex.valueType,
}
if ex.OpType != "" {
res.OpChar = ex.OpType
}
for i := range ex.expr {
res.Value = append(res.Value, ex.expr[i].Value...)
}
result = append(result, res)
return result
}
// Compare 比较两个范围的值
// eg: [80,&] [&,200]
// 排序 [&,200]
// [80,&]
// false:开启新的范围
// true:继续这个范围
func (er *ExprResult) Compare(compare Expr) bool {
if len(compare.Value) != 2 {
return false
}
_, x1 := toFloat64(er.Value[0], er.Value[1])
y0, _ := toFloat64(compare.Value[0], compare.Value[1])
if y0 <= x1 {
er.Value[1] = max(er.Value[1], compare.Value[1])
if isEqual(er.Value[1], compare.Value[1]) {
er.RightOp = compare.OpChar
if len(compare.RightOp) != 0 {
er.RightOp = compare.RightOp
}
}
return true
}
if isInfinity(er.Value[1]) {
return true
}
if isInfinity(er.Value[0]) && isInfinity(er.Value[1]) {
return true
}
return false
}
type exprSortable []Expr
func (e exprSortable) Len() int {
return len(e)
}
func (e exprSortable) Less(i, j int) bool {
var a, b float64
initValue := func(vi, vj interface{}) {
a, _ = strconv.ParseFloat(fmt.Sprintf("%v", vi), 64)
b, _ = strconv.ParseFloat(fmt.Sprintf("%v", vj), 64)
}
if isInfinity(e[i].Value[0]) && !isInfinity(e[j].Value[0]) {
return true
}
if isInfinity(e[i].Value[0]) && isInfinity(e[j].Value[0]) {
initValue(e[i].Value[1], e[j].Value[1])
return a < b
}
if e[i].Value[0] == e[j].Value[0] {
initValue(e[i].Value[1], e[j].Value[1])
return a < b
}
initValue(e[i].Value[0], e[j].Value[0])
return a < b
}
func (e exprSortable) Swap(i, j int) {
e[i], e[j] = e[j], e[i]
}
func joinExprResult(ec []exprCompute) []ExprResult {
var result []ExprResult
for _, ecItem := range ec {
if ecItem != nil {
result = ecItem.Append(result)
}
}
return result
}
func toFloat64(vi, vj interface{}) (float64, float64) {
a, _ := strconv.ParseFloat(fmt.Sprintf("%v", vi), 64)
b, _ := strconv.ParseFloat(fmt.Sprintf("%v", vj), 64)
return a, b
}
func max(x, y interface{}) interface{} {
if isInfinity(x) {
return x
}
if isInfinity(y) {
return y
}
fx, fy := toFloat64(x, y)
return math.Max(fx, fy)
}
func less(x, y interface{}) (interface{}, bool) {
if isInfinity(x) {
return x, true
}
if isInfinity(y) {
return y, true
}
fx, fy := toFloat64(x, y)
if fx < fy {
return x, true
}
return fy, false
}
func isInfinity(val interface{}) bool {
v := fmt.Sprintf("%v", val)
inf := fmt.Sprintf("%v", Infinity)
return v == inf
}
func isEqual(v1, v2 interface{}) bool {
sv1 := fmt.Sprintf("%v", v1)
sv2 := fmt.Sprintf("%v", v2)
return sv1 == sv2
}