-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.go
More file actions
222 lines (206 loc) · 3.93 KB
/
action.go
File metadata and controls
222 lines (206 loc) · 3.93 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
package linq
import (
"cmp"
"context"
"sync"
)
// ForEach 遍历序列并对每个元素执行指定操作
func (q Query[T]) ForEach(action func(T) bool) {
if q.fastSlice != nil {
source := q.fastSlice
preFilter := q.fastWhere
for _, item := range source {
if preFilter != nil && !preFilter(item) {
continue
}
if !action(item) {
return
}
}
return
}
for item := range q.iterate {
if !action(item) {
break
}
}
}
// ForEachIndexed 带索引遍历序列
func (q Query[T]) ForEachIndexed(action func(int, T) bool) {
index := 0
if q.fastSlice != nil {
source := q.fastSlice
preFilter := q.fastWhere
for _, item := range source {
if preFilter != nil && !preFilter(item) {
continue
}
if !action(index, item) {
return
}
index++
}
return
}
for item := range q.iterate {
if !action(index, item) {
break
}
index++
}
}
// ForEachParallelCtx 支持 Context 取消的并发遍历执行器(不保证顺序)
func (q Query[T]) ForEachParallelCtx(ctx context.Context, workers int, action func(T)) {
type token struct{}
sem := make(chan token, workers)
var wg sync.WaitGroup
workerCtx, cancel := context.WithCancel(ctx)
defer cancel()
errCh := make(chan any, workers)
if q.fastSlice != nil {
loopSlice:
for _, item := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(item) {
continue
}
select {
case <-workerCtx.Done():
break loopSlice
case sem <- token{}:
case panicErr := <-errCh:
if panicErr != nil {
panic(panicErr)
}
}
wg.Add(1)
go func(val T) {
defer wg.Done()
defer func() { <-sem }()
defer func() {
if r := recover(); r != nil {
select {
case errCh <- r:
cancel()
default:
}
}
}()
select {
case <-workerCtx.Done():
return
default:
action(val)
}
}(item)
}
} else {
loopIter:
for item := range q.iterate {
select {
case <-workerCtx.Done():
break loopIter
case sem <- token{}:
case panicErr := <-errCh:
if panicErr != nil {
panic(panicErr)
}
}
wg.Add(1)
go func(val T) {
defer wg.Done()
defer func() { <-sem }()
defer func() {
if r := recover(); r != nil {
select {
case errCh <- r:
cancel()
default:
}
}
}()
select {
case <-workerCtx.Done():
return
default:
action(val)
}
}(item)
}
}
wg.Wait()
close(errCh)
// 统一抛出捕获到的 panic
for panicErr := range errCh {
if panicErr != nil {
panic(panicErr)
}
}
}
// ForEachParallel 并发遍历无 context (底层封装 Ctx 版本)
func (q Query[T]) ForEachParallel(workers int, action func(T)) {
q.ForEachParallelCtx(context.Background(), workers, action)
}
// MinBy 根据选择器返回最小值
func MinBy[T any, R cmp.Ordered](q Query[T], selector func(T) R) T {
if q.fastSlice != nil {
var min T
var minR R
first := true
for _, v := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(v) {
continue
}
val := selector(v)
if first || cmp.Compare(val, minR) < 0 {
min = v
minR = val
first = false
}
}
return min
}
var min T
var minR R
first := true
for item := range q.iterate {
val := selector(item)
if first || cmp.Compare(val, minR) < 0 {
min = item
minR = val
first = false
}
}
return min
}
// MaxBy 根据选择器返回最大值
func MaxBy[T any, R cmp.Ordered](q Query[T], selector func(T) R) T {
if q.fastSlice != nil {
var max T
var maxR R
first := true
for _, v := range q.fastSlice {
if q.fastWhere != nil && !q.fastWhere(v) {
continue
}
val := selector(v)
if first || cmp.Compare(val, maxR) > 0 {
max = v
maxR = val
first = false
}
}
return max
}
var max T
var maxR R
first := true
for item := range q.iterate {
val := selector(item)
if first || cmp.Compare(val, maxR) > 0 {
max = item
maxR = val
first = false
}
}
return max
}