1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
meta.go 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
package meta
import (
"sync"
"github.com/elastic/beats/libbeat/common"
)
// Map stores a map of id -> MapStrPointer
type Map struct {
mutex sync.RWMutex
meta map[uint64]common.MapStrPointer
}
// NewMap instantiates and returns a new meta.Map
func NewMap() *Map {
return &Map{
meta: make(map[uint64]common.MapStrPointer),
}
}
// Store inserts or updates given meta under the given id. Then it returns a MapStrPointer to it
func (m *Map) Store(id uint64, meta common.MapStr) common.MapStrPointer {
m.mutex.Lock()
defer m.mutex.Unlock()
if meta == nil {
return common.MapStrPointer{}
}
p, ok := m.meta[id]
if !ok {
// create
p = common.NewMapStrPointer(meta)
m.meta[id] = p
} else {
// update
p.Set(meta)
}
return p
}
// Remove meta stored under the given id
func (m *Map) Remove(id uint64) {
m.mutex.Lock()
defer m.mutex.Unlock()
delete(m.meta, id)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v6.2.0

搜索帮助