ntfy/server/topic.go

63 lines
1.2 KiB
Go
Raw Normal View History

2021-10-23 14:26:01 +13:00
package server
import (
"log"
"math/rand"
"sync"
"time"
)
2021-10-24 15:49:50 +13:00
// topic represents a channel to which subscribers can subscribe, and publishers
// can publish a message
2021-10-23 14:26:01 +13:00
type topic struct {
id string
last time.Time
2021-11-03 14:09:49 +13:00
subscribers map[int]subscriber
2021-10-24 08:22:17 +13:00
mu sync.Mutex
2021-10-23 14:26:01 +13:00
}
2021-10-24 15:49:50 +13:00
// subscriber is a function that is called for every new message on a topic
2021-10-23 14:26:01 +13:00
type subscriber func(msg *message) error
// newTopic creates a new topic
2021-11-03 14:09:49 +13:00
func newTopic(id string, last time.Time) *topic {
2021-10-23 14:26:01 +13:00
return &topic{
id: id,
2021-11-03 14:09:49 +13:00
last: last,
2021-10-23 14:26:01 +13:00
subscribers: make(map[int]subscriber),
}
}
func (t *topic) Subscribe(s subscriber) int {
t.mu.Lock()
defer t.mu.Unlock()
subscriberID := rand.Int()
t.subscribers[subscriberID] = s
t.last = time.Now()
return subscriberID
}
2021-10-30 06:58:14 +13:00
func (t *topic) Unsubscribe(id int) {
2021-10-23 14:26:01 +13:00
t.mu.Lock()
defer t.mu.Unlock()
delete(t.subscribers, id)
}
func (t *topic) Publish(m *message) error {
t.mu.Lock()
defer t.mu.Unlock()
t.last = time.Now()
for _, s := range t.subscribers {
if err := s(m); err != nil {
log.Printf("error publishing message to subscriber")
2021-10-23 14:26:01 +13:00
}
}
return nil
}
2021-11-03 14:09:49 +13:00
func (t *topic) Subscribers() int {
2021-10-30 06:58:14 +13:00
t.mu.Lock()
defer t.mu.Unlock()
2021-11-03 14:09:49 +13:00
return len(t.subscribers)
2021-10-23 14:26:01 +13:00
}