neck_active_habit.go 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. package model
  2. import (
  3. "fmt"
  4. "kpt-pasture/util"
  5. "math"
  6. "strconv"
  7. "strings"
  8. "time"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. )
  11. const (
  12. InitChangeFilter = -10000
  13. DefaultChangeFilter = -99
  14. DefaultRuminaFilter = -99
  15. DefaultChewFilter = -99
  16. DefaultFilterCorrect = 100
  17. DefaultWeeklyActive = 1500
  18. DefaultRecordCount = 6
  19. )
  20. type NeckActiveHabit struct {
  21. Id int64 `json:"id"`
  22. PastureId int64 `json:"pastureId"`
  23. NeckRingNumber string `json:"neckRingNumber"`
  24. CowId int64 `json:"cowId"`
  25. EarNumber string `json:"earNumber"`
  26. Lact int32 `json:"lact"`
  27. CalvingAge int32 `json:"calvingAge"`
  28. ActiveTime string `json:"activeTime"`
  29. Frameid int32 `json:"frameid"`
  30. HeatDate string `json:"heatDate"`
  31. Rumina int32 `json:"rumina"`
  32. Intake int32 `json:"intake"`
  33. Inactive int32 `json:"inactive"`
  34. Gasp int32 `json:"gasp"`
  35. Other int32 `json:"other"`
  36. High int32 `json:"high"`
  37. Active int32 `json:"active"`
  38. FilterHigh int32 `json:"filterHigh"`
  39. FilterRumina int32 `json:"filterRumina"`
  40. FilterChew int32 `json:"filterChew"`
  41. WeekHigh int32 `json:"weekHigh"`
  42. WeekHighHabit int32 `json:"weekHighHabit"`
  43. WeekRuminaHabit int32 `json:"weekRuminaHabit"`
  44. WeekIntakeHabit int32 `json:"weekIntakeHabit"`
  45. WeekChewHabit int32 `json:"weekChewHabit"`
  46. WeekInactiveHabit int32 `json:"weekInactiveHabit"`
  47. WeekOtherHabit int32 `json:"weekOtherHabit"`
  48. ChangeHigh int32 `json:"changeHigh"`
  49. ChangeRumina int32 `json:"changeRumina"`
  50. ChangeChew int32 `json:"changeChew"`
  51. ChangeAdjust int32 `json:"changeAdjust"`
  52. ChangeFilter int32 `json:"changeFilter"`
  53. RuminaFilter int32 `json:"ruminaFilter"`
  54. ChewFilter int32 `json:"chewFilter"`
  55. FilterCorrect int32 `json:"filterCorrect"`
  56. SumRumina int32 `json:"sumRumina"`
  57. SumIntake int32 `json:"sumIntake"`
  58. SumInactive int32 `json:"sumInactive"`
  59. SumActive int32 `json:"sumActive"`
  60. SumMinHigh int32 `json:"sumMinHigh"`
  61. SumMaxHigh int32 `json:"sumMaxHigh"`
  62. SumMinChew int32 `json:"SumMinChew"`
  63. BeforeThreeSumRumina int32 `json:"beforeThreeSumRumina"`
  64. BeforeThreeSumIntake int32 `json:"beforeThreeSumIntake"`
  65. Score int32 `json:"score"`
  66. IsMaxTime pasturePb.IsShow_Kind `json:"isMaxTime"`
  67. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  68. RecordCount int32 `json:"recordCount"`
  69. FirmwareVersion int32 `json:"firmwareVersion"`
  70. CreatedAt int64 `json:"createdAt"`
  71. UpdatedAt int64 `json:"updatedAt"`
  72. }
  73. func (n *NeckActiveHabit) TableName() string {
  74. return "neck_active_habit"
  75. }
  76. func NewNeckActiveHabit(data *NeckRingOriginalMerge) *NeckActiveHabit {
  77. return &NeckActiveHabit{
  78. PastureId: data.PastureId,
  79. Frameid: data.XframeId,
  80. HeatDate: data.ActiveDate,
  81. NeckRingNumber: data.NeckRingNumber,
  82. Active: data.Active,
  83. Gasp: data.Gasp,
  84. High: data.High,
  85. Inactive: data.Inactive,
  86. Intake: data.Intake,
  87. Other: data.Other,
  88. Rumina: data.Rumina,
  89. IsShow: data.IsShow,
  90. WeekHigh: DefaultWeeklyActive,
  91. IsMaxTime: pasturePb.IsShow_No,
  92. ChangeFilter: InitChangeFilter,
  93. FilterCorrect: InitChangeFilter,
  94. RuminaFilter: InitChangeFilter,
  95. ChewFilter: InitChangeFilter,
  96. ActiveTime: fmt.Sprintf("%s %02d:00:00", data.ActiveDate, data.XframeId*2+1),
  97. RecordCount: data.RecordCount,
  98. FirmwareVersion: data.FirmwareVersion,
  99. }
  100. }
  101. type NeckActiveHabitSlice []*NeckActiveHabit
  102. func (n NeckActiveHabitSlice) Len() int { return len(n) }
  103. func (n NeckActiveHabitSlice) Swap(i, j int) { n[i], n[j] = n[j], n[i] }
  104. func (n NeckActiveHabitSlice) Less(i, j int) bool {
  105. if n[i].HeatDate != n[j].HeatDate {
  106. return n[i].HeatDate < n[j].HeatDate
  107. }
  108. return n[i].Frameid < n[j].Frameid
  109. }
  110. func (n NeckActiveHabitSlice) ToPB(curveName string) *CowBehaviorCurveData {
  111. res := &CowBehaviorCurveData{
  112. OriginalDateList: make([]int32, 0),
  113. ChangeDateList: make([]int32, 0),
  114. SumDateList: make([]int32, 0),
  115. DateTimeList: make([]string, 0),
  116. EstrusList: make(map[pasturePb.EstrusLevel_Kind][]string),
  117. EventList: make(map[string][]string),
  118. EventMap: make(map[pasturePb.EventType_Kind]string),
  119. RuminaChange: make([]int32, 0),
  120. }
  121. initFrameId := int32(0)
  122. dateFrameMap := make(map[string][]int32)
  123. for _, v := range n {
  124. if dateFrameMap[v.HeatDate] == nil {
  125. initFrameId = 0
  126. dateFrameMap[v.HeatDate] = make([]int32, 0)
  127. }
  128. // 补全结尾不够的数据
  129. if initFrameId == 0 && len(res.DateTimeList) > 0 {
  130. lastDateTime := res.DateTimeList[len(res.DateTimeList)-1]
  131. lastDatePare := strings.Split(lastDateTime, " ")
  132. if len(lastDatePare) == 2 {
  133. lastDay := lastDatePare[0]
  134. lastHourStr := lastDatePare[1]
  135. lastHour, _ := strconv.ParseInt(lastHourStr, 10, 64)
  136. maxHour := util.ExpectedFrameIDs[len(util.ExpectedFrameIDs)-1]
  137. xframeId := int32(lastHour-1)/2 + 1
  138. if xframeId != maxHour {
  139. for ; xframeId <= maxHour; xframeId++ {
  140. res.DateTimeList = append(res.DateTimeList, fmt.Sprintf("%s %02d", lastDay, util.ExpectedFrameIDs[xframeId]*2+1))
  141. res.OriginalDateList = append(res.OriginalDateList, 0)
  142. res.ChangeDateList = append(res.ChangeDateList, 0)
  143. res.SumDateList = append(res.SumDateList, 0)
  144. }
  145. }
  146. }
  147. }
  148. expectedFrameId := util.ExpectedFrameIDs[initFrameId]
  149. if expectedFrameId != v.Frameid {
  150. maxFrameId := int32(math.Abs(float64(expectedFrameId - v.Frameid)))
  151. for ; expectedFrameId < maxFrameId; expectedFrameId++ {
  152. res.DateTimeList = append(res.DateTimeList, fmt.Sprintf("%s %02d", v.HeatDate, util.ExpectedFrameIDs[expectedFrameId]*2+1))
  153. res.OriginalDateList = append(res.OriginalDateList, 0)
  154. res.ChangeDateList = append(res.ChangeDateList, 0)
  155. res.SumDateList = append(res.SumDateList, 0)
  156. }
  157. initFrameId = expectedFrameId
  158. }
  159. // 格式化为到小时的字符串
  160. parsedTime, _ := time.Parse(LayoutTime, v.ActiveTime)
  161. hourStr := parsedTime.Format(LayoutHour)
  162. res.DateTimeList = append(res.DateTimeList, hourStr)
  163. switch curveName {
  164. case "active": // 活动量
  165. res.OriginalDateList = append(res.OriginalDateList, v.High)
  166. res.ChangeDateList = append(res.ChangeDateList, v.ChangeFilter)
  167. res.RuminaChange = append(res.RuminaChange, v.ChangeRumina)
  168. case "rumina": // 反刍
  169. res.OriginalDateList = append(res.OriginalDateList, v.Rumina)
  170. res.ChangeDateList = append(res.ChangeDateList, v.ChangeRumina)
  171. res.SumDateList = append(res.SumDateList, v.SumRumina)
  172. case "intake": // 采食
  173. res.OriginalDateList = append(res.OriginalDateList, v.Intake)
  174. res.SumDateList = append(res.SumDateList, v.SumIntake)
  175. case "inactive": // 休息
  176. res.OriginalDateList = append(res.OriginalDateList, v.Inactive)
  177. res.SumDateList = append(res.SumDateList, v.SumInactive)
  178. case "chew": // 咀嚼
  179. res.OriginalDateList = append(res.OriginalDateList, v.FilterChew)
  180. res.ChangeDateList = append(res.ChangeDateList, v.ChangeChew)
  181. case "immobility": // 静止
  182. res.OriginalDateList = append(res.OriginalDateList, 120-v.Active)
  183. res.SumDateList = append(res.SumDateList, 60*24-v.SumActive)
  184. }
  185. initFrameId++
  186. }
  187. return res
  188. }
  189. func (n *NeckActiveHabit) SumAvg() {
  190. n.Rumina = n.Rumina / n.RecordCount * n.RecordCount
  191. n.Inactive = n.Inactive / n.RecordCount * n.RecordCount
  192. n.Active = n.Active / n.RecordCount * n.RecordCount
  193. n.Intake = n.Intake / n.RecordCount * n.RecordCount
  194. n.Other = n.Other / n.RecordCount * n.RecordCount
  195. n.Gasp = n.Gasp / n.RecordCount * n.RecordCount
  196. n.High = n.High / n.RecordCount * n.RecordCount
  197. }
  198. type MaxHabitIdModel struct {
  199. Id int64 `json:"id"`
  200. }