marion 5 роки тому
батько
коміт
6fa8d92777
2 змінених файлів з 12 додано та 6 видалено
  1. 11 5
      utils/queue/buffer_postman.go
  2. 1 1
      utils/queue/buffer_postman_test.go

+ 11 - 5
utils/queue/buffer_postman.go

@@ -141,6 +141,7 @@ type BufferPostman struct {
 	timer       *time.Timer
 	isTimerStop bool
 	target      chan interface{}
+	lock        *sync.Mutex
 }
 
 // 新建缓冲投递员对象
@@ -150,6 +151,7 @@ func NewBufferPostman(limit int, duration time.Duration, target chan interface{}
 		duration: duration,
 		Buffer:   NewBufferMap(),
 		target:   target,
+		lock:     new(sync.Mutex),
 	}
 	if duration > 0 {
 		p.timer = time.NewTimer(duration)
@@ -170,11 +172,15 @@ func NewBufferPostman(limit int, duration time.Duration, target chan interface{}
 // 置入消息
 func (p *BufferPostman) Push(item IBufferItem) {
 	size := p.Buffer.Push(item)
-	if p.isTimerStop { // 唤醒定时器
-		p.resetTimer()
-	}
-	if p.limit > 0 && size >= p.limit { // 超限
-		p.deliver()
+	if p.isTimerStop || (p.limit > 0 && size >= p.limit) {
+		p.lock.Lock()
+		defer p.lock.Unlock()
+		if p.isTimerStop { // 唤醒定时器
+			p.resetTimer()
+		}
+		if p.limit > 0 && size >= p.limit { // 超限
+			p.deliver()
+		}
 	}
 }
 

+ 1 - 1
utils/queue/buffer_postman_test.go

@@ -47,7 +47,7 @@ func TestBufferPostman_Push(t *testing.T) {
 	// 准备一个测试去重用的id列表
 	var ids []utils.Long
 	for i := 0; i < 17; i++ {
-		ids = append(ids, utils.NextId())
+		ids = append(ids, utils.Long(i))
 	}
 
 	// 消息并发压进缓冲