123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- package conf
- import (
- "errors"
- "flag"
- "go-common/library/cache/memcache"
- "go-common/library/cache/redis"
- "go-common/library/conf"
- "go-common/library/database/bfs"
- "go-common/library/database/sql"
- "go-common/library/log"
- "go-common/library/log/infoc"
- bm "go-common/library/net/http/blademaster"
- "go-common/library/net/rpc"
- "go-common/library/net/rpc/warden"
- "go-common/library/net/trace"
- "go-common/library/queue/databus"
- "go-common/library/time"
- "github.com/BurntSushi/toml"
- )
- var (
- confPath string
- client *conf.Client
- // Conf export config var
- Conf = &Config{}
- )
- // Config danmaku config
- type Config struct {
- // base
- // log
- Xlog *log.Config
- Infoc2 *infoc.Config
- // tracer
- Tracer *trace.Config
- // http
- HTTPServer *bm.ServerConfig
- // database
- DB *DB
- // redis
- Redis *Redis
- // memcache
- Memcache *Memcache
- // Subtitle Cache
- SubtitleMemcache *Memcache
- DMMemcache *Memcache
- // archive rpc client
- ArchiveRPC *rpc.ClientConfig
- // seq-server rpc client
- SeqRPC *rpc.ClientConfig
- Seq *Seq
- // databus config
- Databus *Databus
- // dm list realname
- Realname map[string]int64
- HTTPClient *bm.ClientConfig
- Host *Host
- BFSClient *bm.ClientConfig
- // client
- FliterRPC *warden.ClientConfig
- // MaskCate
- MaskCate *MaskCate
- // Bfs
- Bfs *Bfs
- // cache routine size
- RoutineSize int
- // bnj
- BNJ *BNJ
- // task config
- TaskConf *TaskConf
- }
- // BNJ .
- type BNJ struct {
- Aid int64
- BnjCounter *BnjCounter
- BnjLiveDanmu *BnjLiveDanmu
- }
- // BnjCounter .
- type BnjCounter struct {
- SubAids []int64
- }
- // BnjLiveDanmu .
- type BnjLiveDanmu struct {
- RoomID int64
- Start string
- IgnoreRate int64
- Level int32
- IgnoreBegin time.Duration
- IgnoreEnd time.Duration
- }
- // BNJVideo .
- type BNJVideo struct {
- Cid int64
- Duration float64
- }
- // Bfs .
- type Bfs struct {
- Client *bfs.Config
- Dm string
- }
- //Seq Conf
- type Seq struct {
- BusinessID int64
- Token string
- }
- // DB mysql config struct
- type DB struct {
- DMReader *sql.Config
- DMWriter *sql.Config
- BiliDMWriter *sql.Config
- QueryPageSize int32
- }
- // Redis dm redis
- type Redis struct {
- DM *struct {
- *redis.Config
- Expire time.Duration
- }
- DMRct *struct {
- *redis.Config
- Expire time.Duration
- }
- DMSeg *struct {
- *redis.Config
- Expire time.Duration
- }
- }
- // Memcache dm memcache
- type Memcache struct {
- *memcache.Config
- Expire time.Duration
- }
- // Databus databus config
- type Databus struct {
- IndexCsmr *databus.Config
- SubjectCsmr *databus.Config
- ActionCsmr *databus.Config
- ReportCsmr *databus.Config
- VideoupCsmr *databus.Config
- SubtitleAuditCsmr *databus.Config
- BnjCsmr *databus.Config
- }
- // Host hosts used in dm admin
- type Host struct {
- Videoup string
- Mask string
- DataRank string
- MerakHost string
- APILive string
- }
- // MaskCate .
- type MaskCate struct {
- Tids []int64
- Interval time.Duration
- Limit int
- }
- // TaskConf .
- type TaskConf struct {
- DelInterval time.Duration
- ResInterval time.Duration
- ResFieldLen int
- DelNum int
- DelLimit int64
- MsgCC []string
- MsgPublicKey string
- }
- func init() {
- flag.StringVar(&confPath, "conf", "", "config path")
- }
- //Init int config
- func Init() error {
- if confPath != "" {
- return local()
- }
- return remote()
- }
- func local() (err error) {
- _, err = toml.DecodeFile(confPath, &Conf)
- return
- }
- func remote() (err error) {
- if client, err = conf.New(); err != nil {
- return
- }
- if err = load(); err != nil {
- return
- }
- go func() {
- for range client.Event() {
- log.Info("config reload")
- if load() != nil {
- log.Error("config reload error (%v)", err)
- }
- }
- }()
- return
- }
- func load() (err error) {
- var tmpConf *Config
- value, ok := client.Toml2()
- if !ok {
- return errors.New("load config center error")
- }
- if _, err = toml.Decode(value, &tmpConf); err != nil {
- return errors.New("could not decode config")
- }
- *Conf = *tmpConf
- return
- }
|