mirror of https://github.com/ehang-io/nps
remove mux write queue, add connection close once
parent
bb2cffe10a
commit
51a3787708
|
@ -6,6 +6,7 @@ import (
|
||||||
"github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
|
"github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -27,9 +28,10 @@ type conn struct {
|
||||||
isClose bool
|
isClose bool
|
||||||
readWait bool
|
readWait bool
|
||||||
sendClose bool // MUX_CONN_CLOSE already send
|
sendClose bool // MUX_CONN_CLOSE already send
|
||||||
writeClose bool // close conn Write
|
closeFlag bool // close conn flag
|
||||||
hasWrite int
|
hasWrite int
|
||||||
mux *Mux
|
mux *Mux
|
||||||
|
once sync.Once
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewConn(connId int32, mux *Mux) *conn {
|
func NewConn(connId int32, mux *Mux) *conn {
|
||||||
|
@ -41,6 +43,7 @@ func NewConn(connId int32, mux *Mux) *conn {
|
||||||
readQueue: NewQueue(),
|
readQueue: NewQueue(),
|
||||||
connId: connId,
|
connId: connId,
|
||||||
mux: mux,
|
mux: mux,
|
||||||
|
once: sync.Once{},
|
||||||
}
|
}
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
@ -72,18 +75,14 @@ func (s *conn) Read(buf []byte) (n int, err error) {
|
||||||
logs.Warn("conn close by read pop err", s.connId, err)
|
logs.Warn("conn close by read pop err", s.connId, err)
|
||||||
s.Close()
|
s.Close()
|
||||||
return 0, io.EOF
|
return 0, io.EOF
|
||||||
|
} else if node.val == nil {
|
||||||
|
s.sendClose = true
|
||||||
|
logs.Warn("conn close by read ", s.connId)
|
||||||
|
s.Close()
|
||||||
} else {
|
} else {
|
||||||
if node.val == nil {
|
s.readBuffer = node.val
|
||||||
//close
|
s.endRead = node.l
|
||||||
s.sendClose = true
|
s.startRead = 0
|
||||||
logs.Warn("conn close by read ", s.connId)
|
|
||||||
s.Close()
|
|
||||||
return 0, io.EOF
|
|
||||||
} else {
|
|
||||||
s.readBuffer = node.val
|
|
||||||
s.endRead = node.l
|
|
||||||
s.startRead = 0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(buf) < s.endRead-s.startRead {
|
if len(buf) < s.endRead-s.startRead {
|
||||||
|
@ -101,7 +100,7 @@ func (s *conn) Write(buf []byte) (n int, err error) {
|
||||||
if s.isClose {
|
if s.isClose {
|
||||||
return 0, errors.New("the conn has closed")
|
return 0, errors.New("the conn has closed")
|
||||||
}
|
}
|
||||||
if s.writeClose {
|
if s.closeFlag {
|
||||||
s.sendClose = true
|
s.sendClose = true
|
||||||
logs.Warn("conn close by write ", s.connId)
|
logs.Warn("conn close by write ", s.connId)
|
||||||
s.Close()
|
s.Close()
|
||||||
|
@ -131,11 +130,11 @@ func (s *conn) write(buf []byte, ch chan struct{}) {
|
||||||
l := len(buf)
|
l := len(buf)
|
||||||
for {
|
for {
|
||||||
if l-start > common.PoolSizeCopy {
|
if l-start > common.PoolSizeCopy {
|
||||||
logs.Warn("conn write > poolsizecopy")
|
//logs.Warn("conn write > poolsizecopy")
|
||||||
s.mux.sendInfo(common.MUX_NEW_MSG, s.connId, buf[start:start+common.PoolSizeCopy])
|
s.mux.sendInfo(common.MUX_NEW_MSG, s.connId, buf[start:start+common.PoolSizeCopy])
|
||||||
start += common.PoolSizeCopy
|
start += common.PoolSizeCopy
|
||||||
} else {
|
} else {
|
||||||
logs.Warn("conn write <= poolsizecopy, start, len", start, l)
|
//logs.Warn("conn write <= poolsizecopy, start, len", start, l)
|
||||||
s.mux.sendInfo(common.MUX_NEW_MSG, s.connId, buf[start:l])
|
s.mux.sendInfo(common.MUX_NEW_MSG, s.connId, buf[start:l])
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -144,20 +143,25 @@ func (s *conn) write(buf []byte, ch chan struct{}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *conn) Close() (err error) {
|
func (s *conn) Close() (err error) {
|
||||||
|
s.once.Do(s.closeProcess)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *conn) closeProcess() {
|
||||||
if s.isClose {
|
if s.isClose {
|
||||||
return errors.New("the conn has closed")
|
logs.Warn("has closed ", s.connId)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
s.isClose = true
|
s.isClose = true
|
||||||
|
s.readWait = false
|
||||||
s.mux.connMap.Delete(s.connId)
|
s.mux.connMap.Delete(s.connId)
|
||||||
common.CopyBuff.Put(s.readBuffer)
|
common.CopyBuff.Put(s.readBuffer)
|
||||||
if s.readWait {
|
close(s.readCh)
|
||||||
s.readCh <- struct{}{}
|
|
||||||
}
|
|
||||||
s.readQueue.Clear()
|
s.readQueue.Clear()
|
||||||
if !s.mux.IsClose {
|
if !s.mux.IsClose {
|
||||||
if !s.sendClose {
|
if !s.sendClose {
|
||||||
logs.Warn("conn send close")
|
logs.Warn("conn send close", s.connId)
|
||||||
go s.mux.sendInfo(common.MUX_CONN_CLOSE, s.connId, nil)
|
s.mux.sendInfo(common.MUX_CONN_CLOSE, s.connId, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
|
@ -41,7 +41,7 @@ func NewMux(c net.Conn, connType string) *Mux {
|
||||||
go m.readSession()
|
go m.readSession()
|
||||||
//ping
|
//ping
|
||||||
go m.ping()
|
go m.ping()
|
||||||
go m.writeSession()
|
//go m.writeSession()
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ func (s *Mux) NewConn() (*conn, error) {
|
||||||
|
|
||||||
func (s *Mux) Accept() (net.Conn, error) {
|
func (s *Mux) Accept() (net.Conn, error) {
|
||||||
if s.IsClose {
|
if s.IsClose {
|
||||||
return nil, errors.New("accpet error,the conn has closed")
|
return nil, errors.New("accpet error,the mux has closed")
|
||||||
}
|
}
|
||||||
conn := <-s.newConnCh
|
conn := <-s.newConnCh
|
||||||
if conn == nil {
|
if conn == nil {
|
||||||
|
@ -91,31 +91,29 @@ func (s *Mux) sendInfo(flag uint8, id int32, content []byte) {
|
||||||
buf := common.BuffPool.Get()
|
buf := common.BuffPool.Get()
|
||||||
//defer pool.BuffPool.Put(buf)
|
//defer pool.BuffPool.Put(buf)
|
||||||
pack := common.MuxPack.Get()
|
pack := common.MuxPack.Get()
|
||||||
|
defer common.MuxPack.Put(pack)
|
||||||
err = pack.NewPac(flag, id, content)
|
err = pack.NewPac(flag, id, content)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.Close()
|
|
||||||
logs.Warn("new pack err", err)
|
logs.Warn("new pack err", err)
|
||||||
common.BuffPool.Put(buf)
|
common.BuffPool.Put(buf)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
err = pack.Pack(buf)
|
err = pack.Pack(buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
s.Close()
|
|
||||||
logs.Warn("pack err", err)
|
logs.Warn("pack err", err)
|
||||||
common.BuffPool.Put(buf)
|
common.BuffPool.Put(buf)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
s.writeQueue <- buf
|
if pack.Flag == common.MUX_NEW_CONN {
|
||||||
common.MuxPack.Put(pack)
|
logs.Warn("sendinfo mux new conn, insert to write queue", pack.Id)
|
||||||
//_, err = buf.WriteTo(s.conn)
|
}
|
||||||
//if err != nil {
|
//s.writeQueue <- buf
|
||||||
// s.Close()
|
_, err = buf.WriteTo(s.conn)
|
||||||
// logs.Warn("write err, close mux", err)
|
if err != nil {
|
||||||
//}
|
s.Close()
|
||||||
//if flag == common.MUX_CONN_CLOSE {
|
logs.Warn("write err, close mux", err)
|
||||||
//}
|
}
|
||||||
//if flag == common.MUX_NEW_MSG {
|
common.BuffPool.Put(buf)
|
||||||
//}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,7 +125,7 @@ func (s *Mux) writeSession() {
|
||||||
n, err := buf.WriteTo(s.conn)
|
n, err := buf.WriteTo(s.conn)
|
||||||
common.BuffPool.Put(buf)
|
common.BuffPool.Put(buf)
|
||||||
if err != nil || int(n) != l {
|
if err != nil || int(n) != l {
|
||||||
logs.Warn("close from write to ", err, n, l)
|
logs.Warn("close from write session fail ", err, n, l)
|
||||||
s.Close()
|
s.Close()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -163,8 +161,8 @@ func (s *Mux) ping() {
|
||||||
|
|
||||||
func (s *Mux) readSession() {
|
func (s *Mux) readSession() {
|
||||||
go func() {
|
go func() {
|
||||||
|
pack := common.MuxPack.Get()
|
||||||
for {
|
for {
|
||||||
pack := common.MuxPack.Get()
|
|
||||||
if pack.UnPack(s.conn) != nil {
|
if pack.UnPack(s.conn) != nil {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -173,10 +171,13 @@ func (s *Mux) readSession() {
|
||||||
//logs.Warn(pack.Flag, pack.Id, pack.Length, string(pack.Content[:10]))
|
//logs.Warn(pack.Flag, pack.Id, pack.Length, string(pack.Content[:10]))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if pack.Flag == common.MUX_NEW_CONN {
|
||||||
|
logs.Warn("unpack mux new conn", pack.Id)
|
||||||
|
}
|
||||||
s.pingOk = 0
|
s.pingOk = 0
|
||||||
switch pack.Flag {
|
switch pack.Flag {
|
||||||
case common.MUX_NEW_CONN: //new conn
|
case common.MUX_NEW_CONN: //new conn
|
||||||
logs.Warn("mux new conn", pack.Id)
|
logs.Warn("rec mux new conn", pack.Id)
|
||||||
conn := NewConn(pack.Id, s)
|
conn := NewConn(pack.Id, s)
|
||||||
s.connMap.Set(pack.Id, conn) //it has been set before send ok
|
s.connMap.Set(pack.Id, conn) //it has been set before send ok
|
||||||
s.newConnCh <- conn
|
s.newConnCh <- conn
|
||||||
|
@ -194,38 +195,48 @@ func (s *Mux) readSession() {
|
||||||
switch pack.Flag {
|
switch pack.Flag {
|
||||||
case common.MUX_NEW_MSG: //new msg from remote conn
|
case common.MUX_NEW_MSG: //new msg from remote conn
|
||||||
//insert wait queue
|
//insert wait queue
|
||||||
logs.Warn("mux new msg ", pack.Id)
|
buf := common.CopyBuff.Get()
|
||||||
conn.readQueue.Push(NewBufNode(pack.Content, int(pack.Length)))
|
buf = pack.Content
|
||||||
|
logs.Warn("rec mux new msg ", pack.Id, string(buf[0:15]))
|
||||||
|
conn.readQueue.Push(NewBufNode(buf, int(pack.Length)))
|
||||||
//judge len if >xxx ,send stop
|
//judge len if >xxx ,send stop
|
||||||
if conn.readWait {
|
if conn.readWait {
|
||||||
conn.readWait = false
|
conn.readWait = false
|
||||||
conn.readCh <- struct{}{}
|
conn.readCh <- struct{}{}
|
||||||
}
|
}
|
||||||
|
continue
|
||||||
case common.MUX_NEW_CONN_OK: //conn ok
|
case common.MUX_NEW_CONN_OK: //conn ok
|
||||||
logs.Warn("mux new conn ok ", pack.Id)
|
logs.Warn("rec mux new conn ok ", pack.Id)
|
||||||
conn.connStatusOkCh <- struct{}{}
|
conn.connStatusOkCh <- struct{}{}
|
||||||
|
continue
|
||||||
case common.MUX_NEW_CONN_Fail:
|
case common.MUX_NEW_CONN_Fail:
|
||||||
logs.Warn("mux new conn fail", pack.Id)
|
logs.Warn("rec mux new conn fail", pack.Id)
|
||||||
conn.connStatusFailCh <- struct{}{}
|
conn.connStatusFailCh <- struct{}{}
|
||||||
|
continue
|
||||||
case common.MUX_CONN_CLOSE: //close the connection
|
case common.MUX_CONN_CLOSE: //close the connection
|
||||||
logs.Warn("mux conn close", pack.Id)
|
logs.Warn("rec mux conn close", pack.Id)
|
||||||
s.connMap.Delete(pack.Id)
|
s.connMap.Delete(pack.Id)
|
||||||
conn.writeClose = true
|
conn.closeFlag = true
|
||||||
conn.readQueue.Push(NewBufNode(nil, 0))
|
conn.sendClose = true
|
||||||
if conn.readWait {
|
if !conn.isClose {
|
||||||
logs.Warn("close read wait", pack.Id)
|
conn.readQueue.Push(NewBufNode(nil, 0))
|
||||||
conn.readWait = false
|
if conn.readWait {
|
||||||
conn.readCh <- struct{}{}
|
logs.Warn("mux conn close read wait", pack.Id)
|
||||||
|
conn.readWait = false
|
||||||
|
conn.readCh <- struct{}{}
|
||||||
|
logs.Warn("mux conn close read wait pass", pack.Id)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
logs.Warn("receive mux conn close, finish", conn.connId)
|
logs.Warn("receive mux conn close, finish", conn.connId)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
} else if pack.Flag == common.MUX_NEW_MSG {
|
|
||||||
common.CopyBuff.Put(pack.Content)
|
|
||||||
} else if pack.Flag == common.MUX_CONN_CLOSE {
|
} else if pack.Flag == common.MUX_CONN_CLOSE {
|
||||||
logs.Warn("mux conn close no id ", pack.Id)
|
logs.Warn("rec mux conn close no id ", pack.Id)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
common.MuxPack.Put(pack)
|
|
||||||
}
|
}
|
||||||
|
common.MuxPack.Put(pack)
|
||||||
|
logs.Warn("read session put pack ", pack.Id)
|
||||||
s.Close()
|
s.Close()
|
||||||
}()
|
}()
|
||||||
select {
|
select {
|
||||||
|
|
Loading…
Reference in New Issue