snow/aid/syncer.go

46 lines
742 B
Go
Raw Normal View History

2024-01-20 01:58:57 +00:00
package aid
import (
"sync"
)
type GenericSyncMap[T any] struct {
m sync.Map
}
2024-01-28 22:04:40 +00:00
func (s *GenericSyncMap[T]) Set(key string, value *T) {
2024-01-20 01:58:57 +00:00
s.m.Store(key, value)
}
func (s *GenericSyncMap[T]) Get(key string) (*T, bool) {
v, ok := s.m.Load(key)
if !ok {
return nil, false
}
return v.(*T), true
}
2024-01-29 23:46:22 +00:00
func (s *GenericSyncMap[T]) MustGet(key string) *T {
v, ok := s.m.Load(key)
if !ok {
return nil
}
return v.(*T)
}
2024-01-20 01:58:57 +00:00
func (s *GenericSyncMap[T]) Delete(key string) {
s.m.Delete(key)
}
func (s *GenericSyncMap[T]) Range(f func(key string, value *T) bool) {
s.m.Range(func(key, value interface{}) bool {
return f(key.(string), value.(*T))
})
2024-01-29 23:46:22 +00:00
}
func (s *GenericSyncMap[T]) Has(key string) bool {
_, ok := s.Get(key)
return ok
2024-01-20 01:58:57 +00:00
}