From d620e65b30db7bc43db71d26fbce36548819eebc Mon Sep 17 00:00:00 2001
From: lizijie <lzjiiie@163.com>
Date: Tue, 28 Dec 2021 09:42:19 +0800
Subject: [PATCH] 修改特殊设备更新接口

---
 screen-api/src/main/java/com/moral/api/service/impl/ProfessionServiceImpl.java |  362 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 352 insertions(+), 10 deletions(-)

diff --git a/screen-api/src/main/java/com/moral/api/service/impl/ProfessionServiceImpl.java b/screen-api/src/main/java/com/moral/api/service/impl/ProfessionServiceImpl.java
index d67599f..fa708b8 100644
--- a/screen-api/src/main/java/com/moral/api/service/impl/ProfessionServiceImpl.java
+++ b/screen-api/src/main/java/com/moral/api/service/impl/ProfessionServiceImpl.java
@@ -3,8 +3,12 @@
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.core.RedisTemplate;
 import org.springframework.stereotype.Service;
+import org.springframework.util.ObjectUtils;
 
+import java.text.NumberFormat;
+import java.util.ArrayList;
 import java.util.Arrays;
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.List;
@@ -13,12 +17,28 @@
 import java.util.stream.Collectors;
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.moral.api.entity.CityAqi;
+import com.moral.api.entity.CityAqiDaily;
+import com.moral.api.entity.CityAqiMonthly;
 import com.moral.api.entity.Device;
+import com.moral.api.entity.HistoryDaily;
+import com.moral.api.entity.HistoryMonthly;
 import com.moral.api.entity.Sensor;
+import com.moral.api.service.CityAqiDailyService;
+import com.moral.api.service.CityAqiMonthlyService;
+import com.moral.api.service.CityAqiService;
 import com.moral.api.service.DeviceService;
+import com.moral.api.service.HistoryDailyService;
+import com.moral.api.service.HistoryHourlyService;
+import com.moral.api.service.HistoryMonthlyService;
+import com.moral.api.service.OrganizationService;
 import com.moral.api.service.ProfessionService;
+
 import com.moral.constant.Constants;
 import com.moral.constant.RedisConstants;
+
+import com.moral.util.AmendUtils;
+import com.moral.util.DateUtils;
 
 /**
  * <p>
@@ -36,6 +56,38 @@
 
     @Autowired
     private RedisTemplate redisTemplate;
+
+    @Autowired
+    private HistoryMonthlyService historyMonthlyService;
+
+    @Autowired
+    private HistoryDailyService historyDailyService;
+
+    @Autowired
+    private HistoryHourlyService historyHourlyService;
+
+    @Autowired
+    private CityAqiMonthlyService cityAqiMonthlyService;
+
+    @Autowired
+    private CityAqiDailyService cityAqiDailyService;
+
+    @Autowired
+    private CityAqiService cityAqiService;
+
+    @Autowired
+    private OrganizationService organizationService;
+
+    private static Map<String, String> senorMap = new HashMap<>();
+
+    static {
+        senorMap.put(Constants.SENSOR_CODE_PM25, "PM2_5");
+        senorMap.put(Constants.SENSOR_CODE_PM10, "PM10");
+        senorMap.put(Constants.SENSOR_CODE_SO2, "SO2");
+        senorMap.put(Constants.SENSOR_CODE_NO2, "NO2");
+        senorMap.put(Constants.SENSOR_CODE_CO, "CO");
+        senorMap.put(Constants.SENSOR_CODE_O3, "O3");
+    }
 
     @Override
     public Set<Map<String, Object>> getProfessionsByOrganizationId(Integer organizationId) {
@@ -55,6 +107,22 @@
         //���������������������������������
         Integer orgId = Integer.parseInt(params.get("organizationId").toString());
         List<String> professions = Arrays.asList(params.get("professions").toString().split(","));
+        List<Device> devices = getDevicesOfProfessions(orgId, professions);
+        //���redis������������������������
+        for (Device device : devices) {
+            device = (Device) redisTemplate.opsForHash().get(RedisConstants.DEVICE_INFO, device.getMac());
+            List<Sensor> sensors = device.getVersion().getSensors();
+            for (Sensor sensor : sensors) {
+                Map<String, Object> sensorMap = new HashMap<>();
+                sensorMap.put("sensorCode", sensor.getCode());
+                sensorMap.put("sensorName", sensor.getName());
+                result.add(sensorMap);
+            }
+        }
+        return result;
+    }
+
+    private List<Device> getDevicesOfProfessions(Integer orgId, List<String> professions) {
         QueryWrapper<Device> queryWrapper = new QueryWrapper<>();
         queryWrapper.select("mac", "profession")
                 .eq("organization_id", orgId)
@@ -69,18 +137,292 @@
             }
             return false;
         }).collect(Collectors.toList());
+        return devices;
+    }
 
-        //���redis������������������������
-        for (Device device : devices) {
-            device = (Device) redisTemplate.opsForHash().get(RedisConstants.DEVICE_INFO, device.getMac());
-            List<Sensor> sensors = device.getVersion().getSensors();
-            for (Sensor sensor : sensors) {
-                Map<String, Object> sensorMap = new HashMap<>();
-                sensorMap.put("sensorCode", sensor.getCode());
-                sensorMap.put("sensorName", sensor.getName());
-                result.add(sensorMap);
-            }
+    @Override
+    public List<Map<String, Object>> professionContribution(Map<String, Object> params) {
+        int orgId = Integer.parseInt(params.get("organizationId").toString());
+        List<String> professions = Arrays.asList(params.get("professions").toString().split(","));
+        String type = params.get("type").toString();
+        String time = params.get("time").toString();
+        String sensorCode = params.get("sensorCode").toString();
+        List<Map<String, Object>> result = new ArrayList<>();
+
+        switch (type) {
+            case "year":
+                result = professionContributionOfYear(orgId, professions, time, sensorCode);
+                break;
+            case "month":
+                result = professionContributionOfMonth(orgId, professions, time, sensorCode);
+                break;
+            case "day":
+                result = professionContributionOfDay(orgId, professions, time, sensorCode);
+                break;
+            default:
+                break;
         }
         return result;
     }
+
+    //���������������
+    private List<Map<String, Object>> professionContributionOfYear(Integer orgId, List<String> professions, String time, String sensorCode) {
+        List<Map<String, Object>> result = new ArrayList<>();
+
+        //���������������������������
+        List allMacs = getMacsByOrgId(orgId);
+
+        List<String> timeLag = DateUtils.getTimeLag(time);
+        for (String yearMonth : timeLag) {
+            Map<String, Object> resultMap = new HashMap<>();
+            resultMap.put("time", yearMonth.split("-")[1]);
+            yearMonth = yearMonth + "-01 00:00:00";
+
+
+            //������������������������������
+            Double allDeviceSum = null;
+            QueryWrapper<HistoryMonthly> historyMonthlyQueryWrapper = new QueryWrapper<>();
+            historyMonthlyQueryWrapper.select("SUM(`value`->'$." + sensorCode + "') AS result")
+                    .eq("time", yearMonth)
+                    .in("mac", allMacs);
+            Map<String, Object> allDeviceSumMap = historyMonthlyService.getMap(historyMonthlyQueryWrapper);
+            if (!ObjectUtils.isEmpty(allDeviceSumMap)) {
+                allDeviceSum = (Double) allDeviceSumMap.get("result");
+            }
+
+
+            //������������
+            Double cityValue = null;
+            //������������������������������
+            Integer locationLevelCode = organizationService.getById(orgId).getLocationLevelCode();
+            QueryWrapper<CityAqiMonthly> cityAqiMonthlyQueryWrapper = new QueryWrapper<>();
+            cityAqiMonthlyQueryWrapper.select("`value`->'$." + sensorCode + "' AS result")
+                    .eq("city_code", locationLevelCode)
+                    .eq("time", yearMonth);
+            Map<String, Object> cityValueMap = cityAqiMonthlyService.getMap(cityAqiMonthlyQueryWrapper);
+            if (!ObjectUtils.isEmpty(cityValueMap)) {
+                cityValue = (Double) cityValueMap.get("result");
+            }
+            resultMap.put("cityValue", cityValue);
+
+
+            for (String profession : professions) {
+                Map<String, Object> professionMap = new HashMap<>();
+
+                //���������������������
+                List<Device> devices = getDevicesOfProfessions(orgId, Collections.singletonList(profession));
+                List<String> professionMacs = devices.stream().map(Device::getMac).collect(Collectors.toList());
+
+
+                //������������������
+                Double professionSum = null;
+                historyMonthlyQueryWrapper.clear();
+                historyMonthlyQueryWrapper.select("SUM(`value`->'$." + sensorCode + "') AS result")
+                        .eq("time", yearMonth)
+                        .in("mac", professionMacs);
+                Map<String, Object> professionSumMap = historyMonthlyService.getMap(historyMonthlyQueryWrapper);
+                if (!ObjectUtils.isEmpty(professionSumMap)) {
+                    professionSum = (Double) professionSumMap.get("result");
+                }
+
+
+                //������������������
+                Double professionAvg = null;
+                historyMonthlyQueryWrapper.clear();
+                historyMonthlyQueryWrapper.select("AVG(`value`->'$." + sensorCode + "') AS result")
+                        .eq("time", yearMonth)
+                        .in("mac", professionMacs);
+                Map<String, Object> professionAvgMap = historyMonthlyService.getMap(historyMonthlyQueryWrapper);
+                if (!ObjectUtils.isEmpty(professionAvgMap)) {
+                    professionAvg = (Double) professionAvgMap.get("result");
+                }
+
+                //���������������������
+                String contributionRate = null;
+                NumberFormat numberFormat = NumberFormat.getInstance();
+                numberFormat.setMaximumFractionDigits(2);
+                if (professionSum != null && allDeviceSum != null) {
+                    contributionRate = numberFormat.format(professionSum / allDeviceSum * 100) + "%";
+                }
+
+                //������������
+                professionMap.put("value", professionAvg == null ? null : AmendUtils.sciCal(professionAvg, 0));
+                //���������������
+                professionMap.put("contributionRate", contributionRate);
+
+                resultMap.put(profession, professionMap);
+            }
+            result.add(resultMap);
+        }
+        return result;
+    }
+
+    //���������������
+    private List<Map<String, Object>> professionContributionOfMonth(Integer orgId, List<String> professions, String time, String sensorCode) {
+        List<Map<String, Object>> result = new ArrayList<>();
+
+        //���������������������������
+        List allMacs = getMacsByOrgId(orgId);
+
+        List<String> timeLag = DateUtils.getTimeLag(time);
+        for (String yearMonthDay : timeLag) {
+            Map<String, Object> resultMap = new HashMap<>();
+            resultMap.put("time", yearMonthDay.split("-")[2]);
+            yearMonthDay = yearMonthDay + " 00:00:00";
+
+
+            //������������������������������
+            Double allDeviceSum = null;
+            QueryWrapper<HistoryDaily> historyDailyQueryWrapper = new QueryWrapper<>();
+            historyDailyQueryWrapper.select("SUM(`value`->'$." + sensorCode + "') AS result")
+                    .eq("time", yearMonthDay)
+                    .in("mac", allMacs);
+            Map<String, Object> allDeviceSumMap = historyDailyService.getMap(historyDailyQueryWrapper);
+            if (!ObjectUtils.isEmpty(allDeviceSumMap)) {
+                allDeviceSum = (Double) allDeviceSumMap.get("result");
+            }
+
+
+            //������������
+            Double cityValue = null;
+            //������������������������������
+            Integer locationLevelCode = organizationService.getById(orgId).getLocationLevelCode();
+            QueryWrapper<CityAqiDaily> cityAqiDailyQueryWrapper = new QueryWrapper<>();
+            cityAqiDailyQueryWrapper.select("`value`->'$." + sensorCode + "' AS result")
+                    .eq("city_code", locationLevelCode)
+                    .eq("time", yearMonthDay);
+            Map<String, Object> cityValueMap = cityAqiDailyService.getMap(cityAqiDailyQueryWrapper);
+            if (!ObjectUtils.isEmpty(cityValueMap)) {
+                cityValue = (Double) cityValueMap.get("result");
+            }
+            resultMap.put("cityValue", cityValue);
+
+
+
+            for (String profession : professions) {
+                Map<String, Object> professionMap = new HashMap<>();
+
+                //���������������������
+                List<Device> devices = getDevicesOfProfessions(orgId, Collections.singletonList(profession));
+                List<String> professionMacs = devices.stream().map(Device::getMac).collect(Collectors.toList());
+
+
+                //������������������
+                Double professionSum = null;
+                historyDailyQueryWrapper.clear();
+                historyDailyQueryWrapper.select("SUM(`value`->'$." + sensorCode + "') AS result")
+                        .eq("time", yearMonthDay)
+                        .in("mac", professionMacs);
+                Map<String, Object> professionSumMap = historyDailyService.getMap(historyDailyQueryWrapper);
+                if (!ObjectUtils.isEmpty(professionSumMap)) {
+                    professionSum = (Double) professionSumMap.get("result");
+                }
+
+
+                //������������������
+                Double professionAvg = null;
+                historyDailyQueryWrapper.clear();
+                historyDailyQueryWrapper.select("AVG(`value`->'$." + sensorCode + "') AS result")
+                        .eq("time", yearMonthDay)
+                        .in("mac", professionMacs);
+                Map<String, Object> professionAvgMap = historyDailyService.getMap(historyDailyQueryWrapper);
+                if (!ObjectUtils.isEmpty(professionAvgMap)) {
+                    professionAvg = (Double) professionAvgMap.get("result");
+                }
+
+
+                //���������������������
+                String contributionRate = null;
+                NumberFormat numberFormat = NumberFormat.getInstance();
+                numberFormat.setMaximumFractionDigits(2);
+                if (professionSum != null && allDeviceSum != null) {
+                    contributionRate = numberFormat.format(professionSum / allDeviceSum * 100) + "%";
+                }
+
+                //������������
+                professionMap.put("value", professionAvg == null ? null : AmendUtils.sciCal(professionAvg, 0));
+                //���������������
+                professionMap.put("contributionRate", contributionRate);
+
+                resultMap.put(profession, professionMap);
+            }
+            result.add(resultMap);
+        }
+        return result;
+    }
+
+    private List<Map<String, Object>> professionContributionOfDay(Integer orgId, List<String> professions, String time, String sensorCode) {
+        List<Map<String, Object>> result = new ArrayList<>();
+
+        //���������������������������
+        List allMacs = getMacsByOrgId(orgId);
+
+        List<String> timeLag = DateUtils.getTimeLag(time);
+        for (String yearMonthDayHour : timeLag) {
+            Map<String, Object> resultMap = new HashMap<>();
+            resultMap.put("time", yearMonthDayHour.split(" ")[1]);
+            yearMonthDayHour = yearMonthDayHour + ":00:00";
+
+
+            //������������������������������
+            Double allDeviceSum = historyHourlyService.getSensorSumByMacs(sensorCode, allMacs, yearMonthDayHour);
+
+
+            //������������
+            Double cityValue = null;
+            //������������������������������
+            Integer locationLevelCode = organizationService.getById(orgId).getLocationLevelCode();
+            QueryWrapper<CityAqi> cityAqiQueryWrapper = new QueryWrapper<>();
+            cityAqiQueryWrapper.select("`value`->'$." + sensorCode + "' AS result")
+                    .eq("city_code", locationLevelCode)
+                    .eq("time", yearMonthDayHour);
+            Map<String, Object> cityValueMap = cityAqiService.getMap(cityAqiQueryWrapper);
+            if (!ObjectUtils.isEmpty(cityValueMap)) {
+                cityValue = (Double) cityValueMap.get("result");
+            }
+            resultMap.put("cityValue", cityValue);
+
+
+            for (String profession : professions) {
+                Map<String, Object> professionMap = new HashMap<>();
+
+                //���������������������
+                List<Device> devices = getDevicesOfProfessions(orgId, Collections.singletonList(profession));
+                List<String> professionMacs = devices.stream().map(Device::getMac).collect(Collectors.toList());
+
+                //���������������������������������������������������
+                Double professionAvg = historyHourlyService.getSensorAvgByMacs(sensorCode, professionMacs, yearMonthDayHour);
+                Double professionSum = historyHourlyService.getSensorSumByMacs(sensorCode, professionMacs, yearMonthDayHour);
+
+                //���������������������
+                String contributionRate = null;
+                NumberFormat numberFormat = NumberFormat.getInstance();
+                numberFormat.setMaximumFractionDigits(2);
+                if (professionSum != null && allDeviceSum != null) {
+                    contributionRate = numberFormat.format(professionSum / allDeviceSum * 100) + "%";
+                }
+
+                //������������
+                professionMap.put("value", professionAvg == null ? null : AmendUtils.sciCal(professionAvg, 0));
+                //���������������
+                professionMap.put("contributionRate", contributionRate);
+
+                resultMap.put(profession, professionMap);
+            }
+            result.add(resultMap);
+        }
+        return result;
+    }
+
+    //������������id������������macs
+    private List getMacsByOrgId(Integer orgId) {
+        //���������������������������
+        QueryWrapper<Device> deviceQueryWrapper = new QueryWrapper<>();
+        deviceQueryWrapper.select("mac")
+                .eq("organization_id", orgId)
+                .eq("is_delete", Constants.NOT_DELETE);
+        return deviceService.listObjs(deviceQueryWrapper);
+    }
+
+
 }

--
Gitblit v1.8.0