-
Notifications
You must be signed in to change notification settings - Fork 1
/
group.go
65 lines (54 loc) · 924 Bytes
/
group.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
package dcron
import (
"sync"
"time"
)
const (
minCountKeep = 16
)
type Group interface {
inc(platAt time.Time, fn func() bool) bool
}
func NewGroup(limit int) Group {
return &innerGroup{
limit: limit,
}
}
type innerGroup struct {
sync.Mutex
limit int
counts []*groupCount
}
func (g *innerGroup) inc(platAt time.Time, fn func() bool) bool {
g.Lock()
defer g.Unlock()
defer g.tidy()
var gc *groupCount
for i := len(g.counts) - 1; i >= 0; i-- {
v := g.counts[i]
if v.platAt.Equal(platAt) {
gc = v
}
}
if gc == nil {
gc = &groupCount{
platAt: platAt,
count: 0,
}
g.counts = append(g.counts, gc)
}
if (gc.count < g.limit || g.limit <= 0) && fn() {
gc.count++
return true
}
return false
}
func (g *innerGroup) tidy() {
if len(g.counts) > 2*minCountKeep {
g.counts = g.counts[len(g.counts)-minCountKeep:]
}
}
type groupCount struct {
platAt time.Time
count int
}