stillbox/pkg/gordio/nexus/nexus.go

85 lines
1.2 KiB
Go
Raw Normal View History

2024-08-04 00:55:28 -04:00
package nexus
import (
"sync"
2024-08-04 08:41:35 -04:00
2024-08-05 18:11:31 -04:00
"dynatron.me/x/stillbox/pkg/calls"
2024-08-04 08:41:35 -04:00
"dynatron.me/x/stillbox/pkg/pb"
2024-08-04 00:55:28 -04:00
)
type Nexus struct {
sync.RWMutex
clients map[*client]struct{}
*wsManager
2024-08-04 08:41:35 -04:00
callCh chan *calls.Call
2024-08-04 00:55:28 -04:00
}
type Registry interface {
NewClient(Connection) Client
Register(Client)
Unregister(Client)
}
func New() *Nexus {
n := &Nexus{
clients: make(map[*client]struct{}),
2024-08-04 10:56:46 -04:00
callCh: make(chan *calls.Call),
2024-08-04 00:55:28 -04:00
}
n.wsManager = newWsManager(n)
return n
}
2024-08-04 10:56:46 -04:00
func (n *Nexus) Go(done <-chan struct{}) {
2024-08-04 08:41:35 -04:00
for {
select {
case call, ok := <-n.callCh:
if !ok {
return
}
2024-08-04 14:55:15 -04:00
n.broadcastCallToClients(call)
2024-08-04 10:56:46 -04:00
case <-done:
return
2024-08-04 08:41:35 -04:00
}
}
}
2024-08-04 10:56:46 -04:00
func (n *Nexus) BroadcastCall(call *calls.Call) {
n.callCh <- call
}
func (n *Nexus) broadcastCallToClients(call *calls.Call) {
2024-08-04 08:41:35 -04:00
message := &pb.Message{
ToClientMessage: &pb.Message_Call{Call: call.ToPB()},
}
2024-08-04 14:55:15 -04:00
n.Lock()
defer n.Unlock()
2024-08-04 08:41:35 -04:00
for cl, _ := range n.clients {
2024-08-04 14:55:15 -04:00
if cl.Send(message) {
// we already hold the lock, and the channel is closed anyway
delete(n.clients, cl)
}
2024-08-04 08:41:35 -04:00
}
}
2024-08-04 00:55:28 -04:00
func (n *Nexus) Register(c Client) {
n.Lock()
defer n.Unlock()
n.clients[c.(*client)] = struct{}{}
}
func (n *Nexus) Unregister(c Client) {
n.Lock()
defer n.Unlock()
2024-08-04 08:41:35 -04:00
cl := c.(*client)
delete(n.clients, cl)
2024-08-04 00:55:28 -04:00
}