mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
52 lines
931 B
Go
52 lines
931 B
Go
package service
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
)
|
|
|
|
type MemoryService struct {
|
|
Slots map[string]interface{}
|
|
}
|
|
|
|
func NewMemoryService() *MemoryService {
|
|
return &MemoryService{
|
|
Slots: make(map[string]interface{}),
|
|
}
|
|
}
|
|
|
|
func (s *MemoryService) NewStore(id string, subIDs ...string) Store {
|
|
key := strings.Join(append([]string{id}, subIDs...), ":")
|
|
return &MemoryStore{
|
|
Key: key,
|
|
memory: s,
|
|
}
|
|
}
|
|
|
|
type MemoryStore struct {
|
|
Key string
|
|
memory *MemoryService
|
|
}
|
|
|
|
func (store *MemoryStore) Save(val interface{}) error {
|
|
store.memory.Slots[store.Key] = val
|
|
return nil
|
|
}
|
|
|
|
func (store *MemoryStore) Load(val interface{}) error {
|
|
v := reflect.ValueOf(val)
|
|
if data, ok := store.memory.Slots[store.Key]; ok {
|
|
dataRV := reflect.ValueOf(data)
|
|
v.Elem().Set(dataRV)
|
|
} else {
|
|
return ErrPersistenceNotExists
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (store *MemoryStore) Reset() error {
|
|
delete(store.memory.Slots, store.Key)
|
|
return nil
|
|
}
|