service.go 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. package region
  2. import (
  3. "time"
  4. "go-common/app/interface/main/app-show/conf"
  5. actdao "go-common/app/interface/main/app-show/dao/activity"
  6. addao "go-common/app/interface/main/app-show/dao/ad"
  7. arcdao "go-common/app/interface/main/app-show/dao/archive"
  8. adtdao "go-common/app/interface/main/app-show/dao/audit"
  9. bgmdao "go-common/app/interface/main/app-show/dao/bangumi"
  10. carddao "go-common/app/interface/main/app-show/dao/card"
  11. dyndao "go-common/app/interface/main/app-show/dao/dynamic"
  12. locdao "go-common/app/interface/main/app-show/dao/location"
  13. rcmmndao "go-common/app/interface/main/app-show/dao/recommend"
  14. rgdao "go-common/app/interface/main/app-show/dao/region"
  15. resdao "go-common/app/interface/main/app-show/dao/resource"
  16. searchdao "go-common/app/interface/main/app-show/dao/search"
  17. tagdao "go-common/app/interface/main/app-show/dao/tag"
  18. "go-common/app/interface/main/app-show/model/bangumi"
  19. "go-common/app/interface/main/app-show/model/card"
  20. "go-common/app/interface/main/app-show/model/region"
  21. resource "go-common/app/service/main/resource/model"
  22. "go-common/library/stat/prom"
  23. )
  24. const (
  25. _initRegionTagKey = "region_tag_%d_%d"
  26. )
  27. // Service is region service.
  28. type Service struct {
  29. c *conf.Config
  30. // prom
  31. pHit *prom.Prom
  32. pMiss *prom.Prom
  33. prmobi *prom.Prom
  34. // dao
  35. dao *rgdao.Dao
  36. // bnnr *bnnrdao.Dao
  37. rcmmnd *rcmmndao.Dao
  38. ad *addao.Dao // cptbanner
  39. tag *tagdao.Dao
  40. adt *adtdao.Dao
  41. arc *arcdao.Dao
  42. dyn *dyndao.Dao
  43. search *searchdao.Dao
  44. cdao *carddao.Dao
  45. act *actdao.Dao
  46. bgm *bgmdao.Dao
  47. res *resdao.Dao
  48. loc *locdao.Dao
  49. // tick
  50. tick time.Duration
  51. // regions cache
  52. cache map[string][]*region.Region
  53. // new region list cache
  54. cachelist map[string][]*region.Region
  55. limitCache map[int64][]*region.Limit
  56. configCache map[int64][]*region.Config
  57. regionListCache map[string]map[int]*region.Region
  58. verCache map[string]string
  59. // audit cache
  60. auditCache map[string]map[int]struct{} // audit mobi_app builds
  61. // region show item cache
  62. bannerCache map[int8]map[int][]*resource.Banner
  63. bannerBmgCache map[int8]map[int][]*bangumi.Banner
  64. hotCache map[int][]*region.ShowItem
  65. newCache map[int][]*region.ShowItem
  66. dynamicCache map[int][]*region.ShowItem
  67. // overseas
  68. hotOseaCache map[int][]*region.ShowItem
  69. newOseaCache map[int][]*region.ShowItem
  70. dynamicOseaCache map[int][]*region.ShowItem
  71. // region child show item cache
  72. childHotCache map[int][]*region.ShowItem
  73. childNewCache map[int][]*region.ShowItem
  74. childHotAidsCache map[int][]int64
  75. childNewAidsCache map[int][]int64
  76. showDynamicAidsCache map[int][]int64
  77. // overseas region child show item cache
  78. childHotOseaCache map[int][]*region.ShowItem
  79. childNewOseaCache map[int][]*region.ShowItem
  80. // region tag show item cache
  81. tagHotCache map[string][]*region.ShowItem
  82. tagNewCache map[string][]*region.ShowItem
  83. tagHotAidsCache map[string][]int64
  84. tagNewAidsCache map[string][]int64
  85. // overseas region tag show item cache
  86. tagHotOseaCache map[string][]*region.ShowItem
  87. tagNewOseaCache map[string][]*region.ShowItem
  88. // new region feed
  89. regionFeedCache map[int]*region.Show
  90. regionFeedOseaCache map[int]*region.Show
  91. // tags cache
  92. tagsCache map[string]string
  93. // region show
  94. showCache map[int]*region.Show
  95. childShowCache map[int]*region.Show
  96. // overseas region show
  97. showOseaCache map[int]*region.Show
  98. childShowOseaCache map[int]*region.Show
  99. // region dynamic show
  100. showDynamicCache map[int]*region.Show
  101. childShowDynamicCache map[int]*region.Show
  102. // overseas region dynamic show
  103. showDynamicOseaCache map[int]*region.Show
  104. childShowDynamicOseaCache map[int]*region.Show
  105. // similar tag
  106. similarTagCache map[string][]*region.SimilarTag
  107. // similar tag
  108. regionTagCache map[int][]*region.SimilarTag
  109. // ranking
  110. rankCache map[int][]*region.ShowItem
  111. rankOseaCache map[int][]*region.ShowItem
  112. // card
  113. cardCache map[string][]*region.Head
  114. columnListCache map[int]*card.ColumnList
  115. // region
  116. reRegionCache map[int]*region.Region
  117. // json tick
  118. jsonOn bool
  119. jsonCh chan int64
  120. jsonIdsCache map[int64]struct{} // rid<<32 | tid
  121. // cpm percentage 0~100
  122. cpmNum int
  123. cpmMid map[int64]struct{}
  124. cpmAll bool
  125. adIsPost bool
  126. // infoc
  127. logCh chan interface{}
  128. }
  129. // New new a region service.
  130. func New(c *conf.Config) (s *Service) {
  131. s = &Service{
  132. c: c,
  133. pHit: prom.CacheHit,
  134. pMiss: prom.CacheMiss,
  135. prmobi: prom.BusinessInfoCount,
  136. // dao
  137. dao: rgdao.New(c),
  138. // bnnr: bnnrdao.New(c),
  139. rcmmnd: rcmmndao.New(c),
  140. ad: addao.New(c),
  141. adt: adtdao.New(c),
  142. arc: arcdao.New(c),
  143. tag: tagdao.New(c),
  144. dyn: dyndao.New(c),
  145. search: searchdao.New(c),
  146. cdao: carddao.New(c),
  147. act: actdao.New(c),
  148. bgm: bgmdao.New(c),
  149. res: resdao.New(c),
  150. loc: locdao.New(c),
  151. // tick
  152. tick: time.Duration(c.Tick),
  153. // audit cache
  154. auditCache: map[string]map[int]struct{}{},
  155. // regions cache
  156. cache: map[string][]*region.Region{},
  157. // new region list cache
  158. cachelist: map[string][]*region.Region{},
  159. limitCache: map[int64][]*region.Limit{},
  160. configCache: map[int64][]*region.Config{},
  161. regionListCache: map[string]map[int]*region.Region{},
  162. verCache: map[string]string{},
  163. // region show item cache
  164. bannerCache: map[int8]map[int][]*resource.Banner{},
  165. bannerBmgCache: map[int8]map[int][]*bangumi.Banner{},
  166. hotCache: map[int][]*region.ShowItem{},
  167. newCache: map[int][]*region.ShowItem{},
  168. dynamicCache: map[int][]*region.ShowItem{},
  169. // overseas
  170. hotOseaCache: map[int][]*region.ShowItem{},
  171. newOseaCache: map[int][]*region.ShowItem{},
  172. dynamicOseaCache: map[int][]*region.ShowItem{},
  173. // region child show item cache
  174. childHotCache: map[int][]*region.ShowItem{},
  175. childNewCache: map[int][]*region.ShowItem{},
  176. childHotAidsCache: map[int][]int64{},
  177. childNewAidsCache: map[int][]int64{},
  178. showDynamicAidsCache: map[int][]int64{},
  179. // overseas region child show item cache
  180. childHotOseaCache: map[int][]*region.ShowItem{},
  181. childNewOseaCache: map[int][]*region.ShowItem{},
  182. // region tag show item cache
  183. tagHotCache: map[string][]*region.ShowItem{},
  184. tagNewCache: map[string][]*region.ShowItem{},
  185. tagHotAidsCache: map[string][]int64{},
  186. tagNewAidsCache: map[string][]int64{},
  187. // overseas region tag show item cache
  188. tagHotOseaCache: map[string][]*region.ShowItem{},
  189. tagNewOseaCache: map[string][]*region.ShowItem{},
  190. // new region feed
  191. regionFeedCache: map[int]*region.Show{},
  192. regionFeedOseaCache: map[int]*region.Show{},
  193. // tags cache
  194. tagsCache: map[string]string{},
  195. // region show
  196. showCache: map[int]*region.Show{},
  197. childShowCache: map[int]*region.Show{},
  198. // overseas region show
  199. showOseaCache: map[int]*region.Show{},
  200. childShowOseaCache: map[int]*region.Show{},
  201. // region dynamic show
  202. showDynamicCache: map[int]*region.Show{},
  203. childShowDynamicCache: map[int]*region.Show{},
  204. // overseas region dynamic show
  205. showDynamicOseaCache: map[int]*region.Show{},
  206. childShowDynamicOseaCache: map[int]*region.Show{},
  207. // similar tag
  208. similarTagCache: map[string][]*region.SimilarTag{},
  209. // similar tag
  210. regionTagCache: map[int][]*region.SimilarTag{},
  211. // ranking
  212. rankCache: map[int][]*region.ShowItem{},
  213. rankOseaCache: map[int][]*region.ShowItem{},
  214. // card
  215. cardCache: map[string][]*region.Head{},
  216. columnListCache: map[int]*card.ColumnList{},
  217. // region
  218. reRegionCache: map[int]*region.Region{},
  219. // json tick
  220. jsonOn: false,
  221. jsonCh: make(chan int64, 128),
  222. jsonIdsCache: map[int64]struct{}{},
  223. // cpm percentage 0~100
  224. cpmNum: 0,
  225. cpmMid: map[int64]struct{}{},
  226. cpmAll: true,
  227. adIsPost: false,
  228. // infoc
  229. logCh: make(chan interface{}, 1024),
  230. }
  231. now := time.Now()
  232. s.loadRegionlist()
  233. s.loadRegion()
  234. s.loadShow()
  235. s.loadShowChild()
  236. s.loadShowChildTagsInfo()
  237. s.loadBanner()
  238. s.loadbgmBanner()
  239. s.loadAuditCache()
  240. s.loadRegionListCache()
  241. s.loadRankRegionCache()
  242. s.loadColumnListCache(now)
  243. s.loadCardCache(now)
  244. go s.loadproc()
  245. go s.infocproc()
  246. return
  247. }
  248. func (s *Service) loadproc() {
  249. for {
  250. time.Sleep(s.tick)
  251. now := time.Now()
  252. s.loadRegionlist()
  253. s.loadRegion()
  254. s.loadShow()
  255. s.loadShowChild()
  256. s.loadShowChildTagsInfo()
  257. s.loadBanner()
  258. s.loadbgmBanner()
  259. s.loadAuditCache()
  260. s.loadRegionListCache()
  261. s.loadRankRegionCache()
  262. s.loadColumnListCache(now)
  263. s.loadCardCache(now)
  264. }
  265. }
  266. // Close dao
  267. func (s *Service) Close() {
  268. s.dao.Close()
  269. }
  270. // SetCpm percentage 0~100
  271. func (s *Service) SetCpmNum(num int) {
  272. s.cpmNum = num
  273. if s.cpmNum < 0 {
  274. s.cpmNum = 0
  275. } else if s.cpmNum > 100 {
  276. s.cpmNum = 100
  277. }
  278. }
  279. // GetCpm percentage
  280. func (s *Service) CpmNum() int {
  281. return s.cpmNum
  282. }
  283. // SetCpm percentage 0~100
  284. func (s *Service) SetCpmMid(mid int64) {
  285. var mids = map[int64]struct{}{}
  286. mids[mid] = struct{}{}
  287. for mid, _ := range s.cpmMid {
  288. if _, ok := mids[mid]; !ok {
  289. mids[mid] = struct{}{}
  290. }
  291. }
  292. s.cpmMid = mids
  293. }
  294. // GetCpm percentage
  295. func (s *Service) CpmMid() []int {
  296. var mids []int
  297. for mid, _ := range s.cpmMid {
  298. mids = append(mids, int(mid))
  299. }
  300. return mids
  301. }
  302. // SetCpm All
  303. func (s *Service) SetCpmAll(isAll bool) {
  304. s.cpmAll = isAll
  305. }
  306. // GetCpm All
  307. func (s *Service) CpmAll() int {
  308. if s.cpmAll {
  309. return 1
  310. }
  311. return 0
  312. }
  313. // SetIsPost Get or Post
  314. func (s *Service) SetAdIsPost(isPost bool) {
  315. s.adIsPost = isPost
  316. }
  317. // IsPost Get or Post
  318. func (s *Service) AdIsPost() int {
  319. if s.adIsPost {
  320. return 1
  321. }
  322. return 0
  323. }