forked from ipfs/go-ipfs-cmds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chan.go
219 lines (174 loc) · 3.11 KB
/
chan.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
package cmds
import (
"context"
"fmt"
"io"
"github.com/ipfs/go-ipfs-cmdkit"
)
func NewChanResponsePair(req *Request) (ResponseEmitter, Response) {
ch := make(chan interface{})
wait := make(chan struct{})
done := make(chan struct{})
r := &chanResponse{
req: req,
ch: ch,
wait: wait,
done: done,
}
re := &chanResponseEmitter{
ch: ch,
length: &r.length,
wait: wait,
done: done,
}
return re, r
}
type chanResponse struct {
req *Request
err *cmdkit.Error
length uint64
// wait makes header requests block until the body is sent
wait chan struct{}
ch <-chan interface{}
done chan<- struct{}
}
func (r *chanResponse) Request() *Request {
if r == nil {
return nil
}
return r.req
}
func (r *chanResponse) Error() *cmdkit.Error {
<-r.wait
if r == nil {
return nil
}
return r.err
}
func (r *chanResponse) Length() uint64 {
<-r.wait
if r == nil {
return 0
}
return r.length
}
func (r *chanResponse) Next() (interface{}, error) {
if r == nil {
return nil, io.EOF
}
var ctx context.Context
if rctx := r.req.Context; rctx != nil {
ctx = rctx
} else {
ctx = context.Background()
}
select {
case v, ok := <-r.ch:
if !ok {
return nil, io.EOF
}
if err, ok := v.(cmdkit.Error); ok {
v = &err
}
switch val := v.(type) {
case *cmdkit.Error:
r.err = val
return nil, ErrRcvdError
case Single:
return val.Value, nil
default:
return v, nil
}
case <-ctx.Done():
close(r.done)
return nil, ctx.Err()
}
}
func (r *chanResponse) RawNext() (interface{}, error) {
if r == nil {
return nil, io.EOF
}
var ctx context.Context
if rctx := r.req.Context; rctx != nil {
ctx = rctx
} else {
ctx = context.Background()
}
select {
case v, ok := <-r.ch:
if ok {
return v, nil
}
return nil, io.EOF
case <-ctx.Done():
close(r.done)
return nil, ctx.Err()
}
}
type chanResponseEmitter struct {
ch chan<- interface{}
wait chan struct{}
done <-chan struct{}
length *uint64
err **cmdkit.Error
emitted bool
}
func (re *chanResponseEmitter) Emit(v interface{}) error {
if ch, ok := v.(chan interface{}); ok {
v = (<-chan interface{})(ch)
}
if ch, isChan := v.(<-chan interface{}); isChan {
for v = range ch {
err := re.Emit(v)
if err != nil {
return err
}
}
return nil
}
re.emitted = true
if re.wait != nil {
close(re.wait)
re.wait = nil
}
if re.ch == nil {
return fmt.Errorf("emitter closed")
}
if _, ok := v.(Single); ok {
defer re.Close()
}
select {
case re.ch <- v:
return nil
case <-re.done:
return context.Canceled
}
}
func (re *chanResponseEmitter) SetError(v interface{}, errType cmdkit.ErrorType) {
err := re.Emit(&cmdkit.Error{Message: fmt.Sprint(v), Code: errType})
if err != nil {
panic(err)
}
}
func (re *chanResponseEmitter) SetLength(l uint64) {
// don't change value after emitting
if re.emitted {
return
}
*re.length = l
}
func (re *chanResponseEmitter) Head() Head {
<-re.wait
return Head{
Len: *re.length,
Err: *re.err,
}
}
func (re *chanResponseEmitter) Close() error {
if re.ch == nil {
return nil
}
close(re.ch)
re.ch = nil
return nil
}