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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
| package repository
import ( "encoding/json" "errors" "fmt" "io/ioutil" "os" "path/filepath" "sync" )
type FileRepository struct { baseDir string cache map[string]Entity mutex sync.RWMutex }
func NewFileRepository(baseDir string) (*FileRepository, error) { if err := os.MkdirAll(baseDir, 0755); err != nil { return nil, fmt.Errorf("無法建立儲存目錄: %w", err) } return &FileRepository{ baseDir: baseDir, cache: make(map[string]Entity), mutex: sync.RWMutex{}, }, nil }
func (r *FileRepository) getFilePath(id string) string { return filepath.Join(r.baseDir, fmt.Sprintf("%s.json", id)) }
func (r *FileRepository) loadEntity(id string) (Entity, error) { filePath := r.getFilePath(id) data, err := ioutil.ReadFile(filePath) if err != nil { return nil, fmt.Errorf("讀取檔案失敗: %w", err) } var user User if err := json.Unmarshal(data, &user); err != nil { return nil, fmt.Errorf("解析 JSON 失敗: %w", err) } return user, nil }
func (r *FileRepository) Find(id string) (Entity, error) { r.mutex.RLock() entity, exists := r.cache[id] r.mutex.RUnlock() if exists { return entity, nil } entity, err := r.loadEntity(id) if err != nil { return nil, err } r.mutex.Lock() r.cache[id] = entity r.mutex.Unlock() return entity, nil }
func (r *FileRepository) FindAll() ([]Entity, error) { files, err := ioutil.ReadDir(r.baseDir) if err != nil { return nil, fmt.Errorf("讀取目錄失敗: %w", err) } entities := make([]Entity, 0, len(files)) for _, file := range files { if file.IsDir() || filepath.Ext(file.Name()) != ".json" { continue } id := filepath.Base(file.Name()) id = id[:len(id)-5] entity, err := r.Find(id) if err != nil { continue } entities = append(entities, entity) } return entities, nil }
func (r *FileRepository) Save(entity Entity) error { if entity == nil { return errors.New("無法儲存空實體") } data, err := json.Marshal(entity) if err != nil { return fmt.Errorf("序列化失敗: %w", err) } filePath := r.getFilePath(entity.GetID()) if err := ioutil.WriteFile(filePath, data, 0644); err != nil { return fmt.Errorf("寫入檔案失敗: %w", err) } r.mutex.Lock() r.cache[entity.GetID()] = entity r.mutex.Unlock() return nil }
func (r *FileRepository) Delete(id string) error { filePath := r.getFilePath(id) if _, err := os.Stat(filePath); os.IsNotExist(err) { return errors.New("實體不存在") } if err := os.Remove(filePath); err != nil { return fmt.Errorf("刪除檔案失敗: %w", err) } r.mutex.Lock() delete(r.cache, id) r.mutex.Unlock() return nil }
func (r *FileRepository) Close() error { r.mutex.Lock() r.cache = make(map[string]Entity) r.mutex.Unlock() return nil }
|