60 Star 239 Fork 97

BossHX / xingo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
xingo.go 1.93 KB
一键复制 编辑 Web IDE 原始数据 按行查看 历史
huangxin 提交于 2018-03-23 21:53 . fix spelling error
package xingo
import (
_ "github.com/viphxin/xingo/fnet"
_ "github.com/viphxin/xingo/timer"
"github.com/viphxin/xingo/telnetcmd"
"github.com/viphxin/xingo/clusterserver"
"github.com/viphxin/xingo/sys_rpc"
"github.com/viphxin/xingo/utils"
"github.com/viphxin/xingo/fserver"
"github.com/viphxin/xingo/cluster"
"github.com/viphxin/xingo/logger"
"fmt"
"github.com/viphxin/xingo/iface"
)
func NewXingoTcpServer() iface.Iserver{
//do something
//debugport 是否开放
if utils.GlobalObject.DebugPort > 0{
if utils.GlobalObject.Host != ""{
fserver.NewTcpServer("telnet_server", "tcp4", utils.GlobalObject.Host,
utils.GlobalObject.DebugPort, 100, cluster.NewTelnetProtocol()).Start()
}else{
fserver.NewTcpServer("telnet_server", "tcp4", "127.0.0.1",
utils.GlobalObject.DebugPort, 100, cluster.NewTelnetProtocol()).Start()
}
logger.Debug(fmt.Sprintf("telnet tool start: %s:%d.", utils.GlobalObject.Host, utils.GlobalObject.DebugPort))
}
//add command
if utils.GlobalObject.CmdInterpreter != nil{
utils.GlobalObject.CmdInterpreter.AddCommand(telnetcmd.NewPprofCpuCommand())
}
s := fserver.NewServer()
return s
}
func NewXingoMaster(cfg string) *clusterserver.Master{
s := clusterserver.NewMaster(cfg)
//add rpc
s.AddRpcRouter(&sys_rpc.MasterRpc{})
//add command
if utils.GlobalObject.CmdInterpreter != nil{
utils.GlobalObject.CmdInterpreter.AddCommand(telnetcmd.NewPprofCpuCommand())
utils.GlobalObject.CmdInterpreter.AddCommand(telnetcmd.NewCloseServerCommand())
utils.GlobalObject.CmdInterpreter.AddCommand(telnetcmd.NewReloadCfgCommand())
}
return s
}
func NewXingoCluterServer(nodename, cfg string) *clusterserver.ClusterServer{
s := clusterserver.NewClusterServer(nodename,cfg)
//add rpc
s.AddRpcRouter(&sys_rpc.ChildRpc{})
s.AddRpcRouter(&sys_rpc.RootRpc{})
//add cmd
if utils.GlobalObject.CmdInterpreter != nil{
utils.GlobalObject.CmdInterpreter.AddCommand(telnetcmd.NewPprofCpuCommand())
}
return s
}
Go
1
https://gitee.com/viphxin/xingo.git
git@gitee.com:viphxin/xingo.git
viphxin
xingo
xingo
master

搜索帮助

14c37bed 8189591 565d56ea 8189591