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.

265 lines
6.6 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # Zinx
  2. Zinx 是一个基于Golang的轻量级并发服务器框架
  3. ### 开发人员
  4. github:`Aceld`(刘丹冰)
  5. github:`zhngcho`(张超)
  6. ## 一、写在前面
  7. 我们为什么要做Zinx,Golang目前在服务器的应用框架很多,但是应用在游戏领域或者其他长链接的领域的轻量级企业框架甚少。
  8. 设计Zinx的目的是我们可以通过Zinx框架来了解基于Golang编写一个TCP服务器的整体轮廓,让更多的Golang爱好者能深入浅出的去学习和认识这个领域。
  9. Zinx框架的项目制作采用编码和学习教程同步进行,将开发的全部递进和迭代思维带入教程中,而不是一下子给大家一个非常完整的框架去学习,让很多人一头雾水,不知道该如何学起。
  10. 教程会一个版本一个版本迭代,每个版本的添加功能都是微小的,让一个服务框架小白,循序渐进的曲线方式了解服务器框架的领域。
  11. 当然,最后希望Zinx会有更多的人加入,给我们提出宝贵的意见,让Zinx成为真正的解决企业的服务器框架!在此感谢您的关注!
  12. ## 二、初探Zinx架构
  13. ![1-Zinx框架.png](https://upload-images.jianshu.io/upload_images/11093205-21a249a83fec62e9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  14. ## 三、Zinx详细教程(代码教程同步更新)
  15. [《Zinx框架教程-基于Golang的轻量级并发服务器》](https://www.jianshu.com/p/23d07c0a28e5)
  16. ## 四、Zinx开发API文档
  17. ### 快速开始
  18. #### server
  19. 基于Zinx框架开发的服务器应用,主函数步骤比较精简,最多主需要3步即可。
  20. 1. 创建server句柄
  21. 2. 配置自定义路由及业务
  22. 3. 启动服务
  23. ```go
  24. func main() {
  25. //1 创建一个server句柄
  26. s := znet.NewServer()
  27. //2 配置路由
  28. s.AddRouter(0, &PingRouter{})
  29. //3 开启服务
  30. s.Serve()
  31. }
  32. ```
  33. 其中自定义路由及业务配置方式如下:
  34. ```go
  35. import (
  36. "fmt"
  37. "zinx/ziface"
  38. "zinx/znet"
  39. )
  40. //ping test 自定义路由
  41. type PingRouter struct {
  42. znet.BaseRouter
  43. }
  44. //Ping Handle
  45. func (this *PingRouter) Handle(request ziface.IRequest) {
  46. //先读取客户端的数据
  47. fmt.Println("recv from client : msgId=", request.GetMsgID(), ", data=", string(request.GetData()))
  48. //再回写ping...ping...ping
  49. err := request.GetConnection().SendBuffMsg(0, []byte("ping...ping...ping"))
  50. if err != nil {
  51. fmt.Println(err)
  52. }
  53. }
  54. ```
  55. #### client
  56. Zinx的消息处理采用,`[MsgLength]|[MsgID]|[Data]`的封包格式
  57. ```go
  58. package main
  59. import (
  60. "fmt"
  61. "io"
  62. "net"
  63. "time"
  64. "zinx/znet"
  65. )
  66. /*
  67. 模拟客户端
  68. */
  69. func main() {
  70. fmt.Println("Client Test ... start")
  71. //3秒之后发起测试请求,给服务端开启服务的机会
  72. time.Sleep(3 * time.Second)
  73. conn,err := net.Dial("tcp", "127.0.0.1:7777")
  74. if err != nil {
  75. fmt.Println("client start err, exit!")
  76. return
  77. }
  78. for n := 3; n >= 0; n-- {
  79. //发封包message消息
  80. dp := znet.NewDataPack()
  81. msg, _ := dp.Pack(znet.NewMsgPackage(0,[]byte("Zinx Client Test Message")))
  82. _, err := conn.Write(msg)
  83. if err !=nil {
  84. fmt.Println("write error err ", err)
  85. return
  86. }
  87. //先读出流中的head部分
  88. headData := make([]byte, dp.GetHeadLen())
  89. _, err = io.ReadFull(conn, headData) //ReadFull 会把msg填充满为止
  90. if err != nil {
  91. fmt.Println("read head error")
  92. break
  93. }
  94. //将headData字节流 拆包到msg中
  95. msgHead, err := dp.Unpack(headData)
  96. if err != nil {
  97. fmt.Println("server unpack err:", err)
  98. return
  99. }
  100. if msgHead.GetDataLen() > 0 {
  101. //msg 是有data数据的,需要再次读取data数据
  102. msg := msgHead.(*znet.Message)
  103. msg.Data = make([]byte, msg.GetDataLen())
  104. //根据dataLen从io中读取字节流
  105. _, err := io.ReadFull(conn, msg.Data)
  106. if err != nil {
  107. fmt.Println("server unpack data err:", err)
  108. return
  109. }
  110. fmt.Println("==> Recv Msg: ID=", msg.Id, ", len=", msg.DataLen, ", data=", string(msg.Data))
  111. }
  112. time.Sleep(1*time.Second)
  113. }
  114. }
  115. ```
  116. ### Zinx配置文件
  117. ```json
  118. {
  119. "Name":"Zinx Game",
  120. "Host":"0.0.0.0",
  121. "TcpPort":8999,
  122. "MaxConn":3000,
  123. "WorkerPoolSize":10
  124. }
  125. ```
  126. `Name`:服务器应用名称
  127. `Host`:服务器IP
  128. `TcpPort`:服务器监听端口
  129. `MaxConn`:允许的客户端链接最大数量
  130. `WorkerPoolSize`:工作任务池最大工作Goroutine数量
  131. ### I.服务器模块Server
  132. ```go
  133. func NewServer () ziface.IServer
  134. ```
  135. 创建一个Zinx服务器句柄,该句柄作为当前服务器应用程序的主枢纽,包括如下功能:
  136. #### 1)开启服务
  137. ```go
  138. func (s *Server) Start()
  139. ```
  140. #### 2)停止服务
  141. ```go
  142. func (s *Server) Stop()
  143. ```
  144. #### 3)运行服务
  145. ```go
  146. func (s *Server) Serve()
  147. ```
  148. #### 4)注册路由
  149. ```go
  150. func (s *Server) AddRouter (msgId uint32, router ziface.IRouter)
  151. ```
  152. #### 5)注册链接创建Hook函数
  153. ```go
  154. func (s *Server) SetOnConnStart(hookFunc func (ziface.IConnection))
  155. ```
  156. #### 6)注册链接销毁Hook函数
  157. ```go
  158. func (s *Server) SetOnConnStop(hookFunc func (ziface.IConnection))
  159. ```
  160. ### II.路由模块
  161. ```go
  162. //实现router时,先嵌入这个基类,然后根据需要对这个基类的方法进行重写
  163. type BaseRouter struct {}
  164. //这里之所以BaseRouter的方法都为空,
  165. // 是因为有的Router不希望有PreHandle或PostHandle
  166. // 所以Router全部继承BaseRouter的好处是,不需要实现PreHandle和PostHandle也可以实例化
  167. func (br *BaseRouter)PreHandle(req ziface.IRequest){}
  168. func (br *BaseRouter)Handle(req ziface.IRequest){}
  169. func (br *BaseRouter)PostHandle(req ziface.IRequest){}
  170. ```
  171. ### III.链接模块
  172. #### 1)获取原始的socket TCPConn
  173. ```go
  174. func (c *Connection) GetTCPConnection() *net.TCPConn
  175. ```
  176. #### 2)获取链接ID
  177. ```go
  178. func (c *Connection) GetConnID() uint32
  179. ```
  180. #### 3)获取远程客户端地址信息
  181. ```go
  182. func (c *Connection) RemoteAddr() net.Addr
  183. ```
  184. #### 4)发送消息
  185. ```go
  186. func (c *Connection) SendMsg(msgId uint32, data []byte) error
  187. func (c *Connection) SendBuffMsg(msgId uint32, data []byte) error
  188. ```
  189. #### 5)链接属性
  190. ```go
  191. //设置链接属性
  192. func (c *Connection) SetProperty(key string, value interface{})
  193. //获取链接属性
  194. func (c *Connection) GetProperty(key string) (interface{}, error)
  195. //移除链接属性
  196. func (c *Connection) RemoveProperty(key string)
  197. ```
  198. ---
  199. ### 关于作者:
  200. 作者:`Aceld(刘丹冰)`
  201. 简书号:`IT无崖子`
  202. `mail`:
  203. [danbing.at@gmail.com](mailto:danbing.at@gmail.com)
  204. `github`:
  205. [https://github.com/aceld](https://github.com/aceld)
  206. `原创书籍gitbook`:
  207. [http://legacy.gitbook.com/@aceld](http://legacy.gitbook.com/@aceld)
  208. ### Zinx技术讨论社区
  209. QQ技术讨论群:
  210. ![gopool5.jpeg](https://upload-images.jianshu.io/upload_images/11093205-6cdfd381e8ffa127.jpeg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  211. 欢迎大家加入,获取更多相关学习资料