|
@@ -4,9 +4,11 @@ import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.tofly.common.core.util.Date8Util;
|
|
|
+import com.tofly.dyrq.custom.entity.PointContent;
|
|
|
import com.tofly.dyrq.custom.entity.UpdatePoint;
|
|
|
import com.tofly.dyrq.custom.mapper.CustomPlanMapper;
|
|
|
import com.tofly.dyrq.custom.mapper.CustomPointMapper;
|
|
|
+import com.tofly.dyrq.custom.mapper.PointContentMapper;
|
|
|
import com.tofly.dyrq.custom.service.CustomPointService;
|
|
|
import com.tofly.dyrq.entity.PlanChild;
|
|
|
import com.tofly.dyrq.entity.PlanPointTemp;
|
|
@@ -48,6 +50,9 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
private final SysDeviceTypeService sysDeviceTypeService;
|
|
|
private final ValueOperations<String, String> valueOperations;
|
|
|
private final RedisTemplate redisTemplate;
|
|
|
+ private PointContentMapper pointContentMapper;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
@@ -64,7 +69,14 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
transfer.put("pointTempId", u.getTempId());
|
|
|
continue;
|
|
|
}
|
|
|
- valueOperations.set("point_" + u.getTempId(), JSON.toJSONString(u));
|
|
|
+
|
|
|
+ PointContent pc =new PointContent();
|
|
|
+ pc.setIsHandle(0);
|
|
|
+ pc.setJsonContent(JSON.toJSONString(u));
|
|
|
+ pc.setJsonType(1);
|
|
|
+ pointContentMapper.insert(pc);
|
|
|
+
|
|
|
+
|
|
|
} else if ("1".equals(u.getType())) {
|
|
|
String childPlanState = customPointMapper.getStateByPath(u.getTempId());
|
|
|
if ("7".equals(childPlanState)) {
|
|
@@ -74,14 +86,28 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
if (!childList.contains(u.getPlanChildId())) {
|
|
|
childList.add(u.getPlanChildId());
|
|
|
}
|
|
|
- }
|
|
|
- valueOperations.set("path_" + u.getTempId(), JSON.toJSONString(u));
|
|
|
+ }
|
|
|
+ PointContent pc1 =new PointContent();
|
|
|
+ pc1.setIsHandle(0);
|
|
|
+ pc1.setJsonContent(JSON.toJSONString(u));
|
|
|
+ pc1.setJsonType(2);
|
|
|
+ pointContentMapper.insert(pc1);
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
childIds.add(u.getPlanChildId());
|
|
|
}
|
|
|
- SimpleDateFormat sdf = new SimpleDateFormat("yyMMddHHmmssSSSSSSS");
|
|
|
- valueOperations.set("child_" + Long.parseLong(sdf.format(new Date())), StringUtils.join(childIds, ","));
|
|
|
+
|
|
|
+ PointContent pc2 =new PointContent();
|
|
|
+ pc2.setIsHandle(0);
|
|
|
+ pc2.setJsonContent(StringUtils.join(childIds, ","));
|
|
|
+ pc2.setJsonType(3);
|
|
|
+ pointContentMapper.insert(pc2);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
return transfer;
|
|
|
}
|
|
|
|
|
@@ -93,21 +119,24 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
|
|
|
@Async("asyncServiceExecutor")
|
|
|
@PostConstruct
|
|
|
- @Scheduled(fixedDelay = 3000)
|
|
|
+ @Scheduled(fixedDelay = 5000)
|
|
|
public void executPoint() {
|
|
|
try {
|
|
|
- Set<String> pointKeys = redisTemplate.keys("point_"+"*");
|
|
|
- if (pointKeys.size()!=0) {
|
|
|
- for(String pointKey : pointKeys) {
|
|
|
- String pointValue = valueOperations.get(pointKey);
|
|
|
+
|
|
|
+ List<PointContent> pcList= pointContentMapper.selectList(Wrappers.<PointContent>lambdaQuery()
|
|
|
+ .eq(PointContent::getIsHandle, 0).eq(PointContent::getJsonType, 1));
|
|
|
+ if (pcList.size()!=0) {
|
|
|
+ for(PointContent pc : pcList) {
|
|
|
+ String pointValue = pc.getJsonContent();
|
|
|
JSONObject jsonObject = JSONObject.parseObject(pointValue);
|
|
|
UpdatePoint u = JSON.toJavaObject(jsonObject,UpdatePoint.class);
|
|
|
planPointTempService.update(Wrappers.<PlanPointTemp>lambdaUpdate()
|
|
|
.set(PlanPointTemp::getIsover, "1")
|
|
|
.set(PlanPointTemp::getOverDate, u.getCheckTime())
|
|
|
.set(PlanPointTemp::getGpsSpeed, u.getGpsSpeed())
|
|
|
- .eq(PlanPointTemp::getId, u.getTempId()));
|
|
|
- redisTemplate.delete(pointKey);
|
|
|
+ .eq(PlanPointTemp::getId, u.getTempId()));
|
|
|
+ pc.setIsHandle(1);
|
|
|
+ pointContentMapper.updateById(pc);
|
|
|
}
|
|
|
}
|
|
|
}catch (Exception e) {
|
|
@@ -118,31 +147,40 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
@Override
|
|
|
@Async("asyncServiceExecutor")
|
|
|
@PostConstruct
|
|
|
- @Scheduled(fixedDelay = 2000)
|
|
|
+ @Scheduled(fixedDelay = 5000)
|
|
|
public void executPath() {
|
|
|
|
|
|
try {
|
|
|
- Set<String> pathkeys = redisTemplate.keys("path_"+"*");
|
|
|
- if (CollectionUtils.isNotEmpty(pathkeys)) {
|
|
|
- for(String pathKey : pathkeys) {
|
|
|
- String pathValue = valueOperations.get(pathKey);
|
|
|
+ List<PointContent> pcList= pointContentMapper.selectList(Wrappers.<PointContent>lambdaQuery()
|
|
|
+ .eq(PointContent::getIsHandle, 0).eq(PointContent::getJsonType, 2));
|
|
|
+
|
|
|
+
|
|
|
+ System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&"+pcList.size());
|
|
|
+
|
|
|
+ if (pcList.size()!=0) {
|
|
|
+ for(PointContent pc : pcList) {
|
|
|
+ String pathValue = pc.getJsonContent();;
|
|
|
JSONObject jsonObject = JSONObject.parseObject(pathValue);
|
|
|
- UpdatePoint up = JSON.toJavaObject(jsonObject,UpdatePoint.class);
|
|
|
- boolean pathflag =planPathTempService.update(Wrappers.<TfPlanPathTemp>lambdaUpdate()
|
|
|
- .set(TfPlanPathTemp::getIsover, "1")
|
|
|
- .set(TfPlanPathTemp::getOverDate, up.getCheckTime())
|
|
|
- .set(TfPlanPathTemp::getGpsSpeed, up.getGpsSpeed())
|
|
|
- .eq(TfPlanPathTemp::getId, up.getTempId()));
|
|
|
-
|
|
|
- Long pointTempId =planPathTempService.getById(up.getTempId()).getTempId();
|
|
|
- int isOverNum = planPathTempService.count(Wrappers.<TfPlanPathTemp>lambdaQuery().eq(TfPlanPathTemp::getTempId, pointTempId).eq(TfPlanPathTemp::getIsover, "1"));
|
|
|
- int allNum = planPathTempService.count(Wrappers.<TfPlanPathTemp>lambdaQuery().eq(TfPlanPathTemp::getTempId, pointTempId));
|
|
|
- double pathOver = new BigDecimal((float) isOverNum / allNum).setScale(4, BigDecimal.ROUND_HALF_UP).doubleValue();
|
|
|
- PlanPointTemp one = new PlanPointTemp();
|
|
|
- one.setId(pointTempId);
|
|
|
- one.setPathIsover(new BigDecimal(pathOver));
|
|
|
- planPointTempService.updateById(one);
|
|
|
- redisTemplate.delete(pathKey);
|
|
|
+ UpdatePoint up = JSON.toJavaObject(jsonObject,UpdatePoint.class);
|
|
|
+ TfPlanPathTemp tppt = planPathTempService.getById(up.getTempId());
|
|
|
+ if(null!=tppt) {
|
|
|
+ boolean pathflag =planPathTempService.update(Wrappers.<TfPlanPathTemp>lambdaUpdate()
|
|
|
+ .set(TfPlanPathTemp::getIsover, "1")
|
|
|
+ .set(TfPlanPathTemp::getOverDate, up.getCheckTime())
|
|
|
+ .set(TfPlanPathTemp::getGpsSpeed, up.getGpsSpeed())
|
|
|
+ .eq(TfPlanPathTemp::getId, up.getTempId()));
|
|
|
+
|
|
|
+ Long pointTempId =tppt.getTempId();
|
|
|
+ int isOverNum = planPathTempService.count(Wrappers.<TfPlanPathTemp>lambdaQuery().eq(TfPlanPathTemp::getTempId, pointTempId).eq(TfPlanPathTemp::getIsover, "1"));
|
|
|
+ int allNum = planPathTempService.count(Wrappers.<TfPlanPathTemp>lambdaQuery().eq(TfPlanPathTemp::getTempId, pointTempId));
|
|
|
+ double pathOver = new BigDecimal((float) isOverNum / allNum).setScale(4, BigDecimal.ROUND_HALF_UP).doubleValue();
|
|
|
+ PlanPointTemp one = new PlanPointTemp();
|
|
|
+ one.setId(pointTempId);
|
|
|
+ one.setPathIsover(new BigDecimal(pathOver));
|
|
|
+ planPointTempService.updateById(one);
|
|
|
+ pc.setIsHandle(1);
|
|
|
+ pointContentMapper.updateById(pc);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}catch (Exception e) {
|
|
@@ -154,13 +192,15 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
@Override
|
|
|
@Async("asyncServiceExecutor")
|
|
|
@PostConstruct
|
|
|
- @Scheduled(fixedDelay = 3000)
|
|
|
+ @Scheduled(fixedDelay = 6000)
|
|
|
public void executChild() {
|
|
|
-
|
|
|
- Set<String> childkeys = redisTemplate.keys("child_"+"*");
|
|
|
- if (CollectionUtils.isNotEmpty(childkeys)) {
|
|
|
- for(String childKey : childkeys) {
|
|
|
- String childValue = valueOperations.get(childKey);
|
|
|
+ try {
|
|
|
+ List<PointContent> pcList= pointContentMapper.selectList(Wrappers.<PointContent>lambdaQuery()
|
|
|
+ .eq(PointContent::getIsHandle, 0).eq(PointContent::getJsonType, 3));
|
|
|
+
|
|
|
+ if (pcList.size()!=0) {
|
|
|
+ for(PointContent pc : pcList) {
|
|
|
+ String childValue = pc.getJsonContent();
|
|
|
List<String> list = Arrays.asList(childValue.split(","));
|
|
|
|
|
|
for (String sid : list) {
|
|
@@ -250,10 +290,12 @@ public class CustomPointServiceImpl implements CustomPointService {
|
|
|
planChildService.update(Wrappers.<PlanChild>lambdaUpdate().set(PlanChild::getChildPlanState, "3")
|
|
|
.eq(PlanChild::getPercent1, 1).eq(PlanChild::getId, childPlanId));
|
|
|
}
|
|
|
- redisTemplate.delete(childKey);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
+ pc.setIsHandle(1);
|
|
|
+ pointContentMapper.updateById(pc);
|
|
|
+ }
|
|
|
}
|
|
|
+ }catch (Exception e) {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
}
|