forked from meshery/meshery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration_helper.go
64 lines (54 loc) · 1.41 KB
/
configuration_helper.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
package models
import (
"sync"
"github.com/layer5io/meshery/server/helpers/utils"
)
type ConfigurationChannel struct {
ApplicationsChannel []chan struct{}
PatternsChannel []chan struct{}
FiltersChannel []chan struct{}
mx sync.Mutex
}
func NewConfigurationHelper() *ConfigurationChannel {
return &ConfigurationChannel{
ApplicationsChannel: make([]chan struct{}, 10),
PatternsChannel: make([]chan struct{}, 10),
FiltersChannel: make([]chan struct{}, 10),
}
}
func (c *ConfigurationChannel) SubscribeApplications(ch chan struct{}) {
c.mx.Lock()
defer c.mx.Unlock()
c.ApplicationsChannel = append(c.ApplicationsChannel, ch)
}
func (c *ConfigurationChannel) PublishApplications() {
for _, ch := range c.ApplicationsChannel {
if !utils.IsClosed(ch) {
ch <- struct{}{}
}
}
}
func (c *ConfigurationChannel) SubscribePatterns(ch chan struct{}) {
c.mx.Lock()
defer c.mx.Unlock()
c.PatternsChannel = append(c.PatternsChannel, ch)
}
func (c *ConfigurationChannel) PublishPatterns() {
for _, ch := range c.PatternsChannel {
if !utils.IsClosed(ch) {
ch <- struct{}{}
}
}
}
func (c *ConfigurationChannel) SubscribeFilters(ch chan struct{}) {
c.mx.Lock()
defer c.mx.Unlock()
c.FiltersChannel = append(c.FiltersChannel, ch)
}
func (c *ConfigurationChannel) PublishFilters() {
for _, ch := range c.FiltersChannel {
if !utils.IsClosed(ch) {
ch <- struct{}{}
}
}
}