-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathconcurrent.go
78 lines (63 loc) · 1.58 KB
/
concurrent.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
package proxy
import (
"context"
"errors"
"melody/config"
"time"
)
var errNullResult = errors.New("invalid response")
func NewConcurrentCallMiddleware(backend *config.Backend) Middleware {
// Check proxy
if backend.ConcurrentCalls == 1 {
panic(ErrTooManyProxies)
}
serviceTimeout := time.Duration(75*backend.Timeout.Nanoseconds()/100) * time.Nanosecond
return func(proxy ...Proxy) Proxy {
if len(proxy) > 1 {
panic(ErrTooManyProxies)
}
return func(ctx context.Context, request *Request) (*Response, error) {
totalCtx, cancel := context.WithTimeout(ctx, serviceTimeout)
results := make(chan *Response, backend.ConcurrentCalls)
failed := make(chan error, backend.ConcurrentCalls)
for i := 0; i < backend.ConcurrentCalls; i++ {
go processConcurrentCall(totalCtx, proxy[0], request, results, failed)
}
var response *Response
var err error
for i := 0; i < backend.ConcurrentCalls; i++ {
select {
case response = <-results:
if response != nil && response.IsComplete {
cancel()
return response, nil
}
case err = <-failed:
case <-ctx.Done():
}
}
cancel()
return response, err
}
}
}
func processConcurrentCall(ctx context.Context, proxy Proxy, request *Request, responses chan *Response, errors chan error) {
localCtx, cancel := context.WithCancel(ctx)
resp, err := proxy(localCtx, request)
if err != nil {
errors <- err
cancel()
return
}
if resp == nil {
errors <- errNullResult
cancel()
return
}
select {
case responses <- resp:
case <-ctx.Done():
errors <- ctx.Err()
}
cancel()
}