conf.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/conf"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/rpc"
  10. "go-common/library/net/trace"
  11. "go-common/library/time"
  12. "github.com/BurntSushi/toml"
  13. )
  14. var (
  15. // ConfPath local config path
  16. ConfPath string
  17. // Conf config
  18. Conf = &Config{}
  19. client *conf.Client
  20. )
  21. // Config str
  22. type Config struct {
  23. // base
  24. // channal len
  25. ChanSize int64
  26. // log
  27. Log *log.Config
  28. // identify
  29. App *bm.App
  30. // tracer
  31. Tracer *trace.Config
  32. // tick load pgc
  33. Tick time.Duration
  34. // db
  35. DB *DB
  36. // BM HTTPServers
  37. BM *bm.ServerConfig
  38. // rpc client
  39. RPCClient *RPCClient
  40. }
  41. // RPCClient is rpc client config
  42. type RPCClient struct {
  43. Account *rpc.ClientConfig
  44. }
  45. // DB is db config
  46. type DB struct {
  47. Rating *sql.Config
  48. }
  49. func init() {
  50. flag.StringVar(&ConfPath, "conf", "", "default config path")
  51. }
  52. // Init init conf
  53. func Init() (err error) {
  54. if ConfPath != "" {
  55. return local()
  56. }
  57. return remote()
  58. }
  59. func local() (err error) {
  60. _, err = toml.DecodeFile(ConfPath, &Conf)
  61. return
  62. }
  63. func remote() (err error) {
  64. if client, err = conf.New(); err != nil {
  65. return
  66. }
  67. if err = load(); err != nil {
  68. return
  69. }
  70. go func() {
  71. for range client.Event() {
  72. log.Info("config reload")
  73. if load() != nil {
  74. log.Error("config reload error (%v)", err)
  75. }
  76. }
  77. }()
  78. return
  79. }
  80. func load() (err error) {
  81. var (
  82. s string
  83. ok bool
  84. tmpConf *Config
  85. )
  86. if s, ok = client.Toml2(); !ok {
  87. return errors.New("load config center error")
  88. }
  89. if _, err = toml.Decode(s, &tmpConf); err != nil {
  90. return errors.New("could not decode config")
  91. }
  92. *Conf = *tmpConf
  93. return
  94. }