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.

322 lines
9.1 KiB

5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
5 years ago
6 years ago
  1. # <img width="80px" src="https://s2.ax1x.com/2019/10/09/u4yHo9.png" /> <img width="60px" src="https://s2.ax1x.com/2019/10/09/u4yqiR.png" />
  2. [![License](https://img.shields.io/badge/License-GPL%203.0-blue.svg)](LICENSE) [![Gitter](https://img.shields.io/badge/在线交流-Gitter-green.svg)](https://gitter.im/zinx_go/community) [![zinx详细教程](https://img.shields.io/badge/zinx详细教程-简书-red.svg)](https://www.jianshu.com/p/23d07c0a28e5) [![zinx原创书籍下载](https://img.shields.io/badge/原创书籍下载-Gitbook-black.svg)](https://legacy.gitbook.com/book/aceld/zinx/details)
  3. Zinx 是一个基于Golang的轻量级并发服务器框架
  4. > **说明**:目前zinx已经在很多企业进行开发使用,具体使用领域包括:后端模块的消息中转、长链接游戏服务器、Web框架中的消息处理插件等。zinx的定位是代码简洁,让更多的开发者迅速的了解框架的内脏细节并且可以快速基于zinx DIY一款适合自己企业场景的模块。
  5. #### 开发者
  6. - 刘丹冰([@aceld](https://github.com/aceld))
  7. - 张超([@zhngcho](https://github.com/zhngcho))
  8. ---
  9. [zinx(C++版本)](https://github.com/marklion/zinx)
  10. #### 开发者
  11. - 刘洋([@marklion](https://github.com/marklion))
  12. ---
  13. [zinx(Lua版本)](https://github.com/huqitt/zinx-lua)
  14. #### 开发者
  15. - 胡琪([@huqitt](https://github.com/huqitt))
  16. ---
  17. ## zinx源码地址
  18. ### Github
  19. Git: https://github.com/aceld/zinx
  20. ### 码云(Gitee)
  21. Git: https://gitee.com/Aceld/zinx
  22. ---
  23. ## 在线开发教程
  24. ### [B站]
  25. [![zinx-视频教程B站](https://s2.ax1x.com/2019/10/13/uv340S.jpg)](https://www.bilibili.com/video/av71067087)
  26. ### [YouTube]
  27. [![zinx-youtube](https://s2.ax1x.com/2019/10/14/KSurCR.jpg)](https://www.youtube.com/watch?v=U95iF-HMWsU&list=PL_GrAPKmuajzeNI8HBTi-k5NQO1g0rM-A)
  28. ## 一、写在前面
  29. 我们为什么要做Zinx,Golang目前在服务器的应用框架很多,但是应用在游戏领域或者其他长链接的领域的轻量级企业框架甚少。
  30. 设计Zinx的目的是我们可以通过Zinx框架来了解基于Golang编写一个TCP服务器的整体轮廓,让更多的Golang爱好者能深入浅出的去学习和认识这个领域。
  31. Zinx框架的项目制作采用编码和学习教程同步进行,将开发的全部递进和迭代思维带入教程中,而不是一下子给大家一个非常完整的框架去学习,让很多人一头雾水,不知道该如何学起。
  32. 教程会一个版本一个版本迭代,每个版本的添加功能都是微小的,让一个服务框架小白,循序渐进的曲线方式了解服务器框架的领域。
  33. 当然,最后希望Zinx会有更多的人加入,给我们提出宝贵的意见,让Zinx成为真正的解决企业的服务器框架!在此感谢您的关注!
  34. **zinx荣誉**
  35. #### 开源中国GVP年度最有价值开源项目
  36. ![GVP-zinx](https://s2.ax1x.com/2019/10/13/uvYVBV.jpg)
  37. ## 二、初探Zinx架构
  38. ![1-Zinx框架.png](https://camo.githubusercontent.com/903d1431358fa6f4634ebaae3b49a28d97e23d77/68747470733a2f2f75706c6f61642d696d616765732e6a69616e7368752e696f2f75706c6f61645f696d616765732f31313039333230352d633735666636383232333362323533362e706e673f696d6167654d6f6772322f6175746f2d6f7269656e742f7374726970253743696d61676556696577322f322f772f31323430)
  39. ![zinx-start.gif](https://camo.githubusercontent.com/16afabf00523abd556d918203d11f413c178472a/68747470733a2f2f75706c6f61642d696d616765732e6a69616e7368752e696f2f75706c6f61645f696d616765732f31313039333230352d343930623439303938616336336166362e6769663f696d6167654d6f6772322f6175746f2d6f7269656e742f7374726970)
  40. ## 三、Zinx详细教程及文档
  41. [《Zinx框架教程-基于Golang的轻量级并发服务器》](https://www.jianshu.com/p/23d07c0a28e5)
  42. ## 四、Zinx开发API文档
  43. ### 快速开始
  44. #### server
  45. 基于Zinx框架开发的服务器应用,主函数步骤比较精简,最多主需要3步即可。
  46. 1. 创建server句柄
  47. 2. 配置自定义路由及业务
  48. 3. 启动服务
  49. ```go
  50. func main() {
  51. //1 创建一个server句柄
  52. s := znet.NewServer()
  53. //2 配置路由
  54. s.AddRouter(0, &PingRouter{})
  55. //3 开启服务
  56. s.Serve()
  57. }
  58. ```
  59. 其中自定义路由及业务配置方式如下:
  60. ```go
  61. import (
  62. "fmt"
  63. "zinx/ziface"
  64. "zinx/znet"
  65. )
  66. //ping test 自定义路由
  67. type PingRouter struct {
  68. znet.BaseRouter
  69. }
  70. //Ping Handle
  71. func (this *PingRouter) Handle(request ziface.IRequest) {
  72. //先读取客户端的数据
  73. fmt.Println("recv from client : msgId=", request.GetMsgID(), ", data=", string(request.GetData()))
  74. //再回写ping...ping...ping
  75. err := request.GetConnection().SendBuffMsg(0, []byte("ping...ping...ping"))
  76. if err != nil {
  77. fmt.Println(err)
  78. }
  79. }
  80. ```
  81. #### client
  82. Zinx的消息处理采用,`[MsgLength]|[MsgID]|[Data]`的封包格式
  83. ```go
  84. package main
  85. import (
  86. "fmt"
  87. "io"
  88. "net"
  89. "time"
  90. "zinx/znet"
  91. )
  92. /*
  93. 模拟客户端
  94. */
  95. func main() {
  96. fmt.Println("Client Test ... start")
  97. //3秒之后发起测试请求,给服务端开启服务的机会
  98. time.Sleep(3 * time.Second)
  99. conn,err := net.Dial("tcp", "127.0.0.1:7777")
  100. if err != nil {
  101. fmt.Println("client start err, exit!")
  102. return
  103. }
  104. for n := 3; n >= 0; n-- {
  105. //发封包message消息
  106. dp := znet.NewDataPack()
  107. msg, _ := dp.Pack(znet.NewMsgPackage(0,[]byte("Zinx Client Test Message")))
  108. _, err := conn.Write(msg)
  109. if err !=nil {
  110. fmt.Println("write error err ", err)
  111. return
  112. }
  113. //先读出流中的head部分
  114. headData := make([]byte, dp.GetHeadLen())
  115. _, err = io.ReadFull(conn, headData) //ReadFull 会把msg填充满为止
  116. if err != nil {
  117. fmt.Println("read head error")
  118. break
  119. }
  120. //将headData字节流 拆包到msg中
  121. msgHead, err := dp.Unpack(headData)
  122. if err != nil {
  123. fmt.Println("server unpack err:", err)
  124. return
  125. }
  126. if msgHead.GetDataLen() > 0 {
  127. //msg 是有data数据的,需要再次读取data数据
  128. msg := msgHead.(*znet.Message)
  129. msg.Data = make([]byte, msg.GetDataLen())
  130. //根据dataLen从io中读取字节流
  131. _, err := io.ReadFull(conn, msg.Data)
  132. if err != nil {
  133. fmt.Println("server unpack data err:", err)
  134. return
  135. }
  136. fmt.Println("==> Recv Msg: ID=", msg.Id, ", len=", msg.DataLen, ", data=", string(msg.Data))
  137. }
  138. time.Sleep(1*time.Second)
  139. }
  140. }
  141. ```
  142. ### Zinx配置文件
  143. ```json
  144. {
  145. "Name":"zinx v-0.10 demoApp",
  146. "Host":"127.0.0.1",
  147. "TcpPort":7777,
  148. "MaxConn":3,
  149. "WorkerPoolSize":10,
  150. "LogDir": "./mylog",
  151. "LogFile":"zinx.log"
  152. }
  153. ```
  154. `Name`:服务器应用名称
  155. `Host`:服务器IP
  156. `TcpPort`:服务器监听端口
  157. `MaxConn`:允许的客户端链接最大数量
  158. `WorkerPoolSize`:工作任务池最大工作Goroutine数量
  159. `LogDir`: 日志文件夹
  160. `LogFile`: 日志文件名称(如果不提供,则日志信息打印到Stderr)
  161. ### I.服务器模块Server
  162. ```go
  163. func NewServer () ziface.IServer
  164. ```
  165. 创建一个Zinx服务器句柄,该句柄作为当前服务器应用程序的主枢纽,包括如下功能:
  166. #### 1)开启服务
  167. ```go
  168. func (s *Server) Start()
  169. ```
  170. #### 2)停止服务
  171. ```go
  172. func (s *Server) Stop()
  173. ```
  174. #### 3)运行服务
  175. ```go
  176. func (s *Server) Serve()
  177. ```
  178. #### 4)注册路由
  179. ```go
  180. func (s *Server) AddRouter (msgId uint32, router ziface.IRouter)
  181. ```
  182. #### 5)注册链接创建Hook函数
  183. ```go
  184. func (s *Server) SetOnConnStart(hookFunc func (ziface.IConnection))
  185. ```
  186. #### 6)注册链接销毁Hook函数
  187. ```go
  188. func (s *Server) SetOnConnStop(hookFunc func (ziface.IConnection))
  189. ```
  190. ### II.路由模块
  191. ```go
  192. //实现router时,先嵌入这个基类,然后根据需要对这个基类的方法进行重写
  193. type BaseRouter struct {}
  194. //这里之所以BaseRouter的方法都为空,
  195. // 是因为有的Router不希望有PreHandle或PostHandle
  196. // 所以Router全部继承BaseRouter的好处是,不需要实现PreHandle和PostHandle也可以实例化
  197. func (br *BaseRouter)PreHandle(req ziface.IRequest){}
  198. func (br *BaseRouter)Handle(req ziface.IRequest){}
  199. func (br *BaseRouter)PostHandle(req ziface.IRequest){}
  200. ```
  201. ### III.链接模块
  202. #### 1)获取原始的socket TCPConn
  203. ```go
  204. func (c *Connection) GetTCPConnection() *net.TCPConn
  205. ```
  206. #### 2)获取链接ID
  207. ```go
  208. func (c *Connection) GetConnID() uint32
  209. ```
  210. #### 3)获取远程客户端地址信息
  211. ```go
  212. func (c *Connection) RemoteAddr() net.Addr
  213. ```
  214. #### 4)发送消息
  215. ```go
  216. func (c *Connection) SendMsg(msgId uint32, data []byte) error
  217. func (c *Connection) SendBuffMsg(msgId uint32, data []byte) error
  218. ```
  219. #### 5)链接属性
  220. ```go
  221. //设置链接属性
  222. func (c *Connection) SetProperty(key string, value interface{})
  223. //获取链接属性
  224. func (c *Connection) GetProperty(key string) (interface{}, error)
  225. //移除链接属性
  226. func (c *Connection) RemoveProperty(key string)
  227. ```
  228. ---
  229. ### 关于作者:
  230. 作者:`Aceld(刘丹冰)`
  231. `mail`:
  232. [danbing.at@gmail.com](mailto:danbing.at@gmail.com)
  233. `github`:
  234. [https://github.com/aceld](https://github.com/aceld)
  235. `原创书籍gitbook`:
  236. [http://legacy.gitbook.com/@aceld](http://legacy.gitbook.com/@aceld)
  237. ### Zinx技术讨论社区
  238. ### **微信公众号**
  239. ![gongzhonghao](https://ww1.yunjiexi.club/2019/12/10/5WjHX.jpg)
  240. ### **QQ资源分享**
  241. ![qqqun](https://ww1.yunjiexi.club/2019/12/10/5WGTC.png)
  242. ### **微信群**
  243. ![weixin](https://ww1.yunjiexi.club/2019/12/10/5WmP4.png)
  244. 欢迎大家加入,获取更多相关学习资料