-
Notifications
You must be signed in to change notification settings - Fork 7
/
wrap.go
208 lines (180 loc) · 4.8 KB
/
wrap.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
package rill
// Try is a container holding a value of type A or an error
type Try[A any] struct {
Value A
Error error
}
// Wrap converts a value and/or error into a [Try] container.
// It's a convenience function to avoid creating a [Try] container manually and benefit from type inference.
//
// Such function signature also allows concise wrapping of functions that return a value and an error:
//
// item := rill.Wrap(strconv.ParseInt("42"))
func Wrap[A any](value A, err error) Try[A] {
return Try[A]{Value: value, Error: err}
}
// FromSlice converts a slice into a stream.
// If err is not nil function returns a stream with a single error.
//
// Such function signature allows concise wrapping of functions that return a slice and an error:
//
// stream := rill.FromSlice(someFunc())
func FromSlice[A any](slice []A, err error) <-chan Try[A] {
const maxBufferSize = 512
if err != nil {
out := make(chan Try[A], 1)
out <- Try[A]{Error: err}
close(out)
return out
}
sendAll := func(in []A, out chan Try[A]) {
for _, a := range in {
out <- Try[A]{Value: a}
}
close(out)
}
if len(slice) <= maxBufferSize {
out := make(chan Try[A], len(slice))
sendAll(slice, out)
return out
}
out := make(chan Try[A], maxBufferSize)
go sendAll(slice, out)
return out
}
// ToSlice converts an input stream into a slice.
//
// This is a blocking ordered function that processes items sequentially.
// See the package documentation for more information on blocking ordered functions and error handling.
func ToSlice[A any](in <-chan Try[A]) ([]A, error) {
var res []A
for x := range in {
if err := x.Error; err != nil {
DrainNB(in)
return res, err
}
res = append(res, x.Value)
}
return res, nil
}
// FromChan converts a regular channel into a stream.
// Additionally, this function can take an error, that will be added to the output stream alongside the values.
// Either argument can be nil, in which case it is ignored. If both arguments are nil, the function returns nil.
//
// Such function signature allows concise wrapping of functions that return a channel and an error:
//
// stream := rill.FromChan(someFunc())
func FromChan[A any](values <-chan A, err error) <-chan Try[A] {
if values == nil && err == nil {
return nil
}
out := make(chan Try[A])
go func() {
defer close(out)
// error goes first
if err != nil {
out <- Try[A]{Error: err}
}
for x := range values {
out <- Try[A]{Value: x}
}
}()
return out
}
// FromChans converts a regular channel into a stream.
// Additionally, this function can take a channel of errors, which will be added to
// the output stream alongside the values.
// Either argument can be nil, in which case it is ignored. If both arguments are nil, the function returns nil.
//
// Such function signature allows concise wrapping of functions that return two channels:
//
// stream := rill.FromChans(someFunc())
func FromChans[A any](values <-chan A, errs <-chan error) <-chan Try[A] {
if values == nil && errs == nil {
return nil
}
out := make(chan Try[A])
go func() {
defer close(out)
for {
select {
case err, ok := <-errs:
if ok {
if err != nil {
out <- Try[A]{Error: err}
}
} else {
errs = nil
if values == nil && errs == nil {
return
}
}
case v, ok := <-values:
if ok {
out <- Try[A]{Value: v}
} else {
values = nil
if values == nil && errs == nil {
return
}
}
}
}
}()
return out
}
// ToChans splits an input stream into two channels: one for values and one for errors.
// It's an inverse of [FromChans]. Returns two nil channels if the input is nil.
func ToChans[A any](in <-chan Try[A]) (<-chan A, <-chan error) {
if in == nil {
return nil, nil
}
out := make(chan A)
errs := make(chan error)
go func() {
defer close(out)
defer close(errs)
for x := range in {
if x.Error != nil {
errs <- x.Error
} else {
out <- x.Value
}
}
}()
return out, errs
}
// Generate is a shorthand for creating streams.
// It provides a more ergonomic way of sending both values and errors to a stream, manages goroutine and channel lifecycle.
//
// stream := rill.Generate(func(send func(int), sendErr func(error)) {
// for i := 0; i < 100; i++ {
// send(i)
// }
// sendErr(someError)
// })
//
// Here's how the same code would look without Generate:
//
// stream := make(chan rill.Try[int])
// go func() {
// defer close(stream)
// for i := 0; i < 100; i++ {
// stream <- rill.Try[int]{Value: i}
// }
// stream <- rill.Try[int]{Error: someError}
// }()
func Generate[A any](f func(send func(A), sendErr func(error))) <-chan Try[A] {
out := make(chan Try[A])
go func() {
defer close(out)
send := func(a A) {
out <- Try[A]{Value: a}
}
sendErr := func(err error) {
out <- Try[A]{Error: err}
}
f(send, sendErr)
}()
return out
}