forked from libp2p/go-libp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
relay.go
96 lines (85 loc) · 2.02 KB
/
relay.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
package relaysvc
import (
"context"
"sync"
"github.com/chiangmaioneluv/go-libp2p/core/event"
"github.com/chiangmaioneluv/go-libp2p/core/host"
"github.com/chiangmaioneluv/go-libp2p/core/network"
"github.com/chiangmaioneluv/go-libp2p/p2p/host/eventbus"
relayv2 "github.com/chiangmaioneluv/go-libp2p/p2p/protocol/circuitv2/relay"
)
type RelayManager struct {
host host.Host
mutex sync.Mutex
relay *relayv2.Relay
opts []relayv2.Option
refCount sync.WaitGroup
ctxCancel context.CancelFunc
}
func NewRelayManager(host host.Host, opts ...relayv2.Option) *RelayManager {
ctx, cancel := context.WithCancel(context.Background())
m := &RelayManager{
host: host,
opts: opts,
ctxCancel: cancel,
}
m.refCount.Add(1)
go m.background(ctx)
return m
}
func (m *RelayManager) background(ctx context.Context) {
defer m.refCount.Done()
defer func() {
m.mutex.Lock()
if m.relay != nil {
m.relay.Close()
}
m.mutex.Unlock()
}()
subReachability, _ := m.host.EventBus().Subscribe(new(event.EvtLocalReachabilityChanged), eventbus.Name("relaysvc"))
defer subReachability.Close()
for {
select {
case <-ctx.Done():
return
case ev, ok := <-subReachability.Out():
if !ok {
return
}
if err := m.reachabilityChanged(ev.(event.EvtLocalReachabilityChanged).Reachability); err != nil {
return
}
}
}
}
func (m *RelayManager) reachabilityChanged(r network.Reachability) error {
switch r {
case network.ReachabilityPublic:
m.mutex.Lock()
defer m.mutex.Unlock()
// This could happen if two consecutive EvtLocalReachabilityChanged report the same reachability.
// This shouldn't happen, but it's safer to double-check.
if m.relay != nil {
return nil
}
relay, err := relayv2.New(m.host, m.opts...)
if err != nil {
return err
}
m.relay = relay
default:
m.mutex.Lock()
defer m.mutex.Unlock()
if m.relay != nil {
err := m.relay.Close()
m.relay = nil
return err
}
}
return nil
}
func (m *RelayManager) Close() error {
m.ctxCancel()
m.refCount.Wait()
return nil
}