forked from dunglas/mercure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transport.go
85 lines (66 loc) · 2.29 KB
/
transport.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package mercure
import (
"errors"
"fmt"
"net/url"
"sync"
)
// EarliestLastEventID is the reserved value representing the earliest available event id.
const EarliestLastEventID = "earliest"
// TransportFactory is the factory to initialize a new transport.
type TransportFactory = func(u *url.URL, l Logger, tss *TopicSelectorStore) (Transport, error)
var (
transportFactories = make(map[string]TransportFactory) //nolint:gochecknoglobals
transportFactoriesMu sync.RWMutex //nolint:gochecknoglobals
)
func RegisterTransportFactory(scheme string, factory TransportFactory) {
transportFactoriesMu.Lock()
transportFactories[scheme] = factory
transportFactoriesMu.Unlock()
}
func NewTransport(u *url.URL, l Logger, tss *TopicSelectorStore) (Transport, error) {
transportFactoriesMu.RLock()
f, ok := transportFactories[u.Scheme]
transportFactoriesMu.RUnlock()
if !ok {
return nil, &ErrTransport{dsn: u.Redacted(), msg: "no such transport available"}
}
return f(u, l, nil)
}
// Transport provides methods to dispatch and persist updates.
type Transport interface {
// Dispatch dispatches an update to all subscribers.
Dispatch(update *Update) error
// AddSubscriber adds a new subscriber to the transport.
AddSubscriber(s *Subscriber) error
// Close closes the Transport.
Close() error
}
// TransportSubscribers provide a method to retrieve the list of active subscribers.
type TransportSubscribers interface {
// GetSubscribers gets the last event ID and the list of active subscribers at this time.
GetSubscribers() (string, []*Subscriber, error)
}
// ErrClosedTransport is returned by the Transport's Dispatch and AddSubscriber methods after a call to Close.
var ErrClosedTransport = errors.New("hub: read/write on closed Transport")
// ErrTransport is returned when the Transport's DSN is invalid.
type ErrTransport struct {
dsn string
msg string
err error
}
func (e *ErrTransport) Error() string {
if e.msg == "" {
if e.err == nil {
return fmt.Sprintf("%q: invalid transport", e.dsn)
}
return fmt.Sprintf("%q: invalid transport: %s", e.dsn, e.err)
}
if e.err == nil {
return fmt.Sprintf("%q: invalid transport: %s", e.dsn, e.msg)
}
return fmt.Sprintf("%q: %s: invalid transport: %s", e.dsn, e.msg, e.err)
}
func (e *ErrTransport) Unwrap() error {
return e.err
}