dao.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package template
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/conf"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. "time"
  9. )
  10. // Dao is archive dao.
  11. type Dao struct {
  12. // config
  13. c *conf.Config
  14. // db
  15. db *sql.DB
  16. // insert
  17. addTplStmt *sql.Stmt
  18. // update
  19. upTplStmt *sql.Stmt
  20. delTplStmt *sql.Stmt
  21. // select
  22. getTplStmt *sql.Stmt
  23. getMutilTplStmt *sql.Stmt
  24. getCntStmt *sql.Stmt
  25. // mc
  26. mc *memcache.Pool
  27. mcExpire int32
  28. // chan
  29. tplch chan func()
  30. }
  31. // New init api url
  32. func New(c *conf.Config) (d *Dao) {
  33. d = &Dao{
  34. c: c,
  35. db: sql.NewMySQL(c.DB.Creative),
  36. // memcache
  37. mc: memcache.NewPool(c.Memcache.Archive.Config),
  38. mcExpire: int32(time.Duration(c.Memcache.Archive.TplExpire) / time.Second),
  39. // chan
  40. tplch: make(chan func(), 1024),
  41. }
  42. // insert
  43. d.addTplStmt = d.db.Prepared(_addTplSQL)
  44. // update
  45. d.upTplStmt = d.db.Prepared(_upTplSQL)
  46. d.delTplStmt = d.db.Prepared(_delTplSQL)
  47. // select
  48. d.getTplStmt = d.db.Prepared(_getTplSQL)
  49. d.getMutilTplStmt = d.db.Prepared(_getMutilTplSQL)
  50. d.getCntStmt = d.db.Prepared(_getCntSQL)
  51. go d.cacheproc()
  52. return
  53. }
  54. // Ping db
  55. func (d *Dao) Ping(c context.Context) (err error) {
  56. if err = d.db.Ping(c); err != nil {
  57. return
  58. }
  59. return d.db.Ping(c)
  60. }
  61. // Close db
  62. func (d *Dao) Close() (err error) {
  63. if d.db != nil {
  64. d.db.Close()
  65. }
  66. return d.db.Close()
  67. }
  68. // addCache add to chan for cache
  69. func (d *Dao) addCache(f func()) {
  70. select {
  71. case d.tplch <- f:
  72. default:
  73. log.Warn("template cacheproc chan full")
  74. }
  75. }
  76. // cacheproc is a routine for execute closure.
  77. func (d *Dao) cacheproc() {
  78. for {
  79. f := <-d.tplch
  80. f()
  81. }
  82. }