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.
36 lines
798 B
36 lines
798 B
1 year ago
|
package gate
|
||
|
|
||
|
import (
|
||
|
"Open_IM/pkg/common/config"
|
||
|
|
||
|
"Open_IM/pkg/statistics"
|
||
|
"fmt"
|
||
|
"github.com/go-playground/validator/v10"
|
||
|
"sync"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
rwLock *sync.RWMutex
|
||
|
validate *validator.Validate
|
||
|
ws WServer
|
||
|
rpcSvr RPCServer
|
||
|
sendMsgCount uint64
|
||
|
userCount uint64
|
||
|
)
|
||
|
|
||
|
func Init(rpcPort, wsPort int) {
|
||
|
//log initialization
|
||
|
|
||
|
rwLock = new(sync.RWMutex)
|
||
|
validate = validator.New()
|
||
|
statistics.NewStatistics(&sendMsgCount, config.Config.ModuleName.LongConnSvrName, fmt.Sprintf("%d second recv to msg_gateway sendMsgCount", sendMsgCount), 300)
|
||
|
statistics.NewStatistics(&userCount, config.Config.ModuleName.LongConnSvrName, fmt.Sprintf("%d second add user conn", userCount), 300)
|
||
|
ws.onInit(wsPort)
|
||
|
rpcSvr.onInit(rpcPort)
|
||
|
}
|
||
|
|
||
|
func Run() {
|
||
|
go ws.run()
|
||
|
go rpcSvr.run()
|
||
|
}
|