1 Star 0 Fork 0

蒙蒙的男孩/eosc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
worker-data.go 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
蒙蒙的男孩 提交于 2024-01-10 13:49 . 重定义项目地址
package process_admin
import (
"encoding/json"
"gitee.com/meng_mengs_boys/eosc"
"gitee.com/meng_mengs_boys/eosc/log"
)
type WorkerDatas struct {
data eosc.Untyped[string, *WorkerInfo]
}
func (w *WorkerDatas) Get(id string) (eosc.IWorker, bool) {
info, has := w.GetInfo(id)
if has {
return info.worker, true
}
return nil, false
}
func NewWorkerDatas(initData map[string][]byte) *WorkerDatas {
data := &WorkerDatas{data: eosc.BuildUntyped[string, *WorkerInfo]()}
for id, d := range initData {
cf := new(eosc.WorkerConfig)
e := json.Unmarshal(d, cf)
if e != nil {
continue
}
data.Set(id, &WorkerInfo{
worker: nil,
config: cf,
attr: nil,
info: nil,
})
}
return data
}
func (w *WorkerDatas) Set(id string, v *WorkerInfo) {
log.DebugF("worker set:%s==>%v", id, v.config)
w.data.Set(id, v)
}
func (w *WorkerDatas) GetInfo(id string) (*WorkerInfo, bool) {
return w.data.Get(id)
}
func (w *WorkerDatas) Del(id string) (*WorkerInfo, bool) {
return w.data.Del(id)
}
func (w *WorkerDatas) List() []*WorkerInfo {
return w.data.List()
}
func (w *WorkerDatas) Keys() []string {
return w.data.Keys()
}
func (w *WorkerDatas) All() map[string]*WorkerInfo {
ds := w.data.All()
return ds
}
func (w *WorkerDatas) Clone() *WorkerDatas {
return &WorkerDatas{data: w.data.Clone()}
}
func (w *WorkerDatas) Count() int {
return w.data.Count()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/meng_mengs_boys/eosc.git
git@gitee.com:meng_mengs_boys/eosc.git
meng_mengs_boys
eosc
eosc
v1.15.4

搜索帮助