conf.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/cache/redis"
  7. "go-common/library/conf"
  8. "go-common/library/database/sql"
  9. ecode "go-common/library/ecode/tip"
  10. "go-common/library/log"
  11. "go-common/library/log/infoc"
  12. bm "go-common/library/net/http/blademaster"
  13. "go-common/library/net/http/blademaster/middleware/verify"
  14. "go-common/library/net/rpc/liverpc"
  15. "go-common/library/net/rpc/warden"
  16. "go-common/library/net/trace"
  17. "go-common/library/queue/databus"
  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. WhiteListRedis *redis.Config
  34. Memcache *memcache.Config
  35. MySQL *sql.Config
  36. Ecode *ecode.Config
  37. DmRules *dmRules
  38. FilterClient *warden.ClientConfig
  39. AccClient *warden.ClientConfig
  40. XuserClent *warden.ClientConfig
  41. LocationClient *warden.ClientConfig
  42. SpyClient *warden.ClientConfig
  43. BcastClient *warden.ClientConfig
  44. UExpClient *warden.ClientConfig
  45. IsAdminClient *warden.ClientConfig
  46. HTTPClient *bm.ClientConfig
  47. LiveRPC map[string]*liverpc.ClientConfig
  48. BNDatabus *databus.Config
  49. Lancer *lancer
  50. CacheDatabus *cache
  51. BNJRoomList map[string]bool
  52. }
  53. type cache struct {
  54. Size int
  55. }
  56. type lancer struct {
  57. DMErr *infoc.Config
  58. DMSend *infoc.Config
  59. }
  60. type dmRules struct {
  61. AllUserLimit bool
  62. AreaLimit bool
  63. LevelLimitStatus bool
  64. LevelLimit int64
  65. PhoneLimit bool
  66. RealName bool
  67. MsgLength int
  68. DmNum int64
  69. DmPercent int64
  70. Nixiang map[string]bool
  71. Color map[string]int64
  72. DMwhitelist bool
  73. DMwhiteListID string
  74. }
  75. func init() {
  76. flag.StringVar(&confPath, "conf", "", "default config path")
  77. }
  78. // Init init conf
  79. func Init() error {
  80. if confPath != "" {
  81. return local()
  82. }
  83. return remote()
  84. }
  85. func local() (err error) {
  86. _, err = toml.DecodeFile(confPath, &Conf)
  87. return
  88. }
  89. func remote() (err error) {
  90. if client, err = conf.New(); err != nil {
  91. return
  92. }
  93. if err = load(); err != nil {
  94. return
  95. }
  96. go func() {
  97. for range client.Event() {
  98. log.Info("config reload")
  99. if load() != nil {
  100. log.Error("config reload error (%v)", err)
  101. }
  102. }
  103. }()
  104. return
  105. }
  106. func load() (err error) {
  107. var (
  108. s string
  109. ok bool
  110. tmpConf *Config
  111. )
  112. if s, ok = client.Toml2(); !ok {
  113. return errors.New("load config center error")
  114. }
  115. if _, err = toml.Decode(s, &tmpConf); err != nil {
  116. return errors.New("could not decode config")
  117. }
  118. *Conf = *tmpConf
  119. return
  120. }