123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- package mux
- import (
- "bytes"
- "errors"
- "github.com/cnlh/nps/lib/common"
- "github.com/cnlh/nps/lib/pool"
- "github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
- "math"
- "net"
- "sync"
- "sync/atomic"
- "time"
- )
- type Mux struct {
- net.Listener
- conn net.Conn
- connMap *connMap
- newConnCh chan *conn
- id int32
- closeChan chan struct{}
- IsClose bool
- pingOk int
- connType string
- writeQueue chan *bytes.Buffer
- sync.Mutex
- }
- func NewMux(c net.Conn, connType string) *Mux {
- m := &Mux{
- conn: c,
- connMap: NewConnMap(),
- id: 0,
- closeChan: make(chan struct{}),
- newConnCh: make(chan *conn),
- IsClose: false,
- connType: connType,
- writeQueue: make(chan *bytes.Buffer, 20),
- }
- //read session by flag
- go m.readSession()
- //ping
- go m.ping()
- //go m.writeSession()
- return m
- }
- func (s *Mux) NewConn() (*conn, error) {
- if s.IsClose {
- return nil, errors.New("the mux has closed")
- }
- conn := NewConn(s.getId(), s)
- //it must be set before send
- s.connMap.Set(conn.connId, conn)
- if err := s.sendInfo(common.MUX_NEW_CONN, conn.connId, nil); err != nil {
- return nil, err
- }
- //set a timer timeout 30 second
- timer := time.NewTimer(time.Minute * 2)
- defer timer.Stop()
- select {
- case <-conn.connStatusOkCh:
- return conn, nil
- case <-conn.connStatusFailCh:
- case <-timer.C:
- }
- return nil, errors.New("create connection fail,the server refused the connection")
- }
- func (s *Mux) Accept() (net.Conn, error) {
- if s.IsClose {
- return nil, errors.New("accpet error,the conn has closed")
- }
- conn := <-s.newConnCh
- if conn == nil {
- return nil, errors.New("accpet error,the conn has closed")
- }
- return conn, nil
- }
- func (s *Mux) Addr() net.Addr {
- return s.conn.LocalAddr()
- }
- func (s *Mux) sendInfo(flag uint8, id int32, content []byte) (err error) {
- if flag == common.MUX_NEW_MSG {
- }
- buf := pool.BuffPool.Get()
- pack := common.MuxPackager{}
- err = pack.NewPac(flag, id, content)
- if err != nil {
- s.Close()
- logs.Warn("new pack err", err)
- return
- }
- err = pack.Pack(buf)
- if err != nil {
- s.Close()
- logs.Warn("pack err", err)
- return
- }
- //s.writeQueue <- buf
- _, err = buf.WriteTo(s.conn)
- if err != nil {
- s.Close()
- logs.Warn("write err", err)
- }
- pool.BuffPool.Put(buf)
- if flag == common.MUX_CONN_CLOSE {
- }
- if flag == common.MUX_NEW_MSG {
- }
- return
- }
- func (s *Mux) writeSession() {
- go func() {
- for {
- buf := <-s.writeQueue
- l := buf.Len()
- n, err := buf.WriteTo(s.conn)
- pool.BuffPool.Put(buf)
- if err != nil || int(n) != l {
- logs.Warn("close from write to ", err, n, l)
- s.Close()
- break
- }
- }
- }()
- <-s.closeChan
- }
- func (s *Mux) ping() {
- go func() {
- ticker := time.NewTicker(time.Second * 1)
- for {
- select {
- case <-ticker.C:
- }
- //Avoid going beyond the scope
- if (math.MaxInt32 - s.id) < 10000 {
- s.id = 0
- }
- if err := s.sendInfo(common.MUX_PING_FLAG, common.MUX_PING, nil); err != nil || (s.pingOk > 10 && s.connType == "kcp") {
- s.Close()
- break
- }
- s.pingOk++
- }
- }()
- select {
- case <-s.closeChan:
- }
- }
- func (s *Mux) readSession() {
- var pack common.MuxPackager
- go func() {
- for {
- if pack.UnPack(s.conn) != nil {
- break
- }
- if pack.Flag != 0 && pack.Flag != 7 {
- if pack.Length > 10 {
- logs.Warn(pack.Flag, pack.Id, pack.Length, string(pack.Content[:10]))
- }
- }
- s.pingOk = 0
- switch pack.Flag {
- case common.MUX_NEW_CONN: //new conn
- //logs.Warn("mux new conn", pack.Id)
- conn := NewConn(pack.Id, s)
- s.connMap.Set(pack.Id, conn) //it has been set before send ok
- s.newConnCh <- conn
- s.sendInfo(common.MUX_NEW_CONN_OK, pack.Id, nil)
- continue
- case common.MUX_PING_FLAG: //ping
- s.sendInfo(common.MUX_PING_RETURN, common.MUX_PING, nil)
- continue
- case common.MUX_PING_RETURN:
- continue
- }
- if conn, ok := s.connMap.Get(pack.Id); ok && !conn.isClose {
- switch pack.Flag {
- case common.MUX_NEW_MSG: //new msg from remote conn
- //insert wait queue
- conn.readQueue.Push(NewBufNode(pack.Content, int(pack.Length)))
- //judge len if >xxx ,send stop
- if conn.readWait {
- conn.readWait = false
- conn.readCh <- struct{}{}
- }
- case common.MUX_NEW_CONN_OK: //conn ok
- conn.connStatusOkCh <- struct{}{}
- case common.MUX_NEW_CONN_Fail:
- conn.connStatusFailCh <- struct{}{}
- case common.MUX_CONN_CLOSE: //close the connection
- conn.readQueue.Push(NewBufNode(nil, 0))
- if conn.readWait {
- logs.Warn("close read wait", pack.Id)
- conn.readWait = false
- conn.readCh <- struct{}{}
- }
- s.connMap.Delete(pack.Id)
- }
- } else if pack.Flag == common.MUX_NEW_MSG {
- pool.CopyBuff.Put(pack.Content)
- }
- }
- s.Close()
- }()
- select {
- case <-s.closeChan:
- }
- }
- func (s *Mux) Close() error {
- logs.Warn("close mux")
- if s.IsClose {
- return errors.New("the mux has closed")
- }
- s.IsClose = true
- s.connMap.Close()
- select {
- case s.closeChan <- struct{}{}:
- }
- select {
- case s.closeChan <- struct{}{}:
- }
- //s.closeChan <- struct{}{}
- close(s.writeQueue)
- close(s.newConnCh)
- return s.conn.Close()
- }
- //get new connId as unique flag
- func (s *Mux) getId() (id int32) {
- id = atomic.AddInt32(&s.id, 1)
- if _, ok := s.connMap.Get(id); ok {
- s.getId()
- }
- return
- }
|