-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.go
More file actions
457 lines (431 loc) · 9.17 KB
/
query.go
File metadata and controls
457 lines (431 loc) · 9.17 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package linq
import (
"context"
"iter"
"maps"
"slices"
"unicode/utf8"
)
type Signed interface {
~int | ~int8 | ~int16 | ~int32 | ~int64
}
type Unsigned interface {
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr
}
type Integer interface {
Signed | Unsigned
}
type Float interface {
~float32 | ~float64
}
type Complex interface {
~complex64 | ~complex128
}
// KV 键值对结构体
type KV[K comparable, V any] struct {
Key K
Value V
}
// CompareFunc 比较函数类型
type CompareFunc[T any] func(a, b T) int
// Query 查询结构体,是 LINQ 操作的核心类型
type Query[T any] struct {
compare CompareFunc[T]
iterate iter.Seq[T]
fastSlice []T
fastWhere func(T) bool
capacity int
sortSource *Query[T]
}
// Seq 返回供 for-range 从头到尾遍历的迭代器
func (q Query[T]) Seq() iter.Seq[T] {
return q.iterate
}
// ToSlice 将查询结果收集为切片
func (q Query[T]) ToSlice() []T {
if q.fastSlice != nil {
source := q.fastSlice
predicate := q.fastWhere
if predicate == nil {
return slices.Clone(source)
}
result := make([]T, 0, q.capacity/2+1) // 估算
for _, v := range source {
if predicate(v) {
result = append(result, v)
}
}
return result
}
return slices.Collect(q.iterate)
}
// ToChannel 将查询结果收集为通道,支持上下文取消
func (q Query[T]) ToChannel(ctx context.Context) <-chan T {
ch := make(chan T)
go func() {
defer close(ch)
if q.fastSlice != nil {
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
select {
case <-ctx.Done():
return
case ch <- item:
}
}
return
}
for item := range q.iterate {
select {
case <-ctx.Done():
return
case ch <- item:
}
}
}()
return ch
}
// From 从切片创建 Query 查询对象
func From[T any](source []T) Query[T] {
return Query[T]{
iterate: slices.Values(source),
fastSlice: source,
capacity: len(source),
}
}
// FromChannel 从只读 Channel 创建 Query 查询对象
func FromChannel[T any](source <-chan T) Query[T] {
return Query[T]{
iterate: func(yield func(T) bool) {
for item := range source {
if !yield(item) {
break
}
}
},
}
}
// FromString 从字符串创建 Query 查询对象,每个元素为一个 UTF-8 字符
func FromString(source string) Query[string] {
return Query[string]{
iterate: func(yield func(string) bool) {
pos := 0
length := len(source)
for pos < length {
r, w := utf8.DecodeRuneInString(source[pos:])
var item string
if r == utf8.RuneError && w == 1 {
item = string(r)
} else {
item = source[pos : pos+w]
}
pos += w
if !yield(item) {
break
}
}
},
capacity: len(source),
}
}
// FromMap 从 Map 创建 Query 查询对象,每个元素为 KV 键值对
func FromMap[K comparable, V any](source map[K]V) Query[KV[K, V]] {
return Query[KV[K, V]]{
iterate: func(yield func(KV[K, V]) bool) {
for k, v := range maps.All(source) {
if !yield(KV[K, V]{Key: k, Value: v}) {
break
}
}
},
capacity: len(source),
}
}
// Empty 创建一个空的 Query 查询对象
func Empty[T any]() Query[T] {
return From([]T{})
}
// Range 创建一个包含指定范围内整数序列的 Query 查询对象
func Range(start, count int) Query[int] {
if count <= 0 {
return Empty[int]()
}
return Query[int]{
iterate: func(yield func(int) bool) {
end := start + count
for i := start; i < end; i++ {
if !yield(i) {
return
}
}
},
capacity: count,
}
}
// Repeat 创建一个包含重复元素的 Query 查询对象
func Repeat[T any](element T, count int) Query[T] {
if count <= 0 {
return Empty[T]()
}
return Query[T]{
iterate: func(yield func(T) bool) {
for i := 0; i < count; i++ {
if !yield(element) {
return
}
}
},
capacity: count,
}
}
// Reverse 返回反转后的序列的查询对象
func (q Query[T]) Reverse() Query[T] {
return Query[T]{
iterate: func(yield func(T) bool) {
var items []T
if q.fastSlice != nil && q.fastWhere == nil {
items = q.fastSlice
} else {
for item := range q.iterate {
items = append(items, item)
}
}
for i := len(items) - 1; i >= 0; i-- {
if !yield(items[i]) {
return
}
}
},
capacity: q.capacity,
}
}
// Distinct 代理
func (q Query[T]) Distinct() Query[T] {
if q.fastSlice != nil {
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
},
capacity: q.capacity,
}
}
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for item := range q.iterate {
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
},
}
}
// Intersect 代理
func (q Query[T]) Intersect(q2 Query[T]) Query[T] {
if q.fastSlice != nil && q2.fastSlice != nil {
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for _, item := range q2.fastSlice {
if q2.fastWhere != nil && !q2.fastWhere(item) {
continue
}
seen[any(item)] = struct{}{}
}
emitted := make(map[any]struct{})
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
key := any(item)
if _, ok := seen[key]; ok {
if _, already := emitted[key]; !already {
emitted[key] = struct{}{}
if !yield(item) {
return
}
}
}
}
},
}
}
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for item := range q2.iterate {
seen[any(item)] = struct{}{}
}
emitted := make(map[any]struct{})
for item := range q.iterate {
key := any(item)
if _, ok := seen[key]; ok {
if _, already := emitted[key]; !already {
emitted[key] = struct{}{}
if !yield(item) {
return
}
}
}
}
},
}
}
// Union 代理
func (q Query[T]) Union(q2 Query[T]) Query[T] {
if q.fastSlice != nil && q2.fastSlice != nil {
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
for _, item := range q2.fastSlice {
if q2.fastWhere != nil && !q2.fastWhere(item) {
continue
}
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
},
}
}
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for item := range q.iterate {
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
for item := range q2.iterate {
key := any(item)
if _, ok := seen[key]; !ok {
seen[key] = struct{}{}
if !yield(item) {
return
}
}
}
},
}
}
// Except 代理
func (q Query[T]) Except(q2 Query[T]) Query[T] {
if q.fastSlice != nil && q2.fastSlice != nil {
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for _, item := range q2.fastSlice {
if q2.fastWhere != nil && !q2.fastWhere(item) {
continue
}
seen[any(item)] = struct{}{}
}
emitted := make(map[any]struct{})
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
key := any(item)
if _, ok := seen[key]; !ok {
if _, already := emitted[key]; !already {
emitted[key] = struct{}{}
if !yield(item) {
return
}
}
}
}
},
}
}
return Query[T]{
iterate: func(yield func(T) bool) {
seen := make(map[any]struct{})
for item := range q2.iterate {
seen[any(item)] = struct{}{}
}
emitted := make(map[any]struct{})
for item := range q.iterate {
key := any(item)
if _, ok := seen[key]; !ok {
if _, already := emitted[key]; !already {
emitted[key] = struct{}{}
if !yield(item) {
return
}
}
}
}
},
}
}
// AppendTo 追加到目标切片中
func (q Query[T]) AppendTo(dest []T) []T {
if q.fastSlice != nil {
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
dest = append(dest, item)
}
return dest
}
for item := range q.iterate {
dest = append(dest, item)
}
return dest
}
// ToMapSlice 将序列转换为 []map[string]T,通常用于 JSON 序列化
func (q Query[T]) ToMapSlice(selector func(T) map[string]T) (r []map[string]T) {
if q.fastSlice != nil {
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
r = append(r, selector(item))
}
return r
}
for item := range q.iterate {
r = append(r, selector(item))
}
return r
}