1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
registry.go 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
package harvester
import (
"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) {
// 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
}
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)
}
}()
}
// 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
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.0.0-rc2

搜索帮助