infoc.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. package show
  2. import (
  3. "bytes"
  4. "strconv"
  5. "time"
  6. "go-common/app/interface/main/app-show/conf"
  7. "go-common/app/interface/main/app-show/model"
  8. "go-common/app/interface/main/app-show/model/feed"
  9. "go-common/app/interface/main/app-show/model/show"
  10. "go-common/library/log"
  11. binfoc "go-common/library/log/infoc"
  12. )
  13. type infoc struct {
  14. mid string
  15. client string
  16. buvid string
  17. disid string
  18. ip string
  19. api string
  20. now string
  21. isRcmmnd string
  22. items []*show.Item
  23. }
  24. type feedInfoc struct {
  25. mobiApp string
  26. device string
  27. build string
  28. now string
  29. loginEvent string
  30. mid string
  31. buvid string
  32. page string
  33. feed []*feed.Item
  34. }
  35. // Infoc write data for Hadoop do analytics
  36. func (s *Service) Infoc(mid int64, plat int8, buvid, disid, ip, api string, items []*show.Item, now time.Time) {
  37. select {
  38. case s.logCh <- infoc{strconv.FormatInt(mid, 10), strconv.Itoa(int(plat)), buvid, disid, ip, api, strconv.FormatInt(now.Unix(), 10), "1", items}:
  39. default:
  40. log.Warn("infoc log buffer is full")
  41. }
  42. }
  43. func (s *Service) infocfeed(i interface{}) {
  44. select {
  45. case s.logFeedCh <- i:
  46. default:
  47. log.Warn("infocfeed chan full")
  48. }
  49. }
  50. // writeInfoc
  51. func (s *Service) infocproc() {
  52. const (
  53. // infoc format {"section":{"id":"热门推荐","pos":1,"items":[{"id":%s,"pos":%d,"type":1,"url":""}]}}
  54. noItem = `{"section":{"id":"热门推荐","pos":1,"items":[""]}}`
  55. )
  56. var (
  57. msg1 = []byte(`{"section":{"id":"热门推荐","pos":1,"items":[`)
  58. msg2 = []byte(`{"id":`)
  59. msg3 = []byte(`,"pos":`)
  60. msg4 = []byte(`,"type":1,"url":""},`)
  61. inf2 = binfoc.New(conf.Conf.Infoc2)
  62. buf bytes.Buffer
  63. list string
  64. )
  65. for {
  66. i := <-s.logCh
  67. if len(i.items) > 0 {
  68. buf.Write(msg1)
  69. for i, v := range i.items {
  70. if v.Goto != model.GotoAv {
  71. continue
  72. }
  73. buf.Write(msg2)
  74. buf.WriteString(v.Param)
  75. buf.Write(msg3)
  76. buf.WriteString(strconv.Itoa(i + 1))
  77. buf.Write(msg4)
  78. }
  79. buf.Truncate(buf.Len() - 1)
  80. buf.WriteString(`]}}`)
  81. list = buf.String()
  82. buf.Reset()
  83. } else {
  84. list = noItem
  85. }
  86. inf2.Info(i.ip, i.now, i.api, i.buvid, i.mid, i.client, "1", list, i.disid, i.isRcmmnd)
  87. }
  88. }
  89. func (s *Service) infocfeedproc() {
  90. const (
  91. noItem = `[]`
  92. )
  93. var (
  94. msg1 = []byte(`[`)
  95. msg2 = []byte(`{"goto":"`)
  96. msg3 = []byte(`","param":"`)
  97. msg4 = []byte(`","uri":"`)
  98. msg5 = []byte(`","r_pos":`)
  99. msg6 = []byte(`,"from_type":"`)
  100. msg9 = []byte(`","corner_mark":`)
  101. msg10 = []byte(`,"rcmd_content":"`)
  102. msg11 = []byte(`","card_style":`)
  103. msg12 = []byte(`,"items":[`)
  104. msg13 = []byte(`{"goto":"`)
  105. msg14 = []byte(`","param":"`)
  106. msg17 = []byte(`","pos":`)
  107. msg15 = []byte(`},`)
  108. msg16 = []byte(`]`)
  109. msg7 = []byte(`},`)
  110. msg8 = []byte(`]`)
  111. buf bytes.Buffer
  112. list string
  113. feedInf = binfoc.New(s.c.FeedTabInfoc)
  114. )
  115. for {
  116. i, ok := <-s.logFeedCh
  117. if !ok {
  118. log.Warn("infoc proc exit")
  119. return
  120. }
  121. switch l := i.(type) {
  122. case *feedInfoc:
  123. if f := l.feed; len(f) == 0 {
  124. list = noItem
  125. } else {
  126. buf.Write(msg1)
  127. for _, item := range f {
  128. buf.Write(msg2)
  129. buf.WriteString(item.Goto)
  130. buf.Write(msg3)
  131. buf.WriteString(item.Param)
  132. buf.Write(msg4)
  133. buf.WriteString(item.URI)
  134. buf.Write(msg5)
  135. buf.WriteString(strconv.FormatInt(item.Idx, 10))
  136. buf.Write(msg6)
  137. buf.WriteString(item.FromType)
  138. buf.Write(msg9)
  139. buf.WriteString(strconv.Itoa(int(item.CornerMark)))
  140. buf.Write(msg10)
  141. buf.WriteString(item.RcmdContent)
  142. buf.Write(msg11)
  143. buf.WriteString(strconv.Itoa(int(item.CardStyle)))
  144. if len(item.Item) > 0 {
  145. buf.Write(msg12)
  146. for pos, it := range item.Item {
  147. buf.Write(msg13)
  148. buf.WriteString(it.Goto)
  149. buf.Write(msg14)
  150. buf.WriteString(it.Param)
  151. buf.Write(msg17)
  152. buf.WriteString(strconv.Itoa(pos + 1))
  153. buf.Write(msg15)
  154. }
  155. buf.Truncate(buf.Len() - 1)
  156. buf.Write(msg16)
  157. }
  158. buf.Write(msg7)
  159. }
  160. buf.Truncate(buf.Len() - 1)
  161. buf.Write(msg8)
  162. list = buf.String()
  163. buf.Reset()
  164. }
  165. log.Info("showtab_infoc_index(%s,%s,%s,%s,%s,%s,%s,%s)_list(%s)", l.mobiApp, l.device, l.build, l.now, l.loginEvent, l.mid, l.buvid, l.page, list)
  166. feedInf.Info(l.mobiApp, l.device, l.build, l.now, l.loginEvent, l.mid, l.buvid, list, l.page)
  167. }
  168. }
  169. }