-
Notifications
You must be signed in to change notification settings - Fork 0
/
streams.go
70 lines (55 loc) · 1.01 KB
/
streams.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
package withttp
import (
"context"
"io"
)
type (
rangeable[T any] interface {
Range(func(int, T) bool)
Serialize() bool
}
Slice[T any] []T
Channel[T any] chan T
StreamFromReader struct {
io.Reader
streamFactory StreamFactory[[]byte]
}
)
func NewStreamFromReader(r io.Reader, sf StreamFactory[[]byte]) StreamFromReader {
return StreamFromReader{
Reader: r,
streamFactory: sf,
}
}
func (s Slice[T]) Range(fn func(int, T) bool) {
for i, x := range s {
if !fn(i, x) {
return
}
}
}
func (s Slice[T]) Serialize() bool { return true }
func (c Channel[T]) Range(fn func(int, T) bool) {
i := 0
for {
x, ok := <-c
if !ok {
return
}
fn(i, x)
i++
}
}
func (c Channel[T]) Serialize() bool { return true }
func (r StreamFromReader) Range(fn func(int, []byte) bool) {
stream := r.streamFactory.Get(r)
i := 0
for stream.Next(context.TODO()) {
if stream.Err() != nil {
return
}
fn(i, stream.Data())
i++
}
}
func (r StreamFromReader) Serialize() bool { return false }