This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
forked from dfuse-io/dfuse-eosio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commonhub.go
146 lines (125 loc) · 3.48 KB
/
commonhub.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Copyright 2020 dfuse Platform Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eosws
import (
"context"
"fmt"
"sync"
"github.com/streamingfast/logging"
"github.com/streamingfast/derr"
"github.com/dfuse-io/dfuse-eosio/eosws/metrics"
"github.com/dfuse-io/dfuse-eosio/eosws/wsmsg"
"github.com/streamingfast/shutter"
)
type CommonHub struct {
subscribersLock sync.Mutex
subscribers []*bufferedEmitter
lastOutgoingMsgLock sync.Mutex
lastOutgoingMsg wsmsg.OutgoingMessager
name string
}
func (c *CommonHub) SetLast(msg wsmsg.OutgoingMessager) {
c.lastOutgoingMsgLock.Lock()
c.lastOutgoingMsg = msg
c.lastOutgoingMsgLock.Unlock()
}
func (c *CommonHub) Last() wsmsg.OutgoingMessager {
c.lastOutgoingMsgLock.Lock()
defer c.lastOutgoingMsgLock.Unlock()
return c.lastOutgoingMsg
}
func (c *CommonHub) Subscribe(ctx context.Context, msg wsmsg.IncomingMessager, ws *WSConn) {
emitter := newBufferedEmitter(msg.GetReqID(), ws)
err := ws.RegisterListener(ctx, msg.GetReqID(), func() error {
c.Unsubscribe(ctx, emitter)
metrics.CurrentListeners.Dec(c.name)
emitter.Shutdown(nil)
return nil
})
if err != nil {
ws.EmitErrorReply(ctx, msg, derr.Wrap(err, "registration of listener failed"))
return
}
c.subscribersLock.Lock()
c.subscribers = append(c.subscribers, emitter)
c.subscribersLock.Unlock()
logging.Logger(ctx, zlog).Debug("subscribing emitter to hub")
out := c.Last()
if out != nil {
emitter.Emit(out)
}
metrics.IncListeners(c.name)
go emitter.Launch(ctx)
}
func (c *CommonHub) EmitAll(ctx context.Context, msg wsmsg.OutgoingMessager) {
c.subscribersLock.Lock()
subscribers := c.subscribers
c.subscribersLock.Unlock()
for _, emitter := range subscribers {
emitter.Emit(msg)
}
}
func (c *CommonHub) Unsubscribe(ctx context.Context, removeEmitter *bufferedEmitter) {
c.subscribersLock.Lock()
defer c.subscribersLock.Unlock()
var newSubscribers []*bufferedEmitter
for _, emitter := range c.subscribers {
if emitter != removeEmitter {
newSubscribers = append(newSubscribers, emitter)
} else {
logging.Logger(ctx, zlog).Debug("removing emitter from hub")
}
}
c.subscribers = newSubscribers
}
type bufferedEmitter struct {
*shutter.Shutter
reqID string
ws *WSConn
c chan wsmsg.OutgoingMessager
}
func (e *bufferedEmitter) Launch(ctx context.Context) {
logging.Logger(ctx, zlog).Debug("launching buffered emitter")
for {
select {
case <-e.Terminating():
return
case msg := <-e.c:
if e.IsTerminating() {
return
}
msg.SetReqID(e.reqID)
e.ws.Emit(ctx, msg)
}
}
}
func newBufferedEmitter(reqID string, ws *WSConn) *bufferedEmitter {
e := &bufferedEmitter{
Shutter: shutter.New(),
reqID: reqID,
ws: ws,
c: make(chan wsmsg.OutgoingMessager, 200),
}
return e
}
func (e *bufferedEmitter) Emit(msg wsmsg.OutgoingMessager) {
if e.IsTerminating() {
return
}
if len(e.c) > 199 {
e.ws.Shutdown(fmt.Errorf("buffer is too full in buffered emitter"))
return
}
e.c <- msg
}