3 Star 5 Fork 3

三三物联网/ssiot-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config.go 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
三三物联网 提交于 2023-04-03 00:22 . 重构
package config
import (
"fmt"
"gitee.com/sansaniot/ssiot-core/config/tool"
"gitee.com/sansaniot/ssiot-core/config/tool/source"
"log"
)
var (
ExtendConfig interface{}
_cfg *Settings
)
// Settings 兼容原先的配置结构
type Settings struct {
Settings Config `yaml:"settings"`
callbacks []func()
}
func (e *Settings) runCallback() {
for i := range e.callbacks {
e.callbacks[i]()
}
}
func (e *Settings) OnChange() {
e.init()
log.Println("config change and reload")
}
func (e *Settings) Init() {
e.init()
log.Println("config init")
}
func (e *Settings) init() {
e.Settings.Logger.Setup()
e.Settings.multiDatabase()
e.runCallback()
}
// Config 配置集合
type Config struct {
Application *Application `yaml:"application"`
Ssl *Ssl `yaml:"ssl"`
Logger *Logger `yaml:"logger"`
Jwt *Jwt `yaml:"jwt"`
Database *Database `yaml:"database"`
Databases *map[string]*Database `yaml:"databases"`
Gen *Gen `yaml:"gen"`
Cache *Cache `yaml:"cache"`
Queue *Queue `yaml:"queue"`
Locker *Locker `yaml:"locker"`
Extend interface{} `yaml:"extend"`
}
// 多db改造
func (e *Config) multiDatabase() {
if len(*e.Databases) == 0 {
*e.Databases = map[string]*Database{
"*": e.Database,
}
}
}
// Setup 载入配置文件
func Setup(s source.Source,
fs ...func()) {
_cfg = &Settings{
Settings: Config{
Application: ApplicationConfig,
Ssl: SslConfig,
Logger: LoggerConfig,
Jwt: JwtConfig,
Database: DatabaseConfig,
Databases: &DatabasesConfig,
Gen: GenConfig,
Cache: CacheConfig,
Queue: QueueConfig,
Locker: LockerConfig,
Extend: ExtendConfig,
},
callbacks: fs,
}
var err error
tool.DefaultConfig, err = tool.NewConfig(
tool.WithSource(s),
tool.WithEntity(_cfg),
)
if err != nil {
log.Fatal(fmt.Sprintf("New config object fail: %s", err.Error()))
}
_cfg.Init()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sansaniot/ssiot-core.git
git@gitee.com:sansaniot/ssiot-core.git
sansaniot
ssiot-core
ssiot-core
v1.6.0

搜索帮助