ntfy/server/topic.go

80 lines
1.6 KiB
Go
Raw Normal View History

2021-10-23 14:26:01 +13:00
package server
import (
"context"
"errors"
"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
subscribers map[int]subscriber
2021-10-24 08:22:17 +13:00
messages int
2021-10-23 14:26:01 +13:00
last time.Time
2021-10-24 08:22:17 +13:00
ctx context.Context
cancel context.CancelFunc
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-10-23 14:26:01 +13:00
func newTopic(id string) *topic {
ctx, cancel := context.WithCancel(context.Background())
return &topic{
id: id,
subscribers: make(map[int]subscriber),
last: time.Now(),
ctx: ctx,
cancel: cancel,
}
}
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
}
func (t *topic) Unsubscribe(id int) int {
2021-10-23 14:26:01 +13:00
t.mu.Lock()
defer t.mu.Unlock()
delete(t.subscribers, id)
return len(t.subscribers)
2021-10-23 14:26:01 +13:00
}
func (t *topic) Publish(m *message) error {
t.mu.Lock()
defer t.mu.Unlock()
if len(t.subscribers) == 0 {
return errors.New("no subscribers")
}
t.last = time.Now()
t.messages++
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
}
func (t *topic) Stats() (subscribers int, messages int) {
t.mu.Lock()
defer t.mu.Unlock()
return len(t.subscribers), t.messages
}
2021-10-23 14:26:01 +13:00
func (t *topic) Close() {
t.cancel()
}