瀏覽代碼

完成对数据平台property数据字典配置文件校验逻辑开发

cuixubin 4 年之前
父節點
當前提交
8fa5cdfc3f

+ 50 - 8
src/main/java/com/persagy/dptool/CommonUtil.java

@@ -14,20 +14,15 @@ import org.apache.http.impl.client.HttpClients;
 import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
 import org.apache.http.util.EntityUtils;
 
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Map;
-import java.util.Properties;
+import java.io.*;
+import java.util.*;
 
 public class CommonUtil {
     public static final ObjectMapper jsonMapper = new ObjectMapper();
     private final static PoolingHttpClientConnectionManager CONNECTION_MANAGER = new PoolingHttpClientConnectionManager();
     private final static CloseableHttpClient HTTP_CLIENT;
     private static final String UTF8 = "utf-8";
+    public static String[] prefixStr = {"- Error", "- Warn"};
 
     static {
         // 设置整个连接池最大连接数 根据自己的场景决定
@@ -44,6 +39,11 @@ public class CommonUtil {
         HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONNECTION_MANAGER)
                 .setDefaultRequestConfig(requestConfig).build();
     }
+
+    public static String getLineString(String str, int prefixIndex) {
+        return  prefixStr[prefixIndex] + ":" + str + "\n";
+    }
+
     private static String sendRequest(HttpUriRequest request) throws IOException {
         CloseableHttpResponse response = HTTP_CLIENT.execute(request);
         return EntityUtils.toString(response.getEntity(), UTF8);
@@ -128,4 +128,46 @@ public class CommonUtil {
 
         return result;
     }
+
+    /**
+     * 按行读取文件中的信息,将所读到信息写入到一个字符串当中
+     * @param file 文件
+     * @return String 文件中的信息
+     */
+    public static String readFileToString(File file) {
+        StringBuffer sbStr = new StringBuffer();
+        List<String> dataStringList = readFileToList(file);
+        if(null != dataStringList) {
+            for(String str : dataStringList) {
+                sbStr.append(str);
+            }
+        }
+
+        return sbStr.toString();
+    }
+
+    /**
+     * 按行读取文件中的信息存入到List集合中
+     * @param file
+     * @return List<String> 文件中的内容,按行存入集合,默认返回空集合
+     */
+    public static List<String> readFileToList(File file) {
+        List<String> contentList = new ArrayList<>();
+
+        if(null == file || !file.exists() || !file.isFile()) {
+            return contentList;
+        }
+
+        try (InputStreamReader isr = new InputStreamReader(new FileInputStream(file));
+             BufferedReader br = new BufferedReader(isr);) {
+            String temp = null;
+            while ((temp = br.readLine()) != null) {
+                contentList.add(temp);
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+        return contentList;
+    }
 }

+ 32 - 0
src/main/java/com/persagy/dptool/ConstantData.java

@@ -0,0 +1,32 @@
+package com.persagy.dptool;
+
+import java.util.*;
+
+public class ConstantData {
+    /** 文件服务默认systemId与secret对应关系{systemId:secret} */
+    public static Map<String, String> imgKeyMap = new HashMap<>();
+    /** 数据字典配置文件基础目录 Dictionary */
+    public static String dicFolderDictionary = "Dictionary";
+    /** 数据字典配置文件基础目录 eqFamily */
+    public static String dicFolderEqFamily = "eqFamily";
+    /** 数据字典配置文件基础目录 InfoCode */
+    public static String dicFolderInfoCode = "InfoCode";
+    /** 数据字典配置文件基础目录 */
+    public static Set<String> dicFolderBase = new HashSet<>();
+    private static String jsonFileNamesOfDictionary = "10_SeismicPrecautionaryIntensity.json,averageTemperature2016.json,B_climate.json," +
+            "CalendarInterval.json,CalendarTag.json,consumableRel.json,ContaminationLevel.json,C_developingLevel.json,D_weatherCondition.json," +
+            "EqFamily.json,E_wind.json,Facility_new.json,F_direction.json,Geography.json,GlobalRelation.json,G_buildingFunction.json," +
+            "H_spaceFunction.json,I_rental.json,K_dustproofLevel.json,K_waterproofLevel.json,M_dangerArea.json,M_explosionproofEquipment.json," +
+            "M_explosionproofGas&Temperature.json,M_explosionproofType.json,PollutionLevel.json,StandardEnergyItem.json,toolRel.json,VirtualObject.json";
+
+    public static Set<String> jsonFilesOfDictionary = new HashSet<>(Arrays.asList(jsonFileNamesOfDictionary.split(",")));
+
+    static {
+        imgKeyMap.put("dev", "123"); imgKeyMap.put("saas", "46f869eea8b31d14");
+        imgKeyMap.put("superClass", "90b92e6f71b47b31"); imgKeyMap.put("revit", "63afbef6906c342b");
+        imgKeyMap.put("duoduo", "df548507374559a3"); imgKeyMap.put("dataPlatform", "9e0891a7a8c8e885");
+
+        dicFolderBase.add(dicFolderInfoCode); dicFolderBase.add(dicFolderDictionary); dicFolderBase.add(dicFolderEqFamily);
+    }
+
+}

+ 0 - 16
src/main/java/com/persagy/dptool/DataDTO.java

@@ -1,16 +0,0 @@
-package com.persagy.dptool;
-
-import javafx.beans.property.SimpleStringProperty;
-
-import java.util.HashMap;
-import java.util.Map;
-
-public class DataDTO {
-    public static Map<String, String> imgKeyMap = new HashMap<>();
-    static {
-        imgKeyMap.put("dev", "123"); imgKeyMap.put("saas", "46f869eea8b31d14");
-        imgKeyMap.put("superClass", "90b92e6f71b47b31"); imgKeyMap.put("revit", "63afbef6906c342b");
-        imgKeyMap.put("duoduo", "df548507374559a3"); imgKeyMap.put("dataPlatform", "9e0891a7a8c8e885");
-    }
-    public SimpleStringProperty testStr;
-}

+ 135 - 0
src/main/java/com/persagy/dptool/DictionaryUtil.java

@@ -0,0 +1,135 @@
+package com.persagy.dptool;
+
+import com.persagy.dptool.dto.*;
+
+import java.util.HashSet;
+import java.util.Set;
+
+public class DictionaryUtil {
+
+    /**
+     * 解析专业-系统-设备-部件json配置文件转为的map数据
+     * @param jsonString
+     * @param sbStr
+     * @return
+     */
+    public static FacilityDTO readFacility_new(String jsonString, StringBuilder sbStr) {
+        final String fileName = "Facility_new.json文件";
+        FacilityDTO result = null;
+        String errorString = "";
+
+        try {
+           result = CommonUtil.jsonStrToObj(jsonString, FacilityDTO.class);
+        }catch (Exception e) {}
+
+        if(null == result || result.getAll() == null || result.getAll().size() == 0) {
+            errorString = "数据结构错误!请参考标准数据字典改文件结构。";
+        }else {
+            Set<String> majorCodeSet = new HashSet<>();
+            String majorCode = null;
+            for(MajorDTO major : result.getAll()) {
+                if(major == null) {
+                    errorString = "数据结构错误!请参考标准数据字典改文件结构。";
+                    break;
+                }
+
+                String checkResult = major.check();
+                if(null != checkResult) {
+                    errorString = "有误!"+checkResult;
+                    break;
+                }
+
+                majorCode = major.getCode();
+                if(majorCodeSet.contains(majorCode)) {
+                    errorString = "有误!有重复的专业编码" + majorCode;
+                    break;
+                }else {
+                    majorCodeSet.add(majorCode);
+                }
+
+                if(major.getContent() != null && major.getContent().size() > 0) {
+                    Set<String> systemCodeSet = new HashSet<>();
+                    String systemCode = null;
+                    for(SystemDTO system : major.getContent()) {
+                        if(system == null) {
+                            errorString = "有误!"+majorCode+"专业下有不合法的系统类型配置信息!";
+                            break;
+                        }
+
+                        checkResult = system.check();
+                        if(null != checkResult) {
+                            errorString = "有误!"+majorCode+"专业下配置信息错误:"+checkResult;
+                            break;
+                        }
+
+                        systemCode = system.getCode();
+                        if(systemCodeSet.contains(systemCode)) {
+                            errorString = "有误!"+majorCode + "专业下有重复的系统编码" + systemCode;
+                            break;
+                        }else {
+                            systemCodeSet.add(systemCode);
+                        }
+
+                        if(system.getContent() != null && system.getContent().size() > 0) {
+                            Set<String> eqCodeSet = new HashSet<>();
+                            String eqCode = null;
+                            for(EqDTO eqdto : system.getContent()) {
+                                if(eqdto == null) {
+                                    errorString = "有误!"+majorCode+"专业"+systemCode+"系统下有不合法的设备类型配置信息!";
+                                    break;
+                                }
+
+                                checkResult = eqdto.check();
+                                if(null != checkResult) {
+                                    errorString = "有误!"+majorCode+"专业"+systemCode+"系统下有不合法的设备类型配置信息:"+checkResult;
+                                    break;
+                                }
+
+                                eqCode = eqdto.getCode();
+                                if(eqCodeSet.contains(eqCode)) {
+                                    errorString = "有误!"+majorCode+"专业"+systemCode+"系统下有重复的设备编码" + eqCode;
+                                    break;
+                                }else {
+                                    eqCodeSet.add(eqCode);
+                                }
+
+                                if(eqdto.getComponents() != null && eqdto.getComponents().size() > 0) {
+                                    Set<String> compCodeSet = new HashSet<>();
+                                    String compCode = null;
+                                    for(ComponentDTO comp : eqdto.getComponents()) {
+                                        if(comp == null) {
+                                            errorString = "有误!"+majorCode+"专业"+systemCode+"系统"+eqCode+"设备下有不合法的部件类型配置信息!";
+                                            break;
+                                        }
+
+                                        checkResult = comp.check();
+                                        if(null != checkResult) {
+                                            errorString = "有误!"+majorCode+"专业"+systemCode+"系统"+eqCode+"设备下有不合法的部件类型配置信息:"+checkResult;
+                                            break;
+                                        }
+
+                                        compCode = comp.getCode();
+                                        if(compCodeSet.contains(compCode)) {
+                                            errorString = "有误!"+majorCode+"专业"+systemCode+"系统"+eqCode+"设备下有重复的部件编码" + compCode;
+                                            break;
+                                        }else {
+                                            compCodeSet.add(compCode);
+                                        }
+                                    }
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+        }
+
+        if(errorString.length() > 0) {
+            sbStr.append(CommonUtil.getLineString(fileName+errorString, 0));
+        }else {
+            result.normal = true;
+        }
+
+        return result;
+    }
+}

+ 280 - 24
src/main/java/com/persagy/dptool/TaskFactory.java

@@ -1,5 +1,9 @@
 package com.persagy.dptool;
 
+import com.persagy.dptool.dto.EqDTO;
+import com.persagy.dptool.dto.FacilityDTO;
+import com.persagy.dptool.dto.MajorDTO;
+import com.persagy.dptool.dto.SystemDTO;
 import com.rabbitmq.client.Channel;
 import com.rabbitmq.client.Connection;
 import com.rabbitmq.client.ConnectionFactory;
@@ -8,7 +12,7 @@ import javafx.concurrent.Task;
 
 import javax.jms.TopicSession;
 import java.io.File;
-import java.util.Map;
+import java.util.*;
 
 public class TaskFactory {
     public static String[] prefixStr = {"- Error", "- Warn"};
@@ -32,8 +36,9 @@ public class TaskFactory {
 
                     Map<String, String> configMap = CommonUtil.property2Map(configFile);
                     String propertyFileCheckResult = checkConfigFile(controller, configMap);
+
                     Platform.runLater(()->{
-                        controller.txaContent.setText(propertyFileCheckResult);
+                        controller.txaContent.appendText(propertyFileCheckResult);
                     });
                 }else {
                     Platform.runLater(()->{
@@ -42,6 +47,23 @@ public class TaskFactory {
                     Thread.sleep(500);
                 }
 
+                if(propertyFile != null && propertyFile.isDirectory()) {
+                    Platform.runLater(()->{
+                        controller.lblState.setText("校验数据字典配置文件...");
+                    });
+                    Thread.sleep(500);
+
+                    String dictionaryCheckResult = checkDictionary(propertyFile);
+
+                    Platform.runLater(()->{
+                        controller.txaContent.appendText(dictionaryCheckResult);
+                    });
+                }else {
+                    Platform.runLater(()->{
+                        controller.lblState.setText("数据字典配置文件目录:/property 未找到。");
+                    });
+                }
+
                 Platform.runLater(()->{
                     controller.setDisable(false, 1);
                     controller.piState.setVisible(false);
@@ -53,23 +75,261 @@ public class TaskFactory {
     }
 
     /**
+     * 校验数据字典配置文件
+     * @param propertyFile property数据字典配置文件目录
+     * @return
+     */
+    private static String checkDictionary(File propertyFile) {
+        StringBuilder sbStr = new StringBuilder("【数据字典配置信息校验结果】\n");
+
+        File[] folders = propertyFile.listFiles();
+
+        if(null != folders && folders.length > 0) {
+            Set<String> noFolderSet = new HashSet<>(ConstantData.dicFolderBase);
+            Map<String, File> hasFolderMap = getName2FileMap(folders, ConstantData.dicFolderBase);
+
+            if(hasFolderMap.keySet().size() != ConstantData.dicFolderBase.size()) {
+                noFolderSet.removeAll(hasFolderMap.keySet());
+                sbStr.append(CommonUtil.getLineString("目录property下缺少必要子目录" + noFolderSet, 0));
+            }else {
+                FacilityDTO facilityDTO = checkDictionaryOnDictionary(sbStr, hasFolderMap.get(ConstantData.dicFolderDictionary));
+                if(facilityDTO != null && facilityDTO.normal) {
+                    checkDictionaryOnInfoCodeByFacilityDTO(hasFolderMap.get(ConstantData.dicFolderInfoCode), sbStr, facilityDTO);
+                }else {
+                    checkDictionaryOnInfoCode(hasFolderMap.get(ConstantData.dicFolderInfoCode), sbStr);
+                }
+            }
+        }else {
+            sbStr.append(CommonUtil.getLineString("目录property下缺少必要子目录" + ConstantData.dicFolderBase, 0));
+        }
+
+        String checkResult = sbStr.toString();
+        if(checkResult.contains("Error") || checkResult.contains("Warn")) {
+            checkResult = checkResult + "\n";
+        }else {
+            checkResult = checkResult + "未发现异常配置。\n\n";
+        }
+
+        return checkResult;
+    }
+
+    /**
+     * 先校验InfoCode目录下的所有json文件是否为合法的json数据结构,再按照FacilityDTO实例包含的专业-系统-设备-备件组织结构信息校验相关文件。发现错误则不继续校验。
+     * @param file
+     * @param sbStr
+     * @param facilityDTO
+     */
+    private static void checkDictionaryOnInfoCodeByFacilityDTO(File file, StringBuilder sbStr, FacilityDTO facilityDTO) {
+        if(file == null || !file.isDirectory()) {
+            return;
+        }
+        StringBuilder mySbStr = new StringBuilder("");
+        checkDictionaryOnInfoCode(file, mySbStr);
+        if(mySbStr.length() > 0) {
+            sbStr.append(mySbStr);
+        }else {
+            List<MajorDTO> majorList = facilityDTO.getAll();
+            Map<String, MajorDTO> majorCode2DTO = new HashMap<>();
+            majorList.forEach((item)->majorCode2DTO.put(item.getCode(), item));
+
+            Map<String, File> majorCode2File = new HashMap<>();
+            File[] majorFolders = file.listFiles();
+            for(File majorFolder : majorFolders) {
+                if(majorFolder.isDirectory() && majorCode2DTO.keySet().contains(majorFolder.getName())) {
+                    majorCode2File.put(majorFolder.getName(), majorFolder);
+                }
+            }
+
+            if(majorList.size() != majorCode2File.size()) {
+                Set<String> allMajorCodeSet = new HashSet<>(majorCode2DTO.keySet());
+                allMajorCodeSet.removeAll(majorCode2File.keySet());
+                sbStr.append(CommonUtil.getLineString("/property/InfoCode目录下缺少以下专业编码的配置目录:"+allMajorCodeSet, 0));
+            }else {
+                for(MajorDTO majorDTO : majorList) {
+                    List<SystemDTO> systemList = majorDTO.getContent();
+                    if(null == systemList || systemList.size() == 0) {
+                        continue;
+                    }
+
+                    Map<String, SystemDTO> systemCode2DTO = new HashMap<>();
+                    systemList.forEach((item)->systemCode2DTO.put(item.getCode(), item));
+
+                    Map<String, File> systemCode2File = new HashMap<>();
+                    File[] systemFolders = majorCode2File.get(majorDTO.getCode()).listFiles();
+                    for(File systemFolder : systemFolders) {
+                        if(systemFolder.isDirectory() && systemCode2DTO.keySet().contains(systemFolder.getName())) {
+                            systemCode2File.put(systemFolder.getName(), systemFolder);
+                        }
+                    }
+
+                    if(systemList.size() != systemCode2File.size()) {
+                        Set<String> allSystemCodeSet = new HashSet<>(systemCode2DTO.keySet());
+                        allSystemCodeSet.removeAll(systemCode2File.keySet());
+                        sbStr.append(CommonUtil.getLineString("/property/InfoCode/"+majorDTO.getCode()+"目录下缺少以下系统编码的配置目录:"+allSystemCodeSet, 0));
+                        break;
+                    }else {
+                        for(SystemDTO systemDTO : systemList) {
+                            if(null == systemDTO.getContent() || systemDTO.getContent().size() == 0) {
+                                continue;
+                            }else {
+                                Set<String> jsonFileNameSet = new HashSet<>();
+                                for(EqDTO eqDTO : systemDTO.getContent()) {
+                                    jsonFileNameSet.add(eqDTO.getCode()+".json");
+                                    if(eqDTO.getComponents() != null && eqDTO.getComponents().size() > 0) {
+                                        eqDTO.getComponents().forEach((item)->jsonFileNameSet.add(item.getCode()+".json"));
+                                    }
+                                }
+
+                                File[] jsonFiles = systemCode2File.get(systemDTO.getCode()).listFiles();
+                                Set<String> realJsonFileSet = new HashSet<>();
+                                for(File jsonFile : jsonFiles) {
+                                    if(jsonFileNameSet.contains(jsonFile.getName())) {
+                                        realJsonFileSet.add(jsonFile.getName());
+                                    }
+                                }
+
+                                if(realJsonFileSet.size() != jsonFileNameSet.size()) {
+                                    jsonFileNameSet.removeAll(realJsonFileSet);
+                                    sbStr.append(CommonUtil.getLineString("/property/InfoCode/"+majorDTO.getCode()+"/"+systemDTO.getCode()+"目录下缺少以下json配置文件:"+jsonFileNameSet, 0));
+                                    return;
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+
+        }
+    }
+
+    /**
+     * 校验数据字典InfoCode配置目录下的json文件
+     * @param file 配置文件目录实例
+     * @param sbStr
+     */
+    private static void checkDictionaryOnInfoCode(File file, StringBuilder sbStr) {
+        if(file == null) {
+            return;
+        }
+
+        if(file.isFile() && file.getName().endsWith(".json")) {
+            String filePath = file.getAbsolutePath();
+            filePath = filePath.substring(filePath.indexOf("property"));
+            try {
+                CommonUtil.jsonStrToMap(CommonUtil.readFileToString(file));
+            }catch (Exception e) {
+                sbStr.append(CommonUtil.getLineString(filePath+"文件内容不是合法的json数据结构", 0));
+                return;
+            }
+        }else if(file.isDirectory()) {
+            for(File sonFile : file.listFiles()) {
+                checkDictionaryOnInfoCode(sonFile, sbStr);
+            }
+        }
+    }
+
+
+    /**
+     * 获取standSet集合中含有的文件名称与文件实例关系
+     * @param files
+     * @param standSet
+     * @return
+     */
+    private static Map<String, File> getName2FileMap(File[] files, Set<String> standSet) {
+        Map<String, File> hasFolderMap = new HashMap<>();
+        for(File folder : files) {
+            String fileName = null;
+            if(folder != null) {
+                fileName = folder.getName();
+
+                if(!standSet.contains(fileName)) {
+                    continue;
+                }
+
+                hasFolderMap.put(fileName, folder);
+            }
+
+            if(hasFolderMap.keySet().size() == standSet.size()) {
+                break;
+            }
+        }
+
+        return hasFolderMap;
+    }
+
+    /**
+     * 校验数据字典Dictionary目录文件
+     * @param sbStr
+     * @param folder
+     * @return 专业系统设备部件组织结构
+     */
+    private static FacilityDTO checkDictionaryOnDictionary(StringBuilder sbStr, File folder) {
+        final String thisDir = "/property/Dictionary";
+        final String jsonError = "文件内容不是合法的json数据结构";
+
+        FacilityDTO result = null;
+
+        File[] files = folder.listFiles();
+
+        if(null != files && files.length > 0) {
+            Set<String> noFileSet = new HashSet<>(ConstantData.jsonFilesOfDictionary);
+            Map<String, File> hasFileMap = getName2FileMap(files, ConstantData.jsonFilesOfDictionary);
+
+            if(hasFileMap.keySet().size() != ConstantData.jsonFilesOfDictionary.size()) {
+                noFileSet.removeAll(hasFileMap.keySet());
+                String noFilesInfo = noFileSet.toString();
+                String infoStr = CommonUtil.getLineString("目录"+thisDir+"下缺少必要json配置文件" + noFilesInfo, 0);
+                infoStr = infoStr.replace("[", "").replace("]", "。");
+                sbStr.append(infoStr);
+            }else {
+                for(String fileName : hasFileMap.keySet()) {
+                    Map<String, Object> dataMap = null;
+                    String jsonStr = null;
+                    try {
+                        jsonStr = CommonUtil.readFileToString(hasFileMap.get(fileName));
+                        dataMap = CommonUtil.jsonStrToMap(jsonStr);
+                    }catch (Exception e) {
+                        dataMap = null;
+                    }
+
+                    if(dataMap == null) {
+                        sbStr.append(CommonUtil.getLineString(thisDir+"/"+fileName+jsonError, 0));
+                    }else {
+                        // 具体解析json配置文件
+
+                        if("Facility_new.json".equals(fileName)) {
+                            // 解析专业-系统-设备-部件组织结构
+                            result = DictionaryUtil.readFacility_new(jsonStr, sbStr);
+                        }
+                    }
+                }
+            }
+        }else {
+            sbStr.append(CommonUtil.getLineString("目录"+thisDir+"下配置文件缺失", 0));
+        }
+
+        return result;
+    }
+
+
+    /**
      * 校验数据平台properties配置文件
      * @param controller
      * @param configMap
      */
     private static String checkConfigFile(PrimaryController controller, Map<String, String> configMap) {
-        StringBuilder sbStr = new StringBuilder("【config.properties配置文件】\n");
+        StringBuilder sbStr = new StringBuilder("【config.properties配置信息校验结果】\n");
 
         String dictSource = configMap.get("dict.source");
         if(dictSource == null) {
-            sbStr.append(getLineString("配置项dict.source缺失;", 0));
+            sbStr.append(CommonUtil.getLineString("配置项dict.source缺失;", 0));
         }else if(!"local".equals(dictSource)) {
-            sbStr.append(getLineString("配置项dict.source未使用本地数据字典配置;",1));
+            sbStr.append(CommonUtil.getLineString("配置项dict.source未使用本地数据字典配置;",1));
         }
 
         String jmsActive = configMap.get("jms.active");
         if("false".equals(jmsActive)) {
-            sbStr.append(getLineString("消息中间件配置未打开;", 0));
+            sbStr.append(CommonUtil.getLineString("消息中间件配置未打开;", 0));
         }else {
             String jmsChoice = configMap.get("jms.choice");
             if("rabbit".equals(jmsChoice)) {
@@ -83,24 +343,24 @@ public class TaskFactory {
 
         String imgServiceUrl = configMap.get("image.service.url");
         if(imgServiceUrl == null) {
-            sbStr.append(getLineString("配置项image.service.url缺失;", 0));
+            sbStr.append(CommonUtil.getLineString("配置项image.service.url缺失;", 0));
         }else {
             String imgSystemId = configMap.get("image.service.systemId");
             String imgSecret= configMap.get("image.service.secret");
             if(null != imgSecret && imgSystemId != null) {
-                if(!imgSecret.equals(DataDTO.imgKeyMap.get(imgSystemId))) {
-                    sbStr.append(getLineString("文件服务systemId与secret不匹配;", 0));
+                if(!imgSecret.equals(ConstantData.imgKeyMap.get(imgSystemId))) {
+                    sbStr.append(CommonUtil.getLineString("文件服务systemId与secret不匹配;", 0));
                 }else {
                     if(!fileGetTest(imgServiceUrl, imgSystemId)) {
-                        sbStr.append(getLineString("文件服务访问不通,请确保生产环境数据平台可访问文件服务;", 0));
+                        sbStr.append(CommonUtil.getLineString("文件服务访问不通!image-service Address="+imgServiceUrl+"请确保生产环境数据平台可访问文件服务;", 0));
                     }
                 }
             }else {
                 if(null == imgSystemId) {
-                    sbStr.append("Error:配置项image.service.systemId缺失;\n");
+                    sbStr.append(CommonUtil.getLineString("配置项image.service.systemId缺失;", 0));
                 }
                 if(null == imgSecret) {
-                    sbStr.append("Error:配置项image.service.secret缺失;\n");
+                    sbStr.append(CommonUtil.getLineString("配置项image.service.secret缺失;", 0));
                 }
             }
         }
@@ -109,7 +369,7 @@ public class TaskFactory {
         if(checkResult.contains("Error") || checkResult.contains("Warn")) {
             checkResult = checkResult + "\n";
         }else {
-            checkResult = checkResult + "未发现异常配置。\n\n";
+            checkResult = checkResult + "未发现异常。\n\n";
         }
 
         return checkResult;
@@ -124,12 +384,12 @@ public class TaskFactory {
         String topic = configMap.get("jms.topic");
 
         if(brokerurl == null || userName == null || password == null || topic == null) {
-            result += getLineString("ActiveMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
+            result += CommonUtil.getLineString("ActiveMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
             return result;
         }
 
         if(!"dataPlatform.broadcast".equals(topic)) {
-            result += getLineString("ActiveMq配置项jms.topic值不是默认值dataPlatform.broadcast;", 1);
+            result += CommonUtil.getLineString("ActiveMq配置项jms.topic值不是默认值dataPlatform.broadcast;", 1);
         }
 
         try {
@@ -142,7 +402,7 @@ public class TaskFactory {
             messageProducer.setTimeToLive(1000 * 60 * 60 * 2);
         }catch (Exception e) {
             e.printStackTrace();
-            result += getLineString("ActiveMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
+            result += CommonUtil.getLineString("ActiveMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
         }
 
         return result;
@@ -164,16 +424,16 @@ public class TaskFactory {
         String routingKey = configMap.get("rabbit.routingKey");
 
         if(host == null || port == null || virtualhost == null || userName == null || password == null || topic == null || routingKey == null) {
-            result += getLineString("RabbitMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
+            result += CommonUtil.getLineString("RabbitMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
             return result;
         }
 
         if(!"dataPlatform.broadcast".equals(topic)) {
-            result += getLineString("RabbitMq配置项rabbit.topic值不是默认值dataPlatform.broadcast;", 1);
+            result += CommonUtil.getLineString("RabbitMq配置项rabbit.topic值不是默认值dataPlatform.broadcast;", 1);
         }
 
         if(!"dataPlatform".equals(routingKey)) {
-            result += getLineString("RabbitMq配置项rabbit.routingKey值不是默认值dataPlatform;", 1);
+            result += CommonUtil.getLineString("RabbitMq配置项rabbit.routingKey值不是默认值dataPlatform;", 1);
         }
 
         try {
@@ -192,16 +452,12 @@ public class TaskFactory {
 
         }catch (Exception e) {
             e.printStackTrace();
-            result += getLineString("RabbitMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
+            result += CommonUtil.getLineString("RabbitMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
         }
 
         return result;
     }
 
-    private static String getLineString(String str, int prefixIndex) {
-        return  prefixStr[prefixIndex] + ":" + str + "\n";
-    }
-
     /**
      * 测试文件服务file_get接口
      * @param base

+ 36 - 0
src/main/java/com/persagy/dptool/dto/ComponentDTO.java

@@ -0,0 +1,36 @@
+package com.persagy.dptool.dto;
+
+public class ComponentDTO {
+    public String component;
+    public String code;
+
+    public String getComponent() {
+        return component;
+    }
+
+    public void setComponent(String component) {
+        this.component = component;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String check() {
+        if(code == null) {
+            return "部件编码code值为空";
+        }else if(code.length() != 6) {
+            return "部件编码code值长度不等于6";
+        }
+
+        if(component == null) {
+            return "部件名称component值为空";
+        }
+
+        return null;
+    }
+}

+ 47 - 0
src/main/java/com/persagy/dptool/dto/EqDTO.java

@@ -0,0 +1,47 @@
+package com.persagy.dptool.dto;
+
+import java.util.List;
+
+public class EqDTO {
+    public String facility;
+    public String code;
+    public List<ComponentDTO> components;
+
+    public String getFacility() {
+        return facility;
+    }
+
+    public void setFacility(String facility) {
+        this.facility = facility;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public List<ComponentDTO> getComponents() {
+        return components;
+    }
+
+    public void setComponents(List<ComponentDTO> components) {
+        this.components = components;
+    }
+
+    public String check() {
+        if(code == null) {
+            return "设备编码code值为空";
+        }else if(code.length() != 4) {
+            return "设备编码code值长度不等于4";
+        }
+
+        if(facility == null) {
+            return "设备名称facility值为空";
+        }
+
+        return null;
+    }
+}

+ 16 - 0
src/main/java/com/persagy/dptool/dto/FacilityDTO.java

@@ -0,0 +1,16 @@
+package com.persagy.dptool.dto;
+
+import java.util.List;
+
+public class FacilityDTO {
+    public boolean normal = false;
+    private List<MajorDTO> all;
+
+    public List<MajorDTO> getAll() {
+        return all;
+    }
+
+    public void setAll(List<MajorDTO> all) {
+        this.all = all;
+    }
+}

+ 50 - 0
src/main/java/com/persagy/dptool/dto/MajorDTO.java

@@ -0,0 +1,50 @@
+package com.persagy.dptool.dto;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+import java.util.List;
+
+public class MajorDTO {
+    @JsonProperty("class")
+    private String name;
+    private String code;
+    private List<SystemDTO> content;
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public List<SystemDTO> getContent() {
+        return content;
+    }
+
+    public void setContent(List<SystemDTO> content) {
+        this.content = content;
+    }
+
+    public String check() {
+        if(code == null) {
+            return "专业编码code值为空";
+        }else if(code.length() != 2) {
+            return "专业编码code值长度不等于2";
+        }
+
+        if(name == null) {
+            return "专业名称class值为空";
+        }
+
+        return null;
+    }
+}

+ 47 - 0
src/main/java/com/persagy/dptool/dto/SystemDTO.java

@@ -0,0 +1,47 @@
+package com.persagy.dptool.dto;
+
+import java.util.List;
+
+public class SystemDTO {
+    private String system;
+    private String code;
+    private List<EqDTO> content;
+
+    public String getSystem() {
+        return system;
+    }
+
+    public void setSystem(String system) {
+        this.system = system;
+    }
+
+    public String getCode() {
+        return code;
+    }
+
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public List<EqDTO> getContent() {
+        return content;
+    }
+
+    public void setContent(List<EqDTO> content) {
+        this.content = content;
+    }
+
+    public String check() {
+        if(code == null) {
+            return "系统编码code值为空";
+        }else if(code.length() != 2) {
+            return "系统编码code值长度不等于2";
+        }
+
+        if(system == null) {
+            return "系统名称system值为空";
+        }
+
+        return null;
+    }
+}