service/library/melody/hub.go

142 lines
3.0 KiB
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package melody
import (
2024-10-12 16:28:53 +08:00
"fmt"
2023-12-21 22:17:40 +08:00
"sync"
)
type hub struct {
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 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()
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()
}
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
func (h *hub) getSessionBySid(sid string) *Session {
2024-12-10 13:32:41 +08:00
return h.sidSessionMap[sid]
2024-10-12 16:28:53 +08:00
}
func (h *hub) getSessionByMid(mid int64) *Session {
2024-12-10 13:32:41 +08:00
return h.midSessionsMap[mid]
2024-10-12 16:28:53 +08:00
}
func (h *hub) mustGetSession(sid string, mid int64) (*Session, error) {
sessSid := h.getSessionBySid(sid)
if sessSid != nil {
return sessSid, nil
}
sessMid := h.getSessionByMid(mid)
if sessMid != nil {
return sessMid, nil
}
return nil, fmt.Errorf("get session fail")
}
2024-12-10 13:32:41 +08:00
func (h *hub) midSessions(mid int64) ([]*Session, error) {
sids := h.midSidsMap[mid]
if len(sids) > 0 {
sessions := make([]*Session, 0)
for sid := range sids {
sessions = append(sessions, h.sidSessionMap[sid])
}
return sessions, nil
}
return nil, fmt.Errorf("get mid sessionMap fail")
}