我想出来的办法如下图:
简单说来是分别建立多个长连接,通过Ring比较平均的分配给长连接去发送推送,
当其中如果有长连接出问题时,也只会影响这个RingNode的List中部分消息,不会影响其它链接,这么做重发消息范围也缩小了。
自已写了个tcp server模拟服务端,用上面的想法,模拟客户端,稍稍验证了下模型:
/* Author: XCL(XiongChuanLiang) Date: 2015-11-11 | RingNode RingNode | | ConnRing | P...| RingNode RingNode(ID|List|...) | C... | Notification | | Notification | | ...... | */ package main import ( "container/list" "container/ring" "fmt" "log" "net" "runtime" "strings" "sync" "time" ) var ( dialNetwork string = "tcp" dialAddress string = "localhost:6666" ) func main() { runtime.GOMAXPROCS(runtime.NumCPU()) test() } //////////////////////////////////////////// func test() { /////////////////////////////////////////// //初始化 cr := NewConnRing(3) cr.InitConn() cr.ListConnRing() //得到通知环 var rn *RingNode var ok bool // for _ = range time.Tick(time.Second * 1) { for i := 0; i < 5; i++ { v := cr.GetRingNode().Next().Value if rn, ok = v.(*RingNode); ok { rn.Add(NewNotification(fmt.Sprintf("%d-%s", rn.NodeID, "PushNotification"))) rn.ListNotification() log.Println(strings.Repeat("--", 50)) } } /////////////////////////////////////////// cr.Close() } //////////////////////////////////////////// // Ring // //////////////////////////////////////////// type ConnRing struct { r *ring.Ring } func NewConnRing(n int) *ConnRing { cr := &ConnRing{} cr.r = ring.New(n) return cr } func (cr *ConnRing) InitConn() { for i := 1; i <= cr.r.Len(); i++ { cr.r.Value = NewRingNode(dialNetwork, dialAddress, i) cr.r = cr.r.Next() //log.Println("[InitConn] i:", i, " conn ok") } } func (cr *ConnRing) GetRingNode() *ring.Ring { cr.r = cr.r.Next() return cr.r } func (cr *ConnRing) ListConnRing() { cr.r.Do(func(p interface{}) { if v, ok := p.(*RingNode); ok { log.Println("[ListConnRing] NodeID:", v.NodeID) } }) } func (cr *ConnRing) Close() { for i := 1; i <= cr.r.Len(); i++ { v := cr.r.Value // v := cr.GetRingNode().Next().Value if rn, ok := v.(*RingNode); ok { (*rn).Close() } } } /////////////////////////////////////////////////////// // 环的节点 /////////////////////////////////////////////////////// type RingNode struct { NodeID int Status int conn NList *list.List //通知列表 } func NewRingNode(dialNetwork, dialAddress string, id int) *RingNode { x := &RingNode{} x.NodeID = id x.NList = list.New() x.Dial(dialNetwork, dialAddress) return x } func (rn *RingNode) Add(v *Notification) { rn.NList.PushBack(v) } func (rn *RingNode) Remove() { //...... } func (rn *RingNode) Get() *Notification { x := rn.NList.Front() if v, ok := x.Value.(*Notification); ok { return v } else { return nil } } func (rn *RingNode) ListNotification() { log.Println("节点(", rn.NodeID, ")共有(", rn.NList.Len(), ")笔数据,明细如下:") for e := rn.NList.Front(); e != nil; e = e.Next() { if c, ok := e.Value.(*Notification); ok { log.Println("ID:", rn.NodeID, " Content:", c.Content) } else { log.Println("ID:", rn.NodeID, " Value:", e.Value) } } } /////////////////////////////////////////////////////// // 通知 /////////////////////////////////////////////////////// type Notification struct { Content string Ct time.Time } func NewNotification(v string) *Notification { return &Notification{Content: v, Ct: time.Now()} } /////////////////////////////////////////////////////// // 基本的服务器连接处理 /////////////////////////////////////////////////////// type conn struct { mu sync.Mutex conn net.Conn err error } func (c *conn) Dial(network, address string) { con, err := net.Dial(network, address) if err != nil { log.Fatal(err) } c.conn = con log.Println(address, "连接成功!") return } func (c *conn) Close() error { c.mu.Lock() addr := c.conn.RemoteAddr() if c.conn != nil { c.conn.Close() } c.mu.Unlock() log.Println(addr, "断开连接!") return nil } /////////////////////////////////////////////////////// /* 2015/11/12 00:25:07 localhost:6666 连接成功! 2015/11/12 00:25:07 localhost:6666 连接成功! 2015/11/12 00:25:07 localhost:6666 连接成功! 2015/11/12 00:25:07 [ListConnRing] NodeID: 1 2015/11/12 00:25:07 [ListConnRing] NodeID: 2 2015/11/12 00:25:07 [ListConnRing] NodeID: 3 2015/11/12 00:25:07 节点( 3 )共有( 1 )笔数据,明细如下: 2015/11/12 00:25:07 ID: 3 Content: 3-PushNotification 2015/11/12 00:25:07 ------------------------------------ 2015/11/12 00:25:07 节点( 1 )共有( 1 )笔数据,明细如下: 2015/11/12 00:25:07 ID: 1 Content: 1-PushNotification 2015/11/12 00:25:07 ------------------------------------ 2015/11/12 00:25:07 节点( 2 )共有( 1 )笔数据,明细如下: 2015/11/12 00:25:07 ID: 2 Content: 2-PushNotification 2015/11/12 00:25:07 ------------------------------------ 2015/11/12 00:25:07 节点( 3 )共有( 2 )笔数据,明细如下: 2015/11/12 00:25:07 ID: 3 Content: 3-PushNotification 2015/11/12 00:25:07 ID: 3 Content: 3-PushNotification 2015/11/12 00:25:07 ------------------------------------ 2015/11/12 00:25:07 节点( 1 )共有( 2 )笔数据,明细如下: 2015/11/12 00:25:07 ID: 1 Content: 1-PushNotification 2015/11/12 00:25:07 ID: 1 Content: 1-PushNotification 2015/11/12 00:25:07 ------------------------------------ 2015/11/12 00:25:07 127.0.0.1:6666 断开连接! 2015/11/12 00:25:07 127.0.0.1:6666 断开连接! 2015/11/12 00:25:07 127.0.0.1:6666 断开连接! */模型是跑起来了,具体效果要实际测才知道。 不过就算发成功了,也只是初步,后面还有一堆
事情要做,比如,要区分,app是否已被用户删了。消息是否被合并了,发送成功与失败的结果返回与统计等等。
BLOG: http://blog.csdn.net/xcl168