2023-06-21 05:29:52 -04:00
|
|
|
package notifier
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
|
2023-06-29 06:20:22 -04:00
|
|
|
"github.com/juanfont/headscale/hscontrol/types"
|
2023-06-21 05:29:52 -04:00
|
|
|
"github.com/juanfont/headscale/hscontrol/util"
|
2023-07-24 02:58:51 -04:00
|
|
|
"github.com/rs/zerolog/log"
|
2023-06-21 05:29:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Notifier struct {
|
2023-09-11 07:08:44 -04:00
|
|
|
l sync.RWMutex
|
2023-06-29 06:20:22 -04:00
|
|
|
nodes map[string]chan<- types.StateUpdate
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewNotifier() *Notifier {
|
|
|
|
return &Notifier{}
|
|
|
|
}
|
|
|
|
|
2023-06-29 06:20:22 -04:00
|
|
|
func (n *Notifier) AddNode(machineKey string, c chan<- types.StateUpdate) {
|
2023-09-11 07:08:44 -04:00
|
|
|
log.Trace().Caller().Str("key", machineKey).Msg("acquiring lock to add node")
|
|
|
|
defer log.Trace().Caller().Str("key", machineKey).Msg("releasing lock to add node")
|
|
|
|
|
2023-06-21 05:29:52 -04:00
|
|
|
n.l.Lock()
|
|
|
|
defer n.l.Unlock()
|
|
|
|
|
|
|
|
if n.nodes == nil {
|
2023-06-29 06:20:22 -04:00
|
|
|
n.nodes = make(map[string]chan<- types.StateUpdate)
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
n.nodes[machineKey] = c
|
2023-07-24 02:58:51 -04:00
|
|
|
|
|
|
|
log.Trace().
|
|
|
|
Str("machine_key", machineKey).
|
|
|
|
Int("open_chans", len(n.nodes)).
|
|
|
|
Msg("Added new channel")
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Notifier) RemoveNode(machineKey string) {
|
2023-09-11 07:08:44 -04:00
|
|
|
log.Trace().Caller().Str("key", machineKey).Msg("acquiring lock to remove node")
|
|
|
|
defer log.Trace().Caller().Str("key", machineKey).Msg("releasing lock to remove node")
|
|
|
|
|
2023-06-21 05:29:52 -04:00
|
|
|
n.l.Lock()
|
|
|
|
defer n.l.Unlock()
|
|
|
|
|
|
|
|
if n.nodes == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(n.nodes, machineKey)
|
2023-07-24 02:58:51 -04:00
|
|
|
|
|
|
|
log.Trace().
|
|
|
|
Str("machine_key", machineKey).
|
|
|
|
Int("open_chans", len(n.nodes)).
|
|
|
|
Msg("Removed channel")
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
|
2023-06-29 06:20:22 -04:00
|
|
|
func (n *Notifier) NotifyAll(update types.StateUpdate) {
|
|
|
|
n.NotifyWithIgnore(update)
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
|
2023-06-29 06:20:22 -04:00
|
|
|
func (n *Notifier) NotifyWithIgnore(update types.StateUpdate, ignore ...string) {
|
2023-09-11 07:08:44 -04:00
|
|
|
log.Trace().Caller().Interface("type", update.Type).Msg("acquiring lock to notify")
|
|
|
|
defer log.Trace().
|
|
|
|
Caller().
|
|
|
|
Interface("type", update.Type).
|
|
|
|
Msg("releasing lock, finished notifing")
|
|
|
|
|
|
|
|
n.l.RLock()
|
|
|
|
defer n.l.RUnlock()
|
2023-06-21 05:29:52 -04:00
|
|
|
|
|
|
|
for key, c := range n.nodes {
|
|
|
|
if util.IsStringInSlice(ignore, key) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2023-09-11 07:08:44 -04:00
|
|
|
log.Trace().Caller().Str("machine", key).Strs("ignoring", ignore).Msg("sending update")
|
2023-06-29 06:20:22 -04:00
|
|
|
c <- update
|
2023-06-21 05:29:52 -04:00
|
|
|
}
|
|
|
|
}
|