Files
crawlab/backend/config/config.go
2020-04-27 15:59:06 +08:00

58 lines
1.2 KiB
Go

package config
import (
"github.com/fsnotify/fsnotify"
"github.com/spf13/viper"
"log"
"strings"
)
type Config struct {
Name string
}
// 监控配置文件变化并热加载程序
func (c *Config) WatchConfig() {
viper.WatchConfig()
viper.OnConfigChange(func(e fsnotify.Event) {
log.Printf("Config file changed: %s", e.Name)
})
}
func (c *Config) Init() error {
if c.Name != "" {
viper.SetConfigFile(c.Name) // 如果指定了配置文件,则解析指定的配置文件
} else {
viper.AddConfigPath("./conf") // 如果没有指定配置文件,则解析默认的配置文件
viper.SetConfigName("config")
}
viper.SetConfigType("yaml") // 设置配置文件格式为YAML
viper.AutomaticEnv() // 读取匹配的环境变量
viper.SetEnvPrefix("CRAWLAB") // 读取环境变量的前缀为CRAWLAB
replacer := strings.NewReplacer(".", "_")
viper.SetEnvKeyReplacer(replacer)
if err := viper.ReadInConfig(); err != nil { // viper解析配置文件
return err
}
return nil
}
func InitConfig(cfg string) error {
c := Config{
Name: cfg,
}
// 初始化配置文件
if err := c.Init(); err != nil {
return err
}
// 监控配置文件变化并热加载程序
c.WatchConfig()
return nil
}