mqtt_handle.go 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. package mqtt
  2. import (
  3. "encoding/json"
  4. "kpt-pasture/model"
  5. "kpt-pasture/util"
  6. "strconv"
  7. "strings"
  8. "sync"
  9. "github.com/jinzhu/copier"
  10. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  11. "gitee.com/xuyiping_admin/pkg/xerr"
  12. "go.uber.org/zap"
  13. "gorm.io/gorm"
  14. )
  15. type DataInsertNeckRingLog struct {
  16. NeckRingOriginalData []*model.NeckRingOriginal
  17. NeckRingErrorData []*model.NeckRingError
  18. }
  19. var (
  20. DSMLog = &DataInsertNeckRingLog{
  21. NeckRingOriginalData: make([]*model.NeckRingOriginal, 0),
  22. NeckRingErrorData: make([]*model.NeckRingError, 0),
  23. }
  24. mu sync.Mutex
  25. )
  26. func (e *Entry) NeckRingHandle(data []byte) {
  27. newData := e.MsgDataFormat2(data)
  28. if newData == nil {
  29. return
  30. }
  31. if len(newData.NeckRingErrorData) > 0 || len(newData.NeckRingOriginalData) > 0 {
  32. // 写入数据
  33. if err := e.CreatedData(newData); err != nil {
  34. zaplog.Error("Failed to create data", zap.Any("err", err), zap.Any("dataList", newData))
  35. }
  36. }
  37. }
  38. // 处理批量数据
  39. func (e *Entry) processBatch(batchList []*model.NeckRingOriginal) {
  40. // 初始化分类数据
  41. var (
  42. errorData []*model.NeckRingError
  43. originalData []*model.NeckRingOriginal
  44. )
  45. // 分类数据
  46. for _, batch := range batchList {
  47. // 异常脖环数据
  48. if ok := util.IsValidFrameId(batch.Frameid); !ok {
  49. var ed model.NeckRingError
  50. err := copier.Copy(&ed, &batch)
  51. if err != nil {
  52. zaplog.Error("processBatch", zap.Any("copier", err), zap.Any("data", batch))
  53. continue
  54. }
  55. errorData = append(errorData, &ed)
  56. } else {
  57. originalData = append(originalData, batch)
  58. }
  59. }
  60. // 更新日志
  61. DSMLog.NeckRingErrorData = append(DSMLog.NeckRingErrorData, errorData...)
  62. DSMLog.NeckRingOriginalData = append(DSMLog.NeckRingOriginalData, originalData...)
  63. // 写入数据
  64. if err := e.CreatedData(DSMLog); err != nil {
  65. zaplog.Error("Failed to create data", zap.Any("err", err), zap.Any("dataList", DSMLog))
  66. }
  67. // 清空日志
  68. DSMLog.NeckRingErrorData = DSMLog.NeckRingErrorData[:0]
  69. DSMLog.NeckRingOriginalData = DSMLog.NeckRingOriginalData[:0]
  70. }
  71. func (e *Entry) CreatedData(DSMLog *DataInsertNeckRingLog) error {
  72. if err := e.DB.Transaction(func(tx *gorm.DB) error {
  73. if len(DSMLog.NeckRingErrorData) > 0 {
  74. if err := e.DB.Model(new(model.NeckRingError)).
  75. Create(DSMLog.NeckRingErrorData).Error; err != nil {
  76. return xerr.WithStack(err)
  77. }
  78. }
  79. if len(DSMLog.NeckRingOriginalData) > 0 {
  80. // 批量写入数据
  81. if err := e.DB.Model(new(model.NeckRingOriginal)).
  82. CreateInBatches(DSMLog.NeckRingOriginalData, 50).Error; err != nil {
  83. return xerr.WithStack(err)
  84. }
  85. }
  86. return nil
  87. }); err != nil {
  88. return xerr.WithStack(err)
  89. }
  90. return nil
  91. }
  92. func (e *Entry) MsgDataFormat2(msg []byte) *DataInsertNeckRingLog {
  93. mu.Lock()
  94. defer mu.Unlock()
  95. neckLogList := &model.NeckRingWrapper{}
  96. if err := json.Unmarshal(msg, neckLogList); err != nil {
  97. zaplog.Error("MsgDataFormat", zap.Any("err", err), zap.Any("msg", string(msg)))
  98. return nil
  99. }
  100. if neckLogList.Type == "heartbeat" {
  101. return nil
  102. }
  103. normalOriginal := make([]*model.NeckRingOriginal, 0)
  104. errorOriginal := make([]*model.NeckRingError, 0)
  105. for _, neckLog := range neckLogList.NeckRing.NeckPck {
  106. newOriginal := model.NewNeckRingOriginal(neckLog)
  107. if ok := util.IsValidFrameId(neckLog.Frameid); !ok {
  108. var ed model.NeckRingError
  109. if err := copier.Copy(&ed, &newOriginal); err != nil {
  110. zaplog.Error("MsgDataFormat2", zap.Any("copier", err), zap.Any("neckLog", neckLog))
  111. continue
  112. }
  113. errorOriginal = append(errorOriginal, &ed)
  114. } else {
  115. activeDate, hours := util.GetNeckRingActiveTimer(neckLog.Frameid)
  116. newOriginal.ActiveDate = activeDate
  117. newOriginal.Hours = int32(hours)
  118. normalOriginal = append(normalOriginal, newOriginal)
  119. }
  120. }
  121. return &DataInsertNeckRingLog{
  122. NeckRingErrorData: errorOriginal,
  123. NeckRingOriginalData: normalOriginal,
  124. }
  125. }
  126. func (e *Entry) MsgDataFormat(msg []byte) []*model.NeckRingOriginal {
  127. msgData := make(map[string]interface{})
  128. pairs := strings.Split(util.MsgFormat(string(msg)), " ")
  129. for _, pair := range pairs {
  130. parts := strings.SplitN(pair, ":", 2)
  131. if len(parts) != 2 {
  132. continue
  133. }
  134. key, value := parts[0], parts[1]
  135. if len(key) == 0 {
  136. continue
  137. }
  138. msgData[key] = value
  139. }
  140. softVer := int64(0)
  141. if softVerInter, ok := msgData["SOFT_VER"]; ok {
  142. if softVerstr, ok := softVerInter.(string); ok {
  143. softVer, _ = strconv.ParseInt(softVerstr, 10, 64)
  144. }
  145. }
  146. if softVer <= 0 {
  147. if softVerInter, ok := msgData["soft_ver"]; ok {
  148. if softVerstr, ok := softVerInter.(string); ok {
  149. softVer, _ = strconv.ParseInt(softVerstr, 10, 64)
  150. }
  151. }
  152. }
  153. uuid := ""
  154. if uuidInter, ok := msgData["uuid"]; ok {
  155. if uuidStr, ok := uuidInter.(string); ok {
  156. uuid = uuidStr
  157. }
  158. }
  159. frameId := int64(0)
  160. if frameIdInter, ok := msgData["frameid"]; ok {
  161. if frameId64, ok := frameIdInter.(string); ok {
  162. frameId, _ = strconv.ParseInt(frameId64, 10, 64)
  163. }
  164. }
  165. temp := float64(0)
  166. if tempInter, ok := msgData["Temp"]; ok {
  167. if tempFloat, ok := tempInter.(string); ok {
  168. temp, _ = strconv.ParseFloat(tempFloat, 64)
  169. }
  170. }
  171. if temp <= 0 {
  172. if tempInter, ok := msgData["temp"]; ok {
  173. if tempFloat, ok := tempInter.(string); ok {
  174. temp, _ = strconv.ParseFloat(tempFloat, 64)
  175. }
  176. }
  177. }
  178. imei := ""
  179. if imeiInter, ok := msgData["imei"]; ok {
  180. if imeiStr, ok := imeiInter.(string); ok {
  181. imei = imeiStr
  182. }
  183. }
  184. active := int64(0)
  185. if activeInter, ok := msgData["active"]; ok {
  186. if active32, ok := activeInter.(string); ok {
  187. active, _ = strconv.ParseInt(active32, 10, 64)
  188. }
  189. }
  190. inAction := int64(0)
  191. if inActionInter, ok := msgData["inactive"]; ok {
  192. if inAction32, ok := inActionInter.(string); ok {
  193. inAction, _ = strconv.ParseInt(inAction32, 10, 64)
  194. }
  195. }
  196. ruMina := int64(0)
  197. if ruMinaInter, ok := msgData["Rumina"]; ok {
  198. if ruMina32, ok := ruMinaInter.(string); ok {
  199. ruMina, _ = strconv.ParseInt(ruMina32, 10, 64)
  200. }
  201. }
  202. if ruMina <= 0 {
  203. if ruMinaInter, ok := msgData["rumina"]; ok {
  204. if ruMina32, ok := ruMinaInter.(string); ok {
  205. ruMina, _ = strconv.ParseInt(ruMina32, 10, 64)
  206. }
  207. }
  208. }
  209. intake := int64(0)
  210. if intakeInter, ok := msgData["Intake"]; ok {
  211. if intake32, ok := intakeInter.(string); ok {
  212. intake, _ = strconv.ParseInt(intake32, 10, 64)
  213. }
  214. }
  215. if intake <= 0 {
  216. if intakeInter, ok := msgData["intake"]; ok {
  217. if intake32, ok := intakeInter.(string); ok {
  218. intake, _ = strconv.ParseInt(intake32, 10, 64)
  219. }
  220. }
  221. }
  222. gasp := int64(0)
  223. if gaspInter, ok := msgData["gasp"]; ok {
  224. if gasp32, ok := gaspInter.(string); ok {
  225. gasp, _ = strconv.ParseInt(gasp32, 10, 64)
  226. }
  227. }
  228. reMain := int64(0)
  229. if reMainInter, ok := msgData["Remain"]; ok {
  230. if reMain32, ok := reMainInter.(string); ok {
  231. reMain, _ = strconv.ParseInt(reMain32, 10, 64)
  232. }
  233. }
  234. if ruMina <= 0 {
  235. if reMainInter, ok := msgData["remain"]; ok {
  236. if reMain32, ok := reMainInter.(string); ok {
  237. reMain, _ = strconv.ParseInt(reMain32, 10, 64)
  238. }
  239. }
  240. }
  241. /*cowId := ""
  242. if cowIdInter, ok := msgData["cowid"]; ok {
  243. if cowIdStr, ok := cowIdInter.(string); ok {
  244. cowId = cowIdStr
  245. }
  246. }
  247. csq := int64(0)
  248. if csqInter, ok := msgData["csq"]; ok {
  249. if csq32, ok := csqInter.(string); ok {
  250. csq, _ = strconv.ParseInt(csq32, 10, 64)
  251. }
  252. }
  253. other := int64(0)
  254. if otherInter, ok := msgData["other"]; ok {
  255. if other32, ok := otherInter.(string); ok {
  256. other, _ = strconv.ParseInt(other32, 10, 64)
  257. }
  258. }
  259. nccId := ""
  260. if nccIdInter, ok := msgData["nccid"]; ok {
  261. if nccIdStr, ok := nccIdInter.(string); ok {
  262. nccId = nccIdStr
  263. }
  264. }
  265. */
  266. return []*model.NeckRingOriginal{
  267. {
  268. FirmwareVersion: int32(softVer),
  269. Uuid: uuid,
  270. Frameid: int32(frameId),
  271. ReceiveNumber: imei,
  272. Active: int32(active),
  273. Inactive: int32(inAction),
  274. Rumina: int32(ruMina),
  275. Intake: int32(intake),
  276. Gasp: int32(gasp),
  277. Remain: int32(reMain),
  278. },
  279. }
  280. }