1
0

conn.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. package mux
  2. import (
  3. "errors"
  4. "io"
  5. "math"
  6. "net"
  7. "sync"
  8. "time"
  9. "github.com/cnlh/nps/lib/common"
  10. )
  11. type conn struct {
  12. net.Conn
  13. getStatusCh chan struct{}
  14. connStatusOkCh chan struct{}
  15. connStatusFailCh chan struct{}
  16. connId int32
  17. isClose bool
  18. closeFlag bool // close conn flag
  19. receiveWindow *ReceiveWindow
  20. sendWindow *SendWindow
  21. once sync.Once
  22. }
  23. func NewConn(connId int32, mux *Mux) *conn {
  24. c := &conn{
  25. getStatusCh: make(chan struct{}),
  26. connStatusOkCh: make(chan struct{}),
  27. connStatusFailCh: make(chan struct{}),
  28. connId: connId,
  29. receiveWindow: new(ReceiveWindow),
  30. sendWindow: new(SendWindow),
  31. once: sync.Once{},
  32. }
  33. c.receiveWindow.New(mux)
  34. c.sendWindow.New(mux)
  35. return c
  36. }
  37. func (s *conn) Read(buf []byte) (n int, err error) {
  38. if s.isClose || buf == nil {
  39. return 0, errors.New("the conn has closed")
  40. }
  41. if len(buf) == 0 {
  42. return 0, nil
  43. }
  44. // waiting for takeout from receive window finish or timeout
  45. n, err = s.receiveWindow.Read(buf, s.connId)
  46. return
  47. }
  48. func (s *conn) Write(buf []byte) (n int, err error) {
  49. if s.isClose {
  50. return 0, errors.New("the conn has closed")
  51. }
  52. if s.closeFlag {
  53. //s.Close()
  54. return 0, errors.New("io: write on closed conn")
  55. }
  56. if len(buf) == 0 {
  57. return 0, nil
  58. }
  59. //logs.Warn("write buf", len(buf))
  60. n, err = s.sendWindow.WriteFull(buf, s.connId)
  61. return
  62. }
  63. func (s *conn) Close() (err error) {
  64. s.once.Do(s.closeProcess)
  65. return
  66. }
  67. func (s *conn) closeProcess() {
  68. s.isClose = true
  69. s.receiveWindow.mux.connMap.Delete(s.connId)
  70. if !s.receiveWindow.mux.IsClose {
  71. // if server or user close the conn while reading, will get a io.EOF
  72. // and this Close method will be invoke, send this signal to close other side
  73. s.receiveWindow.mux.sendInfo(common.MUX_CONN_CLOSE, s.connId, nil)
  74. }
  75. s.sendWindow.CloseWindow()
  76. s.receiveWindow.CloseWindow()
  77. return
  78. }
  79. func (s *conn) LocalAddr() net.Addr {
  80. return s.receiveWindow.mux.conn.LocalAddr()
  81. }
  82. func (s *conn) RemoteAddr() net.Addr {
  83. return s.receiveWindow.mux.conn.RemoteAddr()
  84. }
  85. func (s *conn) SetDeadline(t time.Time) error {
  86. _ = s.SetReadDeadline(t)
  87. _ = s.SetWriteDeadline(t)
  88. return nil
  89. }
  90. func (s *conn) SetReadDeadline(t time.Time) error {
  91. s.receiveWindow.SetTimeOut(t)
  92. return nil
  93. }
  94. func (s *conn) SetWriteDeadline(t time.Time) error {
  95. s.sendWindow.SetTimeOut(t)
  96. return nil
  97. }
  98. type window struct {
  99. off uint32
  100. maxSize uint32
  101. closeOp bool
  102. closeOpCh chan struct{}
  103. mux *Mux
  104. }
  105. func (Self *window) New() {
  106. Self.closeOpCh = make(chan struct{}, 2)
  107. }
  108. func (Self *window) CloseWindow() {
  109. if !Self.closeOp {
  110. Self.closeOp = true
  111. Self.closeOpCh <- struct{}{}
  112. Self.closeOpCh <- struct{}{}
  113. }
  114. }
  115. type ReceiveWindow struct {
  116. bufQueue FIFOQueue
  117. element *ListElement
  118. readLength uint32
  119. readOp chan struct{}
  120. readWait bool
  121. windowFull bool
  122. count int8
  123. bw *bandwidth
  124. once sync.Once
  125. window
  126. }
  127. func (Self *ReceiveWindow) New(mux *Mux) {
  128. // initial a window for receive
  129. Self.readOp = make(chan struct{})
  130. Self.bufQueue.New()
  131. Self.bw = new(bandwidth)
  132. Self.element = new(ListElement)
  133. Self.maxSize = 8192
  134. Self.mux = mux
  135. Self.window.New()
  136. }
  137. func (Self *ReceiveWindow) RemainingSize() (n uint32) {
  138. // receive window remaining
  139. if Self.maxSize >= Self.bufQueue.Len() {
  140. n = Self.maxSize - Self.bufQueue.Len()
  141. }
  142. // if maxSize is small than bufQueue length, return 0
  143. return
  144. }
  145. func (Self *ReceiveWindow) ReadSize() (n uint32) {
  146. // acknowledge the size already read
  147. Self.bufQueue.mutex.Lock()
  148. n = Self.readLength
  149. Self.readLength = 0
  150. Self.bufQueue.mutex.Unlock()
  151. return
  152. }
  153. func (Self *ReceiveWindow) CalcSize() {
  154. // calculating maximum receive window size
  155. if Self.count == 0 {
  156. //logs.Warn("ping, bw", Self.mux.latency, Self.bw.Get())
  157. n := uint32(2 * Self.mux.latency * Self.bw.Get())
  158. if n < 8192 {
  159. n = 8192
  160. }
  161. if n < Self.bufQueue.Len() {
  162. n = Self.bufQueue.Len()
  163. }
  164. // set the minimal size
  165. //logs.Warn("n", n)
  166. Self.maxSize = n
  167. Self.count = -5
  168. }
  169. Self.count += 1
  170. }
  171. func (Self *ReceiveWindow) Write(buf []byte, l uint16, part bool, id int32) (err error) {
  172. if Self.closeOp {
  173. return errors.New("conn.receiveWindow: write on closed window")
  174. }
  175. element := ListElement{}
  176. err = element.New(buf, l, part)
  177. //logs.Warn("push the buf", len(buf), l, (&element).l)
  178. if err != nil {
  179. return
  180. }
  181. Self.bufQueue.Push(&element) // must push data before allow read
  182. //logs.Warn("read session calc size ", Self.maxSize)
  183. // calculating the receive window size
  184. Self.CalcSize()
  185. //logs.Warn("read session calc size finish", Self.maxSize)
  186. if Self.RemainingSize() == 0 {
  187. Self.windowFull = true
  188. //logs.Warn("window full true", Self.windowFull)
  189. }
  190. Self.mux.sendInfo(common.MUX_MSG_SEND_OK, id, Self.maxSize, Self.ReadSize())
  191. return nil
  192. }
  193. func (Self *ReceiveWindow) Read(p []byte, id int32) (n int, err error) {
  194. if Self.closeOp {
  195. return 0, io.EOF // receive close signal, returns eof
  196. }
  197. pOff := 0
  198. l := 0
  199. //logs.Warn("receive window read off, element.l", Self.off, Self.element.l)
  200. copyData:
  201. Self.bw.StartRead()
  202. if Self.off == uint32(Self.element.l) {
  203. // on the first Read method invoked, Self.off and Self.element.l
  204. // both zero value
  205. Self.element, err = Self.bufQueue.Pop()
  206. // if the queue is empty, Pop method will wait until one element push
  207. // into the queue successful, or timeout.
  208. // timer start on timeout parameter is set up ,
  209. // reset to 60s if timeout and data still available
  210. Self.off = 0
  211. if err != nil {
  212. return // queue receive stop or time out, break the loop and return
  213. }
  214. //logs.Warn("pop element", Self.element.l, Self.element.part)
  215. }
  216. l = copy(p[pOff:], Self.element.buf[Self.off:])
  217. Self.bw.SetCopySize(l)
  218. pOff += l
  219. Self.off += uint32(l)
  220. Self.bufQueue.mutex.Lock()
  221. Self.readLength += uint32(l)
  222. //logs.Warn("window read length buf len", Self.readLength, Self.bufQueue.Len())
  223. Self.bufQueue.mutex.Unlock()
  224. n += l
  225. l = 0
  226. Self.bw.EndRead()
  227. Self.sendStatus(id)
  228. if pOff < len(p) && Self.element.part {
  229. // element is a part of the segments, trying to fill up buf p
  230. goto copyData
  231. }
  232. return // buf p is full or all of segments in buf, return
  233. }
  234. func (Self *ReceiveWindow) sendStatus(id int32) {
  235. if Self.windowFull || Self.bufQueue.Len() == 0 {
  236. // window is full before read or empty now
  237. Self.windowFull = false
  238. Self.mux.sendInfo(common.MUX_MSG_SEND_OK, id, Self.maxSize, Self.ReadSize())
  239. // acknowledge other side, have empty some receive window space
  240. //}
  241. }
  242. }
  243. func (Self *ReceiveWindow) SetTimeOut(t time.Time) {
  244. // waiting for FIFO queue Pop method
  245. Self.bufQueue.SetTimeOut(t)
  246. }
  247. func (Self *ReceiveWindow) Stop() {
  248. // queue has no more data to push, so unblock pop method
  249. Self.once.Do(Self.bufQueue.Stop)
  250. }
  251. func (Self *ReceiveWindow) CloseWindow() {
  252. Self.window.CloseWindow()
  253. Self.Stop()
  254. }
  255. type SendWindow struct {
  256. buf []byte
  257. sentLength uint32
  258. setSizeCh chan struct{}
  259. setSizeWait bool
  260. unSlide uint32
  261. timeout time.Time
  262. window
  263. mutex sync.Mutex
  264. }
  265. func (Self *SendWindow) New(mux *Mux) {
  266. Self.setSizeCh = make(chan struct{})
  267. Self.maxSize = 4096
  268. Self.mux = mux
  269. Self.window.New()
  270. }
  271. func (Self *SendWindow) SetSendBuf(buf []byte) {
  272. // send window buff from conn write method, set it to send window
  273. Self.mutex.Lock()
  274. Self.buf = buf
  275. Self.off = 0
  276. Self.mutex.Unlock()
  277. }
  278. func (Self *SendWindow) RemainingSize() (n uint32) {
  279. if Self.maxSize >= Self.sentLength {
  280. n = Self.maxSize - Self.sentLength
  281. }
  282. return
  283. }
  284. func (Self *SendWindow) SetSize(windowSize, readLength uint32) (closed bool) {
  285. defer func() {
  286. if recover() != nil {
  287. closed = true
  288. }
  289. }()
  290. if Self.closeOp {
  291. close(Self.setSizeCh)
  292. return true
  293. }
  294. if readLength == 0 && Self.maxSize == windowSize {
  295. //logs.Warn("waiting for another window size")
  296. return false // waiting for receive another usable window size
  297. }
  298. //logs.Warn("set send window size to ", windowSize, readLength)
  299. Self.mutex.Lock()
  300. Self.slide(windowSize, readLength)
  301. if Self.setSizeWait {
  302. // send window into the wait status, need notice the channel
  303. //logs.Warn("send window remaining size is 0 , wait")
  304. if Self.RemainingSize() == 0 {
  305. //logs.Warn("waiting for another window size after slide")
  306. // keep the wait status
  307. Self.mutex.Unlock()
  308. return false
  309. }
  310. Self.setSizeWait = false
  311. Self.mutex.Unlock()
  312. //logs.Warn("send window remaining size is 0 starting wait")
  313. select {
  314. case Self.setSizeCh <- struct{}{}:
  315. //logs.Warn("send window remaining size is 0 finish")
  316. return false
  317. case <-Self.closeOpCh:
  318. close(Self.setSizeCh)
  319. return true
  320. }
  321. }
  322. // send window not into the wait status, so just do slide
  323. Self.mutex.Unlock()
  324. return false
  325. }
  326. func (Self *SendWindow) slide(windowSize, readLength uint32) {
  327. Self.sentLength -= readLength
  328. Self.maxSize = windowSize
  329. }
  330. func (Self *SendWindow) WriteTo() (p []byte, part bool, err error) {
  331. // returns buf segments, return only one segments, need a loop outside
  332. // until err = io.EOF
  333. if Self.closeOp {
  334. return nil, false, errors.New("conn.writeWindow: window closed")
  335. }
  336. if Self.off == uint32(len(Self.buf)) {
  337. return nil, false, io.EOF
  338. // send window buff is drain, return eof and get another one
  339. }
  340. Self.mutex.Lock()
  341. if Self.RemainingSize() == 0 {
  342. Self.setSizeWait = true
  343. Self.mutex.Unlock()
  344. // into the wait status
  345. err = Self.waitReceiveWindow()
  346. if err != nil {
  347. return nil, false, err
  348. }
  349. } else {
  350. Self.mutex.Unlock()
  351. }
  352. Self.mutex.Lock()
  353. var sendSize uint32
  354. if len(Self.buf[Self.off:]) > common.MAXIMUM_SEGMENT_SIZE {
  355. sendSize = common.MAXIMUM_SEGMENT_SIZE
  356. part = true
  357. } else {
  358. sendSize = uint32(len(Self.buf[Self.off:]))
  359. part = false
  360. }
  361. if Self.RemainingSize() < sendSize {
  362. // usable window size is small than
  363. // window MAXIMUM_SEGMENT_SIZE or send buf left
  364. sendSize = Self.RemainingSize()
  365. part = true
  366. }
  367. //logs.Warn("send size", sendSize)
  368. p = Self.buf[Self.off : sendSize+Self.off]
  369. Self.off += sendSize
  370. Self.sentLength += sendSize
  371. Self.mutex.Unlock()
  372. return
  373. }
  374. func (Self *SendWindow) waitReceiveWindow() (err error) {
  375. t := Self.timeout.Sub(time.Now())
  376. if t < 0 {
  377. t = time.Minute
  378. }
  379. timer := time.NewTimer(t)
  380. defer timer.Stop()
  381. // waiting for receive usable window size, or timeout
  382. select {
  383. case _, ok := <-Self.setSizeCh:
  384. if !ok {
  385. return errors.New("conn.writeWindow: window closed")
  386. }
  387. return nil
  388. case <-timer.C:
  389. return errors.New("conn.writeWindow: write to time out")
  390. case <-Self.closeOpCh:
  391. return errors.New("conn.writeWindow: window closed")
  392. }
  393. }
  394. func (Self *SendWindow) WriteFull(buf []byte, id int32) (n int, err error) {
  395. Self.SetSendBuf(buf) // set the buf to send window
  396. var bufSeg []byte
  397. var part bool
  398. for {
  399. bufSeg, part, err = Self.WriteTo()
  400. //logs.Warn("buf seg", len(bufSeg), part, err)
  401. // get the buf segments from send window
  402. if bufSeg == nil && part == false && err == io.EOF {
  403. // send window is drain, break the loop
  404. err = nil
  405. break
  406. }
  407. if err != nil {
  408. break
  409. }
  410. n += len(bufSeg)
  411. if part {
  412. Self.mux.sendInfo(common.MUX_NEW_MSG_PART, id, bufSeg)
  413. } else {
  414. Self.mux.sendInfo(common.MUX_NEW_MSG, id, bufSeg)
  415. //logs.Warn("buf seg sent", len(bufSeg), part, err)
  416. }
  417. // send to other side, not send nil data to other side
  418. }
  419. //logs.Warn("buf seg write success")
  420. return
  421. }
  422. func (Self *SendWindow) SetTimeOut(t time.Time) {
  423. // waiting for receive a receive window size
  424. Self.timeout = t
  425. }
  426. type bandwidth struct {
  427. lastReadStart time.Time
  428. readStart time.Time
  429. readEnd time.Time
  430. bufLength int
  431. lastBufLength int
  432. count int8
  433. readBW float64
  434. writeBW float64
  435. }
  436. func (Self *bandwidth) StartRead() {
  437. Self.lastReadStart, Self.readStart = Self.readStart, time.Now()
  438. }
  439. func (Self *bandwidth) EndRead() {
  440. if !Self.lastReadStart.IsZero() {
  441. if Self.count == 0 {
  442. Self.calcWriteBandwidth()
  443. }
  444. }
  445. Self.readEnd = time.Now()
  446. if Self.count == 0 {
  447. Self.calcReadBandwidth()
  448. Self.count = -3
  449. }
  450. Self.count += 1
  451. }
  452. func (Self *bandwidth) SetCopySize(n int) {
  453. // must be invoke between StartRead and EndRead
  454. Self.lastBufLength, Self.bufLength = Self.bufLength, n
  455. }
  456. func (Self *bandwidth) calcReadBandwidth() {
  457. // Bandwidth between nps and npc
  458. readTime := Self.readEnd.Sub(Self.readStart)
  459. Self.readBW = float64(Self.bufLength) / readTime.Seconds()
  460. //logs.Warn("calc read bw", Self.bufLength, readTime.Seconds())
  461. }
  462. func (Self *bandwidth) calcWriteBandwidth() {
  463. // Bandwidth between nps and user, npc and application
  464. //logs.Warn("calc write bw")
  465. writeTime := Self.readEnd.Sub(Self.lastReadStart)
  466. Self.writeBW = float64(Self.lastBufLength) / writeTime.Seconds()
  467. }
  468. func (Self *bandwidth) Get() (bw float64) {
  469. // The zero value, 0 for numeric types
  470. if Self.writeBW == 0 && Self.readBW == 0 {
  471. //logs.Warn("bw both 0")
  472. return 100
  473. }
  474. if Self.writeBW == 0 && Self.readBW != 0 {
  475. return Self.readBW
  476. }
  477. if Self.readBW == 0 && Self.writeBW != 0 {
  478. return Self.writeBW
  479. }
  480. return math.Min(Self.readBW, Self.writeBW)
  481. }