conf.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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/http/blademaster/middleware/verify"
  10. "go-common/library/net/rpc"
  11. "go-common/library/net/rpc/warden"
  12. "go-common/library/net/trace"
  13. "go-common/library/queue/databus"
  14. xtime "go-common/library/time"
  15. "github.com/BurntSushi/toml"
  16. )
  17. // Conf global variable.
  18. var (
  19. Conf = &Config{}
  20. client *conf.Client
  21. confPath string
  22. )
  23. // Config struct of conf.
  24. type Config struct {
  25. App *bm.App
  26. Xlog *log.Config
  27. Verify *verify.Config
  28. HTTPServer *bm.ServerConfig
  29. HTTPClient *bm.ClientConfig
  30. RPCServer *rpc.ServerConfig
  31. GRPC *warden.ServerConfig
  32. MySQL *sql.Config
  33. Tracer *trace.Config
  34. Databus *databus.Config
  35. Sms *sms
  36. }
  37. type sms struct {
  38. PickUpTask bool
  39. LoadTaskInteval xtime.Duration
  40. TaskWorker int
  41. BatchSize int
  42. }
  43. func init() {
  44. flag.StringVar(&confPath, "conf", "", "default config path")
  45. }
  46. // Init create config instance.
  47. func Init() (err error) {
  48. if confPath != "" {
  49. return local()
  50. }
  51. return remote()
  52. }
  53. func local() (err error) {
  54. _, err = toml.DecodeFile(confPath, &Conf)
  55. return
  56. }
  57. func remote() (err error) {
  58. if client, err = conf.New(); err != nil {
  59. return
  60. }
  61. err = load()
  62. return
  63. }
  64. func load() (err error) {
  65. var (
  66. s string
  67. ok bool
  68. tmpConf *Config
  69. )
  70. if s, ok = client.Toml2(); !ok {
  71. return errors.New("load config center error")
  72. }
  73. if _, err = toml.Decode(s, &tmpConf); err != nil {
  74. return errors.New("could not decode config")
  75. }
  76. *Conf = *tmpConf
  77. return
  78. }