|  |  |  | 
|---|
|  |  |  | import java.lang.reflect.Field; | 
|---|
|  |  |  | import java.lang.reflect.Method; | 
|---|
|  |  |  | import java.util.ArrayList; | 
|---|
|  |  |  | import java.util.HashMap; | 
|---|
|  |  |  | import java.util.LinkedHashMap; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  | import java.util.Objects; | 
|---|
|  |  |  | import java.util.stream.Collectors; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.servlet.http.HttpServletRequest; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | * 从redis获取设备信息 | 
|---|
|  |  |  | * */ | 
|---|
|  |  |  | private Map<String, Object> getDeviceInfoFromRedis(String mac) { | 
|---|
|  |  |  | return (Map<String, Object>) redisTemplate.opsForValue().get(getDeviceKey(mac)); | 
|---|
|  |  |  | return (Map<String, Object>) redisTemplate.opsForHash().get(RedisConstants.DEVICE, mac); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | * 设备信息存入redis | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private void setDeviceInfoToRedis(String mac, Map<String, Object> deviceInfo) { | 
|---|
|  |  |  | redisTemplate.opsForValue().set(getDeviceKey(mac), deviceInfo); | 
|---|
|  |  |  | redisTemplate.opsForHash().put(RedisConstants.DEVICE, mac, deviceInfo); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | * 从redis删除设备信息 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private void delDeviceInfoFromRedis(String mac) { | 
|---|
|  |  |  | redisTemplate.delete(getDeviceKey(mac)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /* | 
|---|
|  |  |  | * 获取设备信息在redis里的key | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String getDeviceKey(String mac) { | 
|---|
|  |  |  | return keysConnect(RedisConstants.DEVICE, mac); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //redis key前缀 | 
|---|
|  |  |  | private String keysConnect(String... keys) { | 
|---|
|  |  |  | StringBuilder key = new StringBuilder(keys[0]); | 
|---|
|  |  |  | for (int i = 1; i < keys.length; i++) { | 
|---|
|  |  |  | key.append("_"); | 
|---|
|  |  |  | key.append(keys[i]); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return key.toString().toLowerCase(); | 
|---|
|  |  |  | redisTemplate.opsForHash().delete(RedisConstants.DEVICE, mac); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | 
|---|
|  |  |  | deviceMapper.insert(device); | 
|---|
|  |  |  | Map<String, Object> deviceInfo = selectDeviceInfoById(device.getId()); | 
|---|
|  |  |  | //维护组织型号关系表 | 
|---|
|  |  |  | insertOrganizationUnitAlarm(orgId,device.getDeviceVersionId()); | 
|---|
|  |  |  | insertOrganizationUnitAlarm(orgId, device.getDeviceVersionId()); | 
|---|
|  |  |  | //新增设备信息存入redis | 
|---|
|  |  |  | String mac = device.getMac(); | 
|---|
|  |  |  | //从redis中删除设备信息 | 
|---|
|  |  |  | 
|---|
|  |  |  | //设备信息存入redis | 
|---|
|  |  |  | setDeviceInfoToRedis(mac, deviceInfo); | 
|---|
|  |  |  | //刷新deviceInfo缓存 | 
|---|
|  |  |  | CacheUtils.flushDeviceAlarmInfo(); | 
|---|
|  |  |  | CacheUtils.refreshDeviceAlarmInfo(); | 
|---|
|  |  |  | //操作日志记录 | 
|---|
|  |  |  | HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); | 
|---|
|  |  |  | StringBuilder content = new StringBuilder(); | 
|---|
|  |  |  | 
|---|
|  |  |  | //维护组织型号关系表 | 
|---|
|  |  |  | Integer versionId = device.getDeviceVersionId(); | 
|---|
|  |  |  | Integer orgId = device.getOrganizationId(); | 
|---|
|  |  |  | deleteOrganizationUnitAlarm(orgId,versionId); | 
|---|
|  |  |  | deleteOrganizationUnitAlarm(orgId, versionId); | 
|---|
|  |  |  | //刷新deviceInfo缓存 | 
|---|
|  |  |  | CacheUtils.flushDeviceAlarmInfo(); | 
|---|
|  |  |  | CacheUtils.refreshDeviceAlarmInfo(); | 
|---|
|  |  |  | //操作日志记录 | 
|---|
|  |  |  | HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); | 
|---|
|  |  |  | StringBuilder content = new StringBuilder(); | 
|---|
|  |  |  | 
|---|
|  |  |  | Integer deviceId = device.getId(); | 
|---|
|  |  |  | Device oldDevice = deviceMapper.selectById(deviceId); | 
|---|
|  |  |  | //判断是否更新了站点,如果更新了站点则查询对应站点的组织id进行更新 | 
|---|
|  |  |  | if(!ObjectUtils.isEmpty(device.getMonitorPointId())){ | 
|---|
|  |  |  | if (!ObjectUtils.isEmpty(device.getMonitorPointId())) { | 
|---|
|  |  |  | MonitorPoint monitorPoint = monitorPointMapper.selectById(device.getMonitorPointId()); | 
|---|
|  |  |  | device.setOrganizationId(monitorPoint.getOrganizationId()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | Device updateDevice = deviceMapper.selectById(deviceId); | 
|---|
|  |  |  | String mac = updateDevice.getMac(); | 
|---|
|  |  |  | //维护组织型号关系表 | 
|---|
|  |  |  | Integer oldOrgId = oldDevice.getOrganizationId(); | 
|---|
|  |  |  | Integer newOrgId = updateDevice.getOrganizationId(); | 
|---|
|  |  |  | Integer oldVersionId = oldDevice.getDeviceVersionId(); | 
|---|
|  |  |  | Integer newVersionId = updateDevice.getDeviceVersionId(); | 
|---|
|  |  |  | if(!oldOrgId.equals(newOrgId)||!oldVersionId.equals(newVersionId)){ | 
|---|
|  |  |  | deleteOrganizationUnitAlarm(oldOrgId,oldVersionId); | 
|---|
|  |  |  | insertOrganizationUnitAlarm(newOrgId,newVersionId); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | Integer oldOrgId = oldDevice.getOrganizationId(); | 
|---|
|  |  |  | Integer newOrgId = updateDevice.getOrganizationId(); | 
|---|
|  |  |  | Integer oldVersionId = oldDevice.getDeviceVersionId(); | 
|---|
|  |  |  | Integer newVersionId = updateDevice.getDeviceVersionId(); | 
|---|
|  |  |  | if (!oldOrgId.equals(newOrgId) || !oldVersionId.equals(newVersionId)) { | 
|---|
|  |  |  | deleteOrganizationUnitAlarm(oldOrgId, oldVersionId); | 
|---|
|  |  |  | insertOrganizationUnitAlarm(newOrgId, newVersionId); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | //从redis中删除设备信息 | 
|---|
|  |  |  | delDeviceInfoFromRedis(mac); | 
|---|
|  |  |  | Map<String, Object> deviceInfo = selectDeviceInfoById(deviceId); | 
|---|
|  |  |  | //设备信息存入redis | 
|---|
|  |  |  | setDeviceInfoToRedis(mac, deviceInfo); | 
|---|
|  |  |  | //刷新deviceInfo缓存 | 
|---|
|  |  |  | CacheUtils.flushDeviceAlarmInfo(); | 
|---|
|  |  |  | CacheUtils.refreshDeviceAlarmInfo(); | 
|---|
|  |  |  | //操作日志记录 | 
|---|
|  |  |  | HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); | 
|---|
|  |  |  | StringBuilder content = new StringBuilder(); | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public Map<String, Object> adjustDeviceData(Map<String, Object> deviceData) { | 
|---|
|  |  |  | return adjustDataUtils.adjust(deviceData); | 
|---|
|  |  |  | String mac = deviceData.get("mac").toString(); | 
|---|
|  |  |  | //从redis获取校准公式 | 
|---|
|  |  |  | Map<String, Object> adjustFormula = redisTemplate.opsForHash().entries(RedisConstants.ADJUST + mac); | 
|---|
|  |  |  | if (!ObjectUtils.isEmpty(adjustFormula)) { | 
|---|
|  |  |  | Map<String, Object> deviceInfo = getDeviceByMac(mac); | 
|---|
|  |  |  | Map<String, Object> monitorPoint = (Map<String, Object>) deviceInfo.get("monitorPoint"); | 
|---|
|  |  |  | Object areaCode = monitorPoint.get("areaCode"); | 
|---|
|  |  |  | Object cityCode = monitorPoint.get("cityCode"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Map<String, Object> aqiMap = (Map<String, Object>) redisTemplate.opsForHash().get(RedisConstants.AQI_DATA, areaCode); | 
|---|
|  |  |  | if (ObjectUtils.isEmpty(aqiMap)) { | 
|---|
|  |  |  | aqiMap = (Map<String, Object>) redisTemplate.opsForHash().get(RedisConstants.AQI_DATA, cityCode); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return adjustDataUtils.adjust(deviceData, adjustFormula, ObjectUtils.isEmpty(aqiMap) ? null : aqiMap); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | return deviceData; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Transactional | 
|---|
|  |  |  | public void judgeDeviceState(Map<String, Object> deviceData) { | 
|---|
|  |  |  | String mac = deviceData.remove("mac").toString(); | 
|---|
|  |  |  | Device device = (Device) redisTemplate.opsForHash().get(RedisConstants.DEVICE_INFO, mac); | 
|---|
|  |  |  | 
|---|
|  |  |  | if (StringUtils.isEmpty(alarmLevel)) { | 
|---|
|  |  |  | continue; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | List<Double> list = JSONObject.parseObject(alarmLevel, List.class); | 
|---|
|  |  |  | List<Object> list = JSONObject.parseObject(alarmLevel, List.class); | 
|---|
|  |  |  | String sensorCode = sensor.getCode(); | 
|---|
|  |  |  | //转换公式 | 
|---|
|  |  |  | String formula = sensor.getFormula(); | 
|---|
|  |  |  | //转换单位前因子值 | 
|---|
|  |  |  | String sensorValue = (String) deviceData.get(sensorCode); | 
|---|
|  |  |  | double value = Double.parseDouble(String.format("%.3f", sensorValue)); | 
|---|
|  |  |  | double value = Double.parseDouble(sensorValue); | 
|---|
|  |  |  | //单位转换 | 
|---|
|  |  |  | if (formula != null) { | 
|---|
|  |  |  | //转换后因子值 | 
|---|
|  |  |  | sensorValue = formula.replace("{0}", sensorValue); | 
|---|
|  |  |  | expression = AviatorEvaluator.compile(sensorValue); | 
|---|
|  |  |  | value = Double.parseDouble(String.format("%.3f", expression.execute())); | 
|---|
|  |  |  | value = Double.parseDouble(expression.execute().toString()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | int sensorState = judgeState(list, value); | 
|---|
|  |  |  | if (sensorState > state) { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //根据因子值判断状态 | 
|---|
|  |  |  | private int judgeState(List<Double> levels, Double data) { | 
|---|
|  |  |  | private int judgeState(List<Object> levels, Double data) { | 
|---|
|  |  |  | int state = 1; | 
|---|
|  |  |  | for (int i = levels.size() - 1; i >= 0; i--) { | 
|---|
|  |  |  | Double level = levels.get(i); | 
|---|
|  |  |  | Double level = Double.parseDouble(levels.get(i).toString()); | 
|---|
|  |  |  | if (data >= level) { | 
|---|
|  |  |  | state = i + 2; | 
|---|
|  |  |  | break; | 
|---|
|  |  |  | 
|---|
|  |  |  | return state; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private void insertOrganizationUnitAlarm(Integer orgId,Integer versionId){ | 
|---|
|  |  |  | private void insertOrganizationUnitAlarm(Integer orgId, Integer versionId) { | 
|---|
|  |  |  | QueryWrapper<OrganizationUnitAlarm> queryOrganizationVersionWrapper = new QueryWrapper<>(); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("organization_id",orgId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("version_id",versionId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("is_delete",Constants.NOT_DELETE); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("organization_id", orgId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("version_id", versionId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("is_delete", Constants.NOT_DELETE); | 
|---|
|  |  |  | List<OrganizationUnitAlarm> organizationUnitAlarms = organizationUnitAlarmMapper.selectList(queryOrganizationVersionWrapper); | 
|---|
|  |  |  | if(ObjectUtils.isEmpty(organizationUnitAlarms)){ | 
|---|
|  |  |  | QueryWrapper<VersionSensorUnit> queryVersionSensorUnitWrapper =new QueryWrapper<>(); | 
|---|
|  |  |  | queryVersionSensorUnitWrapper.eq("version_id",versionId); | 
|---|
|  |  |  | queryVersionSensorUnitWrapper.eq("is_delete",Constants.NOT_DELETE); | 
|---|
|  |  |  | if (ObjectUtils.isEmpty(organizationUnitAlarms)) { | 
|---|
|  |  |  | QueryWrapper<VersionSensorUnit> queryVersionSensorUnitWrapper = new QueryWrapper<>(); | 
|---|
|  |  |  | queryVersionSensorUnitWrapper.eq("version_id", versionId); | 
|---|
|  |  |  | queryVersionSensorUnitWrapper.eq("is_delete", Constants.NOT_DELETE); | 
|---|
|  |  |  | List<VersionSensorUnit> versionSensorUnits = versionSensorUnitMapper.selectList(queryVersionSensorUnitWrapper); | 
|---|
|  |  |  | if(!ObjectUtils.isEmpty(versionSensorUnits)){ | 
|---|
|  |  |  | if (!ObjectUtils.isEmpty(versionSensorUnits)) { | 
|---|
|  |  |  | for (VersionSensorUnit versionSensorUnit : versionSensorUnits) { | 
|---|
|  |  |  | OrganizationUnitAlarm organizationUnitAlarm = new OrganizationUnitAlarm(); | 
|---|
|  |  |  | organizationUnitAlarm.setOrganizationId(orgId); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private void deleteOrganizationUnitAlarm(Integer orgId,Integer versionId){ | 
|---|
|  |  |  | private void deleteOrganizationUnitAlarm(Integer orgId, Integer versionId) { | 
|---|
|  |  |  | QueryWrapper<Device> queryOrganizationVersionWrapper = new QueryWrapper<>(); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("organization_id",orgId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("device_version_id",versionId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("is_delete",Constants.NOT_DELETE); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("organization_id", orgId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("device_version_id", versionId); | 
|---|
|  |  |  | queryOrganizationVersionWrapper.eq("is_delete", Constants.NOT_DELETE); | 
|---|
|  |  |  | List<Device> devices = deviceMapper.selectList(queryOrganizationVersionWrapper); | 
|---|
|  |  |  | if(ObjectUtils.isEmpty(devices)){//如果为空,则组织没有该型号的设备了。 | 
|---|
|  |  |  | if (ObjectUtils.isEmpty(devices)) {//如果为空,则组织没有该型号的设备了。 | 
|---|
|  |  |  | UpdateWrapper deleteWrapper = new UpdateWrapper(); | 
|---|
|  |  |  | deleteWrapper.eq("organization_id",orgId); | 
|---|
|  |  |  | deleteWrapper.eq("version_id",versionId); | 
|---|
|  |  |  | deleteWrapper.eq("is_delete",Constants.NOT_DELETE); | 
|---|
|  |  |  | deleteWrapper.set("is_delete",Constants.DELETE); | 
|---|
|  |  |  | organizationUnitAlarmMapper.update(null,deleteWrapper); | 
|---|
|  |  |  | deleteWrapper.eq("organization_id", orgId); | 
|---|
|  |  |  | deleteWrapper.eq("version_id", versionId); | 
|---|
|  |  |  | deleteWrapper.eq("is_delete", Constants.NOT_DELETE); | 
|---|
|  |  |  | deleteWrapper.set("is_delete", Constants.DELETE); | 
|---|
|  |  |  | organizationUnitAlarmMapper.update(null, deleteWrapper); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|