conf.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/conf"
  6. "go-common/library/database/elastic"
  7. "go-common/library/database/orm"
  8. "go-common/library/log"
  9. bm "go-common/library/net/http/blademaster"
  10. "go-common/library/net/http/blademaster/middleware/verify"
  11. "go-common/library/net/rpc/warden"
  12. "github.com/BurntSushi/toml"
  13. )
  14. var (
  15. confPath string
  16. // Conf .
  17. Conf = &Config{}
  18. client *conf.Client
  19. )
  20. // Config struct
  21. type Config struct {
  22. // base
  23. // log
  24. Log *log.Config
  25. // http
  26. BM *bm.ServerConfig
  27. // verify
  28. Verify *verify.Config
  29. // db
  30. ORM *ORM
  31. // host
  32. Host *Host
  33. // http client test
  34. HTTPClient *HTTPClient
  35. // archive rpc
  36. ArchiveRPC *warden.ClientConfig
  37. // es
  38. Elastic *elastic.Config
  39. }
  40. // ORM struct
  41. type ORM struct {
  42. Write *orm.Config
  43. }
  44. // Host struct
  45. type Host struct {
  46. ServiceURI string
  47. ManagerURI string
  48. }
  49. // HTTPClient struct
  50. type HTTPClient struct {
  51. Sobot *bm.ClientConfig
  52. Read *bm.ClientConfig
  53. Write *bm.ClientConfig
  54. Audit *bm.ClientConfig
  55. }
  56. func init() {
  57. flag.StringVar(&confPath, "conf", "", "default config path")
  58. }
  59. // Init .
  60. func Init() (err error) {
  61. if confPath != "" {
  62. return local()
  63. }
  64. return remote()
  65. }
  66. func local() (err error) {
  67. _, err = toml.DecodeFile(confPath, &Conf)
  68. return
  69. }
  70. func remote() (err error) {
  71. if client, err = conf.New(); err != nil {
  72. return
  73. }
  74. if err = load(); err != nil {
  75. return
  76. }
  77. go func() {
  78. for range client.Event() {
  79. log.Info("config reload")
  80. if load() != nil {
  81. log.Error("config reload error (%v)", err)
  82. }
  83. }
  84. }()
  85. return
  86. }
  87. func load() (err error) {
  88. var (
  89. s string
  90. ok bool
  91. tmpConf *Config
  92. )
  93. if s, ok = client.Toml2(); !ok {
  94. return errors.New("load config center error")
  95. }
  96. if _, err = toml.Decode(s, &tmpConf); err != nil {
  97. return errors.New("could not decode config")
  98. }
  99. *Conf = *tmpConf
  100. return
  101. }