captureService.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. "iot_manager_service/util/common"
  7. )
  8. var CaptureService = new(captureService)
  9. type captureService struct{}
  10. // GetDayVehicleTotal 车流统计 日
  11. func (s captureService) GetDayVehicleTotal(tenantId int, req model.RequestCaptureFilter) ([]model.ResponseCaptureVehicleTotal, error) {
  12. return s.getVehicleTotalData(0, tenantId, req)
  13. }
  14. // GetMonthVehicleTotal 车流统计 月
  15. func (s captureService) GetMonthVehicleTotal(tenantId int, req model.RequestCaptureFilter) ([]model.ResponseCaptureVehicleTotal, error) {
  16. return s.getVehicleTotalData(1, tenantId, req)
  17. }
  18. // 车流统计公用方法
  19. func (s captureService) getVehicleTotalData(flag int, tenantId int, req model.RequestCaptureFilter) ([]model.ResponseCaptureVehicleTotal, error) {
  20. unit := dao.CaptureUnit{
  21. TenantId: tenantId,
  22. ID: req.CaptureId,
  23. }
  24. unit.GetDevice()
  25. var codes []string
  26. codes = append(codes, unit.CaptureSn)
  27. var list []model.ResponseCaptureVehicleTotal
  28. forCaptureIts := edge_service.ForCaptureIts{}
  29. forData, err := forCaptureIts.VehicleTotal(edge_service.ForCaptureItsReq{
  30. Codes: codes,
  31. Start: req.StartTime,
  32. End: req.EndTime,
  33. Flag: flag,
  34. })
  35. //fmt.Printf("forData = %v \n", forData)
  36. var countTimes []string
  37. if flag == 1 {
  38. countTimes = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  39. } else {
  40. countTimes = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  41. }
  42. for _, countTime := range countTimes {
  43. var countT int
  44. for _, datum := range forData {
  45. time := datum.Time
  46. if flag == 1 {
  47. time += "-01"
  48. }
  49. if time == countTime {
  50. countT = datum.Total
  51. continue
  52. }
  53. }
  54. list = append(list, model.ResponseCaptureVehicleTotal{
  55. CountTime: countTime,
  56. CountT: countT,
  57. })
  58. }
  59. if err != nil {
  60. return nil, err
  61. }
  62. return list, nil
  63. }
  64. // GetSuggestSpeed 从数据库查抓拍单元风向
  65. func (s captureService) GetSuggestSpeed(tenantId int, captureId int) (*dao.CaptureUnit, error) {
  66. unit := dao.CaptureUnit{
  67. TenantId: tenantId,
  68. ID: captureId,
  69. }
  70. if err := unit.GetDevice(); err != nil {
  71. return nil, err
  72. }
  73. return &unit, nil
  74. }