From 05af4cecba30aeab679d6c4f7ee5b9a9cf5467ee Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Thu, 29 Aug 2024 15:18:01 +0800 Subject: [PATCH] =?UTF-8?q?1.=20=E5=BF=83=E8=B7=B3=E7=9A=84=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E7=A7=BB=E5=88=B0redis=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ruoyi/system/task/EtTask.java | 119 +++++++++++------- 1 file changed, 74 insertions(+), 45 deletions(-) diff --git a/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java b/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java index 6eb0260..ccfe089 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java +++ b/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java @@ -16,6 +16,7 @@ import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.map.GeoUtils; import com.ruoyi.common.utils.map.GpsCoordinateUtils; import com.ruoyi.common.utils.onenet.LogEntry; +import com.ruoyi.common.utils.spring.SpringUtils; import com.ruoyi.common.utils.uuid.IdUtils; import com.ruoyi.system.domain.*; import com.ruoyi.system.mapper.*; @@ -33,10 +34,7 @@ import java.math.BigDecimal; import java.math.RoundingMode; import java.time.LocalDate; import java.time.format.DateTimeFormatter; -import java.util.Comparator; -import java.util.Date; -import java.util.List; -import java.util.Optional; +import java.util.*; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; import java.util.stream.IntStream; @@ -502,55 +500,86 @@ public class EtTask { } /** - * 更新设备的定位和电压 5秒一次 - * cron: 0 5 0 * * ? + * 更新设备的定位和电压 10秒一次 + * cron: 0 10 0 * * ? */ - public void updateLocation(){ - log.info("-------------------【定时任务】更新设备的定位和电压-------------------"); - List cacheList = redisCache.getCacheList(CacheConstants.CACHE_DEVICE_KEY + "*"); - for(Object object:cacheList){ - String msg =(String)object; + public void updateLocation10(){ + log.info("-------------------【定时任务10秒一次】更新设备的定位和电压-----开始--------------"); + Collection keys = redisCache.keys(CacheConstants.CACHE_DEVICE_KEY + "*"); + log.info("redis缓存中的数据:" + JSON.toJSONString(keys)); + for(String key:keys){ + String msg = redisCache.getCacheObject(key); + log.info("redis缓存中的数据:" + msg); LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); log.info("logEntry转换后的对象: logEntry---【{}】" , JSON.toJSONString(logEntry)); LogEntry.LocationValue value = logEntry.getValue(); AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); - // 坐标转换 WGS84 转 GCJ02 - double[] doubles = coordinateConvert(value); - BigDecimal lat = new BigDecimal(doubles[0]).setScale(8, RoundingMode.HALF_UP); - BigDecimal lon = new BigDecimal(doubles[1]).setScale(8, RoundingMode.HALF_UP); + if(ServiceConstants.LOCK_STATUS_OPEN.equals(device.getLockStatus())){ + updateLocationHandle(msg, logEntry, value, device); + } + } + log.info("-------------------【定时任务10秒一次】更新设备的定位和电压----结束---------------"); + } - asynchronousSaveLog(msg,logEntry.getAt(),logEntry.getDevName(), lat, lon,device); + /** + * 更新设备的定位和电压 5分钟一次 + * cron: 0 20 0 * * ? + */ + public void updateLocation300(){ + log.info("-------------------【定时任务5分钟一次】更新设备的定位和电压-----开始--------------"); + Collection keys = redisCache.keys(CacheConstants.CACHE_DEVICE_KEY + "*"); + log.info("redis缓存中的数据:" + JSON.toJSONString(keys)); + for(String key:keys){ + String msg = redisCache.getCacheObject(key); + log.info("redis缓存中的数据:" + msg); + LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); + log.info("logEntry转换后的对象: logEntry---【{}】" , JSON.toJSONString(logEntry)); + LogEntry.LocationValue value = logEntry.getValue(); + AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); + if(ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())){ + updateLocationHandle(msg, logEntry, value, device); + } + } + log.info("-------------------【定时任务5分钟一次】更新设备的定位和电压----结束---------------"); + } - BigDecimal divide = new BigDecimal(value.getBat()).divide(new BigDecimal(10)); - device.setVoltage(divide.toString());//电压 - EtModel model = etModelService.selectEtModelByModelId(device.getModelId()); - device.setLastTime(DateUtils.getNowDate()); - device.setSignalStrength(value.getCsq()); - device.setQuality(value.getQ()); - if(ObjectUtil.isNotNull(model)){ - Integer remainingMileage = 0; - if(StrUtil.isNotBlank(device.getVoltage())){ - remainingMileage = CommonUtil.getRemainingMileage(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage(), model.getFullEndurance()); - } - Integer electricQuantity = CommonUtil.getElectricQuantity(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage());//电量百分百 - device.setRemainingMileage(remainingMileage); - device.setRemainingPower(electricQuantity.toString()); - } - if(BigDecimal.ZERO.compareTo(lon) != 0 && BigDecimal.ZERO.compareTo(lat) != 0){ - device.setLatitude(lat.toString()); - device.setLongitude(lon.toString()); - device.setLastLocationTime(DateUtils.getNowDate()); - device.setGps("1"); - // 信号强度 - device.setSatellites(value.getS()); - }else{ - device.setGps("0"); - device.setSatellites(0); - } - int i = asDeviceService.updateLocation(device); - if(i>0){ - log.info("到定位===============保存电压等数值成功===========>" + logEntry.getDevName()); + private void updateLocationHandle(String msg, LogEntry logEntry, LogEntry.LocationValue value, AsDevice device) { + // 坐标转换 WGS84 转 GCJ02 + double[] doubles = coordinateConvert(value); + BigDecimal lat = new BigDecimal(doubles[0]).setScale(8, RoundingMode.HALF_UP); + BigDecimal lon = new BigDecimal(doubles[1]).setScale(8, RoundingMode.HALF_UP); + + asynchronousSaveLog(msg, logEntry.getAt(), logEntry.getDevName(), lat, lon, device); + + BigDecimal divide = new BigDecimal(value.getBat()).divide(new BigDecimal(10)); + device.setVoltage(divide.toString());//电压 + EtModel model = etModelService.selectEtModelByModelId(device.getModelId()); + device.setLastTime(DateUtils.getNowDate()); + device.setSignalStrength(value.getCsq()); + device.setQuality(value.getQ()); + if(ObjectUtil.isNotNull(model)){ + Integer remainingMileage = 0; + if(StrUtil.isNotBlank(device.getVoltage())){ + remainingMileage = CommonUtil.getRemainingMileage(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage(), model.getFullEndurance()); } + Integer electricQuantity = CommonUtil.getElectricQuantity(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage());//电量百分百 + device.setRemainingMileage(remainingMileage); + device.setRemainingPower(electricQuantity.toString()); + } + if(BigDecimal.ZERO.compareTo(lon) != 0 && BigDecimal.ZERO.compareTo(lat) != 0){ + device.setLatitude(lat.toString()); + device.setLongitude(lon.toString()); + device.setLastLocationTime(DateUtils.getNowDate()); + device.setGps("1"); + // 信号强度 + device.setSatellites(value.getS()); + }else{ + device.setGps("0"); + device.setSatellites(0); + } + int i = asDeviceService.updateLocation(device); + if(i>0){ + log.info("===============更新设备信息成功===========>" + logEntry.getDevName()); } }