新增:zconn.appendTo 方法,调整代码风格

git-svn-id: svn://47.119.165.148/zhub@65 e63fbceb-bcc3-4977-ac22-735b83d8d0f4
This commit is contained in:
lxy
2021-01-10 18:02:12 +00:00
parent 01ced95223
commit 320a94af2d
4 changed files with 51 additions and 52 deletions

View File

@@ -11,7 +11,7 @@ import (
)
var (
zsub ZSub = ZSub{
zsub = ZSub{
topics: make(map[string]*ZTopic),
timers: make(map[string]*ZTimer),
}
@@ -59,32 +59,22 @@ func (s *ZSub) subscribe(c *ZConn, topic string) { // 新增订阅 zconn{}
ztopic.groups[c.groupid] = zgroup
}
_conns := make([]*ZConn, 0)
for _, conn := range zgroup.conns {
if conn == c {
continue
}
_conns = append(_conns, conn)
}
_conns = append(_conns, c)
zgroup.conns = _conns
zgroup.conns = c.appendTo(zgroup.conns)
// 这是 ZConn
_topics := c.topics
for _, _topic := range c.topics {
if strings.EqualFold(_topic, topic) {
continue
for i, item := range c.topics {
if strings.EqualFold(item, topic) {
c.topics = append(c.topics[:i], c.topics[:i+1]...)
}
_topics = append(_topics, _topic)
}
_topics = append(_topics, topic)
c.topics = _topics
c.topics = append(c.topics, topic)
}
/*
取消订阅:
*/
func (s *ZSub) unsubscribe(c *ZConn, topic string) { // 取消订阅 zconn{}
s.Lock()
defer s.Unlock()
ztopic := s.topics[topic] //ZTopic
if ztopic == nil {
return
@@ -95,21 +85,17 @@ func (s *ZSub) unsubscribe(c *ZConn, topic string) { // 取消订阅 zconn{}
return
}
_conns := make([]*ZConn, 0)
for _, conn := range zgroup.conns {
if conn == c {
continue
for i, item := range zgroup.conns {
if item == c {
zgroup.conns = append(zgroup.conns[:i], zgroup.conns[:i+1]...)
}
_conns = append(_conns, c)
}
zgroup.conns = _conns
}
/*
发送主题消息
1、写入主题消息列表_zdb
2、回复消息写入成功
3、推送主题消息
accept topic message
1、send message to topic's chan
2、feedback send success to sender, and sending message to topic's subscripts
*/
func (s *ZSub) publish(topic string, msg string) {
s.Lock()
@@ -123,12 +109,12 @@ func (s *ZSub) publish(topic string, msg string) {
}
func (s *ZSub) close(c *ZConn) {
// 订阅
// sub
for _, topic := range c.topics {
s.unsubscribe(c, topic)
}
// 延时
// daly
// timer conn close
for _, topic := range c.timers { // fixme: 数据逻辑交叉循环
@@ -140,14 +126,23 @@ func (s *ZSub) close(c *ZConn) {
(*c.conn).Close()
}
// ================== ZHub 服务 =====================================
func (c *ZConn) appendTo(arr []*ZConn) []*ZConn {
for i, item := range arr {
if item == c {
arr = append(arr[:i], arr[:i+1]...)
}
}
return append(arr, c)
}
// ================== ZHub server =====================================
func ServerStart(host string, port int) {
listen, err := net.Listen("tcp", fmt.Sprintf("%s:%d", host, port))
if err != nil {
log.Fatal(err)
return
}
log.Printf("_zdb started listen on: %s:%d \n", host, port)
log.Printf("zhub started listen on: %s:%d \n", host, port)
// 启动消息监听处理
go func() {

View File

@@ -1,7 +1,6 @@
package zsub
import (
"fmt"
"github.com/robfig/cron"
"strings"
)
@@ -13,7 +12,13 @@ type ZTimer struct {
cron *cron.Cron
}
/*
1、["timer", topic, expr]
2、["timer", topic]
*/
func (s *ZSub) timer(rcmd []string, c *ZConn) {
s.Lock()
defer s.Unlock()
timer := s.timers[rcmd[1]]
if timer == nil {
timer = &ZTimer{
@@ -22,18 +27,10 @@ func (s *ZSub) timer(rcmd []string, c *ZConn) {
}
s.timers[rcmd[1]] = timer
}
timer.conns = c.appendTo(timer.conns)
_conns := make([]*ZConn, 0)
for _, conn := range timer.conns {
if conn == c {
continue
}
_conns = append(_conns, conn)
}
_conns = append(_conns, c)
timer.conns = _conns
if !strings.EqualFold(timer.expr, rcmd[2]) {
// todo: when timer.expr changed send message to all the timers subscribe
if len(rcmd) == 3 && !strings.EqualFold(timer.expr, rcmd[2]) {
timer.expr = rcmd[2]
if timer.cron != nil {
timer.cron.Stop()
@@ -52,14 +49,12 @@ func (s *ZSub) timer(rcmd []string, c *ZConn) {
}
s.timers[rcmd[1]] = timer
fmt.Println("xx")
}
func (t *ZTimer) close(c *ZConn) {
for i, conn := range t.conns {
if conn.conn == c.conn {
for i, item := range t.conns {
if item.conn == c.conn {
t.conns = append(t.conns[:i], t.conns[i+1:]...)
}
}
t.conns = append(t.conns, c)
}