瀏覽代碼

二轮提测bug修改

caiaf 4 年之前
父節點
當前提交
a199f58a37

+ 33 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/block/ConnectedBlock.kt

@@ -94,7 +94,7 @@ open class ConnectedBlock : RBaseInfo() {
     /** depth */
     @Schema(description = "depth")
     @Column(name = "depth")
-    var depth: String? = null
+    var depth: Int? = null
 
     /** mep_system_type */
     @Schema(description = "mep_system_type")
@@ -111,4 +111,36 @@ open class ConnectedBlock : RBaseInfo() {
     @Column(name = "building_id")
     var buildingId: String? = null
 
+    /** typecode1 */
+    @Schema(description = "type_code1")
+    @Column(name = "type_code1")
+    var typeCode1: String? = null
+
+    /** typecode2 */
+    @Schema(description = "type_code2")
+    @Column(name = "type_code2")
+    var typeCode2: String? = null
+
+    override fun equals(other: Any?): Boolean {
+        if (this === other) return true
+        if (javaClass != other?.javaClass) return false
+
+        other as ConnectedBlock
+
+        if (id1 == other.id1 && id2 == other.id2) return true
+        if (id1 == other.id2 && id2 == other.id1) return true
+        if (projectId != other.projectId) return false
+        if (buildingId != other.buildingId) return false
+
+        return false
+    }
+
+    override fun hashCode(): Int {
+        var result = id1?.hashCode() ?: 0
+        result = 31 * result + (id2?.hashCode() ?: 0)
+        result = 31 * result + (projectId?.hashCode() ?: 0)
+        result = 31 * result + (buildingId?.hashCode() ?: 0)
+        return result
+    }
+
 }

+ 1 - 1
data-core/src/main/kotlin/com/persagy/server/datacenter/models/entities/graphtype/rel/RelZoneSpaceConnectedSp.kt

@@ -43,7 +43,7 @@ open class RelZoneSpaceConnectedSp: SpaceBaseZone() {
     /** 级联-空间 */
     @Schema(description = "级联-空间")
     @SCascade(table="relationship.r_sp2sp", idColumn="id1", childIdColumn="id2",self = false,filter = "type = 'sp2sp_SpaceNeighborhood_5'" )
-    @JSONField(name = "ObjectInfo")
+    @JSONField(name = "objectInfo")
     var objectInfo: ArrayList<RelZoneSpace>? = null
 
 }

+ 1 - 1
datacenter/src/main/kotlin/com/persagy/server/controllers/relation_calc/MepSystemCalcController.kt

@@ -85,7 +85,7 @@ class MepSystemCalcController {
     @GetMapping(value = ["/source/query"])
     fun addRels(@RequestParam calcName: String): SQueryResponse<MepSourceTypeEntity> {
         val projectId = SPageContext.getHeader("projectId").toString()
-        val mems = mepSystemCalc.mepSourceTypeService.select(SFilter.eq("projectId", projectId), SFilter.eq("calcName", calcName!!)).exec()
+        val mems = mepSystemCalc.mepSourceTypeService.select(SFilter.eq("projectId", projectId), SFilter.eq("calcName", calcName!!)).order("calcName").exec()
         for (mem in mems) {
             val eCounts = EquipmentService.select(SFilter.eq("projectId", projectId),SFilter.eq("classCode", mem.sourceType!!)).count
             if(eCounts != null){

+ 108 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/Connector.kt

@@ -0,0 +1,108 @@
+package com.persagy.server.models.entities
+
+import cn.sagacloud.server.algorithm.models.entities.BaseComponent
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties
+import com.persagy.server.datacenter.models.entities.graphtype.MPoint
+import javax.persistence.Column
+import javax.persistence.Table
+
+/**
+ *
+ *
+ * @author jxing
+ */
+@Table(name = "revit.connector")
+@JsonIgnoreProperties(ignoreUnknown = true)
+class Connector : BaseComponent(),Cloneable{
+
+    /** 所属对象的id */
+    @Column(name = "belong")
+//    @JSONField(serialize = false)
+    var belong: String? = null
+
+    /** 所属对象的类型(pipe, duct, others, equipment, component) */
+    @Column(name = "belong_type")
+//    @JSONField(serialize = false)
+    var belongType: String? = null
+
+//    /** 对应Revit模型id */
+//    @ApiModelProperty(value = "对应Revit模型id")
+//    @Column(name = "source_id")
+//    @JSONField(name = "SourceId")
+//    @JsonProperty("SourceId")
+//    var sourceId: String? = null
+
+    /** 所属域 */
+    @Column(name = "domain")
+//    @JSONField(name = "domain")
+//    @JsonProperty("domain")
+    var domain: String? = null
+
+    /** 位置信息 */
+    @Column(name = "origin")
+//    @JSONField(name = "origin")
+//    @JsonProperty("origin")
+    var origin: MPoint? = null
+
+    /** 描述 */
+    @Column(name = "description")
+//    @JSONField(name = "description")
+//    @JsonProperty("description")
+    var description: String? = null
+
+    /** 是否连接其他连接件 */
+    @Column(name = "connected")
+//    @JSONField(name = "isConnected")
+//    @JsonProperty("isConnected")
+    var isConnected: Boolean? = null
+
+    /** 所属对象的revit_id */
+    @Column(name = "owner")
+//    @JSONField(name = "owner")
+//    @JsonProperty("owner")
+    var owner: String? = null
+
+    /** 连接的连接件id */
+    @Column(name = "connected_ids")
+//    @JSONField(name = "connectedIds")
+//    @JsonProperty("connectedIds")
+    var connectedIds: ArrayList<String>? = null
+
+    /** 管道系统类型名称 */
+    @Column(name = "mep_system_type")
+//    @JSONField(name = "mepSystemTypeName")
+//    @JsonProperty("mepSystemTypeName")
+    var mepSystemType: String? = null
+
+//    /** 连接件连接的连接件id */
+//    @ApiModelProperty(value = "连接件连接的连接件id")
+//    @Column(name = "connect_id")
+//    @JSONField(name = "ConnectId")
+//    @JsonProperty("ConnectId")
+//    var connectId: String? = null
+
+    /** 连接件连接的连接件id */
+    @Column(name = "connect_id_json")
+//    @JSONField(name = "connectId")
+//    @JsonProperty("connectId")
+    var connectIdJson: ArrayList<String>? = null
+
+    var isUsed: Boolean? = null
+
+    /** 所属BIMID */
+    @Column(name = "belong_bimid")
+//    @JSONField(name = "belongBimId")
+//    @JsonProperty("belongBimId")
+    var belongBimId: String? = null
+
+    /** 立管状态 */
+    @Column(name = "riser_state")
+    var riserState: Int? = null
+
+    @Override
+    public override fun clone(): Connector {
+        return super.clone() as Connector
+    }
+
+
+}

+ 83 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/Duct.kt

@@ -0,0 +1,83 @@
+/*
+ * ********************************************************************************************************************
+ *
+ *                      :*$@@%$*:                         ;:                ;;    ;;
+ *                    :@@%!  :!@@%:                       %!             ;%%@@%$ =@@@@@@@%;     @%@@@%%%%@@@@@
+ *                   :@%;       :$=                       %%$$$%$$         ;$$  ;$@=   !@$
+ *                   =@!                                  %!              @ $=;%   !@@@%:      !$$$$$$$$$$$$$$=
+ *                   =@*                                  %!              @ $= % %@=   =%@!      %=
+ *              *$%%! @@=        ;=$%%%$*:                %!              @ $= % =%%%%%%@$      *%:         =%
+ *            %@@!:    !@@@%=$@@@@%!  :*@@$:              %!              @ $= % $*     ;@      @*          :%*
+ *          ;@@!          ;!!!;:         ;@%:      =======@%========*     @ $$ % $%*****$@     :@$=*********=@$
+ *          $@*   ;@@@%=!:                *@*
+ *          =@$    ;;;!=%@@@@=!           =@!
+ *           %@$:      =@%: :*@@@*       %@=                    Copyright (c) 2016-2019.  北京上格云技术有限公司
+ *            ;%@@$=$@@%*       *@@@$=%@@%;
+ *               ::;::             ::;::                                              All rights reserved.
+ *
+ * ********************************************************************************************************************
+ */
+
+
+package com.persagy.server.models.entities
+
+import cn.sagacloud.server.algorithm.models.entities.BaseComponent
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties
+import com.persagy.server.datacenter.models.entities.graphtype.MLocation
+import com.persagy.server.datacenter.models.entities.graphtype.MPoint
+import javax.persistence.Column
+import javax.persistence.Table
+
+/**
+ *风管
+ *
+ * @author jxing
+ */
+@Table(name = "revit.duct")
+@JsonIgnoreProperties(ignoreUnknown = true)
+class Duct : BaseComponent(){
+    /** 名称 */
+    @Column(name = "name")
+
+    var name: String? = null
+
+    /** 定位点 */
+    @Column(name = "location")
+    var location: MLocation? = null
+
+    /** 轮廓路径 */
+    @Column(name = "outline")
+    var outline: ArrayList<ArrayList<MPoint>>? = null
+
+    /** 所连接的连接件id */
+    @Column(name = "connected_ids")
+    var connectedIds: ArrayList<String>? = null
+
+    /** 管道系统类型名称 */
+    @Column(name = "mep_system_type")
+    var mepSystemType: String? = null
+
+    /** 形状 Circle|Rectangle|Ellipse */
+    @Column(name = "shape")
+    var shape: String? = null
+
+    /** 直径;当形状为Circle时有效 */
+    @Column(name = "diameter")
+    var diameter: Double? = null
+
+    /** 宽度 当形状为Rectangle或者Ellipse */
+    @Column(name = "width")
+    var width: Double? = null
+
+    /** 高度 当形状为Rectangle或者Ellipse */
+    @Column(name = "height")
+    var height: Double? = null
+
+    /** 参数列表 */
+    @Column(name = "parameters")
+    var parameters: ArrayList<Parameter>? = null
+
+    /** 管道类型 */
+    @Column(name = "riser_state")
+    var riserState: Int? = null
+}

+ 116 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/Equipment.kt

@@ -0,0 +1,116 @@
+/*
+ * ********************************************************************************************************************
+ *
+ *                      :*$@@%$*:                         ;:                ;;    ;;
+ *                    :@@%!  :!@@%:                       %!             ;%%@@%$ =@@@@@@@%;     @%@@@%%%%@@@@@
+ *                   :@%;       :$=                       %%$$$%$$         ;$$  ;$@=   !@$
+ *                   =@!                                  %!              @ $=;%   !@@@%:      !$$$$$$$$$$$$$$=
+ *                   =@*                                  %!              @ $= % %@=   =%@!      %=
+ *              *$%%! @@=        ;=$%%%$*:                %!              @ $= % =%%%%%%@$      *%:         =%
+ *            %@@!:    !@@@%=$@@@@%!  :*@@$:              %!              @ $= % $*     ;@      @*          :%*
+ *          ;@@!          ;!!!;:         ;@%:      =======@%========*     @ $$ % $%*****$@     :@$=*********=@$
+ *          $@*   ;@@@%=!:                *@*
+ *          =@$    ;;;!=%@@@@=!           =@!
+ *           %@$:      =@%: :*@@@*       %@=                    Copyright (c) 2016-2019.  北京上格云技术有限公司
+ *            ;%@@$=$@@%*       *@@@$=%@@%;
+ *               ::;::             ::;::                                              All rights reserved.
+ *
+ * ********************************************************************************************************************
+ */
+
+package com.persagy.server.models.entities
+
+import cn.sagacloud.server.algorithm.models.entities.BaseComponent
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties
+import com.persagy.server.datacenter.models.entities.graphtype.MLocation
+import com.persagy.server.datacenter.models.entities.graphtype.MPoint
+import javax.persistence.Column
+import javax.persistence.Table
+/**
+ * 设备
+ *
+ * @author jxing
+ */
+@Table(name = "revit.equipment")
+@JsonIgnoreProperties(ignoreUnknown = true)
+class Equipment : BaseComponent(){
+
+    /** 名称 */
+
+    @Column(name = "name")
+    var name: String? = null
+
+    /** 补充信息 */
+
+    @Column(name = "tag")
+    var tag: String? = null
+
+    /** 本地编码 */
+
+    @Column(name = "local_id")
+    var localId: String? = null
+
+    /** 本地名称 */
+
+    @Column(name = "local_name")
+    var localName: String? = null
+
+    /** 4位部件类型编码 */
+
+    @Column(name = "family")
+    var family: String? = null
+    set(value) {
+        field = value?.trim()
+    }
+
+
+    /** 类型中文名称 */
+    @Column(name = "family_name")
+    var familyName: String? = null
+
+    /** 族符号 */
+    @Column(name = "family_symbol")
+    var familySymbol: String? = null
+
+    /** 定位点 */
+    @Column(name = "location")
+    var location: MLocation? = null
+
+    /** 设备轮廓 */
+    @Column(name = "outline")
+    var outline : ArrayList<ArrayList<MPoint>>? = null
+
+    /** 参数列表 */
+    @Column(name = "parameters")
+    var parameters: ArrayList<Parameter>? = null
+
+    /** 旋转角度 */
+    @Column(name = "rotation")
+    var rotation: Double? = null
+
+    /** 资产id */
+    @Column(name = "property_id")
+    var propertyId: String? = null
+
+    /** BIMID */
+    @Column(name = "bimid")
+    var bimId: String? = null
+
+
+    /** 万达BIMTypeID */
+    @Column(name = "bim_type_id")
+    var bimTypeID: String? = null
+
+    /** 系统分类 */
+    @Column(name = "sys_name")
+    var sysName: String? = null
+
+
+    /** 初始4位部件类型编码 */
+    @Column(name = "init_family")
+    var initFamily: String? = null
+
+    /** 转换后的信息点 */
+    @Column(name = "infos")
+    var infos: Map<String,String>? = null
+}

+ 22 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/Parameter.kt

@@ -0,0 +1,22 @@
+package com.persagy.server.models.entities
+
+import com.alibaba.fastjson.annotation.JSONField
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties
+import com.fasterxml.jackson.annotation.JsonProperty
+
+/**
+ *
+ *
+ * @author jxing
+ */
+@JsonIgnoreProperties(ignoreUnknown = true)
+class Parameter {
+
+    @JSONField(name = "Name")
+    @JsonProperty("Name")
+    var name : String? = null
+
+    @JSONField(name = "Value")
+    @JsonProperty("Value")
+    val value : String? = null
+}

+ 72 - 0
datacenter/src/main/kotlin/com/persagy/server/models/entities/Pipe.kt

@@ -0,0 +1,72 @@
+/*
+ * ********************************************************************************************************************
+ *
+ *                      :*$@@%$*:                         ;:                ;;    ;;
+ *                    :@@%!  :!@@%:                       %!             ;%%@@%$ =@@@@@@@%;     @%@@@%%%%@@@@@
+ *                   :@%;       :$=                       %%$$$%$$         ;$$  ;$@=   !@$
+ *                   =@!                                  %!              @ $=;%   !@@@%:      !$$$$$$$$$$$$$$=
+ *                   =@*                                  %!              @ $= % %@=   =%@!      %=
+ *              *$%%! @@=        ;=$%%%$*:                %!              @ $= % =%%%%%%@$      *%:         =%
+ *            %@@!:    !@@@%=$@@@@%!  :*@@$:              %!              @ $= % $*     ;@      @*          :%*
+ *          ;@@!          ;!!!;:         ;@%:      =======@%========*     @ $$ % $%*****$@     :@$=*********=@$
+ *          $@*   ;@@@%=!:                *@*
+ *          =@$    ;;;!=%@@@@=!           =@!
+ *           %@$:      =@%: :*@@@*       %@=                    Copyright (c) 2016-2019.  北京上格云技术有限公司
+ *            ;%@@$=$@@%*       *@@@$=%@@%;
+ *               ::;::             ::;::                                              All rights reserved.
+ *
+ * ********************************************************************************************************************
+ */
+
+
+package com.persagy.server.models.entities
+
+import cn.sagacloud.server.algorithm.models.entities.BaseComponent
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties
+import com.persagy.server.datacenter.models.entities.graphtype.MLocation
+import com.persagy.server.datacenter.models.entities.graphtype.MPoint
+import com.persagy.server.models.entities.Parameter
+import javax.persistence.Column
+import javax.persistence.Table
+
+/**
+ * 水管
+ *
+ * @author jxing
+ */
+@Table(name = "revit.pipe")
+@JsonIgnoreProperties(ignoreUnknown = true)
+class Pipe  : BaseComponent(){
+
+    /** 名称 */
+    @Column(name = "name")
+    var name: String? = null
+
+    /** 定位点 */
+    @Column(name = "location")
+    var location: MLocation? = null
+
+    /** 设备轮廓 */
+    @Column(name = "outline")
+    var outline : ArrayList<ArrayList<MPoint>>? = null
+
+    /** 连接的连接件id */
+    @Column(name = "connected_ids")
+    var connectedIds: ArrayList<String>? = null
+
+    /** 管道系统类型名称 */
+    @Column(name = "mep_system_type")
+    var mepSystemType: String? = null
+
+    /** 直径 */
+    @Column(name = "diameter")
+    var diameter: Double? = null
+
+    /** 参数列表 */
+    @Column(name = "parameters")
+    var parameters: ArrayList<Parameter>? = null
+
+    /** 管道类型 */
+    @Column(name = "riser_state")
+    var riserState: Int? = null
+}

+ 35 - 0
datacenter/src/main/kotlin/com/persagy/server/models/wrapperobj/ClassCodeEnum.kt

@@ -0,0 +1,35 @@
+package com.persagy.server.models.wrapperobj
+
+import java.util.*
+
+
+/**
+ *
+ * @author  Cainga
+ * @date  2021/2/24 10:32
+ */
+enum class ClassCodeEnum(val cname: String,val value: Int) {
+    ACVTIO("通风风口",0),
+    FFSCIO("排烟风口",0),
+    ACATIO("空调风口",0),
+    ACVTSF("通风风机",1),
+    ACATAH("空调机组",1),
+    ACATFU("新风机组",1);
+    companion object {
+        fun toSourceList(value: Int?): List<String> {
+            val list = ArrayList<String>() //Lists.newArrayList()其实和new ArrayList()几乎一模
+            //  一样, 唯一它帮你做的(其实是javac帮你做的), 就是自动推导(不是"倒")尖括号里的数据类型.
+            for (classCodeEnum in ClassCodeEnum.values()) {
+                if(value == null){
+                    list.add(classCodeEnum.name)
+                }else if(classCodeEnum.value == value){
+                        list.add(classCodeEnum.name)
+                }
+
+            }
+            return list
+        }
+    }
+
+
+}

+ 18 - 0
datacenter/src/main/kotlin/com/persagy/server/models/wrapperobj/NetWork.kt

@@ -0,0 +1,18 @@
+package com.persagy.server.models.wrapperobj
+
+/**
+ *
+ * @author  Cainga
+ * @date  2021/2/27 11:08
+ */
+open class NetWork {
+
+    var fullConnectors: HashSet<String>? = null
+
+    constructor(fullConnectors: HashSet<String>?, directConnectors: HashSet<String>) {
+        this.fullConnectors = fullConnectors
+        this.directConnectors = directConnectors
+    }
+
+    var directConnectors: HashSet<String>? = null
+}

+ 27 - 0
datacenter/src/main/kotlin/com/persagy/server/models/wrapperobj/TwicePoint.kt

@@ -0,0 +1,27 @@
+package com.persagy.server.models.wrapperobj
+
+/**
+ *
+ * @author  Cainga
+ * @date  2021/2/13 14:47
+ */
+open class TwicePoint(x1: Double,y1:Double,x2:Double,y2:Double) {
+
+
+
+    var x1: Double? = null
+
+    var x2: Double? = null
+
+    var y1: Double? = null
+
+    var y2: Double? = null
+
+    //init代码块中可以访问主构造方法中的变量
+    init {
+        this.x1=x1
+        this.y1=y1
+        this.x2 = x2
+        this.y2 = y2
+    }
+}

+ 235 - 0
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/CalcSpecialService.kt

@@ -30,9 +30,15 @@ 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.models.entities.objects.Equipment
 import com.persagy.server.datacenter.models.entities.rel.REq2Eq
 import com.persagy.server.mappers.ICalcSpecialMapper
+import com.persagy.server.models.entities.Connector
+import com.persagy.server.models.wrapperobj.ClassCodeEnum
 import com.persagy.server.services.assistant.RUpDateEquipAndSapceService
+import com.persagy.server.services.objects.BuildingService
+import com.persagy.server.services.objects.EquipmentService
+import com.persagy.server.services.objects.FloorService
 import com.persagy.server.utils.IdUtils
 import com.persagy.service.SBaseService
 import com.persagy.service.SObjectService
@@ -64,6 +70,7 @@ open class CalcSpecialService {
     /** 关系总览服务 */
     val relationTypeProjectservice = SBaseService(SMybatisDao(RelationTypeProject::class.java))
     val rEq2EqService = SObjectService(SMybatisDao(REq2Eq::class.java))
+    val connectorService = SObjectService(SMybatisDao(Connector::class.java))
 
     /**
      * 管网系统设备分块
@@ -244,4 +251,232 @@ open class CalcSpecialService {
         }
     } // Fun
 
+    /**
+     * @Description: 管网计算
+     * @Param:
+     * @Return:
+     */
+    fun calcNetworks(projectId: String): SBaseResponse{
+        val buildings = BuildingService.select(SFilter.eq("projectId",projectId)).exec()
+        for (building in buildings) {
+            val buildingId = building.id!!
+            val floors = FloorService.select(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId)).exec()
+            val connectedBlocks = ArrayList<ConnectedBlock>()
+            for (floor in floors) {
+                if (!floor.modelId.isNullOrEmpty()) {
+                    val connectors = connectorService.select(SFilter.eq("modelId",floor.modelId!!), SFilter.ne("domain","DomainPiping")).exec()
+                    val dcEquipments = EquipmentService.select(SFilter.eq("projectId",projectId), SFilter.eq("floorId",floor.id!!)).exec()
+                    val dcEquipMap = HashMap<String, Equipment>(10000)
+                    for (equipment in dcEquipments) {
+                        if(!equipment.bimId.isNullOrEmpty()){
+                            dcEquipMap[equipment.bimId!!] = equipment
+                        }
+
+                    }
+
+                    val connectorMap = HashMap<String, Connector>(100000)
+                    val typeMap = HashMap<String, String>(20000)
+                    for (connector in connectors) {
+                        connectorMap[connector.revitId!!] = connector
+
+                        val belong = connector.belongBimId ?: continue
+                        val belongType = connector.belongType
+                        if (belongType != null) {
+                            typeMap[belong] = belongType
+                        }
+
+                    }
+                    val belongMap = HashMap<String, HashSet<String>>()
+                    val eqBelongSet = HashSet<String>()
+                    //遍历连接件
+                    for (connector in connectors) {
+                        //拿到所属类
+                        val belongType = connector.belongType
+                        //拿到所属id
+                        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()
+                            }
+                        }
+                    }
+                    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]!!
+
+                        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 = e1.id!!
+                                connectedBlock.id2 = e2.id!!
+                                connectedBlock.type1 = "Equipment"
+                                connectedBlock.type2 = "Equipment"
+                                connectedBlock.modelId1 = floor.modelId
+                                connectedBlock.modelId2 = floor.modelId
+//                                connectedBlock.domain = connector.domain
+//                                connectedBlock.mepSystemType = connector.mepSystemType
+                                connectedBlock.projectId = projectId
+                                connectedBlock.buildingId = buildingId
+                                connectedBlock.depth = 0
+                                connectedBlock.blockId = dBlockId.toString()
+                                connectedBlock.typeCode1 = e1?.classCode
+                                connectedBlock.typeCode2 = e2?.classCode
+                                if (!connectedBlocks.contains(connectedBlock)) {
+                                    connectedBlocks.add(connectedBlock)
+                                }
+
+                            }
+                        }
+
+                        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)
+                        }
+//                    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 = e1.id!!
+                                connectedBlock.id2 = e2.id!!
+                                connectedBlock.type1 = "Equipment"
+                                connectedBlock.type2 = "Equipment"
+                                connectedBlock.modelId1 = floor.modelId
+                                connectedBlock.modelId2 = floor.modelId
+//                                connectedBlock.domain = connector.domain
+//                                connectedBlock.mepSystemType = connector.mepSystemType
+                                connectedBlock.projectId = projectId
+                                connectedBlock.buildingId = buildingId
+                                connectedBlock.depth = 1
+                                connectedBlock.blockId = cBlockId.toString()
+                                connectedBlock.typeCode1 = e1?.classCode
+                                connectedBlock.typeCode2 = e2?.classCode
+                                if (!connectedBlocks.contains(connectedBlock)) {
+                                    connectedBlocks.add(connectedBlock)
+                                }
+
+                            }
+                        }
+
+
+                    }
+                }
+
+
+            }
+            connectedBlockService.delete(SFilter.eq("projectId",projectId), SFilter.eq("buildingId",buildingId))
+            val request = SCreateRequest<ConnectedBlock>()
+            request.content = connectedBlocks
+            connectedBlockService.createList(request)
+        }
+
+
+        return SBaseResponse(SResponseType.success, "")
+
+    }
+
+    fun fullDist(list: HashSet<String>, belongMap: HashMap<String,HashSet<String>>): HashSet<String>{
+        val beforeList = HashSet<String>(list)
+        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(belongs)
+            }
+        }
+        if(beforeList.containsAll(directList)){
+            return directList
+        }else{
+            return directDist(directList,belongMap,typeMap)
+        }
+    }
+
+
+
 } // Class CalcSpecialService

+ 72 - 2
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/RelationCalcService.kt

@@ -31,11 +31,13 @@ import com.persagy.mybatis.SMybatisDao
 import com.persagy.server.Opt
 import com.persagy.server.datacenter.models.entities.graphtype.MPoint
 import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
+import com.persagy.server.datacenter.models.entities.rel.REq2Sp
 import com.persagy.server.datacenter.models.entities.rel.RSp2Sp
 import com.persagy.server.jms.RabbitMqService
 import com.persagy.server.mappers.IRelationCalcMapper
 import com.persagy.server.models.`object`.TwicePoint
 import com.persagy.server.models.service.BaseDataService
+import com.persagy.server.models.wrapperobj.ClassCodeEnum
 import com.persagy.server.services.assistant.RUpDateEquipAndSapceService
 import com.persagy.server.services.base.RService
 import com.persagy.server.services.objects.EquipmentService
@@ -44,12 +46,14 @@ import com.persagy.server.services.objects.ZoneSpaceBaseService
 import com.persagy.server.services.rel.REq2SpService
 import com.persagy.server.utils.IdUtils
 import com.persagy.service.SBaseService
+import com.persagy.service.SObjectService
 import com.persagy.service.models.enums.SResponseType
 import com.persagy.service.models.responses.SBaseResponse
 import com.persagy.service.utils.SSpringContextUtil
 import org.slf4j.LoggerFactory
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.stereotype.Service
+import com.persagy.server.datacenter.models.entities.graphtype.block.ConnectedBlock
 
 /**
  * 自动关系计算
@@ -62,6 +66,12 @@ open class RelationCalcService {
     @Autowired
     lateinit var mapper: IRelationCalcMapper
 
+    @Autowired
+    lateinit var calcSpecialService: CalcSpecialService
+
+    val connectedBlockService = SObjectService(SMybatisDao(ConnectedBlock::class.java))
+
+
     /** RabbitMQ消息对象 */
     val rabbitMqService by lazy {
         SSpringContextUtil.getBean(RabbitMqService::class.java) as RabbitMqService
@@ -1194,7 +1204,6 @@ open class RelationCalcService {
 
             /*************************上面添加数据**********************************/
 
-
             if (result != null && result == 0) {
                 try {
                     upDate(projectId, "fl2sp")
@@ -1213,24 +1222,85 @@ open class RelationCalcService {
                 val equipmentList = EquipmentService.select(SFilter.eq("projectId", projectId),
                         SFilter.inList("classCode",
                                 arrayListOf("ACATIO", "ACVTIO","ACATFC","ACVTAC","FFSCIO"))).exec()
+                val typeMap = HashMap<String,String>();
                 if (equipmentList.size > 0) {
                     var listId = ArrayList<String>()
                     for (equipment in equipmentList) {
                         listId.add(equipment.id!!)
+                        typeMap[equipment.id!!] = equipment.classCode!!
                     }
                     val rEq2SpList = REq2SpService.select(SFilter.eq("projectId", projectId),
                             SFilter.inList("id1", listId)
                             , SFilter.eq("type", "eq2sp_in")).exec()
+
                     if (rEq2SpList.size > 0) {
+
+                        calcSpecialService.calcNetworks(projectId)
+                        val codeList= ClassCodeEnum.toSourceList(1)
+
+                        val connectedBlocks = connectedBlockService.select(SFilter.eq("projectId",projectId), SFilter.or(SFilter.inList("typeCode1",codeList), SFilter.inList("typeCode2",codeList))).exec()
+
+                        val sourceList = ClassCodeEnum.toSourceList(0)
+                        val rEq2Sps = ArrayList<REq2Sp>()
+
                         for (rEq2Sp in rEq2SpList) {
                             try {
                                 rEq2Sp.type = "eq2sp_for"
-                                REq2SpService.replace(rEq2Sp)
+                                //获取设备类型
+                                val typeCode = typeMap[rEq2Sp.id1]
+                                if(!sourceList.contains(typeCode)){
+                                    rEq2Sps.add(rEq2Sp)
+                                }
+
+
+
+                                //如果是风口才计算关系
+                                if( typeCode!= null && sourceList.contains(typeCode)){
+                                    for (connectedBlock in connectedBlocks) {
+                                        val typeCode1 = connectedBlock.typeCode1
+                                        val typeCode2 = connectedBlock.typeCode2
+                                        if(sourceList.contains(typeCode1) && rEq2Sp.id1 == connectedBlock.id1){
+                                            val fullREq2Sp = REq2Sp()
+//                                            fullREq2Sp.type = relType
+//                                            fullREq2Sp.graphCode = graphCode
+                                            fullREq2Sp.type = "eq2sp_for"
+                                            fullREq2Sp.projectId = projectId
+                                            fullREq2Sp.id1 = connectedBlock.id2
+                                            fullREq2Sp.id2 = rEq2Sp.id2
+                                            fullREq2Sp.zoneType = tables
+                                            fullREq2Sp.sign =2
+                                            rEq2Sps.add(fullREq2Sp)
+
+                                            //有连接服务风口空间
+                                            rEq2Sps.add(rEq2Sp)
+                                        }else if(sourceList.contains(typeCode2) && rEq2Sp.id1 == connectedBlock.id2){
+                                            val fullREq2Sp = REq2Sp()
+//                                            fullREq2Sp.type = relType
+//                                            fullREq2Sp.graphCode = graphCode
+                                            fullREq2Sp.type = "eq2sp_for"
+                                            fullREq2Sp.projectId = projectId
+                                            fullREq2Sp.id1 = connectedBlock.id1
+                                            fullREq2Sp.id2 = rEq2Sp.id2
+                                            fullREq2Sp.zoneType = tables
+                                            fullREq2Sp.sign =2
+                                            rEq2Sps.add(fullREq2Sp)
+
+                                            //有连接服务风口空间
+                                            rEq2Sps.add(rEq2Sp)
+                                        }
+                                    }
+                                }
+
+//                                REq2SpService.replace(rEq2Sp)
                             } catch (e: Exception) {
                                 e.toString()
                             }
                         }
+                        for (rEq2Sp in rEq2Sps) {
+                            REq2SpService.replace(rEq2Sp)
+                        }
                     }
+
                 }
                 /** 发送消息 */
                 rabbitMqService.sendRel(Opt.projectId!!, "fengkou_for", "20", "123", "456")