-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacility.go
More file actions
265 lines (238 loc) · 5.68 KB
/
facility.go
File metadata and controls
265 lines (238 loc) · 5.68 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
package main
import (
"log"
"strings"
"sync"
"time"
"github.com/garyburd/redigo/redis"
)
const (
messagesChanSize = 10
)
// MessageProvider is source of messages
type MessageProvider interface {
Channel() MessageChan
}
// RedisMessageProvider implements MessageProvider
type RedisMessageProvider struct {
conn redis.PubSubConn
key string
messages MessageChan
}
type RedisFactory struct {
conn redis.PubSubConn
key string
messages map[string]MessageChan
facilities Facilities
access sync.Locker // lock for clients
}
func NewRedisFactory() (*RedisFactory, error) {
f := new(RedisFactory)
if err := f.connect(); err != nil {
return nil, err
}
f.access = new(sync.Mutex)
f.messages = make(map[string]MessageChan)
f.facilities = make(Facilities)
go f.loop()
go f.gc()
return f, nil
}
func (f *RedisFactory) connect() error {
conn, err := redis.Dial(redisNetwork, redisAddr)
if err != nil {
return err
}
// selecting database
_, err = conn.Do("select", redisDatabase)
if err != nil {
return err
}
psc := redis.PubSubConn{Conn: conn}
log.Println(redisNetwork, redisAddr, redisDatabase)
f.conn = psc
return nil
}
func (p *RedisFactory) Facility(name string) *Facility {
p.access.Lock()
facility, ok := p.facilities[name]
if !ok {
key := getFacilityKey(name)
log.Println("listening", key)
if err := p.conn.Subscribe(key); err != nil {
panic(err)
}
messages := make(chan Message, messagesChanSize)
facility = new(Facility)
facility.channel = messages
facility.clients = make(Clients)
facility.access = new(sync.Mutex)
facility.name = name
p.messages[key] = messages
go facility.loop()
p.facilities[name] = facility
}
p.access.Unlock()
return facility
}
const (
gcTime = time.Second
)
func (p RedisFactory) gc() {
ticker := time.NewTicker(gcTime)
for _ = range ticker.C {
p.access.Lock()
for _, f := range p.facilities {
if len(f.clients) == 0 {
p.Remove(f.name)
}
}
p.access.Unlock()
}
}
func (p RedisFactory) loop() {
for {
switch v := p.conn.Receive().(type) {
case redis.Message:
log.Println(v.Channel, v.Data)
messages, ok := p.messages[v.Channel]
if !ok {
log.Println(v.Channel, "not found in channels")
continue
}
messages <- v.Data
case error:
if err := p.connect(); err != nil {
log.Println("RedisMessageProvider.loop: connect", err)
}
time.Sleep(attemptWait)
}
}
}
func (p *RedisFactory) Remove(name string) {
key := getFacilityKey(name)
delete(p.facilities, name)
delete(p.messages, key)
p.conn.Unsubscribe(key)
}
func (p *RedisFactory) RemoveClient(f *Facility, c MessageChan) {
f.access.Lock()
p.access.Lock()
delete(f.clients, c)
close(c)
if len(f.clients) == 0 {
p.Remove(f.name)
close(f.channel)
}
p.access.Unlock()
f.access.Unlock()
}
func getFacilityKey(name string) string {
return strings.Join([]string{redisPrefix, facilityPrefix, name}, keySeparator)
}
func (p *RedisMessageProvider) connect() error {
conn, err := redis.Dial(redisNetwork, redisAddr)
if err != nil {
return err
}
// selecting database
_, err = conn.Do("select", redisDatabase)
if err != nil {
return err
}
psc := redis.PubSubConn{Conn: conn}
log.Println(redisAddr, redisDatabase, p.key)
if err := psc.Subscribe(p.key); err != nil {
return err
}
p.conn = psc
return nil
}
func (p RedisMessageProvider) loop() {
for {
switch v := p.conn.Receive().(type) {
case redis.Message:
p.messages <- v.Data
case error:
if err := p.connect(); err != nil {
log.Println("RedisMessageProvider.loop: connect", err)
}
time.Sleep(attemptWait)
}
}
}
// Channel returns MessageChan with messages from redis channel
func (p RedisMessageProvider) Channel() MessageChan {
return p.messages
}
// NewRedisProvider creates new redis connection and sends new messages
// to channel
func NewRedisProvider(name string) MessageProvider {
p := &RedisMessageProvider{key: name}
p.messages = make(MessageChan)
if err := p.connect(); err != nil {
panic(err)
}
go p.loop()
return p
}
// Facility represents channel, which users can listen
// and server can broadcast message to all subscribed users
type Facility struct {
name string // name of facility
channel MessageChan // broadcast channel
clients Clients // client channels
access sync.Locker // lock for clients
provider MessageProvider
}
// NewFacility creates facility, starts redis and broadcast loops
// and returns initialized *Facility
func NewFacility(name string, provider MessageProvider) *Facility {
f := new(Facility)
f.channel = provider.Channel()
f.clients = make(Clients)
f.access = new(sync.Mutex)
f.name = name
go f.loop()
return f
}
// NewRedisFacility creates facility with redis provider
func NewRedisFacility(name string) *Facility {
key := strings.Join([]string{redisPrefix, facilityPrefix, name}, keySeparator)
provider := NewRedisProvider(key)
return NewFacility(name, provider)
}
// broadcast loop
func (f *Facility) loop() {
// for every message in channel
for s := range f.channel {
log.Printf("[%s] broadcasting", f.name)
// async broadcast to all clients of facility
// locking changes to client list
f.access.Lock()
for client := range f.clients {
client <- s
}
f.access.Unlock()
log.Printf("[%s] broadcasted", f.name)
}
}
// Get creates new subscription channel and returns it
// adding it to facility clients
func (f *Facility) Get() (m MessageChan) {
if f == nil {
panic("facility is nil")
}
m = make(MessageChan)
f.access.Lock()
f.clients[m] = true
f.access.Unlock()
return m
}
// Remove removes channel from facility clients and closes it
func (f *Facility) Remove(m MessageChan) {
f.access.Lock()
delete(f.clients, m)
f.access.Unlock()
close(m)
}