mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-11-28 05:00:26 +08:00
provides richer information for FE to use to display tools. also implements a full approve/deny flow for tools that require approval (readfile)
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
// Copyright 2025, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package ds
|
|
|
|
import "sync"
|
|
|
|
type SyncMap[T any] struct {
|
|
lock *sync.Mutex
|
|
m map[string]T
|
|
}
|
|
|
|
func MakeSyncMap[T any]() *SyncMap[T] {
|
|
return &SyncMap[T]{
|
|
lock: &sync.Mutex{},
|
|
m: make(map[string]T),
|
|
}
|
|
}
|
|
|
|
func (sm *SyncMap[T]) Set(key string, value T) {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
sm.m[key] = value
|
|
}
|
|
|
|
func (sm *SyncMap[T]) Get(key string) T {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
return sm.m[key]
|
|
}
|
|
|
|
func (sm *SyncMap[T]) GetEx(key string) (T, bool) {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
v, ok := sm.m[key]
|
|
return v, ok
|
|
}
|
|
|
|
func (sm *SyncMap[T]) Delete(key string) {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
delete(sm.m, key)
|
|
}
|
|
|
|
func (sm *SyncMap[T]) SetUnless(key string, value T) bool {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
if _, exists := sm.m[key]; exists {
|
|
return false
|
|
}
|
|
sm.m[key] = value
|
|
return true
|
|
}
|
|
|
|
func (sm *SyncMap[T]) TestAndSet(key string, newValue T, testFn func(T, bool) bool) bool {
|
|
sm.lock.Lock()
|
|
defer sm.lock.Unlock()
|
|
currentValue, exists := sm.m[key]
|
|
if testFn(currentValue, exists) {
|
|
sm.m[key] = newValue
|
|
return true
|
|
}
|
|
return false
|
|
}
|