|
@@ -22,6 +22,7 @@ import com.persagy.bdtp.adm.service.CallException;
|
|
|
import com.persagy.bdtp.adm.service.IAdmObjectService;
|
|
|
import com.persagy.bdtp.adm.service.IQueryFromOldAdm;
|
|
|
import com.persagy.bdtp.adm.service.ISyncOldAdm;
|
|
|
+import com.persagy.bdtp.adm.util.GeomUtil;
|
|
|
import com.persagy.dmp.common.constant.ResponseCode;
|
|
|
import com.persagy.dmp.common.constant.ValidEnum;
|
|
|
import com.persagy.dmp.common.exception.BusinessException;
|
|
@@ -39,6 +40,7 @@ import java.io.IOException;
|
|
|
import java.lang.reflect.Field;
|
|
|
import java.util.*;
|
|
|
import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
@Service
|
|
|
public class SyncOldAdmImpl implements ISyncOldAdm {
|
|
@@ -55,15 +57,16 @@ public class SyncOldAdmImpl implements ISyncOldAdm {
|
|
|
@Autowired
|
|
|
private AdmJobSpaceMapper jobSpaceMapper;
|
|
|
|
|
|
- private static GeometryFactory geometryFactory = new GeometryFactory();
|
|
|
-
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public Map<String, Object> syncData(String groupCode, String projectId) {
|
|
|
String token = queryOldAdm.login();
|
|
|
if(StrUtil.isNotBlank(token)){
|
|
|
List<OBuilding> bdList = queryOldAdm.queryBdAnFl(token, groupCode, projectId);
|
|
|
+
|
|
|
List<OSpace> spList = queryOldAdm.querySpace(token, groupCode, projectId);
|
|
|
+ spList = spList.stream().filter(space -> GeomUtil.checkPolygon(space.getOutline())).collect(Collectors.toList());
|
|
|
+
|
|
|
List<OEquip> eqList = queryOldAdm.queryEquip(token, groupCode, projectId);
|
|
|
|
|
|
List<AdmObject> bdObjs = new ArrayList<>(bdList.size());
|
|
@@ -363,7 +366,8 @@ public class SyncOldAdmImpl implements ISyncOldAdm {
|
|
|
else if("OtherZone".equals(zone))
|
|
|
otherList.add(sp);
|
|
|
}
|
|
|
- map.put(floorId, otherList.size() > 0 ? otherList : generalList);
|
|
|
+ if(floorId != null)
|
|
|
+ map.put(floorId, otherList.size() > 0 ? otherList : generalList);
|
|
|
|
|
|
List<AdmJobSpace> toCreate = new ArrayList<>();
|
|
|
List<AdmJobSpace> toModify = new ArrayList<>();
|
|
@@ -449,15 +453,18 @@ public class SyncOldAdmImpl implements ISyncOldAdm {
|
|
|
}
|
|
|
|
|
|
private AdmJobSpace matchByOutline(HashMap<String, AdmJobSpace> jobMap, AdmObject space){
|
|
|
+ if(jobMap.size() == 0)
|
|
|
+ return null;
|
|
|
+
|
|
|
ArrayNode o1 = (ArrayNode) space.getInfo("outline");
|
|
|
if(!isValidOutline(o1))
|
|
|
return null;
|
|
|
|
|
|
- Polygon[] ps = getPolygon(o1);
|
|
|
+ Polygon[] ps = GeomUtil.getPolygon(o1);
|
|
|
Map.Entry<String, AdmJobSpace> target = null;
|
|
|
for(Map.Entry<String, AdmJobSpace> entry : jobMap.entrySet()){
|
|
|
ArrayNode o2 = entry.getValue().getOutline();
|
|
|
- if(isValidOutline(o2) && polygonsMatch(ps, getPolygon(o2))){
|
|
|
+ if(isValidOutline(o2) && polygonsMatch(ps, GeomUtil.getPolygon(o2))){
|
|
|
target = entry;
|
|
|
break;
|
|
|
}
|
|
@@ -474,35 +481,9 @@ public class SyncOldAdmImpl implements ISyncOldAdm {
|
|
|
* TODO 区分覆盖等情况
|
|
|
*/
|
|
|
private boolean outlineMatch(ArrayNode o1, ArrayNode o2){
|
|
|
- return polygonsMatch(getPolygon(o1), getPolygon(o2));
|
|
|
- }
|
|
|
-
|
|
|
- private Polygon[] getPolygon(ArrayNode arrayNode){
|
|
|
- Polygon[] ps = new Polygon[arrayNode.size()];
|
|
|
- for (int i = 0; i < ps.length; i++) {
|
|
|
- ArrayNode arr = (ArrayNode) arrayNode.get(i);
|
|
|
- ArrayNode shellArrNode = (ArrayNode) arr.get(0);
|
|
|
- LinearRing shell = geometryFactory.createLinearRing(buildCoords(shellArrNode));
|
|
|
- LinearRing[] holes = null;
|
|
|
- if(arr.size() > 1) {
|
|
|
- holes = new LinearRing[arr.size() - 1];
|
|
|
- for (int n = 1; n < arr.size(); n++) {
|
|
|
- holes[n - 1] = geometryFactory.createLinearRing(buildCoords((ArrayNode) arr.get(n)));
|
|
|
- }
|
|
|
- }
|
|
|
- ps[i] = geometryFactory.createPolygon(shell, holes);
|
|
|
- }
|
|
|
- return ps;
|
|
|
+ return polygonsMatch(GeomUtil.getPolygon(o1), GeomUtil.getPolygon(o2));
|
|
|
}
|
|
|
|
|
|
- private Coordinate[] buildCoords(ArrayNode arrayNode){
|
|
|
- Coordinate[] coords = new Coordinate[arrayNode.size()];
|
|
|
- for (int i = 0; i < arrayNode.size(); i++) {
|
|
|
- JsonNode pointNode = arrayNode.get(i);
|
|
|
- coords[i] = new Coordinate(pointNode.get("x").asDouble(), pointNode.get("y").asDouble());
|
|
|
- }
|
|
|
- return coords;
|
|
|
- }
|
|
|
|
|
|
/**
|
|
|
* 轮廓匹配判断
|