forked from premendrasingh/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registry.go
103 lines (88 loc) · 1.98 KB
/
registry.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
package harvester
import (
"errors"
"sync"
uuid "github.com/satori/go.uuid"
"github.com/elastic/beats/libbeat/logp"
)
// Registry struct manages (start / stop) a list of harvesters
type Registry struct {
sync.RWMutex
harvesters map[uuid.UUID]Harvester
wg sync.WaitGroup
done chan struct{}
}
// NewRegistry creates a new registry object
func NewRegistry() *Registry {
return &Registry{
harvesters: map[uuid.UUID]Harvester{},
done: make(chan struct{}),
}
}
func (r *Registry) remove(h Harvester) {
r.Lock()
defer r.Unlock()
delete(r.harvesters, h.ID())
}
func (r *Registry) add(h Harvester) {
r.Lock()
defer r.Unlock()
r.harvesters[h.ID()] = h
}
// Stop stops all harvesters in the registry
func (r *Registry) Stop() {
r.Lock()
defer func() {
r.Unlock()
r.WaitForCompletion()
}()
// Makes sure no new harvesters are added during stopping
close(r.done)
for _, hv := range r.harvesters {
go func(h Harvester) {
h.Stop()
}(hv)
}
}
// WaitForCompletion can be used to wait until all harvesters are stopped
func (r *Registry) WaitForCompletion() {
r.wg.Wait()
}
// Start starts the given harvester and add its to the registry
func (r *Registry) Start(h Harvester) error {
// Make sure stop is not called during starting a harvester
r.Lock()
defer r.Unlock()
// Make sure no new harvesters are started after stop was called
if !r.active() {
return errors.New("registry already stopped")
}
r.wg.Add(1)
go func() {
defer func() {
r.remove(h)
r.wg.Done()
}()
r.add(h)
// Starts harvester and picks the right type. In case type is not set, set it to default (log)
err := h.Run()
if err != nil {
logp.Err("Error running prospector: %v", err)
}
}()
return nil
}
// Len returns the current number of harvesters in the registry
func (r *Registry) Len() uint64 {
r.RLock()
defer r.RUnlock()
return uint64(len(r.harvesters))
}
func (r *Registry) active() bool {
select {
case <-r.done:
return false
default:
return true
}
}