|
@@ -3,21 +3,21 @@ package com.persagy.bdtp.adm.service.impl;
|
|
import cn.hutool.core.collection.CollUtil;
|
|
import cn.hutool.core.collection.CollUtil;
|
|
import cn.hutool.core.date.DatePattern;
|
|
import cn.hutool.core.date.DatePattern;
|
|
import cn.hutool.core.date.DateUtil;
|
|
import cn.hutool.core.date.DateUtil;
|
|
-import cn.hutool.core.util.IdUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.fasterxml.jackson.core.type.TypeReference;
|
|
import com.fasterxml.jackson.core.type.TypeReference;
|
|
|
|
+import com.fasterxml.jackson.databind.JsonNode;
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
+import com.fasterxml.jackson.databind.node.ArrayNode;
|
|
|
|
+import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
import com.persagy.bdtp.adm.client.DicClient;
|
|
import com.persagy.bdtp.adm.client.DicClient;
|
|
import com.persagy.bdtp.adm.client.RwdClient;
|
|
import com.persagy.bdtp.adm.client.RwdClient;
|
|
import com.persagy.bdtp.adm.common.AdmConst;
|
|
import com.persagy.bdtp.adm.common.AdmConst;
|
|
-import com.persagy.bdtp.adm.common.AdmMessageConst;
|
|
|
|
import com.persagy.bdtp.adm.common.AdmResult;
|
|
import com.persagy.bdtp.adm.common.AdmResult;
|
|
import com.persagy.bdtp.adm.dao.*;
|
|
import com.persagy.bdtp.adm.dao.*;
|
|
import com.persagy.bdtp.adm.entity.*;
|
|
import com.persagy.bdtp.adm.entity.*;
|
|
import com.persagy.bdtp.adm.entity.oldadm.OProject;
|
|
import com.persagy.bdtp.adm.entity.oldadm.OProject;
|
|
-import com.persagy.bdtp.adm.entity.oldadm.OldAdmResult;
|
|
|
|
import com.persagy.bdtp.adm.service.*;
|
|
import com.persagy.bdtp.adm.service.*;
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
import com.persagy.dmp.basic.model.QueryCriteria;
|
|
import com.persagy.dmp.common.constant.ResponseCode;
|
|
import com.persagy.dmp.common.constant.ResponseCode;
|
|
@@ -27,8 +27,6 @@ import com.persagy.dmp.common.lang.PsDateTime;
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
import com.persagy.dmp.common.model.response.CommonResult;
|
|
import com.persagy.dmp.define.entity.RelationDefine;
|
|
import com.persagy.dmp.define.entity.RelationDefine;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
-import org.springframework.core.io.Resource;
|
|
|
|
-import org.springframework.core.io.ResourceLoader;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
@@ -82,7 +80,10 @@ public class SyncAppImpl implements ISyncApp {
|
|
private ISyncModel syncModel;
|
|
private ISyncModel syncModel;
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
- ResourceLoader resourceLoader;
|
|
|
|
|
|
+ private ObjectMapper objectMapper;
|
|
|
|
+
|
|
|
|
+// @Autowired
|
|
|
|
+// ResourceLoader resourceLoader;
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public Map<String, Object> downloadDictAndConfig(String groupCode, String projectId, String userId) {
|
|
public Map<String, Object> downloadDictAndConfig(String groupCode, String projectId, String userId) {
|
|
@@ -124,22 +125,40 @@ public class SyncAppImpl implements ISyncApp {
|
|
//查询关系定义
|
|
//查询关系定义
|
|
List<RelationDefine> relList = ServiceUtil.call(() -> rwdClient.queryRelDef(groupCode, projectId, AdmConst.APP_ID, userId, new QueryCriteria()));
|
|
List<RelationDefine> relList = ServiceUtil.call(() -> rwdClient.queryRelDef(groupCode, projectId, AdmConst.APP_ID, userId, new QueryCriteria()));
|
|
|
|
|
|
|
|
+ //查询重命名设备类型
|
|
|
|
+ ObjectNode renameNode = configService.queryRenameEquipTypes(projectId);
|
|
|
|
+
|
|
LinkedList<TypeDef> sysList = new LinkedList<>();
|
|
LinkedList<TypeDef> sysList = new LinkedList<>();
|
|
LinkedList<TypeDef> equipList = new LinkedList<>();
|
|
LinkedList<TypeDef> equipList = new LinkedList<>();
|
|
for(TypeDef def : typeList){
|
|
for(TypeDef def : typeList){
|
|
if(def.getObjType().equals("system"))
|
|
if(def.getObjType().equals("system"))
|
|
sysList.add(def);
|
|
sysList.add(def);
|
|
- else if(def.getObjType().equals("equipment"))
|
|
|
|
|
|
+ else if(def.getObjType().equals("equipment")) {
|
|
|
|
+ if (renameNode != null) { //设备类型重命名
|
|
|
|
+ JsonNode n = renameNode.get(def.getCode());
|
|
|
|
+ if(n != null)
|
|
|
|
+ def.setName(n.asText());
|
|
|
|
+ }
|
|
equipList.add(def);
|
|
equipList.add(def);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
//加载新增的自定义设备类
|
|
//加载新增的自定义设备类
|
|
- try{
|
|
|
|
- Resource resource = resourceLoader.getResource("classpath:equip.json");
|
|
|
|
- List<TypeDef> types = objectMapper.readValue(resource.getInputStream(), new TypeReference<List<TypeDef>>(){});
|
|
|
|
- equipList.addAll(types);
|
|
|
|
- }catch (Exception e) {
|
|
|
|
|
|
+// try{
|
|
|
|
+// Resource resource = resourceLoader.getResource("classpath:equip.json");
|
|
|
|
+// List<TypeDef> types = objectMapper.readValue(resource.getInputStream(), new TypeReference<List<TypeDef>>(){});
|
|
|
|
+// equipList.addAll(types);
|
|
|
|
+// }catch (Exception e) {
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+ ArrayNode arr = configService.queryNewEquipTypes(projectId);
|
|
|
|
+ if(arr != null) {
|
|
|
|
+ try{
|
|
|
|
+ List<TypeDef> types = objectMapper.readValue(objectMapper.writeValueAsString(arr), new TypeReference<List<TypeDef>>(){});
|
|
|
|
+ equipList.addAll(types);
|
|
|
|
+ }catch (Exception e) {
|
|
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
//组织树形结构
|
|
//组织树形结构
|
|
@@ -346,6 +365,8 @@ public class SyncAppImpl implements ISyncApp {
|
|
}
|
|
}
|
|
|
|
|
|
rtn.setTimestamp(timestampStr);
|
|
rtn.setTimestamp(timestampStr);
|
|
|
|
+ rtn.setTimestampMillis(timestamp.getMillis());
|
|
|
|
+ rtn.setBuildingId(uploadData.getBuildingId());
|
|
return rtn;
|
|
return rtn;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -366,8 +387,9 @@ public class SyncAppImpl implements ISyncApp {
|
|
continue;
|
|
continue;
|
|
|
|
|
|
obj.setCreationTime(timestamp);
|
|
obj.setCreationTime(timestamp);
|
|
|
|
+ obj.setModifiedTime(timestamp); //新增时设置modifiedTime,方便后续处理
|
|
obj.setCreator(AdmConst.CREATOR_APP);
|
|
obj.setCreator(AdmConst.CREATOR_APP);
|
|
- setBdtpUploadProp(obj, dbObj, uploadFlag);
|
|
|
|
|
|
+ setBdtpUploadProp(obj, null, uploadFlag);
|
|
|
|
|
|
mapper.insert(obj);
|
|
mapper.insert(obj);
|
|
|
|
|
|
@@ -382,12 +404,26 @@ public class SyncAppImpl implements ISyncApp {
|
|
dbTs = dbObj.getCreationTime().getMillis();
|
|
dbTs = dbObj.getCreationTime().getMillis();
|
|
ts = obj.getCreationTime().getMillis();
|
|
ts = obj.getCreationTime().getMillis();
|
|
}
|
|
}
|
|
- if (ts != dbTs) {
|
|
|
|
- //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
|
- expired.add(obj);
|
|
|
|
- } else {
|
|
|
|
|
|
+// if (ts != dbTs) {
|
|
|
|
+// //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
|
+// expired.add(obj);
|
|
|
|
+// } else {
|
|
obj.setModifiedTime(timestamp);
|
|
obj.setModifiedTime(timestamp);
|
|
obj.setModifier(AdmConst.CREATOR_APP);
|
|
obj.setModifier(AdmConst.CREATOR_APP);
|
|
|
|
+
|
|
|
|
+ //合并对象信息点
|
|
|
|
+ if(dbObj instanceof AdmObject) {
|
|
|
|
+ AdmObject vo = (AdmObject) obj;
|
|
|
|
+ AdmObject dbo = (AdmObject)dbObj;
|
|
|
|
+ if(dbo.getInfos() != null) {
|
|
|
|
+ ObjectNode infos = objectMapper.createObjectNode();
|
|
|
|
+ infos.setAll(dbo.getInfos());
|
|
|
|
+ if(vo.getInfos() != null)
|
|
|
|
+ infos.setAll(vo.getInfos());
|
|
|
|
+ vo.setInfos(infos);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
setBdtpUploadProp(obj, dbObj, uploadFlag);
|
|
setBdtpUploadProp(obj, dbObj, uploadFlag);
|
|
|
|
|
|
mapper.updateById(obj);
|
|
mapper.updateById(obj);
|
|
@@ -397,7 +433,7 @@ public class SyncAppImpl implements ISyncApp {
|
|
else
|
|
else
|
|
msgModify.add(obj);
|
|
msgModify.add(obj);
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+// }
|
|
}
|
|
}
|
|
|
|
|
|
sendD2mMessage(objectType, msgAdd, msgModify, msgRemove);
|
|
sendD2mMessage(objectType, msgAdd, msgModify, msgRemove);
|
|
@@ -409,8 +445,11 @@ public class SyncAppImpl implements ISyncApp {
|
|
obj.setUploadFlag(uploadFlag);
|
|
obj.setUploadFlag(uploadFlag);
|
|
obj.setD2mState(ValidEnum.FALSE.getType());
|
|
obj.setD2mState(ValidEnum.FALSE.getType());
|
|
obj.setDeliveryState(ValidEnum.FALSE.getType());
|
|
obj.setDeliveryState(ValidEnum.FALSE.getType());
|
|
- obj.setClientId(dbObj.getClientId());
|
|
|
|
- obj.setClientDevice(dbObj.getClientDevice());
|
|
|
|
|
|
+
|
|
|
|
+ if(dbObj != null) {
|
|
|
|
+ obj.setClientId(dbObj.getClientId());
|
|
|
|
+ obj.setClientDevice(dbObj.getClientDevice());
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
private <T extends BaseAdmDataEntity> List<T> uploadAdmData(List<T> objs, List<T> dbObjs, String uploadFlag, String timestamp, BaseMapper<T> mapper, String d2mType){
|
|
private <T extends BaseAdmDataEntity> List<T> uploadAdmData(List<T> objs, List<T> dbObjs, String uploadFlag, String timestamp, BaseMapper<T> mapper, String d2mType){
|
|
@@ -437,6 +476,7 @@ public class SyncAppImpl implements ISyncApp {
|
|
continue;
|
|
continue;
|
|
|
|
|
|
obj.setCreationTime(timestamp);
|
|
obj.setCreationTime(timestamp);
|
|
|
|
+ obj.setModifiedTime(timestamp); //新增时设置modifiedTime,方便后续处理
|
|
obj.setCreator(AdmConst.CREATOR_APP);
|
|
obj.setCreator(AdmConst.CREATOR_APP);
|
|
obj.setUploadFlag(uploadFlag);
|
|
obj.setUploadFlag(uploadFlag);
|
|
|
|
|
|
@@ -454,14 +494,27 @@ public class SyncAppImpl implements ISyncApp {
|
|
dbTs = dbObj.getCreationTime();
|
|
dbTs = dbObj.getCreationTime();
|
|
ts = obj.getCreationTime();
|
|
ts = obj.getCreationTime();
|
|
}
|
|
}
|
|
- if (!ts.equals(dbTs)) {
|
|
|
|
- //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
|
- expired.add(obj);
|
|
|
|
- } else {
|
|
|
|
|
|
+// if (!ts.equals(dbTs)) {
|
|
|
|
+// //TODO 时间戳不一致,离线数据无效,暂时跳过处理
|
|
|
|
+// expired.add(obj);
|
|
|
|
+// } else {
|
|
obj.setModifiedTime(timestamp);
|
|
obj.setModifiedTime(timestamp);
|
|
obj.setModifier(AdmConst.CREATOR_APP);
|
|
obj.setModifier(AdmConst.CREATOR_APP);
|
|
obj.setUploadFlag(uploadFlag);
|
|
obj.setUploadFlag(uploadFlag);
|
|
|
|
|
|
|
|
+ //合并对象信息点
|
|
|
|
+ if(dbObj instanceof AdmPipe) {
|
|
|
|
+ AdmPipe vo = (AdmPipe) obj;
|
|
|
|
+ AdmPipe dbo = (AdmPipe) dbObj;
|
|
|
|
+ if(dbo.getInfos() != null) {
|
|
|
|
+ ObjectNode infos = objectMapper.createObjectNode();
|
|
|
|
+ infos.setAll(dbo.getInfos());
|
|
|
|
+ if(vo.getInfos() != null)
|
|
|
|
+ infos.setAll(vo.getInfos());
|
|
|
|
+ vo.setInfos(infos);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
mapper.updateById(obj);
|
|
mapper.updateById(obj);
|
|
|
|
|
|
if(d2mType != null) {
|
|
if(d2mType != null) {
|
|
@@ -471,7 +524,7 @@ public class SyncAppImpl implements ISyncApp {
|
|
msgModify.add(obj);
|
|
msgModify.add(obj);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+// }
|
|
}
|
|
}
|
|
|
|
|
|
if(d2mType != null)
|
|
if(d2mType != null)
|
|
@@ -486,7 +539,9 @@ public class SyncAppImpl implements ISyncApp {
|
|
message.setAddItems(msgAdd);
|
|
message.setAddItems(msgAdd);
|
|
message.setModifyItems(msgModify);
|
|
message.setModifyItems(msgModify);
|
|
message.setRemoveItems(msgRemove);
|
|
message.setRemoveItems(msgRemove);
|
|
- syncModel.sendMessageToModel(message);
|
|
|
|
|
|
+
|
|
|
|
+ if(message.isNotEmpty())
|
|
|
|
+ syncModel.sendMessageToModel(message);
|
|
}
|
|
}
|
|
|
|
|
|
private List<String> buildExpiredIds(List<? extends IAdmEntity> expired){
|
|
private List<String> buildExpiredIds(List<? extends IAdmEntity> expired){
|