1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
package item
import (
"fmt"
"os"
"path/filepath"
"sync"
"gopkg.in/yaml.v3"
"thehouseoficarus/internal/behavior"
)
type ItemStore struct {
mu sync.Mutex
dataDir string
pathIndex map[string]string
cache map[string]*ItemDef
}
func NewItemStore(dataDir string) *ItemStore {
s := &ItemStore{
dataDir: dataDir,
pathIndex: behavior.BuildPathIndex(filepath.Join(dataDir, "items")),
cache: make(map[string]*ItemDef),
}
return s
}
func (s *ItemStore) Load(id string) (*ItemDef, error) {
s.mu.Lock()
defer s.mu.Unlock()
if def, ok := s.cache[id]; ok {
return def, nil
}
path, ok := s.pathIndex[id]
if !ok {
return nil, fmt.Errorf("read item %s: no such item", id)
}
data, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("read item %s: %w", id, err)
}
var def ItemDef
if err := yaml.Unmarshal(data, &def); err != nil {
return nil, fmt.Errorf("parse item %s: %w", id, err)
}
def.ID = id
s.cache[id] = &def
return &def, nil
}
func (s *ItemStore) LoadAll() ([]*ItemDef, error) {
s.mu.Lock()
defer s.mu.Unlock()
dir := filepath.Join(s.dataDir, "items")
var defs []*ItemDef
err := behavior.WalkYAMLDir(dir, func(path, id string, data []byte) error {
if def, ok := s.cache[id]; ok {
defs = append(defs, def)
return nil
}
var def ItemDef
if err := yaml.Unmarshal(data, &def); err != nil {
return fmt.Errorf("parse item %s: %w", id, err)
}
def.ID = id
s.cache[id] = &def
defs = append(defs, &def)
return nil
})
return defs, err
}
// PathIndex returns a copy of the id→path index, safe to iterate concurrently.
func (s *ItemStore) PathIndex() map[string]string {
s.mu.Lock()
defer s.mu.Unlock()
out := make(map[string]string, len(s.pathIndex))
for id, p := range s.pathIndex {
out[id] = p
}
return out
}
func (s *ItemStore) IDSet() map[string]bool {
s.mu.Lock()
defer s.mu.Unlock()
ids := make(map[string]bool, len(s.pathIndex))
for id := range s.pathIndex {
ids[id] = true
}
return ids
}
func (s *ItemStore) Reload(dataDir string) {
s.mu.Lock()
defer s.mu.Unlock()
s.cache = make(map[string]*ItemDef)
s.pathIndex = behavior.BuildPathIndex(filepath.Join(dataDir, "items"))
}
|