forked from ccfos/nightingale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_cache.go
161 lines (126 loc) · 3.15 KB
/
user_cache.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package memsto
import (
"fmt"
"sync"
"time"
"github.com/ccfos/nightingale/v6/models"
"github.com/ccfos/nightingale/v6/pkg/ctx"
"github.com/pkg/errors"
"github.com/toolkits/pkg/logger"
)
type UserCacheType struct {
statTotal int64
statLastUpdated int64
ctx *ctx.Context
stats *Stats
sync.RWMutex
users map[int64]*models.User // key: id
}
func NewUserCache(ctx *ctx.Context, stats *Stats) *UserCacheType {
uc := &UserCacheType{
statTotal: -1,
statLastUpdated: -1,
ctx: ctx,
stats: stats,
users: make(map[int64]*models.User),
}
uc.SyncUsers()
return uc
}
func (uc *UserCacheType) StatChanged(total, lastUpdated int64) bool {
if uc.statTotal == total && uc.statLastUpdated == lastUpdated {
return false
}
return true
}
func (uc *UserCacheType) Set(m map[int64]*models.User, total, lastUpdated int64) {
uc.Lock()
uc.users = m
uc.Unlock()
// only one goroutine used, so no need lock
uc.statTotal = total
uc.statLastUpdated = lastUpdated
}
func (uc *UserCacheType) GetByUserId(id int64) *models.User {
uc.RLock()
defer uc.RUnlock()
return uc.users[id]
}
func (uc *UserCacheType) GetByUserIds(ids []int64) []*models.User {
set := make(map[int64]struct{})
uc.RLock()
defer uc.RUnlock()
var users []*models.User
for _, id := range ids {
if uc.users[id] == nil {
continue
}
if _, has := set[id]; has {
continue
}
users = append(users, uc.users[id])
set[id] = struct{}{}
}
if users == nil {
users = []*models.User{}
}
return users
}
func (uc *UserCacheType) GetMaintainerUsers() []*models.User {
uc.RLock()
defer uc.RUnlock()
var users []*models.User
for _, v := range uc.users {
if v.Maintainer == 1 {
users = append(users, v)
}
}
if users == nil {
users = []*models.User{}
}
return users
}
func (uc *UserCacheType) SyncUsers() {
err := uc.syncUsers()
if err != nil {
fmt.Println("failed to sync users:", err)
exit(1)
}
go uc.loopSyncUsers()
}
func (uc *UserCacheType) loopSyncUsers() {
duration := time.Duration(9000) * time.Millisecond
for {
time.Sleep(duration)
if err := uc.syncUsers(); err != nil {
logger.Warning("failed to sync users:", err)
}
}
}
func (uc *UserCacheType) syncUsers() error {
start := time.Now()
stat, err := models.UserStatistics(uc.ctx)
if err != nil {
return errors.WithMessage(err, "failed to exec UserStatistics")
}
if !uc.StatChanged(stat.Total, stat.LastUpdated) {
uc.stats.GaugeCronDuration.WithLabelValues("sync_users").Set(0)
uc.stats.GaugeSyncNumber.WithLabelValues("sync_users").Set(0)
logger.Debug("users not changed")
return nil
}
lst, err := models.UserGetAll(uc.ctx)
if err != nil {
return errors.WithMessage(err, "failed to exec UserGetAll")
}
m := make(map[int64]*models.User)
for i := 0; i < len(lst); i++ {
m[lst[i].Id] = lst[i]
}
uc.Set(m, stat.Total, stat.LastUpdated)
ms := time.Since(start).Milliseconds()
uc.stats.GaugeCronDuration.WithLabelValues("sync_users").Set(float64(ms))
uc.stats.GaugeSyncNumber.WithLabelValues("sync_users").Set(float64(len(m)))
logger.Infof("timer: sync users done, cost: %dms, number: %d", ms, len(m))
return nil
}