| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package server
- import (
- "heckel.io/ntfy/log"
- "math/rand"
- "sync"
- )
- // topic represents a channel to which subscribers can subscribe, and publishers
- // can publish a message
- type topic struct {
- ID string
- subscribers map[int]subscriber
- mu sync.Mutex
- }
- // subscriber is a function that is called for every new message on a topic
- type subscriber func(v *visitor, msg *message) error
- // newTopic creates a new topic
- func newTopic(id string) *topic {
- return &topic{
- ID: id,
- subscribers: make(map[int]subscriber),
- }
- }
- // Subscribe subscribes to this topic
- func (t *topic) Subscribe(s subscriber) int {
- t.mu.Lock()
- defer t.mu.Unlock()
- subscriberID := rand.Int()
- t.subscribers[subscriberID] = s
- return subscriberID
- }
- // Unsubscribe removes the subscription from the list of subscribers
- func (t *topic) Unsubscribe(id int) {
- t.mu.Lock()
- defer t.mu.Unlock()
- delete(t.subscribers, id)
- }
- // Publish asynchronously publishes to all subscribers
- func (t *topic) Publish(v *visitor, m *message) error {
- go func() {
- t.mu.Lock()
- defer t.mu.Unlock()
- if len(t.subscribers) > 0 {
- log.Debug("%s Forwarding to %d subscriber(s)", logMessagePrefix(v, m), len(t.subscribers))
- for _, s := range t.subscribers {
- if err := s(v, m); err != nil {
- log.Warn("%s Error forwarding to subscriber", logMessagePrefix(v, m))
- }
- }
- } else {
- log.Trace("%s No stream or WebSocket subscribers, not forwarding", logMessagePrefix(v, m))
- }
- }()
- return nil
- }
- // Subscribers returns the number of subscribers to this topic
- func (t *topic) Subscribers() int {
- t.mu.Lock()
- defer t.mu.Unlock()
- return len(t.subscribers)
- }
|