round.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package server
  2. import (
  3. "go-common/app/interface/main/broadcast/conf"
  4. "go-common/app/service/main/broadcast/libs/bytes"
  5. "go-common/app/service/main/broadcast/libs/time"
  6. )
  7. // RoundOptions .
  8. type RoundOptions struct {
  9. Timer int
  10. TimerSize int
  11. Reader int
  12. ReadBuf int
  13. ReadBufSize int
  14. Writer int
  15. WriteBuf int
  16. WriteBufSize int
  17. }
  18. // Round userd for connection round-robin get a reader/writer/timer for split big lock.
  19. type Round struct {
  20. readers []bytes.Pool
  21. writers []bytes.Pool
  22. timers []time.Timer
  23. options RoundOptions
  24. }
  25. // NewRound new a round struct.
  26. func NewRound(c *conf.Config) (r *Round) {
  27. var i int
  28. r = new(Round)
  29. options := RoundOptions{
  30. Reader: c.TCP.Reader,
  31. ReadBuf: c.TCP.ReadBuf,
  32. ReadBufSize: c.TCP.ReadBufSize,
  33. Writer: c.TCP.Writer,
  34. WriteBuf: c.TCP.WriteBuf,
  35. WriteBufSize: c.TCP.WriteBufSize,
  36. Timer: c.Timer.Timer,
  37. TimerSize: c.Timer.TimerSize,
  38. }
  39. r.options = options
  40. // reader
  41. r.readers = make([]bytes.Pool, options.Reader)
  42. for i = 0; i < options.Reader; i++ {
  43. r.readers[i].Init(options.ReadBuf, options.ReadBufSize)
  44. }
  45. // writer
  46. r.writers = make([]bytes.Pool, options.Writer)
  47. for i = 0; i < options.Writer; i++ {
  48. r.writers[i].Init(options.WriteBuf, options.WriteBufSize)
  49. }
  50. // timer
  51. r.timers = make([]time.Timer, options.Timer)
  52. for i = 0; i < options.Timer; i++ {
  53. r.timers[i].Init(options.TimerSize)
  54. }
  55. return
  56. }
  57. // Timer get a timer.
  58. func (r *Round) Timer(rn int) *time.Timer {
  59. return &(r.timers[rn%r.options.Timer])
  60. }
  61. // Reader get a reader memory buffer.
  62. func (r *Round) Reader(rn int) *bytes.Pool {
  63. return &(r.readers[rn%r.options.Reader])
  64. }
  65. // Writer get a writer memory buffer pool.
  66. func (r *Round) Writer(rn int) *bytes.Pool {
  67. return &(r.writers[rn%r.options.Writer])
  68. }