conf.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package conf
  2. import (
  3. "flag"
  4. "github.com/BurntSushi/toml"
  5. "github.com/pkg/errors"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/conf"
  8. "go-common/library/database/sql"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. "go-common/library/time"
  12. )
  13. var (
  14. // ConfPath local config path
  15. ConfPath string
  16. // Conf config
  17. Conf = &Config{}
  18. client *conf.Client
  19. )
  20. // Config str
  21. type Config struct {
  22. // base config
  23. // Elk config
  24. Log *log.Config
  25. // http config
  26. BM *bm.ServerConfig
  27. // db config
  28. Mysql *sql.Config
  29. // mc
  30. Memcache *Memcache
  31. // mail
  32. Mail *Mail
  33. }
  34. // Memcache conf.
  35. type Memcache struct {
  36. Laser struct {
  37. *memcache.Config
  38. LaserExpire time.Duration
  39. }
  40. }
  41. // Mail conf.
  42. type Mail struct {
  43. Host string
  44. Port int
  45. Username, Password string
  46. }
  47. func init() {
  48. flag.StringVar(&ConfPath, "conf", "", "default config path")
  49. }
  50. // Init init conf
  51. func Init() (err error) {
  52. if ConfPath != "" {
  53. return local()
  54. }
  55. return remote()
  56. }
  57. func local() (err error) {
  58. _, err = toml.DecodeFile(ConfPath, &Conf)
  59. return
  60. }
  61. func remote() (err error) {
  62. if client, err = conf.New(); err != nil {
  63. return
  64. }
  65. if err = load(); err != nil {
  66. return
  67. }
  68. go func() {
  69. for range client.Event() {
  70. log.Info("config reload")
  71. if load() != nil {
  72. log.Error("config reload error (%v)", err)
  73. }
  74. }
  75. }()
  76. return
  77. }
  78. func load() (err error) {
  79. var (
  80. s string
  81. ok bool
  82. tempConf *Config
  83. )
  84. if s, ok = client.Toml2(); !ok {
  85. return errors.New("load config center error")
  86. }
  87. if _, err = toml.Decode(s, &tempConf); err != nil {
  88. return errors.New("could not decode toml config")
  89. }
  90. *Conf = *tempConf
  91. return
  92. }