conf.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. xlog "go-common/library/log"
  10. "go-common/library/log/infoc"
  11. bm "go-common/library/net/http/blademaster"
  12. "go-common/library/net/rpc"
  13. "go-common/library/net/rpc/warden"
  14. "go-common/library/net/trace"
  15. "go-common/library/queue/databus"
  16. xtime "go-common/library/time"
  17. "github.com/BurntSushi/toml"
  18. )
  19. var (
  20. confPath string
  21. Conf = &Config{}
  22. client *conf.Client
  23. )
  24. type Config struct {
  25. // Env
  26. Env string
  27. //show log
  28. ShowLog string
  29. // show XLog
  30. XLog *xlog.Config
  31. // tick time
  32. Tick xtime.Duration
  33. // tracer
  34. Tracer *trace.Config
  35. // httpClinet
  36. HTTPClient *bm.ClientConfig
  37. // httpClinetAsyn
  38. HTTPClientAsyn *bm.ClientConfig
  39. // httpData
  40. HTTPData *bm.ClientConfig
  41. // bm http
  42. BM *HTTPServers
  43. // host
  44. Host *Host
  45. // db
  46. MySQL *MySQL
  47. // redis
  48. Redis *Redis
  49. // mc
  50. Memcache *Memcache
  51. // rpc client
  52. ArchiveRPC *rpc.ClientConfig
  53. // dynamicRPC client
  54. DynamicRPC *rpc.ClientConfig
  55. // rpc account
  56. AccountRPC *rpc.ClientConfig
  57. // resource
  58. ResourceRPC *rpc.ClientConfig
  59. // relationRPC
  60. RelationRPC *rpc.ClientConfig
  61. // location rpc
  62. LocationRPC *rpc.ClientConfig
  63. // rec host
  64. Recommend *Recommend
  65. // Infoc2
  66. Infoc2 *infoc.Config
  67. FeedInfoc2 *infoc.Config
  68. FeedTabInfoc *infoc.Config
  69. // databus
  70. DislikeDataBus *databus.Config
  71. // duration
  72. Duration *Duration
  73. // BroadcastRPC grpc
  74. PGCRPC *warden.ClientConfig
  75. }
  76. type Duration struct {
  77. // splash
  78. Splash string
  79. // search time_from
  80. Search string
  81. }
  82. type Host struct {
  83. ApiLiveCo string
  84. Bangumi string
  85. Hetongzi string
  86. HetongziRank string
  87. Data string
  88. ApiCo string
  89. ApiCoX string
  90. Ad string
  91. Search string
  92. Activity string
  93. Dynamic string
  94. }
  95. type HTTPServers struct {
  96. Outer *bm.ServerConfig
  97. }
  98. type MySQL struct {
  99. Show *sql.Config
  100. Resource *sql.Config
  101. }
  102. type Redis struct {
  103. Recommend *struct {
  104. *redis.Config
  105. Expire xtime.Duration
  106. }
  107. Stat *struct {
  108. *redis.Config
  109. Expire xtime.Duration
  110. }
  111. }
  112. type Memcache struct {
  113. Archive *struct {
  114. *memcache.Config
  115. Expire xtime.Duration
  116. }
  117. Cards *struct {
  118. *memcache.Config
  119. Expire xtime.Duration
  120. }
  121. }
  122. type Recommend struct {
  123. Host map[string][]string
  124. Group map[string]int
  125. }
  126. func init() {
  127. flag.StringVar(&confPath, "conf", "", "default config path")
  128. }
  129. // Init init config.
  130. func Init() (err error) {
  131. if confPath != "" {
  132. _, err = toml.DecodeFile(confPath, &Conf)
  133. return
  134. }
  135. err = remote()
  136. return
  137. }
  138. func remote() (err error) {
  139. if client, err = conf.New(); err != nil {
  140. return
  141. }
  142. if err = load(); err != nil {
  143. return
  144. }
  145. go func() {
  146. for range client.Event() {
  147. xlog.Info("config reload")
  148. if load() != nil {
  149. xlog.Error("config reload error (%v)", err)
  150. }
  151. }
  152. }()
  153. return
  154. }
  155. func load() (err error) {
  156. var (
  157. s string
  158. ok bool
  159. tmpConf *Config
  160. )
  161. if s, ok = client.Toml2(); !ok {
  162. return errors.New("load config center error")
  163. }
  164. if _, err = toml.Decode(s, &tmpConf); err != nil {
  165. return errors.New("could not decode config")
  166. }
  167. *Conf = *tmpConf
  168. return
  169. }