global.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package global
  2. import (
  3. "database/sql"
  4. "eta/eta_bridge/config"
  5. "eta/eta_bridge/utils"
  6. "fmt"
  7. "github.com/fsnotify/fsnotify"
  8. oplogging "github.com/op/go-logging"
  9. "github.com/spf13/viper"
  10. "gorm.io/gorm"
  11. "io"
  12. )
  13. var (
  14. CONFIG config.Config //配置文件
  15. LOG *oplogging.Logger
  16. FILE_LOG *oplogging.Logger // 自定义的输出日志
  17. MYSQL map[string]*gorm.DB //数据库连接配置
  18. MYSQL_LOG io.Writer
  19. DEFAULT_MYSQL *gorm.DB //默认数据库连接配置
  20. //Redis *redis.Client //redis链接
  21. OracleJy *sql.DB //嘉悦物产数据库连接
  22. //Rc *cache.Cache //redis缓存
  23. Rc utils.RedisClient //redis缓存
  24. Re error //redis错误
  25. )
  26. const ConfigFile = "config/config_debug.yaml" //本地(测试)环境下的配置文件地址
  27. const ProConfigFile = "config/config.yaml" //生产环境下的配置文件地址
  28. func init() {
  29. v := viper.New()
  30. configFilePath := ConfigFile
  31. //如果不存在该配置文件,那么应该是线上环境,那么去寻找线上配置文件的路径
  32. if !utils.FileIsExist(configFilePath) {
  33. configFilePath = ProConfigFile
  34. }
  35. fmt.Println("configFilePath->", configFilePath)
  36. //设置配置文件
  37. v.SetConfigFile(configFilePath)
  38. err := v.ReadInConfig()
  39. if err != nil {
  40. panic(fmt.Errorf("读取配置失败,Err: %s \n", err))
  41. }
  42. //持续监听文件
  43. v.WatchConfig()
  44. v.OnConfigChange(func(e fsnotify.Event) {
  45. fmt.Println("配置文件变更:", e.Name)
  46. handleConfig(v, "配置重赋值")
  47. })
  48. handleConfig(v, "配置初始化")
  49. return
  50. }
  51. // handleConfig
  52. // @Description: 配置文件处理
  53. // @author: Roc
  54. // @datetime 2024-03-13 10:27:40
  55. // @param v *viper.Viper
  56. // @param handleType string
  57. func handleConfig(v *viper.Viper, handleType string) {
  58. if err := v.Unmarshal(&CONFIG); err != nil {
  59. fmt.Println(handleType+"赋值失败,Err:", err)
  60. }
  61. if CONFIG.Mysql.Binlog.LogSaveDay == 0 {
  62. CONFIG.Mysql.Binlog.LogSaveDay = 31
  63. }
  64. //fmt.Println(CONFIG)
  65. //fmt.Println(CONFIG.Mysql.UpdateLogSaveDay)
  66. }