capturePeriodsService.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/operation/edge_service"
  5. "iot_manager_service/app/operation/model"
  6. "strconv"
  7. )
  8. // CapturePeriodsService 时段统计
  9. var CapturePeriodsService = new(capturePeriodsService)
  10. type capturePeriodsService struct{}
  11. func (s capturePeriodsService) GetPeriodsList(tenantId string, req model.RequestCaptureFilter) (interface{}, error) {
  12. unit := dao.CaptureUnit{
  13. TenantId: tenantId,
  14. ID: req.CaptureId,
  15. }
  16. unit.GetDevice()
  17. var codes []string
  18. codes = append(codes, unit.CaptureSn)
  19. forCaptureIts := edge_service.ForCaptureIts{}
  20. forData, err := forCaptureIts.VehicleHourTotal(edge_service.ForCaptureItsReq{
  21. Codes: codes,
  22. Start: req.StartTime,
  23. End: req.EndTime,
  24. })
  25. if err != nil {
  26. return nil, err
  27. }
  28. var hours []string
  29. for i := 0; i < 24; i++ {
  30. ii := strconv.Itoa(i)
  31. if len(ii) < 2 {
  32. ii = "0" + ii
  33. }
  34. hours = append(hours, ii)
  35. }
  36. datas := make(map[string]int)
  37. for _, datum := range forData {
  38. timeStr := datum.Time
  39. hour := timeStr[11:13]
  40. _, ok := datas[(hour)]
  41. if ok {
  42. datas[(hour)] += datum.Total
  43. } else {
  44. datas[(hour)] = 0
  45. }
  46. }
  47. var list []model.ResponseCapturePeriods
  48. for _, hour := range hours {
  49. list = append(list, model.ResponseCapturePeriods{Hours: hour, CountT: datas[hour]})
  50. }
  51. return list, nil
  52. }