conf.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/app/service/live/resource/sdk"
  6. "go-common/library/log/infoc"
  7. "go-common/library/net/rpc/liverpc"
  8. "go-common/library/queue/databus"
  9. "go-common/library/cache/memcache"
  10. "go-common/library/cache/redis"
  11. "go-common/library/conf"
  12. "go-common/library/database/sql"
  13. ecode "go-common/library/ecode/tip"
  14. "go-common/library/log"
  15. bm "go-common/library/net/http/blademaster"
  16. "go-common/library/net/http/blademaster/middleware/verify"
  17. "go-common/library/net/trace"
  18. "github.com/BurntSushi/toml"
  19. )
  20. var (
  21. confPath string
  22. client *conf.Client
  23. // Conf config
  24. Conf = &Config{}
  25. )
  26. // Config .
  27. type Config struct {
  28. Log *log.Config
  29. BM *bm.ServerConfig
  30. Verify *verify.Config
  31. Tracer *trace.Config
  32. Redis *redis.Config
  33. Memcache *memcache.Config
  34. MySQL *sql.Config
  35. Ecode *ecode.Config
  36. Gift *Gift
  37. LiveRpc map[string]*liverpc.ClientConfig
  38. Infoc map[string]*infoc.Config
  39. Databus *Databus
  40. Titan *titansSdk.Config
  41. }
  42. //Gift Gift配置信息
  43. type Gift struct {
  44. EnableFilterGift bool
  45. BubbleId int64
  46. }
  47. //Databus Databus
  48. type Databus struct {
  49. AddGift *databus.Config
  50. }
  51. func init() {
  52. flag.StringVar(&confPath, "conf", "", "default config path")
  53. }
  54. // Init init conf
  55. func Init() error {
  56. if confPath != "" {
  57. return local()
  58. }
  59. return remote()
  60. }
  61. func local() (err error) {
  62. _, err = toml.DecodeFile(confPath, &Conf)
  63. return
  64. }
  65. func remote() (err error) {
  66. if client, err = conf.New(); err != nil {
  67. return
  68. }
  69. if err = load(); err != nil {
  70. return
  71. }
  72. go func() {
  73. for range client.Event() {
  74. log.Info("config reload")
  75. if load() != nil {
  76. log.Error("config reload error (%v)", err)
  77. }
  78. }
  79. }()
  80. return
  81. }
  82. func load() (err error) {
  83. var (
  84. s string
  85. ok bool
  86. tmpConf *Config
  87. )
  88. if s, ok = client.Toml2(); !ok {
  89. return errors.New("load config center error")
  90. }
  91. if _, err = toml.Decode(s, &tmpConf); err != nil {
  92. return errors.New("could not decode config")
  93. }
  94. *Conf = *tmpConf
  95. return
  96. }