service/library/melody/hub.go

131 lines
2.8 KiB
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package melody
import (
2024-12-10 14:49:57 +08:00
"service/library/logger"
2023-12-21 22:17:40 +08:00
"sync"
)
type hub struct {
2024-12-10 14:49:57 +08:00
sidSessionMap map[string]*Session
2024-12-10 13:32:41 +08:00
sessionMap map[*Session]bool
midSessionsMap map[int64]map[*Session]struct{} // mid: map[session]{}
didSessionMap map[string]*Session // did: session
broadcast chan *CMsg
register chan *Session
unregister chan *Session
exit chan *CMsg
open bool
rwmutex *sync.RWMutex
2023-12-21 22:17:40 +08:00
}
func newHub() *hub {
return &hub{
2024-12-10 14:49:57 +08:00
sidSessionMap: make(map[string]*Session),
2024-12-10 13:32:41 +08:00
sessionMap: make(map[*Session]bool),
midSessionsMap: make(map[int64]map[*Session]struct{}, 1024*20),
didSessionMap: make(map[string]*Session),
broadcast: make(chan *CMsg),
register: make(chan *Session),
unregister: make(chan *Session),
exit: make(chan *CMsg),
open: true,
rwmutex: &sync.RWMutex{},
2023-12-21 22:17:40 +08:00
}
}
func (h *hub) run() {
loop:
for {
select {
case s := <-h.register:
h.rwmutex.Lock()
2024-12-10 13:32:41 +08:00
h.sessionMap[s] = true
h.didSessionMap[s.Did] = s
if h.midSessionsMap[s.Mid] == nil {
h.midSessionsMap[s.Mid] = map[*Session]struct{}{s: {}}
} else {
h.midSessionsMap[s.Mid][s] = struct{}{}
}
2023-12-21 22:17:40 +08:00
h.rwmutex.Unlock()
2024-12-10 14:49:57 +08:00
for mid, sMap := range h.midSessionsMap {
logger.Info("reg, mid: %v, len(s): %v", mid, len(sMap))
}
2023-12-21 22:17:40 +08:00
case s := <-h.unregister:
2024-12-10 13:32:41 +08:00
if _, ok := h.sessionMap[s]; ok {
2023-12-21 22:17:40 +08:00
h.rwmutex.Lock()
2024-12-10 13:32:41 +08:00
delete(h.sessionMap, s)
delete(h.didSessionMap, s.Did)
if len(h.midSessionsMap[s.Mid]) > 0 {
delete(h.midSessionsMap[s.Mid], s)
if len(h.midSessionsMap[s.Mid]) <= 0 {
delete(h.midSessionsMap, s.Mid)
}
}
2023-12-21 22:17:40 +08:00
h.rwmutex.Unlock()
2024-12-10 14:49:57 +08:00
for mid, sMap := range h.midSessionsMap {
logger.Info("unreg, mid: %v, len(s): %v", mid, len(sMap))
}
2023-12-21 22:17:40 +08:00
}
case m := <-h.broadcast:
h.rwmutex.RLock()
2024-12-10 13:32:41 +08:00
for s := range h.sessionMap {
2023-12-21 22:17:40 +08:00
if m.filter != nil {
if m.filter(s) {
s.writeMessage(m)
}
} else {
s.writeMessage(m)
}
}
h.rwmutex.RUnlock()
case m := <-h.exit:
h.rwmutex.Lock()
2024-12-10 13:32:41 +08:00
for s := range h.sessionMap {
2023-12-21 22:17:40 +08:00
s.writeMessage(m)
2024-12-10 13:32:41 +08:00
delete(h.sessionMap, s)
2023-12-21 22:17:40 +08:00
s.Close()
}
h.open = false
h.rwmutex.Unlock()
break loop
}
}
}
func (h *hub) closed() bool {
h.rwmutex.RLock()
defer h.rwmutex.RUnlock()
return !h.open
}
func (h *hub) len() int {
h.rwmutex.RLock()
defer h.rwmutex.RUnlock()
2024-12-10 13:32:41 +08:00
return len(h.sessionMap)
2023-12-21 22:17:40 +08:00
}
func (h *hub) all() []*Session {
h.rwmutex.RLock()
defer h.rwmutex.RUnlock()
2024-12-10 13:32:41 +08:00
s := make([]*Session, 0, len(h.sessionMap))
for k := range h.sessionMap {
2023-12-21 22:17:40 +08:00
s = append(s, k)
}
return s
}
2024-10-12 16:28:53 +08:00
2024-12-10 14:49:57 +08:00
func (h *hub) updateSession(s *Session) {
if len(s.Sid) > 0 {
h.rwmutex.Lock()
h.sidSessionMap[s.Sid] = s
h.rwmutex.Unlock()
2024-10-12 16:28:53 +08:00
}
2024-12-10 14:49:57 +08:00
for i, v := range h.sidSessionMap {
logger.Info("%d, %v", i, v.Sid)
2024-12-10 13:32:41 +08:00
}
}