3 Star 0 Fork 0

Gitee 极速下载/Configurator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/progrium/configurator
克隆/下载
store.go 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
package main
import (
"io/ioutil"
"log"
"net/url"
"os"
)
type ConfigStore interface {
Get(key string) string
WatchToUpdate(config *Config, key string)
Pull(config *Config) error
Commit(config *Config, operation func() error) error
}
type FileStore struct {
path string
}
func NewFileStore(uri *url.URL) (ConfigStore, error) {
if _, err := os.Stat(uri.Path); os.IsNotExist(err) {
return nil, err
}
return &FileStore{
path: uri.Path,
}, nil
}
func (s *FileStore) Get(key string) string {
bytes, err := ioutil.ReadFile(key)
if err != nil {
log.Println("filestore:", err)
}
if len(bytes) > 0 {
return string(bytes)
}
return ""
}
func (s *FileStore) WatchToUpdate(config *Config, key string) {
// twiddle our thumbs. we're not going to watch file changes. yet?
}
func (s *FileStore) Pull(config *Config) error {
configData := s.Get(s.path)
if configData != "" {
err := config.Load([]byte(configData))
if err != nil {
log.Println("filestore: Invalid JSON from config store file", s.path)
return err
}
}
return nil
}
func (s *FileStore) Commit(config *Config, operation func() error) error {
if err := operation(); err != nil {
return err
}
if err := ioutil.WriteFile(s.path, config.Dump(), 0644); err != nil {
return err
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Configurator.git
git@gitee.com:mirrors/Configurator.git
mirrors
Configurator
Configurator
master

搜索帮助