open-nomad/drivers/qemu/state.go

34 lines
568 B
Go
Raw Normal View History

2018-10-17 16:43:15 +00:00
package qemu
import (
"sync"
)
type taskStore struct {
2018-10-31 18:53:37 +00:00
store map[string]*taskHandle
2018-10-17 16:43:15 +00:00
lock sync.RWMutex
}
func newTaskStore() *taskStore {
2018-10-31 18:53:37 +00:00
return &taskStore{store: map[string]*taskHandle{}}
2018-10-17 16:43:15 +00:00
}
2018-10-31 18:53:37 +00:00
func (ts *taskStore) Set(id string, handle *taskHandle) {
2018-10-17 16:43:15 +00:00
ts.lock.Lock()
defer ts.lock.Unlock()
ts.store[id] = handle
}
2018-10-31 18:53:37 +00:00
func (ts *taskStore) Get(id string) (*taskHandle, bool) {
2018-10-17 16:43:15 +00:00
ts.lock.RLock()
defer ts.lock.RUnlock()
t, ok := ts.store[id]
return t, ok
}
func (ts *taskStore) Delete(id string) {
ts.lock.Lock()
defer ts.lock.Unlock()
delete(ts.store, id)
}