forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodeimpl.go
228 lines (186 loc) · 5.25 KB
/
nodeimpl.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package bot
import (
"os"
"runtime/debug"
"sync"
"time"
"github.com/jonas747/dshardorchestrator"
"github.com/jonas747/dshardorchestrator/node"
"github.com/jonas747/dstate"
"github.com/jonas747/retryableredis"
"github.com/jonas747/yagpdb/common"
)
func init() {
dshardorchestrator.RegisterUserEvent("GuildState", EvtGuildState, dstate.GuildState{})
}
// Implementation of DShardOrchestrator/Node/Interface
var _ node.Interface = (*NodeImpl)(nil)
type NodeImpl struct {
lastTimeFreedMemory time.Time
lastTimeFreedMemorymu sync.Mutex
}
func (n *NodeImpl) SessionEstablished(info node.SessionInfo) {
if info.TotalShards == 0 {
panic("got total shard count of 0?!!?")
}
if totalShardCount == 0 {
totalShardCount = info.TotalShards
ShardManager.SetNumShards(totalShardCount)
EventLogger.init(info.TotalShards)
go EventLogger.run()
err := common.RedisPool.Do(retryableredis.FlatCmd(nil, "SET", "yagpdb_total_shards", info.TotalShards))
if err != nil {
logger.WithError(err).Error("failed setting shard count")
}
err = ShardManager.Init()
if err != nil {
panic("failed initializing discord sessions: " + err.Error())
}
InitPlugins()
}
}
func (n *NodeImpl) StopShard(shard int) (sessionID string, sequence int64) {
processShardsLock.Lock()
if !common.ContainsIntSlice(processShards, shard) {
processShardsLock.Unlock()
return "", 0
}
for i, v := range processShards {
if v == shard {
processShards = append(processShards[:i], processShards[i+1:]...)
break
}
}
processShardsLock.Unlock()
n.lastTimeFreedMemorymu.Lock()
freeMem := false
if time.Since(n.lastTimeFreedMemory) > time.Minute {
freeMem = true
n.lastTimeFreedMemory = time.Now()
}
n.lastTimeFreedMemorymu.Unlock()
if freeMem {
debug.FreeOSMemory()
}
err := ShardManager.Sessions[shard].Close()
if err != nil {
logger.WithError(err).Error("failed stopping shard: ", err)
}
sessionID, sequence = ShardManager.Sessions[shard].GatewayManager.GetSessionInfo()
return
}
func (n *NodeImpl) StartShard(shard int, sessionID string, sequence int64) {
processShardsLock.Lock()
if common.ContainsIntSlice(processShards, shard) {
processShardsLock.Unlock()
return
}
processShards = append(processShards, shard)
processShardsLock.Unlock()
ShardManager.Sessions[shard].GatewayManager.SetSessionInfo(sessionID, sequence)
err := ShardManager.Sessions[shard].GatewayManager.Open()
if err != nil {
logger.WithError(err).Error("Failed migrating shard")
}
}
// called when the bot should shut down, make sure to send EvtShutdown when completed
func (n *NodeImpl) Shutdown() {
var wg sync.WaitGroup
Stop(&wg)
wg.Wait()
os.Exit(0)
}
func (n *NodeImpl) InitializeShardTransferFrom(shard int) (sessionID string, sequence int64) {
return n.StopShard(shard)
}
func (n *NodeImpl) InitializeShardTransferTo(shard int, sessionID string, sequence int64) {
// this isn't actually needed, as startshard will be called with the same session details
}
const (
EvtGuildState dshardorchestrator.EventType = 101
)
// this should return when all user events has been sent, with the number of user events sent
func (n *NodeImpl) StartShardTransferFrom(shard int) (numEventsSent int) {
return n.SendGuilds(shard)
}
func (n *NodeImpl) HandleUserEvent(evt dshardorchestrator.EventType, data interface{}) {
if evt == EvtGuildState {
dataCast := data.(*dstate.GuildState)
n.LoadGuildState(dataCast)
}
for _, v := range common.Plugins {
if migrator, ok := v.(ShardMigrationReceiver); ok {
migrator.ShardMigrationReceive(evt, data)
}
}
}
func (n *NodeImpl) SendGuilds(shard int) int {
started := time.Now()
totalSentEvents := 0
// start with the plugins
for _, v := range common.Plugins {
if migrator, ok := v.(ShardMigrationSender); ok {
totalSentEvents += migrator.ShardMigrationSend(shard)
}
}
// Send the guilds on this shard
guildsToSend := make([]*dstate.GuildState, 0)
State.RLock()
for _, v := range State.Guilds {
shardID := GuildShardID(v.ID)
if int(shardID) == shard {
guildsToSend = append(guildsToSend, v)
}
}
State.RUnlock()
workChan := make(chan *dstate.GuildState)
var wg sync.WaitGroup
// To speed this up we use multiple workers, this has to be done in a relatively short timespan otherwise we won't be able to resume
worker := func() {
for gs := range workChan {
State.Lock()
delete(State.Guilds, gs.ID)
State.Unlock()
gs.RLock()
channels := make([]int64, 0, len(gs.Channels))
for _, c := range gs.Channels {
channels = append(channels, c.ID)
}
NodeConn.SendLogErr(EvtGuildState, gs, true)
gs.RUnlock()
State.Lock()
for _, c := range channels {
delete(State.Channels, c)
}
State.Unlock()
}
wg.Done()
}
for i := 0; i < 10; i++ {
wg.Add(1)
go worker()
}
for _, v := range guildsToSend {
workChan <- v
}
close(workChan)
wg.Wait()
logger.Println("Took ", time.Since(started), " to transfer ", len(guildsToSend), "guildstates")
totalSentEvents += len(guildsToSend)
return totalSentEvents
}
func (n *NodeImpl) LoadGuildState(gs *dstate.GuildState) {
for _, c := range gs.Channels {
c.Owner = gs
c.Guild = gs
}
for _, m := range gs.Members {
m.Guild = gs
}
State.Lock()
State.Guilds[gs.ID] = gs
for _, c := range gs.Channels {
State.Channels[c.ID] = c
}
State.Unlock()
}