12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package dao
- import (
- "context"
- "time"
- "go-common/app/job/main/playlist/conf"
- "go-common/library/cache/redis"
- xsql "go-common/library/database/sql"
- "go-common/library/log"
- bm "go-common/library/net/http/blademaster"
- "go-common/library/stat/prom"
- )
- // Dao .
- type Dao struct {
- c *conf.Config
- db *xsql.DB
- redis *redis.Pool
- httpClient *bm.Client
- viewCacheTTL int64
- }
- // New creates a dao instance.
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- c: c,
- db: xsql.NewMySQL(c.Mysql),
- redis: redis.NewPool(c.Redis),
- httpClient: bm.NewClient(c.HTTPClient),
- viewCacheTTL: int64(time.Duration(c.Job.ViewCacheTTL) / time.Second),
- }
- return
- }
- // PromError stat and log.
- func PromError(name string, format string, args ...interface{}) {
- prom.BusinessErrCount.Incr(name)
- log.Error(format, args...)
- }
- // PromInfo prometheus info count.
- func PromInfo(name string) {
- prom.BusinessInfoCount.Incr(name)
- }
- // Ping reports the health of the db/cache etc.
- func (d *Dao) Ping(c context.Context) (err error) {
- if err = d.db.Ping(c); err != nil {
- return
- }
- err = d.pingRedis(c)
- return
- }
- func (d *Dao) pingRedis(c context.Context) (err error) {
- conn := d.redis.Get(c)
- _, err = conn.Do("SET", "PING", "PONG")
- conn.Close()
- return
- }
|