Commit 38dd96b4e4afe0fa749c9c8ee3100be5aec0c73c
1 parent
33ea26ab
定时器+网络数据 peer 在一条协程,避免锁
Showing
6 changed files
with
53 additions
and
11 deletions
 
Show diff stats
src/actions/AccountAction.go
| ... | ... | @@ -21,7 +21,7 @@ func (h *AccountAction) Register(c *gin.Context) (int, interface{}){ | 
| 21 | 21 | |
| 22 | 22 | account := models.NewAccount(register.Phone) | 
| 23 | 23 | if err := account.Load(); err == nil { | 
| 24 | - return -2 , "account exist: " + register.Phone | |
| 24 | + return -2 , "account exists: " + register.Phone | |
| 25 | 25 | } | 
| 26 | 26 | |
| 27 | 27 | account.Uid = conf.SnowFlack.NextValStr() | ... | ... | 
src/common/common.go
src/components/db/schema.go
| ... | ... | @@ -10,6 +10,7 @@ type Schema struct { | 
| 10 | 10 | reflectValue *reflect.Value | 
| 11 | 11 | reflectType reflect.Type | 
| 12 | 12 | |
| 13 | + cacheFields map[string]interface{} | |
| 13 | 14 | |
| 14 | 15 | pri interface{} | 
| 15 | 16 | schema interface{} | 
| ... | ... | @@ -23,6 +24,7 @@ func NewSchema(key string, schema interface{}) *Schema { | 
| 23 | 24 | sch := &Schema{ | 
| 24 | 25 | reflectValue: &s, | 
| 25 | 26 | reflectType: s.Type(), | 
| 27 | + cacheFields: make(map[string]interface{}), | |
| 26 | 28 | schema: schema, | 
| 27 | 29 | } | 
| 28 | 30 | sch.mgo = NewMongoColl(sch) | 
| ... | ... | @@ -66,14 +68,21 @@ func (s *Schema) Create() error { | 
| 66 | 68 | return err | 
| 67 | 69 | } | 
| 68 | 70 | |
| 71 | +func (s *Schema) Update() { | |
| 72 | + if s.cacheFields != nil { | |
| 73 | + s.mgo.UpdateProperties(s.cacheFields) | |
| 74 | + s.cacheFields = make(map[string]interface{}) | |
| 75 | + } | |
| 76 | +} | |
| 77 | + | |
| 69 | 78 | func (s *Schema) UpdateProperty(key string, val interface{}) { | 
| 70 | 79 | s.reflectValue.FieldByName(key).Set(reflect.ValueOf(val)) | 
| 71 | - s.mgo.UpdateProperty(key, val) | |
| 80 | + s.cacheFields[key] = val | |
| 72 | 81 | } | 
| 73 | 82 | |
| 74 | 83 | func (s *Schema) UpdateProperties(properties map[string]interface{}) { | 
| 75 | 84 | for key, val := range properties { | 
| 76 | 85 | s.reflectValue.FieldByName(key).Set(reflect.ValueOf(val)) | 
| 86 | + s.cacheFields[key] = val | |
| 77 | 87 | } | 
| 78 | - s.mgo.UpdateProperties(properties) | |
| 79 | -} | |
| 88 | +} | |
| 80 | 89 | \ No newline at end of file | ... | ... | 
src/components/net/conn.go
| ... | ... | @@ -7,6 +7,7 @@ import ( | 
| 7 | 7 | "net" | 
| 8 | 8 | "pro2d/src/common" | 
| 9 | 9 | "pro2d/src/components/logger" | 
| 10 | + "pro2d/src/models" | |
| 10 | 11 | "pro2d/src/utils" | 
| 11 | 12 | "sync/atomic" | 
| 12 | 13 | ) | 
| ... | ... | @@ -31,6 +32,8 @@ type Connection struct { | 
| 31 | 32 | |
| 32 | 33 | Quit chan *Connection | 
| 33 | 34 | |
| 35 | + Role *models.RoleModel | |
| 36 | + | |
| 34 | 37 | nextCheckTime int64 //下一次检查的时间 | 
| 35 | 38 | lastHeartCheckTime int64 //最后收消息时间 | 
| 36 | 39 | heartTimeoutCount int //超时次数 | 
| ... | ... | @@ -87,7 +90,9 @@ func (c *Connection) read() { | 
| 87 | 90 | //得到需要处理此条连接的workerID | 
| 88 | 91 | workerID := c.Id % c.Server.SConf.WorkerPoolSize | 
| 89 | 92 | //将请求消息发送给任务队列 | 
| 90 | - c.Server.TaskQueue[workerID] <- req | |
| 93 | + c.Server.TaskQueue[workerID] <- func() { | |
| 94 | + c.Server.DoMsgHandler(req) | |
| 95 | + } | |
| 91 | 96 | |
| 92 | 97 | atomic.StoreInt64(&c.lastHeartCheckTime, utils.Timex()) | 
| 93 | 98 | |
| ... | ... | @@ -120,10 +125,18 @@ func (c *Connection) update() { | 
| 120 | 125 | nextCheckTime := atomic.LoadInt64(&c.nextCheckTime) | 
| 121 | 126 | now := utils.Timex() | 
| 122 | 127 | if now >= nextCheckTime { | 
| 128 | + //检查心跳 | |
| 123 | 129 | c.checkHeartBeat(now) | 
| 124 | 130 | nextCheckTime = now + common.HeartTimerInterval | 
| 125 | 131 | atomic.StoreInt64(&c.nextCheckTime, nextCheckTime) | 
| 126 | 132 | } | 
| 133 | + | |
| 134 | + if c.Role != nil { | |
| 135 | + c.Server.TaskQueue[c.Id % c.Server.SConf.WorkerPoolSize] <- func() { | |
| 136 | + //role 获取Recover | |
| 137 | + c.Role.OnRecoverTimer(now) | |
| 138 | + } | |
| 139 | + } | |
| 127 | 140 | } | 
| 128 | 141 | |
| 129 | 142 | ... | ... | 
src/components/net/server.go
| ... | ... | @@ -26,7 +26,7 @@ type Server struct { | 
| 26 | 26 | Clients *sync.Map | 
| 27 | 27 | EtcdClient *etcd.EtcdClient | 
| 28 | 28 | |
| 29 | - TaskQueue []chan*MsgPkg | |
| 29 | + TaskQueue []chan func() | |
| 30 | 30 | } | 
| 31 | 31 | |
| 32 | 32 | func NewServer(sConf *conf.SConf) *Server { | 
| ... | ... | @@ -35,7 +35,7 @@ func NewServer(sConf *conf.SConf) *Server { | 
| 35 | 35 | Clients: new(sync.Map), | 
| 36 | 36 | EtcdClient: new(etcd.EtcdClient), | 
| 37 | 37 | |
| 38 | - TaskQueue: make([]chan *MsgPkg, common.WorkerPoolSize), | |
| 38 | + TaskQueue: make([]chan func(), common.WorkerPoolSize), | |
| 39 | 39 | } | 
| 40 | 40 | } | 
| 41 | 41 | |
| ... | ... | @@ -45,21 +45,22 @@ func (s *Server) StartWorkerPool() { | 
| 45 | 45 | for i := 0; i < s.SConf.WorkerPoolSize; i++ { | 
| 46 | 46 | //一个worker被启动 | 
| 47 | 47 | //给当前worker对应的任务队列开辟空间 | 
| 48 | - s.TaskQueue[i] = make(chan *MsgPkg, common.MaxTaskPerWorker) | |
| 48 | + s.TaskQueue[i] = make(chan func(), common.MaxTaskPerWorker) | |
| 49 | 49 | //启动当前Worker,阻塞的等待对应的任务队列是否有消息传递进来 | 
| 50 | 50 | go s.StartOneWorker(i, s.TaskQueue[i]) | 
| 51 | 51 | } | 
| 52 | 52 | } | 
| 53 | 53 | |
| 54 | 54 | //StartOneWorker 启动一个Worker工作流程 | 
| 55 | -func (s *Server) StartOneWorker(workerID int, taskQueue chan *MsgPkg) { | |
| 55 | +func (s *Server) StartOneWorker(workerID int, taskQueue chan func()) { | |
| 56 | 56 | //不断的等待队列中的消息 | 
| 57 | 57 | for { | 
| 58 | 58 | select { | 
| 59 | 59 | //有消息则取出队列的Request,并执行绑定的业务方法 | 
| 60 | - case request := <-taskQueue: | |
| 60 | + case f:= <-taskQueue: | |
| 61 | 61 | _ = workerID | 
| 62 | - s.DoMsgHandler(request) | |
| 62 | + f() | |
| 63 | + //s.DoMsgHandler(request) | |
| 63 | 64 | } | 
| 64 | 65 | } | 
| 65 | 66 | } | ... | ... | 
src/models/role.go
| ... | ... | @@ -3,8 +3,10 @@ package models | 
| 3 | 3 | import ( | 
| 4 | 4 | "fmt" | 
| 5 | 5 | "pro2d/protos/pb" | 
| 6 | + "pro2d/src/common" | |
| 6 | 7 | "pro2d/src/components/db" | 
| 7 | 8 | "pro2d/src/components/logger" | 
| 9 | + "sync/atomic" | |
| 8 | 10 | ) | 
| 9 | 11 | |
| 10 | 12 | type RoleModel struct { | 
| ... | ... | @@ -14,6 +16,8 @@ type RoleModel struct { | 
| 14 | 16 | Teams *TeamModel | 
| 15 | 17 | Equip *EquipModels | 
| 16 | 18 | Prop *PropModels | 
| 19 | + | |
| 20 | + lastSaveTs int64 | |
| 17 | 21 | } | 
| 18 | 22 | |
| 19 | 23 | func RoleExistByUid(uid string) *RoleModel { | 
| ... | ... | @@ -102,3 +106,15 @@ func (m *RoleModel) GetAllHero() map[string]*pb.Hero { | 
| 102 | 106 | } | 
| 103 | 107 | return h | 
| 104 | 108 | } | 
| 109 | + | |
| 110 | +func (m *RoleModel) OnRecoverTimer(now int64) { | |
| 111 | + m.saveRoleData(now) | |
| 112 | +} | |
| 113 | + | |
| 114 | +func (m *RoleModel) saveRoleData(now int64) { | |
| 115 | + if now - m.lastSaveTs < common.SaveDataInterval { | |
| 116 | + return | |
| 117 | + } | |
| 118 | + atomic.StoreInt64(&m.lastSaveTs, now) | |
| 119 | + m.Update() | |
| 120 | +} | |
| 105 | 121 | \ No newline at end of file | ... | ... |