conf.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/conf"
  6. ecode "go-common/library/ecode/tip"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/trace"
  10. "github.com/BurntSushi/toml"
  11. )
  12. var (
  13. confPath string
  14. // Conf .
  15. Conf = &Config{}
  16. client *conf.Client
  17. )
  18. // Pagination .
  19. type Pagination struct {
  20. PageNum int
  21. PageSize int
  22. MaxPageNum int
  23. MaxPageSize int
  24. }
  25. // Config .
  26. type Config struct {
  27. // base
  28. // xlog
  29. Xlog *log.Config
  30. // rpc server2
  31. //RPCServer2 *conf.RPCServer2
  32. // tracer
  33. Tracer *trace.Config
  34. // xhttp
  35. HTTPServer *bm.ServerConfig
  36. // es cluster
  37. Es map[string]*EsInfo
  38. // ecode
  39. Ecode *ecode.Config
  40. // pagination
  41. Pagination *Pagination
  42. // httpClinet
  43. HTTPClient *bm.ClientConfig
  44. SMS *SMS
  45. }
  46. // EsInfo .
  47. type EsInfo struct {
  48. Addr []string
  49. }
  50. // SMS config
  51. type SMS struct {
  52. Phone string
  53. Token string
  54. Interval int64
  55. }
  56. func init() {
  57. flag.StringVar(&confPath, "conf", "", "default config path")
  58. }
  59. // Init init config.
  60. func Init() (err error) {
  61. if confPath != "" {
  62. _, err = toml.DecodeFile(confPath, &Conf)
  63. return
  64. }
  65. err = remote()
  66. return
  67. }
  68. func remote() (err error) {
  69. if client, err = conf.New(); err != nil {
  70. return
  71. }
  72. if err = load(); err != nil {
  73. return
  74. }
  75. go func() {
  76. for range client.Event() {
  77. log.Info("config reload")
  78. if load() != nil {
  79. log.Error("config reload error (%v)", err)
  80. }
  81. }
  82. }()
  83. return
  84. }
  85. func load() (err error) {
  86. var (
  87. s string
  88. ok bool
  89. tmpConf = &Config{}
  90. )
  91. if s, ok = client.Toml2(); !ok {
  92. return errors.New("load config center error")
  93. }
  94. if _, err = toml.Decode(s, tmpConf); err != nil {
  95. return errors.New("could not decode config")
  96. }
  97. *Conf = *tmpConf
  98. return
  99. }