conf.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package conf
  2. import (
  3. "flag"
  4. "go-common/library/net/rpc/warden"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/cache/redis"
  7. "go-common/library/conf"
  8. ecode "go-common/library/ecode/tip"
  9. "go-common/library/log"
  10. "go-common/library/log/infoc"
  11. bm "go-common/library/net/http/blademaster"
  12. "go-common/library/net/http/blademaster/middleware/antispam"
  13. "go-common/library/net/http/blademaster/middleware/auth"
  14. "go-common/library/net/http/blademaster/middleware/supervisor"
  15. "go-common/library/net/http/blademaster/middleware/verify"
  16. "go-common/library/net/rpc"
  17. "go-common/library/net/trace"
  18. "go-common/library/queue/databus"
  19. "go-common/library/time"
  20. "github.com/BurntSushi/toml"
  21. )
  22. var (
  23. confPath string
  24. // Conf Config
  25. Conf *Config
  26. )
  27. // Config is favorte conf
  28. type Config struct {
  29. // base
  30. // log
  31. Log *log.Config
  32. App *bm.App
  33. // favorite config
  34. Fav *Fav
  35. Platform *Platform
  36. // BM blademaster
  37. BM *bm.ServerConfig
  38. // redis
  39. Redis *Redis
  40. // memcache
  41. Memcache *Memcache
  42. // databus
  43. JobDatabus *databus.Config
  44. // Verify
  45. Verify *verify.Config
  46. // Auth
  47. Auth *auth.Config
  48. // rpc client
  49. RPCClient2 *RPC
  50. // tracer
  51. Tracer *trace.Config
  52. // http client
  53. HTTPClient *bm.ClientConfig
  54. // ecode
  55. Ecode *ecode.Config
  56. // Antispam
  57. Antispam *antispam.Config
  58. // Supervisior
  59. Supervisor *supervisor.Config
  60. // collector
  61. Infoc2 *infoc.Config
  62. }
  63. // RPC contain all rpc conf
  64. type RPC struct {
  65. Archive *rpc.ClientConfig
  66. Favorite *rpc.ClientConfig
  67. FavClient *warden.ClientConfig
  68. }
  69. // Fav config
  70. type Fav struct {
  71. // the max of the num of favorite folders
  72. MaxFolders int
  73. MaxPagesize int
  74. MaxNameLen int
  75. MaxDescLen int
  76. // the num of operation
  77. MaxOperationNum int
  78. // the num of default favorite
  79. DefaultFolderLimit int
  80. NormalFolderLimit int
  81. // cache expire
  82. Expire time.Duration
  83. }
  84. // Platform config
  85. type Platform struct {
  86. MaxFolders int
  87. MaxNameLen int
  88. MaxDescLen int
  89. }
  90. // Redis redis conf
  91. type Redis struct {
  92. *redis.Config
  93. Expire time.Duration
  94. CoverExpire time.Duration
  95. }
  96. // Memcache memcache conf
  97. type Memcache struct {
  98. *memcache.Config
  99. Expire time.Duration
  100. }
  101. func init() {
  102. flag.StringVar(&confPath, "conf", "", "config path")
  103. }
  104. // Init init conf
  105. func Init() (err error) {
  106. if confPath == "" {
  107. return configCenter()
  108. }
  109. _, err = toml.DecodeFile(confPath, &Conf)
  110. return
  111. }
  112. func configCenter() (err error) {
  113. var (
  114. ok bool
  115. value string
  116. client *conf.Client
  117. )
  118. if client, err = conf.New(); err != nil {
  119. return
  120. }
  121. if value, ok = client.Toml2(); !ok {
  122. panic(err)
  123. }
  124. _, err = toml.Decode(value, &Conf)
  125. return
  126. }