-
Notifications
You must be signed in to change notification settings - Fork 249
/
watcher.go
65 lines (55 loc) · 1.19 KB
/
watcher.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
package walletevent
import (
"context"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/status-im/status-go/services/wallet/async"
)
type EventCb func(event Event)
// Watcher executes a given callback whenever a wallet event gets sent
type Watcher struct {
feed *event.Feed
group *async.Group
callback EventCb
}
func NewWatcher(feed *event.Feed, callback EventCb) *Watcher {
return &Watcher{
feed: feed,
callback: callback,
}
}
func (w *Watcher) Start() {
if w.group != nil {
return
}
w.group = async.NewGroup(context.Background())
w.group.Add(func(ctx context.Context) error {
return watch(ctx, w.feed, w.callback)
})
}
func (w *Watcher) Stop() {
if w.group != nil {
w.group.Stop()
w.group.Wait()
w.group = nil
}
}
func watch(ctx context.Context, feed *event.Feed, callback EventCb) error {
ch := make(chan Event, 10)
sub := feed.Subscribe(ch)
defer sub.Unsubscribe()
for {
select {
case <-ctx.Done():
return nil
case err := <-sub.Err():
if err != nil {
log.Error("wallet event watcher subscription failed", "error", err)
}
case ev := <-ch:
if callback != nil {
callback(ev)
}
}
}
}