|
@@ -26,14 +26,17 @@
|
|
|
|
|
|
package com.persagy.server.datacenter.services.relation_calc
|
|
|
|
|
|
+import com.persagy.base.extensions.toJson
|
|
|
import com.persagy.database.SFilter
|
|
|
import com.persagy.mybatis.SMybatisDao
|
|
|
import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
|
|
|
-import com.persagy.server.datacenter.models.entities.graphtype.block.ConnectedBlock
|
|
|
+import com.persagy.server.datacenter.datacenter.models.entities.graphtype.block.ConnectedBlock
|
|
|
import com.persagy.server.datacenter.wanda.rel.REq2Eq
|
|
|
import com.persagy.server.mappers.ICalcSpecialMapper
|
|
|
-import com.persagy.server.models.`object`.NetWork
|
|
|
-import com.persagy.server.models.entities.Connector
|
|
|
+import com.persagy.server.datacenter.models.entities.Connector
|
|
|
+import com.persagy.server.datacenter.models.wrapperobj.ClassCodeEnum
|
|
|
+import com.persagy.server.datacenter.services.objects.EquipmentService
|
|
|
+import com.persagy.server.datacenter.wanda.obj.Equipment
|
|
|
import com.persagy.server.services.assistant.RUpDateEquipAndSapceService
|
|
|
import com.persagy.server.services.objects.FloorService
|
|
|
import com.persagy.server.utils.IdUtils
|
|
@@ -255,39 +258,24 @@ open class CalcSpecialService {
|
|
|
fun calcNetworks(projectId: String,buildingId: String): SBaseResponse{
|
|
|
val floors = FloorService.select(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId),SFilter.eq("id","Fl440307000355ee6382da6d42cf87f19551cc4b4e60")).exec()
|
|
|
val connectedBlocks = ArrayList<ConnectedBlock>()
|
|
|
-// val connectorList = listOf("Equipment","JoinObject")
|
|
|
for (floor in floors) {
|
|
|
if (!floor.modelId.isNullOrEmpty()) {
|
|
|
val connectors = mapper.connectorOrder(floor.modelId!!)
|
|
|
-// val dcEquipments = EquipmentService.select(SFilter.eq("projectId",projectId), SFilter.eq("floorId",floor.id!!)).exec()
|
|
|
-// val dcEquipMap = HashMap<String,Equipment>(1024)
|
|
|
-// for (equipment in dcEquipments) {
|
|
|
-// if(!equipment.bimId.isNullOrEmpty()){
|
|
|
-// dcEquipMap[equipment.bimId!!] = equipment
|
|
|
-// }
|
|
|
-//
|
|
|
-// }
|
|
|
+ val dcEquipments = EquipmentService.select(SFilter.eq("projectId",projectId), SFilter.eq("floorId",floor.id!!)).exec()
|
|
|
+ val dcEquipMap = HashMap<String, Equipment>(1024)
|
|
|
+ for (equipment in dcEquipments) {
|
|
|
+ if(!equipment.bimId.isNullOrEmpty()){
|
|
|
+ dcEquipMap[equipment.bimId!!] = equipment
|
|
|
+ }
|
|
|
|
|
|
+ }
|
|
|
|
|
|
- val equipmentsConnector = ArrayList<Connector>()
|
|
|
-// val map = HashMap<String, ArrayList<Connector>>(10000)
|
|
|
val connectorMap = HashMap<String, Connector>(100000)
|
|
|
- val typeMap = HashMap<String, String>(10000)
|
|
|
+ val typeMap = HashMap<String, String>(20000)
|
|
|
for (connector in connectors) {
|
|
|
connectorMap[connector.revitId!!] = connector
|
|
|
- if (connector.belongType == "Equipment") {
|
|
|
- equipmentsConnector.add(connector)
|
|
|
- }
|
|
|
|
|
|
- val belong = connector.belong ?: continue
|
|
|
- // if (map.containsKey(belong)) {
|
|
|
-// val connectorss = map[belong]!!
|
|
|
-// connectorss.add(connector)
|
|
|
-// map[belong] = connectorss
|
|
|
-//
|
|
|
-// } else {
|
|
|
-// map[belong] = arrayListOf(connector)
|
|
|
-// }
|
|
|
+ val belong = connector.belongBimId ?: continue
|
|
|
val belongType = connector.belongType
|
|
|
if (belongType != null) {
|
|
|
typeMap[belong] = belongType
|
|
@@ -295,44 +283,73 @@ open class CalcSpecialService {
|
|
|
|
|
|
}
|
|
|
val belongMap = HashMap<String, HashSet<String>>()
|
|
|
-
|
|
|
+ val eqBelongSet = HashSet<String>()
|
|
|
//遍历连接件
|
|
|
for (connector in connectors) {
|
|
|
//拿到所属类
|
|
|
val belongType = connector.belongType
|
|
|
//拿到所属id
|
|
|
- val belong = connector.belong
|
|
|
-
|
|
|
-
|
|
|
-// //如果连接件有连接
|
|
|
- if (connector.connectedIds!!.size > 0 && belong != null) {
|
|
|
- val revitId = connector!!.connectedIds?.get(0)
|
|
|
- var currentConnector = connectorMap[revitId!!]
|
|
|
- val cBelong = currentConnector?.belong
|
|
|
- if (cBelong != null) {
|
|
|
-
|
|
|
- if (belongMap.containsKey(belong)) {
|
|
|
- val belongs = belongMap[belong]!!
|
|
|
- belongs.add(cBelong)
|
|
|
- belongMap[belong] = belongs
|
|
|
- } else {
|
|
|
- belongMap[belong] = hashSetOf(cBelong)
|
|
|
+ val belong = connector.belongBimId
|
|
|
+ if(belong != null){
|
|
|
+ eqBelongSet.add(belong)
|
|
|
+ //如果连接件有连接
|
|
|
+ if (connector.connectedIds!!.size > 0) {
|
|
|
+ val revitId = connector!!.connectedIds?.get(0)
|
|
|
+ var currentConnector = connectorMap[revitId!!]
|
|
|
+ val cBelong = currentConnector?.belongBimId
|
|
|
+ if (cBelong != null) {
|
|
|
+// if(belongType == "Equipment"){
|
|
|
+// eqBelongSet.add(belong)
|
|
|
+// }
|
|
|
+
|
|
|
+ if (belongMap.containsKey(belong)) {
|
|
|
+ val belongs = belongMap[belong]!!
|
|
|
+ belongs.add(cBelong)
|
|
|
+ belongMap[belong] = belongs
|
|
|
+ } else {
|
|
|
+ belongMap[belong] = hashSetOf(cBelong)
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ belongMap[belong] = HashSet()
|
|
|
}
|
|
|
+ }else {
|
|
|
+ belongMap[belong] = HashSet()
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- for (key in belongMap.keys) {
|
|
|
- if(typeMap[key] != "Equipment"){
|
|
|
+ var fBlockId: Int =0
|
|
|
+ var dBlockId: Int =0
|
|
|
+ var cBlockId = 0
|
|
|
+ val fBlockMap = HashMap<Int,HashSet<String>>()
|
|
|
+// val dBlockMap = HashMap<Int,HashSet<String>>()
|
|
|
+ val enumList = ClassCodeEnum.toSourceList(null)
|
|
|
+ var fSet: HashSet<String>? = null
|
|
|
+ var dSet: HashSet<String>
|
|
|
+ println(eqBelongSet.size)
|
|
|
+ for (key in eqBelongSet) {
|
|
|
+ val e1 = dcEquipMap[key]
|
|
|
+ if(e1 == null || !enumList.contains(e1.classCode)){
|
|
|
continue
|
|
|
}
|
|
|
+
|
|
|
val belongSet = belongMap[key]!!
|
|
|
- val newWork = dist(belongSet,belongSet, belongMap,typeMap,belongSet)
|
|
|
- for (s in newWork.fullConnectors!!) {
|
|
|
+
|
|
|
+ dSet = directDist(HashSet(belongSet),belongMap,typeMap)
|
|
|
+ dBlockId ++
|
|
|
+
|
|
|
+ for (s in dSet!!) {
|
|
|
if(typeMap[s] == "Equipment" && key != s){
|
|
|
+ val e2 = dcEquipMap[s]
|
|
|
+ if(e2 == null || !enumList.contains(e2.classCode)){
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if(e1.classCode == e2.classCode){
|
|
|
+ continue
|
|
|
+ }
|
|
|
|
|
|
val connectedBlock = ConnectedBlock()
|
|
|
- connectedBlock.id1 = key
|
|
|
- connectedBlock.id2 = s
|
|
|
+ connectedBlock.id1 = e1.id!!
|
|
|
+ connectedBlock.id2 = e2.id!!
|
|
|
connectedBlock.type1 = "Equipment"
|
|
|
connectedBlock.type2 = "Equipment"
|
|
|
connectedBlock.modelId1 = floor.modelId
|
|
@@ -341,21 +358,57 @@ open class CalcSpecialService {
|
|
|
// connectedBlock.mepSystemType = connector.mepSystemType
|
|
|
connectedBlock.projectId = projectId
|
|
|
connectedBlock.buildingId = buildingId
|
|
|
- connectedBlock.depth = 1
|
|
|
-// connectedBlock.typeCode1 = e1?.classCode
|
|
|
-// connectedBlock.typeCode2 = e2?.classCode
|
|
|
+ connectedBlock.depth = 0
|
|
|
+ connectedBlock.blockId = dBlockId.toString()
|
|
|
+ connectedBlock.typeCode1 = e1?.classCode
|
|
|
+ connectedBlock.typeCode2 = e2?.classCode
|
|
|
if (!connectedBlocks.contains(connectedBlock)) {
|
|
|
connectedBlocks.add(connectedBlock)
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
- for (s in newWork.directConnectors!!) {
|
|
|
+// if(listOf("Eq4403070003129ce8d657c94c648d2d164ccfc6802c",
|
|
|
+// "Eq4403070003db010203b5e54a0e8e4de56234cb6ac9",
|
|
|
+// "Eq4403070003666459bd6a7e434f8c091392bada823a",
|
|
|
+// "Eq4403070003956fbc1b234a4007bdce0653ae7faba2").contains(e1.id!!)){
|
|
|
+// fSet = fullDist(HashSet(belongSet),belongMap)
|
|
|
+// }
|
|
|
+
|
|
|
+ for (block in fBlockMap.keys) {
|
|
|
+ val set = fBlockMap[block]!!
|
|
|
+ if(set.contains(key)){
|
|
|
+ fSet = set
|
|
|
+ cBlockId = block
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(fSet == null){
|
|
|
+ fSet = fullDist(HashSet(belongSet),belongMap)
|
|
|
+ fBlockId ++
|
|
|
+ cBlockId = fBlockId
|
|
|
+ fBlockMap[cBlockId] = HashSet(fSet)
|
|
|
+ if(cBlockId == 1){
|
|
|
+ println(fBlockMap[cBlockId]!!.toJson())
|
|
|
+ }
|
|
|
+ }
|
|
|
+// fSet = fullDist(HashSet(belongSet),belongMap)
|
|
|
+// println(fSet.contains(key))
|
|
|
+// println(fSet.size)
|
|
|
+ for (s in fSet!!) {
|
|
|
if(typeMap[s] == "Equipment" && key != s){
|
|
|
+ val e2 = dcEquipMap[s]
|
|
|
+ if(e2 == null || !enumList.contains(e2.classCode)){
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if(e1.classCode == e2.classCode){
|
|
|
+ continue
|
|
|
+ }
|
|
|
|
|
|
val connectedBlock = ConnectedBlock()
|
|
|
- connectedBlock.id1 = key
|
|
|
- connectedBlock.id2 = s
|
|
|
+
|
|
|
+ connectedBlock.id1 = e1.id!!
|
|
|
+ connectedBlock.id2 = e2.id!!
|
|
|
connectedBlock.type1 = "Equipment"
|
|
|
connectedBlock.type2 = "Equipment"
|
|
|
connectedBlock.modelId1 = floor.modelId
|
|
@@ -364,17 +417,46 @@ open class CalcSpecialService {
|
|
|
// connectedBlock.mepSystemType = connector.mepSystemType
|
|
|
connectedBlock.projectId = projectId
|
|
|
connectedBlock.buildingId = buildingId
|
|
|
- connectedBlock.depth = 0
|
|
|
-// connectedBlock.typeCode1 = e1?.classCode
|
|
|
-// connectedBlock.typeCode2 = e2?.classCode
|
|
|
+ connectedBlock.depth = 1
|
|
|
+ connectedBlock.blockId = cBlockId.toString()
|
|
|
+ connectedBlock.typeCode1 = e1?.classCode
|
|
|
+ connectedBlock.typeCode2 = e2?.classCode
|
|
|
if (!connectedBlocks.contains(connectedBlock)) {
|
|
|
connectedBlocks.add(connectedBlock)
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
+// for (block in dBlockMap.keys) {
|
|
|
+// val set = dBlockMap[block]!!
|
|
|
+// if(set.contains(key)){
|
|
|
+// dSet = set
|
|
|
+// cBlockId = block
|
|
|
+// break
|
|
|
+// }
|
|
|
+// }
|
|
|
+// if(dSet == null){
|
|
|
+// dSet = directDist(HashSet(belongSet),belongMap,typeMap)
|
|
|
+// dBlockId ++
|
|
|
+// cBlockId = dBlockId
|
|
|
+// dBlockMap[cBlockId] = dSet
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
+// val newWork = dist(ArrayList(belongSet),ArrayList(belongSet), belongMap,typeMap,ArrayList(belongSet),0)
|
|
|
+// val newWork = dist(HashSet(belongSet),HashSet(belongSet), belongMap,typeMap)
|
|
|
+// newWork.fullConnectors!!.removeAll(newWork.directConnectors!!)
|
|
|
+// for (s in newWork.fullConnectors!!) {
|
|
|
+//
|
|
|
+// }
|
|
|
+// for (s in newWork.directConnectors!!) {
|
|
|
+//
|
|
|
+// }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
connectedBlockService.delete(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId))
|
|
|
val request = SCreateRequest<ConnectedBlock>()
|
|
@@ -384,12 +466,14 @@ open class CalcSpecialService {
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* @Description:递归查找连接
|
|
|
* @Param:
|
|
|
* @Return:
|
|
|
*/
|
|
|
- fun searchConnector(connector: Connector,currentConnector: Connector,map: HashMap<String,ArrayList<Connector>>,connectorMap: HashMap<String,Connector>): Connector?{
|
|
|
+ fun searchConnector(connector: Connector, currentConnector: Connector, map: HashMap<String,ArrayList<Connector>>, connectorMap: HashMap<String, Connector>): Connector?{
|
|
|
val belong = currentConnector.belong ?: return null
|
|
|
if(currentConnector.belongType == "Equipment" && currentConnector != connector){
|
|
|
return currentConnector
|
|
@@ -409,25 +493,72 @@ open class CalcSpecialService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- fun dist(list: HashSet<String>,directList:HashSet<String>, belongMap: HashMap<String,HashSet<String>>,typeMap: HashMap<String,String>,newList: HashSet<String>): NetWork{
|
|
|
-// val list = belongMap[key]!!
|
|
|
-// val connectList = ArrayList<String>()
|
|
|
-// while(list)
|
|
|
+// fun dist(list: ArrayList<String>,directList:ArrayList<String>, belongMap: HashMap<String,HashSet<String>>,typeMap: HashMap<String,String>,beforeList: ArrayList<String>,index: Int): NetWork {
|
|
|
+// var belong: String? = null
|
|
|
+// for(i in index until beforeList.size){
|
|
|
+// belong = beforeList[i]
|
|
|
+// if(belongMap[belong] != null){
|
|
|
+// val belongList = belongMap[belong]!!
|
|
|
+// for (s in belongList) {
|
|
|
+//// if(!directList.contains(s)){
|
|
|
+////
|
|
|
+//// }
|
|
|
+// if(!list.contains(s)){
|
|
|
+// list.add(s)
|
|
|
+// if(typeMap[belong] != "Equipment"){
|
|
|
+// directList.add(s)
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+//
|
|
|
+// return if(beforeList.containsAll(list)){
|
|
|
+// NetWork(list, directList)
|
|
|
+// }else{
|
|
|
+//// newList.clear()
|
|
|
+//// newList.addAll(list)
|
|
|
+//// newList.removeAll(beforeList)
|
|
|
+// println(list.size)
|
|
|
+// println("${HashSet<String>(list).size}=====")
|
|
|
+// dist(list,beforeList,belongMap,typeMap,ArrayList(list),beforeList.size)
|
|
|
+// }
|
|
|
+// }
|
|
|
+
|
|
|
+ fun fullDist(list: HashSet<String>, belongMap: HashMap<String,HashSet<String>>): HashSet<String>{
|
|
|
val beforeList = HashSet<String>(list)
|
|
|
- for (belong in newList) {
|
|
|
+ for (belong in beforeList) {
|
|
|
if(belongMap[belong] == null){
|
|
|
continue
|
|
|
}
|
|
|
+ val belongs = HashSet<String>(belongMap[belong]!!)
|
|
|
+// if(typeMap[belong] != "Equipment"){
|
|
|
+// directList.addAll(belongs)
|
|
|
+// }
|
|
|
+ list.addAll(belongs)
|
|
|
+ }
|
|
|
+ if(beforeList.containsAll(list)){
|
|
|
+ return list
|
|
|
+ }else{
|
|
|
+ return fullDist(list,belongMap)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ fun directDist(directList:HashSet<String>, belongMap: HashMap<String,HashSet<String>>,typeMap: HashMap<String,String>): HashSet<String>{
|
|
|
+ val beforeList = HashSet<String>(directList)
|
|
|
+ for (belong in beforeList) {
|
|
|
+ if(belongMap[belong] == null){
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ val belongs = HashSet<String>(belongMap[belong]!!)
|
|
|
if(typeMap[belong] != "Equipment"){
|
|
|
- directList.addAll(belongMap[belong]!!)
|
|
|
+ directList.addAll(belongs)
|
|
|
}
|
|
|
- list.addAll(belongMap[belong]!!)
|
|
|
}
|
|
|
- if(beforeList.containsAll(list)){
|
|
|
- return NetWork(list,directList)
|
|
|
+ if(beforeList.containsAll(directList)){
|
|
|
+ return directList
|
|
|
}else{
|
|
|
- newList.removeAll(beforeList)
|
|
|
- return dist(list,beforeList,belongMap,typeMap,newList)
|
|
|
+ return directDist(directList,belongMap,typeMap)
|
|
|
}
|
|
|
}
|
|
|
|