-
Notifications
You must be signed in to change notification settings - Fork 11
/
impl.go
378 lines (342 loc) · 10.3 KB
/
impl.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
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
package stream
import (
"reflect"
"sort"
"github.com/youthlin/stream/optional"
"github.com/youthlin/stream/types"
)
// stream is a node show as below. which source is a iterator. head stream has no prev node.
// terminal operate create a terminalStage,
// then this terminalStage will use a downStage of prev node and wrap a new stage,
// finally trigger source to iterate it's data to the wrappedStage
//
// stream 是数据流中的一个节点,见下图。头节点没有前驱节点。每个操作会创建一个新的节点,连接到原有节点后。
// 终止操作会创建一个 terminalStage, 这个 terminalStage 会作为最后一个节点的 downStage, 依次往前调用 wrap 方法,生成最终的 wrappedStage
// 最后触发数据源迭代每个元素给 wrappedStage
//
// head filter map for-each
// +--+ +---+ +--+
// nil <- | | <- | | <- | | <- terminalStage
// +--+ +---+ +--+
//
// +-filter----------------+
// source --> | |
// | +-map-----------+
// | | |
// | | +-for-each-+
// | | | | terminalStage
// +-------+----+----------+
//
// <----- wrapped stage ----->
type stream struct {
source iterator // 数据源
prev *stream // 前一个流
wrap func(stage) stage
}
// region help methods 帮助方法
// newHead 构造头节点
func newHead(source iterator) *stream {
return &stream{source: source}
}
// newNode 构造中间节点
func newNode(prev *stream, wrap func(down stage) stage) *stream {
return &stream{
source: prev.source,
prev: prev,
wrap: wrap,
}
}
// terminal 终止操作调用。触发包装各项操作,开始元素遍历
func (s *stream) terminal(ts *terminalStage) {
stage := s.wrapStage(ts)
source := s.source
stage.Begin(source.GetSizeIfKnown())
for source.HasNext() && !stage.CanFinish() {
stage.Accept(source.Next())
}
stage.End()
}
// wrapStage 将所有操作"包装"为一个操作。从终止操作开始往前(因为 wrap 的参数是 downStage)包装
func (s *stream) wrapStage(terminalStage stage) stage {
stage := terminalStage
for i := s; i.prev != nil; i = i.prev {
stage = i.wrap(stage)
}
return stage
}
// endregion 帮助方法
// region 无状态操作
// Filter 过滤操作
// test is a Predicate, return true then keep the element 返回 true 的将保留
func (s *stream) Filter(test types.Predicate) Stream {
return newNode(s, func(down stage) stage {
return newChainedStage(down, begin(func(int64) {
down.Begin(unknownSize) // 过滤后个数不确定
}), action(func(t types.T) {
if test(t) {
down.Accept(t)
}
}))
})
}
// Map 转换操作
// apply is a Function, convert the element to another 转换元素
func (s *stream) Map(apply types.Function) Stream {
return newNode(s, func(down stage) stage {
return newChainedStage(down, action(func(t types.T) {
down.Accept(apply(t))
}))
})
}
// FlatMap 打平集合为元素。[[1,2],[3,4]] -> [1,2,3,4]
func (s *stream) FlatMap(flatten func(t types.T) Stream) Stream {
return newNode(s, func(down stage) stage {
return newChainedStage(down, begin(func(int64) {
down.Begin(unknownSize) // 最终个数不确定
}), action(func(t types.T) {
ss := flatten(t) // 元素是集合,转为流
ss.ForEach(down.Accept) // 消费流中的元素
}))
})
}
// Peek visit every element and leave them on stream so that they can be operated by next action 访问流中每个元素而不消费它,可用于 debug
func (s *stream) Peek(consumer types.Consumer) Stream {
return newNode(s, func(down stage) stage {
return newChainedStage(down, action(func(t types.T) {
consumer(t)
down.Accept(t)
}))
})
}
// endregion 无状态操作
// region 有状态操作
// Distinct remove duplicate 去重操作
// distincter is a IntFunction, which return a int hashcode to identity each element 返回元素的唯一标识用于区分每个元素
func (s *stream) Distinct(distincter types.IntFunction) Stream {
return newNode(s, func(down stage) stage {
var set map[int]bool
return newChainedStage(down, begin(func(int64) {
set = make(map[int]bool)
down.Begin(unknownSize) // 去重后个数不确定
}), action(func(t types.T) {
hash := distincter(t)
_, has := set[hash]
if !has { // 唯一的元素才往下游发送
down.Accept(t)
set[hash] = true
}
}), end(func() {
set = nil
down.End()
}))
})
}
// Sorted sort by Comparator 排序
func (s *stream) Sorted(cmp types.Comparator) Stream {
return newNode(s, func(down stage) stage {
var list []types.T
return newChainedStage(down, begin(func(size int64) {
if size > 0 {
list = make([]types.T, 0, size)
} else {
list = make([]types.T, 0)
}
down.Begin(size)
}), action(func(t types.T) {
list = append(list, t)
}), end(func() {
a := &Sortable{
List: list,
Cmp: cmp,
}
sort.Sort(a)
down.Begin(int64(len(a.List)))
i := it(a.List...)
for i.HasNext() && !down.CanFinish() {
down.Accept(i.Next())
}
list = nil
a = nil
down.End()
}))
})
}
// Limit 限制元素个数
func (s *stream) Limit(maxSize int64) Stream {
return newNode(s, func(down stage) stage {
count := int64(0)
return newChainedStage(down, begin(func(size int64) {
if size > 0 {
if size > maxSize {
size = maxSize
}
}
down.Begin(size)
}), action(func(t types.T) {
if count < maxSize {
down.Accept(t)
}
count++
}), canFinish(func() bool {
return count == maxSize // 已经到了限制数量,就可以提前结束了
}))
})
}
// SKip 跳过指定个数的元素
func (s *stream) Skip(n int64) Stream {
return newNode(s, func(down stage) stage {
count := int64(0)
return newChainedStage(down, begin(func(size int64) {
if size > 0 {
size -= n
if size < 0 {
size = 0
}
}
down.Begin(size)
}), action(func(t types.T) {
if count >= n {
down.Accept(t)
}
count++
}))
})
}
// endregion 有状态操作
// region 终止操作
// ForEach 消费流中每个元素
func (s *stream) ForEach(consumer types.Consumer) {
s.terminal(newTerminalStage(consumer))
}
// ToSlice 转为切片
func (s *stream) ToSlice() []types.T {
return s.ReduceBy(func(count int64) types.R {
if count >= 0 {
return make([]types.T, 0, count)
}
return make([]types.T, 0)
}, func(acc types.R, t types.T) types.R {
slice := acc.([]types.T)
slice = append(slice, t)
return slice
}).([]types.T)
}
// ToElementSlice needs a argument cause the stream may be empty
func (s *stream) ToElementSlice(some types.T) types.R {
return s.ToSliceOf(reflect.TypeOf(some))
}
// ToRealSlice
func (s *stream) ToSliceOf(typ reflect.Type) types.R {
sliceType := reflect.SliceOf(typ)
return s.ReduceBy(func(size int64) types.R {
if size >= 0 {
return reflect.MakeSlice(sliceType, 0, int(size))
}
return reflect.MakeSlice(sliceType, 0, 16)
}, func(acc types.R, t types.T) types.R {
sliceValue := acc.(reflect.Value)
sliceValue = reflect.Append(sliceValue, reflect.ValueOf(t))
return sliceValue
}).(reflect.Value).
Interface()
}
// AllMatch 测试是否所有元素符合断言
func (s *stream) AllMatch(test types.Predicate) bool {
var result = true
s.terminal(newTerminalStage(func(t types.T) {
if !test(t) {
result = false // 有任意一个不符合
}
}, canFinish(func() bool {
return !result // 有一个不符合就可以结束了
})))
return result
}
// NoneMatch 测试是否没有元素符合断言
func (s *stream) NoneMatch(test types.Predicate) bool {
var result = true
s.terminal(newTerminalStage(func(t types.T) {
if test(t) {
result = false // 有任意一个符合
}
}, canFinish(func() bool {
return !result // 有一个符合就可以结束了
})))
return result
}
// AnyMatch 测试是否有任意一个元素符合断言
func (s *stream) AnyMatch(test types.Predicate) bool {
var result = false
s.terminal(newTerminalStage(func(t types.T) {
if test(t) {
result = true // 有任意一个符合
}
}, canFinish(func() bool {
return result // 有任意一个符合就可以结束
})))
return result
}
func (s *stream) Reduce(accumulator types.BinaryOperator) optional.Optional {
var result types.T = nil
var hasElement = false
s.terminal(newTerminalStage(func(t types.T) {
if !hasElement {
result = t
hasElement = true
} else {
result = accumulator(result, t)
}
}))
if hasElement {
return optional.Of(result)
}
return optional.Empty()
}
// ReduceFrom 从给定的初始值 initValue(类型和元素类型相同) 开始迭代 使用 accumulator(2个入参类型和返回类型相同) 累计结果
func (s *stream) ReduceFrom(initValue types.T, accumulator types.BinaryOperator) types.T {
var result = initValue
s.terminal(newTerminalStage(func(t types.T) {
result = accumulator(result, t)
}))
return result
}
// ReduceWith 使用给定的初始值 initValue(类型和元素类型不同) 开始迭代 使用 accumulator( R + T -> R) 累计结果
func (s *stream) ReduceWith(initValue types.R, accumulator func(types.R, types.T) types.R) types.R {
var result = initValue
s.terminal(newTerminalStage(func(t types.T) {
result = accumulator(result, t)
}))
return result
}
// ReduceBy 使用给定的初始化方法(参数是元素个数,或-1)生成 initValue, 然后使用 accumulator 累计结果
// ReduceBy use `buildInitValue` to build the initValue, which parameter is a int64 means element size, or -1 if unknown size.
// Then use `accumulator` to add each element to previous result
func (s *stream) ReduceBy(buildInitValue func(int64) types.R, accumulator func(types.R, types.T) types.R) types.R {
var result types.R
s.terminal(newTerminalStage(func(e types.T) {
result = accumulator(result, e)
}, begin(func(count int64) {
result = buildInitValue(count)
})))
return result
}
func (s *stream) FindFirst() optional.Optional {
var result types.T
var find = false
s.terminal(newTerminalStage(func(t types.T) {
if !find {
result = t
find = true
}
}, canFinish(func() bool {
return find
})))
return optional.OfNullable(result)
}
// Count 计算元素个数
func (s *stream) Count() int64 {
return s.ReduceWith(int64(0), func(count types.R, t types.T) types.R {
return count.(int64) + 1
}).(int64)
}
// endregion 终止操作