dao.go 788 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package share
  2. import (
  3. "context"
  4. "go-common/app/interface/main/web-goblin/conf"
  5. "go-common/library/cache/redis"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. "go-common/library/stat/prom"
  9. )
  10. // Dao dao struct.
  11. type Dao struct {
  12. // config
  13. c *conf.Config
  14. // db
  15. db *sql.DB
  16. // redis
  17. redis *redis.Pool
  18. }
  19. // New new dao.
  20. func New(c *conf.Config) (d *Dao) {
  21. d = &Dao{
  22. // config
  23. c: c,
  24. db: sql.NewMySQL(c.DB.Goblin),
  25. redis: redis.NewPool(c.Redis.Config),
  26. }
  27. return
  28. }
  29. // Ping ping dao
  30. func (d *Dao) Ping(c context.Context) (err error) {
  31. if err = d.db.Ping(c); err != nil {
  32. return
  33. }
  34. return
  35. }
  36. // PromError stat and log.
  37. func PromError(name string, format string, args ...interface{}) {
  38. prom.BusinessErrCount.Incr(name)
  39. log.Error(format, args...)
  40. }