123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package conf
- import (
- "flag"
- "go-common/library/cache/memcache"
- "go-common/library/cache/redis"
- "go-common/library/conf"
- "go-common/library/database/sql"
- "go-common/library/log"
- bm "go-common/library/net/http/blademaster"
- "go-common/library/net/rpc"
- "go-common/library/queue/databus"
- "go-common/library/time"
- "github.com/BurntSushi/toml"
- )
- var (
- confPath string
- // Conf .
- Conf *Config
- )
- // Config .
- type Config struct {
- // base
- // fav
- Fav *Fav
- // log
- Log *log.Config
- // db
- DB *DB
- // memcache
- Memcache *Memcache
- // redis
- Redis *Redis
- // stat fav databus
- StatFavDatabus *StatFavDatabus
- // job databus
- JobDatabus *databus.Config
- // BinlogDatabus databus.
- BinlogDatabus *databus.Config
- // rpc client
- RPCClient2 *RPC
- // BM blademaster
- BM *bm.ServerConfig
- // StatMerge for bnj
- StatMerge *StatMerge
- // playlist stat
- FavStatDatabus *databus.Config
- ShareStatDatabus *databus.Config
- MediaListCntDatabus *databus.Config
- // http client
- HTTPClient *bm.ClientConfig
- }
- // Fav favorite
- type Fav struct {
- Proc int64
- MaxPageSize int
- CleanCDTime time.Duration
- SleepTime time.Duration
- GreyMod int64
- WhiteMids []int64
- }
- // StatMerge .
- type StatMerge struct {
- Business int
- Target int64
- Sources []int64
- }
- // RPC rpc cliens.
- type RPC struct {
- Archive *rpc.ClientConfig
- Article *rpc.ClientConfig
- Coin *rpc.ClientConfig
- }
- // DB mysql.
- type DB struct {
- // favorite db
- Fav *sql.Config
- Read *sql.Config
- }
- // Redis redis conf.
- type Redis struct {
- *redis.Config
- Expire time.Duration
- IPExpire time.Duration
- BuvidExpire time.Duration
- }
- // Memcache mc conf.
- type Memcache struct {
- *memcache.Config
- Expire time.Duration
- }
- // StatsDatabus stats.
- type StatsDatabus struct {
- *databus.Config
- Field string
- Type int8
- }
- // StatFavDatabus new stats.
- type StatFavDatabus struct {
- *databus.Config
- Consumers map[string]int8
- }
- // init
- func init() {
- flag.StringVar(&confPath, "conf", "", "config path")
- }
- // Init init conf
- func Init() (err error) {
- if confPath == "" {
- return configCenter()
- }
- _, err = toml.DecodeFile(confPath, &Conf)
- return
- }
- // configCenter remote config.
- func configCenter() (err error) {
- var (
- ok bool
- value string
- client *conf.Client
- )
- if client, err = conf.New(); err != nil {
- return
- }
- if value, ok = client.Toml2(); !ok {
- panic(err)
- }
- _, err = toml.Decode(value, &Conf)
- return
- }
|