|
|
|
@ -20,6 +20,7 @@ import (
|
|
|
|
|
"runtime/debug"
|
|
|
|
|
"sync"
|
|
|
|
|
"sync/atomic"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/openimsdk/open-im-server/v3/pkg/msgprocessor"
|
|
|
|
|
"github.com/openimsdk/protocol/constant"
|
|
|
|
@ -72,6 +73,8 @@ type Client struct {
|
|
|
|
|
closed atomic.Bool
|
|
|
|
|
closedErr error
|
|
|
|
|
token string
|
|
|
|
|
hbCtx context.Context
|
|
|
|
|
hbCancel context.CancelFunc
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ResetClient updates the client's state with new connection and context information.
|
|
|
|
@ -88,6 +91,7 @@ func (c *Client) ResetClient(ctx *UserConnContext, conn LongConn, longConnServer
|
|
|
|
|
c.closed.Store(false)
|
|
|
|
|
c.closedErr = nil
|
|
|
|
|
c.token = ctx.GetToken()
|
|
|
|
|
c.hbCtx, c.hbCancel = context.WithCancel(c.ctx)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Client) pingHandler(_ string) error {
|
|
|
|
@ -98,6 +102,13 @@ func (c *Client) pingHandler(_ string) error {
|
|
|
|
|
return c.writePongMsg()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Client) pongHandler(_ string) error {
|
|
|
|
|
if err := c.conn.SetReadDeadline(pongWait); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// readMessage continuously reads messages from the connection.
|
|
|
|
|
func (c *Client) readMessage() {
|
|
|
|
|
defer func() {
|
|
|
|
@ -110,7 +121,9 @@ func (c *Client) readMessage() {
|
|
|
|
|
|
|
|
|
|
c.conn.SetReadLimit(maxMessageSize)
|
|
|
|
|
_ = c.conn.SetReadDeadline(pongWait)
|
|
|
|
|
c.conn.SetPongHandler(c.pongHandler)
|
|
|
|
|
c.conn.SetPingHandler(c.pingHandler)
|
|
|
|
|
c.activeHeartbeat(c.hbCtx)
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
log.ZDebug(c.ctx, "readMessage")
|
|
|
|
@ -147,6 +160,7 @@ func (c *Client) readMessage() {
|
|
|
|
|
case CloseMessage:
|
|
|
|
|
c.closedErr = ErrClientClosed
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -235,6 +249,7 @@ func (c *Client) close() {
|
|
|
|
|
|
|
|
|
|
c.closed.Store(true)
|
|
|
|
|
c.conn.Close()
|
|
|
|
|
c.hbCancel() // Close server-initiated heartbeat.
|
|
|
|
|
c.longConnServer.UnRegister(c)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -321,6 +336,44 @@ func (c *Client) writeBinaryMsg(resp Resp) error {
|
|
|
|
|
return c.conn.WriteMessage(MessageBinary, encodedBuf)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Actively initiate Heartbeat when platform in Web.
|
|
|
|
|
func (c *Client) activeHeartbeat(ctx context.Context) {
|
|
|
|
|
if c.PlatformID == constant.WebPlatformID {
|
|
|
|
|
go func() {
|
|
|
|
|
log.ZDebug(ctx, "server initiative send heartbeat start.")
|
|
|
|
|
ticker := time.NewTicker(pingPeriod)
|
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
select {
|
|
|
|
|
case <-ticker.C:
|
|
|
|
|
if err := c.writePingMsg(); err != nil {
|
|
|
|
|
log.ZWarn(c.ctx, "send Ping Message error.", err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
case <-c.hbCtx.Done():
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
func (c *Client) writePingMsg() error {
|
|
|
|
|
if c.closed.Load() {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c.w.Lock()
|
|
|
|
|
defer c.w.Unlock()
|
|
|
|
|
|
|
|
|
|
err := c.conn.SetWriteDeadline(writeWait)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c.conn.WriteMessage(PingMessage, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Client) writePongMsg() error {
|
|
|
|
|
if c.closed.Load() {
|
|
|
|
|
return nil
|
|
|
|
|