-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkerPool.go
69 lines (53 loc) · 1.52 KB
/
workerPool.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
package work
import (
"sync"
log "github.com/mgutz/logxi/v1"
"github.com/onrik/ethrpc"
)
type Pool struct {
wt *sync.WaitGroup
workers []Worker
results chan *Job
failedJobs chan *Job
}
// NewTxWorkerPool instantiates a pool of workers with given concurrency for fetching transactions.
func NewTxWorkerPool(concurrency int, clientAddr string, jobs chan *Job, results chan *Job,
failedJobs chan *Job, stats chan *Stat) *Pool {
wt := &sync.WaitGroup{}
workerArr := make([]Worker, concurrency)
for i := 0; i < concurrency; i++ {
workerArr[i] = &TxWorker{ethrpc.NewEthRPC(clientAddr), jobs, results, failedJobs, stats, wt}
}
return &Pool{
wt: wt,
workers: workerArr,
results: results,
failedJobs: failedJobs,
}
}
// NewBlockWorkerPool instantiates a pool of workers with given concurrency for fetching blocks.
func NewBlockWorkerPool(concurrency int, clientAddr string, jobs chan *Job, results chan *Job,
failedJobs chan *Job, stats chan *Stat) *Pool {
wt := &sync.WaitGroup{}
workerArr := make([]Worker, concurrency)
for i := 0; i < concurrency; i++ {
workerArr[i] = &BlockWorker{ethrpc.NewEthRPC(clientAddr), jobs, results, failedJobs, stats, wt}
}
return &Pool{
wt: wt,
workers: workerArr,
results: results,
failedJobs: failedJobs,
}
}
// Run starts the processing of incoming jobs
func (p *Pool) Run() {
for _, w := range p.workers {
go w.doWork()
p.wt.Add(1)
}
p.wt.Wait()
close(p.results)
close(p.failedJobs)
log.Info("all worker completed")
}