-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer.go
77 lines (69 loc) · 1.23 KB
/
buffer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package buff
import (
"sync"
"time"
)
type Buffer[T any] struct {
mu sync.Mutex
items []T
flushFunc func([]T)
size int
timeout time.Duration
ticker *time.Ticker
done chan struct{}
closed bool
}
func NewBuffer[T any](flushFunc func([]T), flushSize int, flushTimeout time.Duration) *Buffer[T] {
buffer := &Buffer[T]{
items: make([]T, 0, flushSize),
flushFunc: flushFunc,
size: flushSize,
timeout: flushTimeout,
done: make(chan struct{}),
}
return buffer
}
func (b *Buffer[T]) Push(item T) {
b.mu.Lock()
defer b.mu.Unlock()
if b.closed {
panic("tried to push on already closed buffer")
}
b.items = append(b.items, item)
if len(b.items) >= b.size {
b.flush()
}
}
func (b *Buffer[T]) flush() {
if len(b.items) == 0 {
return
}
b.flushFunc(b.items)
b.items = make([]T, 0, b.size)
b.ticker.Reset(b.timeout)
}
func (b *Buffer[T]) Start() {
b.ticker = time.NewTicker(b.timeout)
go func() {
for {
select {
case <-b.ticker.C:
b.mu.Lock()
b.flush()
b.mu.Unlock()
case <-b.done:
b.ticker.Stop()
return
}
}
}()
}
func (b *Buffer[T]) Close() {
b.mu.Lock()
defer b.mu.Unlock()
if !b.closed {
b.closed = true
close(b.done)
b.flush()
}
}