chan_pool.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package queue
  2. import (
  3. "git.aionnect.com/aionnect/go-common/utils"
  4. "os"
  5. "os/signal"
  6. "syscall"
  7. )
  8. // 工作对象封装
  9. type ChanWorker struct {
  10. ID int // 工作对象编号
  11. WorkerPool chan chan interface{} // 工作管道池,实例化时由调度器传入
  12. JobChannel chan interface{} // 工作管道
  13. quit chan bool // 退出消息
  14. }
  15. func NewChanWorker(workerId int, workerPool chan chan interface{}) *ChanWorker {
  16. jobChannel := make(chan interface{})
  17. return &ChanWorker{
  18. ID: workerId,
  19. WorkerPool: workerPool,
  20. JobChannel: jobChannel,
  21. quit: make(chan bool),
  22. }
  23. }
  24. func (w *ChanWorker) Start(callback func(workerId int, msg interface{})) {
  25. go func(w *ChanWorker, callback func(workerId int, msg interface{})) {
  26. defer utils.DefaultGoroutineRecover(nil, `chan池工作对象消息处理`)
  27. for {
  28. // 新工作管道或每次取用工作管道后,加入工作管道池
  29. w.WorkerPool <- w.JobChannel
  30. select {
  31. case msg, ok := <-w.JobChannel: // 无消息时阻塞
  32. if ok {
  33. callback(w.ID, msg)
  34. }
  35. case <-w.quit:
  36. return
  37. }
  38. }
  39. }(w, callback)
  40. w.closeWait()
  41. }
  42. func (w *ChanWorker) closeWait() {
  43. go func(w *ChanWorker) {
  44. defer utils.DefaultGoroutineRecover(nil, `chan池关闭`)
  45. var c chan os.Signal
  46. var s os.Signal
  47. c = make(chan os.Signal, 1)
  48. signal.Notify(c, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGKILL)
  49. for {
  50. s = <-c
  51. switch s {
  52. case syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT, syscall.SIGKILL:
  53. w.quit <- true
  54. return
  55. default:
  56. return
  57. }
  58. }
  59. }(w)
  60. }
  61. // 调度对象
  62. type ChanDispatcher struct {
  63. MsgQueue chan interface{} // 消息输入管道
  64. WorkerPool chan chan interface{} // 工作管道池
  65. maxWorkers int // 最大工作对象数
  66. }
  67. func NewChanDispatcher(msgQueue chan interface{}, maxWorkers int) *ChanDispatcher {
  68. return &ChanDispatcher{
  69. MsgQueue: msgQueue,
  70. WorkerPool: make(chan chan interface{}, maxWorkers),
  71. maxWorkers: maxWorkers,
  72. }
  73. }
  74. func (d *ChanDispatcher) Run(callback func(workerId int, msg interface{})) {
  75. for i := 0; i < d.maxWorkers; i++ {
  76. worker := NewChanWorker(i, d.WorkerPool)
  77. worker.Start(callback)
  78. }
  79. d.dispatch()
  80. }
  81. func (d *ChanDispatcher) dispatch() {
  82. go func(d *ChanDispatcher) {
  83. defer utils.DefaultGoroutineRecover(nil, `chan池调度`)
  84. for {
  85. select {
  86. case msg, ok := <-d.MsgQueue:
  87. if ok {
  88. // 从工作管道池中尝试取出一个空闲的工作管道(每次取用工作管道会从池中取出去,消息处理完再放回池子,所以池子中的都是空闲的)
  89. // 无空闲工作管道(池子中无消息)时阻塞
  90. jobChannel, isOpen := <-d.WorkerPool
  91. if isOpen {
  92. // 将一条消息发送给成功取出的工作管道
  93. jobChannel <- msg
  94. }
  95. }
  96. }
  97. }
  98. }(d)
  99. }