mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
4e918e55ba
Rethink the peer reconnection implementation
69 lines
1.4 KiB
Go
69 lines
1.4 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var (
|
|
reconnectingTimeout = 5 * time.Second
|
|
)
|
|
|
|
// Guard manage the reconnection tries to the Relay server in case of disconnection event.
|
|
type Guard struct {
|
|
ctx context.Context
|
|
relayClient *Client
|
|
}
|
|
|
|
// NewGuard creates a new guard for the relay client.
|
|
func NewGuard(context context.Context, relayClient *Client) *Guard {
|
|
g := &Guard{
|
|
ctx: context,
|
|
relayClient: relayClient,
|
|
}
|
|
return g
|
|
}
|
|
|
|
// OnDisconnected is called when the relay client is disconnected from the relay server. It will trigger the reconnection
|
|
// todo prevent multiple reconnection instances. In the current usage it should not happen, but it is better to prevent
|
|
func (g *Guard) OnDisconnected() {
|
|
if g.quickReconnect() {
|
|
return
|
|
}
|
|
|
|
ticker := time.NewTicker(reconnectingTimeout)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ticker.C:
|
|
err := g.relayClient.Connect()
|
|
if err != nil {
|
|
log.Errorf("failed to reconnect to relay server: %s", err)
|
|
continue
|
|
}
|
|
return
|
|
case <-g.ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (g *Guard) quickReconnect() bool {
|
|
ctx, cancel := context.WithTimeout(g.ctx, 1500*time.Millisecond)
|
|
defer cancel()
|
|
<-ctx.Done()
|
|
|
|
if g.ctx.Err() != nil {
|
|
return false
|
|
}
|
|
|
|
if err := g.relayClient.Connect(); err != nil {
|
|
log.Errorf("failed to reconnect to relay server: %s", err)
|
|
return false
|
|
}
|
|
return true
|
|
}
|