vendor tsgo
This commit is contained in:
98
tools/tsgo/internal/collections/syncmap.go
Normal file
98
tools/tsgo/internal/collections/syncmap.go
Normal file
@@ -0,0 +1,98 @@
|
||||
package collections
|
||||
|
||||
import (
|
||||
"iter"
|
||||
"sync"
|
||||
)
|
||||
|
||||
type SyncMap[K comparable, V any] struct {
|
||||
_ [0]K
|
||||
_ [0]V
|
||||
m sync.Map
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Load(key K) (value V, ok bool) {
|
||||
val, ok := s.m.Load(key)
|
||||
if !ok || val == nil {
|
||||
return value, ok
|
||||
}
|
||||
return val.(V), true
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Store(key K, value V) {
|
||||
s.m.Store(key, value)
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) LoadOrStore(key K, value V) (actual V, loaded bool) {
|
||||
actualAny, loaded := s.m.LoadOrStore(key, value)
|
||||
if actualAny == nil {
|
||||
return actual, loaded
|
||||
}
|
||||
|
||||
return actualAny.(V), loaded
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Delete(key K) {
|
||||
s.m.Delete(key)
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Clear() {
|
||||
s.m.Clear()
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Range(f func(key K, value V) bool) {
|
||||
s.m.Range(func(key, value any) bool {
|
||||
var k K
|
||||
if key != nil {
|
||||
k = key.(K)
|
||||
}
|
||||
|
||||
var v V
|
||||
if value != nil {
|
||||
v = value.(V)
|
||||
}
|
||||
|
||||
return f(k, v)
|
||||
})
|
||||
}
|
||||
|
||||
// Size returns the approximate number of items in the map.
|
||||
// Note that this is not a precise count, as the map may be modified
|
||||
// concurrently while this method is running.
|
||||
func (s *SyncMap[K, V]) Size() int {
|
||||
count := 0
|
||||
s.m.Range(func(_, _ any) bool {
|
||||
count++
|
||||
return true
|
||||
})
|
||||
return count
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) ToMap() map[K]V {
|
||||
m := make(map[K]V, s.Size())
|
||||
s.m.Range(func(key, value any) bool {
|
||||
m[key.(K)] = value.(V)
|
||||
return true
|
||||
})
|
||||
return m
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Keys() iter.Seq[K] {
|
||||
return func(yield func(K) bool) {
|
||||
s.m.Range(func(key, value any) bool {
|
||||
if !yield(key.(K)) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func (s *SyncMap[K, V]) Clone() *SyncMap[K, V] {
|
||||
clone := &SyncMap[K, V]{}
|
||||
s.m.Range(func(key, value any) bool {
|
||||
clone.m.Store(key, value)
|
||||
return true
|
||||
})
|
||||
return clone
|
||||
}
|
||||
Reference in New Issue
Block a user