infoc.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package region
  2. import (
  3. "bytes"
  4. "strconv"
  5. "time"
  6. "go-common/app/interface/main/app-show/conf"
  7. "go-common/library/log"
  8. binfoc "go-common/library/log/infoc"
  9. )
  10. type infoc struct {
  11. mid string
  12. rid string
  13. tid string
  14. pn string
  15. hotavid []int64
  16. newavid []int64
  17. now string
  18. }
  19. // Infoc write data for Hadoop do analytics
  20. func (s *Service) infoc(mid int64, hotavid, newavid []int64, rid, tid int, pull bool, now time.Time) {
  21. var pn string
  22. if pull {
  23. pn = "1"
  24. } else {
  25. pn = "2"
  26. }
  27. select {
  28. case s.logCh <- infoc{strconv.FormatInt(mid, 10), strconv.Itoa(rid), strconv.Itoa(tid), pn, hotavid, newavid, strconv.FormatInt(now.Unix(), 10)}:
  29. default:
  30. log.Warn("infoc log buffer is full")
  31. }
  32. }
  33. // writeInfoc
  34. func (s *Service) infocproc() {
  35. const (
  36. noItem1 = `{"section":{"rid":`
  37. noItem2 = `,"tagid":`
  38. noItem3 = `,"mid":`
  39. noItem4 = `,"pn":`
  40. noItem5 = `,"hot_avids":[],"item_avids":[]}}`
  41. )
  42. var (
  43. msg1 = []byte(`{"section":{"rid":`)
  44. msg2 = []byte(`,"tagid":`)
  45. msg3 = []byte(`,"mid":`)
  46. msg4 = []byte(`,"pn":`)
  47. msg5 = []byte(`,"hot_avids":[`)
  48. msg6 = []byte(`,`)
  49. msg7 = []byte(`],"item_avids":[`)
  50. msg8 = []byte(`,`)
  51. msg9 = []byte(`]}}`)
  52. inf2 = binfoc.New(conf.Conf.FeedInfoc2)
  53. buf bytes.Buffer
  54. list string
  55. )
  56. for {
  57. i, ok := <-s.logCh
  58. if !ok {
  59. log.Warn("infoc proc exit")
  60. return
  61. }
  62. switch v := i.(type) {
  63. case infoc:
  64. if len(v.newavid) > 0 {
  65. buf.Write(msg1)
  66. buf.WriteString(v.rid)
  67. buf.Write(msg2)
  68. buf.WriteString(v.tid)
  69. buf.Write(msg3)
  70. buf.WriteString(v.mid)
  71. buf.Write(msg4)
  72. buf.WriteString(v.pn)
  73. buf.Write(msg5)
  74. for _, v := range v.hotavid {
  75. buf.WriteString(strconv.FormatInt(v, 10))
  76. buf.Write(msg6)
  77. }
  78. if len(v.hotavid) > 0 {
  79. buf.Truncate(buf.Len() - 1)
  80. }
  81. buf.Write(msg7)
  82. for _, v := range v.newavid {
  83. buf.WriteString(strconv.FormatInt(v, 10))
  84. buf.Write(msg8)
  85. }
  86. buf.Truncate(buf.Len() - 1)
  87. buf.Write(msg9)
  88. list = buf.String()
  89. buf.Reset()
  90. } else {
  91. list = noItem1 + v.rid + noItem2 + v.tid + noItem3 + v.mid + noItem4 + v.pn + noItem5
  92. }
  93. inf2.Info(v.now, list)
  94. }
  95. }
  96. }