From a58a3e50000340c75f8c82a0421558cfa901b1e9 Mon Sep 17 00:00:00 2001 From: Wim Date: Sat, 1 Jul 2017 23:28:16 +0200 Subject: [PATCH] Optimize StatusLoop. Execute function when specified in OnWsConnect --- matterclient/matterclient.go | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go index 91795b37..d389f9bc 100644 --- a/matterclient/matterclient.go +++ b/matterclient/matterclient.go @@ -65,6 +65,7 @@ type MMClient struct { WsSequence int64 WsPingChan chan *model.WebSocketResponse ServerVersion string + OnWsConnect func() } func New(login, pass, team, server string) *MMClient { @@ -724,6 +725,12 @@ func (m *MMClient) GetTeamId() string { } func (m *MMClient) StatusLoop() { + retries := 0 + backoff := time.Second * 60 + if m.OnWsConnect != nil { + m.OnWsConnect() + } + m.log.Debug("StatusLoop:", m.OnWsConnect) for { if m.WsQuit { return @@ -734,14 +741,23 @@ func (m *MMClient) StatusLoop() { select { case <-m.WsPingChan: m.log.Debug("WS PONG received") + backoff = time.Second * 60 case <-time.After(time.Second * 5): - m.Logout() - m.WsQuit = false - m.Login() - go m.WsReceiver() + if retries > 3 { + m.Logout() + m.WsQuit = false + m.Login() + if m.OnWsConnect != nil { + m.OnWsConnect() + } + go m.WsReceiver() + } else { + retries++ + backoff = time.Second * 5 + } } } - time.Sleep(time.Second * 60) + time.Sleep(backoff) } }