package object import ( "fmt" "os" "path/filepath" "thehouseoficarus/internal/action" "gopkg.in/yaml.v3" ) type ItemStore struct { dataDir string pathIndex map[string]string cache map[string]*ItemDef } func NewItemStore(dataDir string) *ItemStore { s := &ItemStore{ dataDir: dataDir, pathIndex: action.BuildPathIndex(filepath.Join(dataDir, "items")), cache: make(map[string]*ItemDef), } return s } func (s *ItemStore) Load(id string) (*ItemDef, error) { 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) } s.cache[id] = &def return &def, nil } func (s *ItemStore) LoadAll() ([]*ItemDef, error) { dir := filepath.Join(s.dataDir, "items") var defs []*ItemDef err := action.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) } s.cache[id] = &def defs = append(defs, &def) return nil }) return defs, err } func (s *ItemStore) PathIndex() map[string]string { return s.pathIndex } func (s *ItemStore) IDSet() map[string]bool { ids := make(map[string]bool) for id := range s.pathIndex { ids[id] = true } return ids }