You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.4 KiB
93 lines
2.4 KiB
package znet
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"sync/atomic"
|
|
|
|
"github.com/aceld/zinx/ziface"
|
|
)
|
|
|
|
//ConnManager 连接管理模块
|
|
type ConnManager struct {
|
|
connections atomic.Value
|
|
}
|
|
|
|
//NewConnManager 创建一个链接管理
|
|
func NewConnManager() *ConnManager {
|
|
var cm = &ConnManager{}
|
|
connections := make(map[uint32]ziface.IConnection)
|
|
cm.connections.Store(connections)
|
|
return cm
|
|
}
|
|
|
|
//Add 添加链接
|
|
func (connMgr *ConnManager) Add(conn ziface.IConnection) {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
|
|
//将conn连接添加到ConnMananger中
|
|
connections[conn.GetConnID()] = conn
|
|
connMgr.connections.Store(connections)
|
|
|
|
fmt.Println("connection add to ConnManager successfully: conn num = ", connMgr.Len())
|
|
}
|
|
|
|
//Remove 删除连接
|
|
func (connMgr *ConnManager) Remove(conn ziface.IConnection) {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
//删除连接信息
|
|
delete(connections, conn.GetConnID())
|
|
connMgr.connections.Store(connections)
|
|
fmt.Println("connection Remove ConnID=", conn.GetConnID(), " successfully: conn num = ", connMgr.Len())
|
|
}
|
|
|
|
//Get 利用ConnID获取链接
|
|
func (connMgr *ConnManager) Get(connID uint32) (ziface.IConnection, error) {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
|
|
if conn, ok := connections[connID]; ok {
|
|
return conn, nil
|
|
}
|
|
|
|
return nil, errors.New("connection not found")
|
|
|
|
}
|
|
|
|
//Len 获取当前连接
|
|
func (connMgr *ConnManager) Len() int {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
return len(connections)
|
|
}
|
|
|
|
//ClearConn 清除并停止所有连接
|
|
func (connMgr *ConnManager) ClearConn() {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
|
|
//停止并删除全部的连接信息
|
|
for connID, conn := range connections {
|
|
//停止
|
|
conn.Stop()
|
|
//删除
|
|
delete(connections, connID)
|
|
}
|
|
connMgr.connections.Store(connections)
|
|
fmt.Println("Clear All Connections successfully: conn num = ", connMgr.Len())
|
|
}
|
|
|
|
//ClearOneConn 利用ConnID获取一个链接 并且删除
|
|
func (connMgr *ConnManager) ClearOneConn(connID uint32) {
|
|
connections:=connMgr.connections.Load().(map[uint32]ziface.IConnection)
|
|
|
|
if conn, ok := connections[connID]; !ok {
|
|
//停止
|
|
conn.Stop()
|
|
//删除
|
|
delete(connections, connID)
|
|
connMgr.connections.Store(connections)
|
|
fmt.Println("Clear Connections ID: ", connID, "succeed")
|
|
return
|
|
}
|
|
|
|
fmt.Println("Clear Connections ID: ", connID, "err")
|
|
return
|
|
}
|