瀏覽代碼

完善对物理世界HBase相关表数据校验逻辑

cuixubin 4 年之前
父節點
當前提交
cf0593f207

+ 112 - 0
src/main/java/com/persagy/dptool/CommonUtil.java

@@ -3,6 +3,10 @@ package com.persagy.dptool;
 import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.core.type.TypeReference;
 import com.fasterxml.jackson.databind.ObjectMapper;
+import com.persagy.dptool.annotation.FieldCheck;
+import com.persagy.dptool.dto.PhysicalObject;
+import com.persagy.dptool.dto.physical.PhysicalWorld;
+import com.persagy.dptool.dto.physical.Project;
 import org.apache.http.client.config.RequestConfig;
 import org.apache.http.client.methods.CloseableHttpResponse;
 import org.apache.http.client.methods.HttpGet;
@@ -15,6 +19,7 @@ import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
 import org.apache.http.util.EntityUtils;
 
 import java.io.*;
+import java.lang.reflect.Field;
 import java.util.*;
 
 public class CommonUtil {
@@ -170,4 +175,111 @@ public class CommonUtil {
 
         return contentList;
     }
+
+    /**
+     * 根据朱姐校验物理世界对象属性值
+     * @param objects
+     * @param <T>
+     * @param physicalObject
+     * @return
+     */
+    public static <T extends PhysicalWorld> String annotationFieldCheck(List<T> objects, PhysicalObject physicalObject) {
+        if(null == objects || objects.isEmpty()) {
+            return null;
+        }
+
+        StringBuilder sbResultStr = new StringBuilder();
+
+        PhysicalWorld example = objects.get(0);
+        Class clazz = example.getClass();
+
+        Map<String, Set<Object>> fieldName2UniqValue = new HashMap<>();
+        for (Field field : clazz.getDeclaredFields()) {
+            if (field.isAnnotationPresent(FieldCheck.class) && field.getAnnotation(FieldCheck.class).uniq()) {
+                fieldName2UniqValue.put(field.getName(), new HashSet<>());
+            }
+        }
+
+        for(Object obj : objects) {
+            try {
+                for (Field field : clazz.getDeclaredFields()) {
+                    if (field.isAnnotationPresent(FieldCheck.class)) {
+                        String errorMsg = "";
+                        String fieldName = field.getName();
+
+                        FieldCheck fieldCheck = field.getAnnotation(FieldCheck.class);
+                        field.setAccessible(true);
+                        Object value = field.get(obj);
+
+                        if (!fieldCheck.canBeNull() && null == value) {
+                            errorMsg += fieldName + "值不允许为null。";
+                        }
+
+                        if (fieldCheck.length() > 0 && null != value && value.toString().length() != fieldCheck.length()) {
+                            errorMsg += fieldName + "值不合法。";
+                        }
+
+                        if(fieldCheck.uniq()) {
+                            if(fieldName2UniqValue.containsKey(fieldName) && fieldName2UniqValue.get(fieldName).contains(value)) {
+                                errorMsg += fieldName + "存在重复值。";
+                            }else {
+                                fieldName2UniqValue.get(fieldName).add(value);
+                            }
+                        }
+
+                        if(fieldCheck.existObj() && physicalObject.objIdSet != null && !physicalObject.objIdSet.contains(value)) {
+                            errorMsg += fieldName + "值在objects表中不存在。";
+                        }
+
+                        if(fieldCheck.existGraphId() && physicalObject.graphIdSet != null && !physicalObject.graphIdSet.contains(value)) {
+                            errorMsg += fieldName + "值在objects表中不存在。";
+                        }
+
+                        if(errorMsg.length() > 0) {
+                            sbResultStr.append(obj.toString() + "记录异常!" + errorMsg + "\n");
+                        }
+                    }
+                }
+
+            }catch (Exception e) {
+                e.printStackTrace();
+            }
+        }
+
+        if(sbResultStr.length() > 0) {
+            return sbResultStr.toString();
+        }
+
+        return null;
+    }
+
+    public static void main(String[] args) {
+        List<Project> projects = new ArrayList<>();
+        Project pj1 = new Project();
+        pj1.setProject_id("1101010001");
+        pj1.setValid(true);
+        pj1.setCtime("20201225010101");
+        pj1.setPassword("123");
+
+        Project pj2 = new Project();
+        pj2.setProject_id("1101010002");
+        pj2.setValid(false);
+        pj2.setCtime("20201225010101");
+
+        Project pj3 = new Project();
+        pj3.setProject_id("110101001");
+        pj3.setValid(true);
+        pj3.setCtime("20201225010101");
+        pj3.setPassword("123");
+
+        Project pj4 = new Project();
+        pj4.setProject_id("1101010001");
+        pj4.setCtime("20201125010101");
+        pj4.setPassword("123");
+
+        projects.add(pj1); projects.add(pj2);
+        projects.add(pj3); projects.add(pj4);
+
+        System.out.println(annotationFieldCheck(projects, null));
+    }
 }

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

@@ -19,8 +19,18 @@ public class ConstantData {
             "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";
 
+    /** 物理世界数据表名称 */
+    private static String physicalWorldTablesName = "projects,objects,obj_infos,graph_instance,rel_btw_graph_period,rel_btw_objs," +
+            "infocode_scheme,infocode_scheme_follower,infocode_scheme_detail,ctm_dict,ctm_dict_follower,ctm_node";
+
+    /** 数据字典配置文件Dictionary目录下的json文件名称集合 */
     public static Set<String> jsonFilesOfDictionary = new HashSet<>(Arrays.asList(jsonFileNamesOfDictionary.split(",")));
 
+    /** 物理世界数据表导出文件后缀 */
+    public static final String tablesFileType = ".json";
+    /** 物理世界数据表名称集合 */
+    public static List<String> tablesNameList = new ArrayList<>(Arrays.asList(physicalWorldTablesName.split(",")));
+
     static {
         imgKeyMap.put("dev", "123"); imgKeyMap.put("saas", "46f869eea8b31d14");
         imgKeyMap.put("superClass", "90b92e6f71b47b31"); imgKeyMap.put("revit", "63afbef6906c342b");

+ 300 - 0
src/main/java/com/persagy/dptool/PhysicalCheckUtil.java

@@ -0,0 +1,300 @@
+package com.persagy.dptool;
+
+import com.persagy.dptool.dto.PhysicalObject;
+import com.persagy.dptool.dto.physical.*;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+public class PhysicalCheckUtil {
+    public static final String[] tipsArray = {"无异常。", "无指定项目数据。", "无数据。"};
+    public static final String checkPrefix = "check_";
+
+    public String check_projects(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<Project> projects = new ArrayList<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    projects.add(CommonUtil.jsonStrToObj(jsonStr, Project.class));
+                }
+            }
+        }catch (Exception e){
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(projects.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(projects, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_objects(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<Objects> objects = new ArrayList<>();
+        Set<String> objIds = new HashSet<>();
+
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    Objects item = CommonUtil.jsonStrToObj(jsonStr, Objects.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        objects.add(item);
+
+                        if(item.getObj_id() != null) {
+                            objIds.add(item.getObj_id());
+                        }
+                    }
+                }
+            }
+        }catch (Exception e){
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+
+        if(objects.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        if(!objIds.isEmpty()) {
+            physicalObject.objIdSet = new HashSet<>(objIds);
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(objects, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_obj_infos(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<ObjectInfo> objectInfos = new ArrayList<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    ObjectInfo item = CommonUtil.jsonStrToObj(jsonStr, ObjectInfo.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        objectInfos.add(item);
+                    }
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(objectInfos.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(objectInfos, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_graph_instance(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<GraphInstance> graphInstances = new ArrayList<>();
+        Set<String> graphIdSet = new HashSet<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    GraphInstance item = CommonUtil.jsonStrToObj(jsonStr, GraphInstance.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        graphInstances.add(item);
+
+                        if(item.getGraph_type() != null && item.getSequence_id() != null) {
+                            graphIdSet.add(item.getGraph_type()+item.getSequence_id());
+                        }
+                    }
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(graphInstances.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        if(!graphIdSet.isEmpty()) {
+            physicalObject.graphIdSet = new HashSet<>(graphIdSet);
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(graphInstances, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_rel_btw_graph_period(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<RelBtwGraphPeriod> relBtwGraphPeriods = new ArrayList<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    RelBtwGraphPeriod item = CommonUtil.jsonStrToObj(jsonStr, RelBtwGraphPeriod.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        relBtwGraphPeriods.add(item);
+                    }
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(relBtwGraphPeriods.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(relBtwGraphPeriods, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_rel_btw_objs(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<RelBtwObjs> relBtwObjs = new ArrayList<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    RelBtwObjs item = CommonUtil.jsonStrToObj(jsonStr, RelBtwObjs.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        relBtwObjs.add(item);
+                    }
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(relBtwObjs.isEmpty()) {
+            return tipsArray[1];
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(relBtwObjs, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_infocode_scheme(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<InfocodeScheme> infocodeSchemes = new ArrayList<>();
+        Set<String> infocodeSchemeIdSet = new HashSet<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    InfocodeScheme item = CommonUtil.jsonStrToObj(jsonStr, InfocodeScheme.class);
+                    if(item.getScheme_id() != null) {
+                        infocodeSchemeIdSet.add(item.getScheme_id());
+                    }
+                    infocodeSchemes.add(item);
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(infocodeSchemes.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        if(!infocodeSchemeIdSet.isEmpty()) {
+            physicalObject.infoCodeSchemeIdSet = new HashSet<>(infocodeSchemeIdSet);
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(infocodeSchemes, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+
+    public String check_infocode_scheme_follower(File file, PhysicalObject physicalObject) {
+        List<String> dataList = CommonUtil.readFileToList(file);
+        if(dataList.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        List<InfocodeSchemeFollower> infocodeSchemeFollowers = new ArrayList<>();
+        try {
+            for(String jsonStr : dataList) {
+                if(jsonStr != null && jsonStr.length() > 2) {
+                    InfocodeSchemeFollower item = CommonUtil.jsonStrToObj(jsonStr, InfocodeSchemeFollower.class);
+                    if(physicalObject.pjId.equals(item.getProject_id())) {
+                        infocodeSchemeFollowers.add(item);
+                    }
+                }
+            }
+        }catch (Exception e){
+            e.printStackTrace();
+            return "数据格式错误!无法转为Json对象。";
+        }
+
+        if(infocodeSchemeFollowers.isEmpty()) {
+            return tipsArray[2];
+        }
+
+        String errorMsg = CommonUtil.annotationFieldCheck(infocodeSchemeFollowers, physicalObject);
+        if(null != errorMsg) {
+            return  errorMsg;
+        }
+
+        return tipsArray[0];
+    }
+}

+ 68 - 1
src/main/java/com/persagy/dptool/PrimaryController.java

@@ -1,5 +1,6 @@
 package com.persagy.dptool;
 
+import com.persagy.dptool.dto.PhysicalObject;
 import javafx.concurrent.Task;
 import javafx.event.ActionEvent;
 import javafx.fxml.FXML;
@@ -21,13 +22,23 @@ public class PrimaryController implements Initializable {
     @FXML
     public TextField txfDir;
     @FXML
+    public TextField txfDirJson;
+    @FXML
     public Button btnSelectDir;
     @FXML
+    public TextField txfProject;
+    @FXML
+    public Button btnSelectDirJson;
+    @FXML
     public Button btnCheck;
+    @FXML
+    public Button btnCheckJson;
     /** 校验结果文本域 */
     @FXML
     public TextArea txaContent;
     @FXML
+    public TextArea txaContentJson;
+    @FXML
     public ProgressIndicator piState;
     /** 底部状态栏 */
     @FXML
@@ -39,6 +50,12 @@ public class PrimaryController implements Initializable {
         piState.setProgress(-1);
         piState.setVisible(false);
         lblState.setText("");
+
+        StringBuilder tableNameSBStr = new StringBuilder();
+        for (int i = 0; i < ConstantData.tablesNameList.size(); i++) {
+            tableNameSBStr.append("  " + (i+1) + ". " + ConstantData.tablesNameList.get(i) + "\n");
+        }
+        txaContentJson.setText("目前只能校验HBase数据库中,物理世界的以下数据表数据:\n" + tableNameSBStr);
     }
 
     /**
@@ -57,7 +74,22 @@ public class PrimaryController implements Initializable {
     }
 
     /**
-     * 检查配置文件
+     * 选择配置文件目录
+     * @param e
+     */
+    public void selectDirJson(ActionEvent e) {
+        DirectoryChooser dirChooser =new DirectoryChooser();
+        dirChooser.setTitle("选择json文件目录");
+
+        File folder = dirChooser.showDialog(paneRoot.getScene().getWindow());
+
+        if(null != folder) {
+            txfDirJson.setText(folder.getAbsolutePath());
+        }
+    }
+
+    /**
+     * 检查数据平台配置文件
      * @param e
      */
     public void checkConfig(ActionEvent e) {
@@ -74,6 +106,39 @@ public class PrimaryController implements Initializable {
     }
 
     /**
+     * 检查物理世界数据表json文件
+     * @param e
+     */
+    public void checkJsonFile(ActionEvent e) {
+        String projectId = txfProject.getText();
+        PhysicalObject physicalObject = null;
+        if(projectId != null && projectId.trim().length() == 12 && projectId.startsWith("Pj")) {
+            physicalObject = new PhysicalObject(projectId, projectId.substring(2));
+        }else {
+            txaContentJson.setText("项目id不合法!");
+            txfProject.requestFocus();
+            return;
+        }
+
+        File jsonFileDir = null;
+        String filePath = txfDirJson.getText();
+
+        if(null != filePath) {
+            filePath = filePath.trim();
+            jsonFileDir = new File(filePath);
+            if(!jsonFileDir.exists() || jsonFileDir.isFile()) {
+                txaContentJson.setText("目录地址不合法!");
+                return;
+            }
+        }else {
+            txaContentJson.setText("目录地址不合法!");
+        }
+
+        Task<Boolean> task = TaskFactory.checkTableJsonFiles(this, physicalObject, jsonFileDir);
+        new Thread(task).start();
+    }
+
+    /**
      * 根据文件路径获取文件实例
      * @param dirPath
      * @return
@@ -99,6 +164,8 @@ public class PrimaryController implements Initializable {
     public void setDisable(boolean disable, int typeIndex) {
         if(1 == typeIndex) {
             paneTab.setDisable(disable);
+        }else if(2 == typeIndex){
+            paneTab.setDisable(disable);
         }
 
     }

+ 82 - 4
src/main/java/com/persagy/dptool/TaskFactory.java

@@ -1,9 +1,6 @@
 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.persagy.dptool.dto.*;
 import com.rabbitmq.client.Channel;
 import com.rabbitmq.client.Connection;
 import com.rabbitmq.client.ConnectionFactory;
@@ -75,6 +72,87 @@ public class TaskFactory {
     }
 
     /**
+     * 校验物理世界数据表数据task
+     * @param controller
+     * @param physicalObject
+     * @param jsonFileDir 数据表json文件目录实例
+     * @return
+     */
+    public static Task<Boolean> checkTableJsonFiles(PrimaryController controller, PhysicalObject physicalObject, File jsonFileDir) {
+        return new Task<Boolean>() {
+            @Override
+            protected Boolean call() throws Exception {
+                Platform.runLater(()->{
+                    controller.txaContentJson.setText("");
+                    controller.setDisable(true, 2);
+                    controller.piState.setVisible(true);
+                    controller.lblState.setText("");
+                });
+
+                Map<String, File> name2File = new HashMap<>();
+                for(File file : jsonFileDir.listFiles()) {
+                    name2File.put(file.getName(), file);
+                }
+
+                PhysicalCheckUtil checkUtil = new PhysicalCheckUtil();
+                StringBuilder checkResult = new StringBuilder();
+                String subCheckResult = null;
+                for(String tableName : ConstantData.tablesNameList) {
+                    String tableFileName = tableName + ConstantData.tablesFileType;
+
+                    Platform.runLater(()->{
+                        controller.lblState.setText("校验" + tableFileName + "...");
+                    });
+
+                    Thread.sleep(100);
+
+                    subCheckResult = checkTableJsonFile(tableName, name2File.get(tableFileName), physicalObject, checkUtil);
+                    checkResult.append(subCheckResult);
+                }
+
+                Platform.runLater(()->{
+                    controller.setDisable(false, 2);
+                    controller.piState.setVisible(false);
+                    controller.lblState.setText("");
+                    controller.txaContentJson.setText(checkResult.toString());
+                });
+                return true;
+            }
+        };
+    }
+
+    /**
+     * 校验单个物理世界数据表json文件数据
+     * @param tableName 数据表名称
+     * @param file json文件实例
+     * @param physicalObject
+     * @param checkUtil
+     * @return
+     */
+    private static String checkTableJsonFile(String tableName, File file, PhysicalObject physicalObject, PhysicalCheckUtil checkUtil) {
+        StringBuilder result = new StringBuilder(tableName + "校验结果:\n");
+
+        if(null == file || !file.isFile()) {
+            result.append("未找到对应的"+ConstantData.tablesFileType+"文件!");
+        }else {
+            String methodName = PhysicalCheckUtil.checkPrefix + tableName;
+            try {
+                Object checkResult = PhysicalCheckUtil.class.getMethod(methodName, File.class, PhysicalObject.class).invoke(checkUtil, file, physicalObject);
+                if(null != checkResult) {
+                    result.append(checkResult.toString());
+                }else {
+                    result.append("校验逻辑出错!");
+                }
+            }catch (Exception e) {
+                result.append("不支持该文件校验!");
+            }
+        }
+
+        result.append("\n\n");
+        return result.toString();
+    }
+
+    /**
      * 校验数据字典配置文件
      * @param propertyFile property数据字典配置文件目录
      * @return

+ 23 - 0
src/main/java/com/persagy/dptool/annotation/FieldCheck.java

@@ -0,0 +1,23 @@
+package com.persagy.dptool.annotation;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target(ElementType.FIELD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface FieldCheck {
+    /** 值是否唯一,默认false */
+    public boolean uniq() default false;
+    /** 值允许为空,默认true */
+    public boolean canBeNull() default true;
+    /** 值长度限制,默认-1表示无限制 */
+    public int length() default -1;
+    /** object对象存在判断,默认false */
+    public boolean existObj() default false;
+    /** graphId存在判断 */
+    public boolean existGraphId() default false;
+    /** 自定义信息点方案id存在判断 */
+    public boolean existInfoCodeSchemeId() default false;
+}

+ 22 - 0
src/main/java/com/persagy/dptool/dto/PhysicalObject.java

@@ -0,0 +1,22 @@
+package com.persagy.dptool.dto;
+
+import java.util.Set;
+
+public class PhysicalObject {
+    /** 项目id,包含Pj前缀 */
+    public String projectId;
+    /** 项目id,不含Pj前缀 */
+    public String pjId;
+    /** 对象id集合, 默认值为null */
+    public Set<String> objIdSet;
+    /** 图实例id集合,默认为null */
+    public Set<String> graphIdSet;
+    /** 自定义信息单方案id集合 */
+    public Set<String> infoCodeSchemeIdSet;
+
+    public PhysicalObject(String projectId, String pjId) {
+        this.projectId = projectId;
+        this.pjId = pjId;
+    }
+
+}

+ 73 - 0
src/main/java/com/persagy/dptool/dto/physical/GraphInstance.java

@@ -0,0 +1,73 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class GraphInstance extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false)
+    private String graph_type;
+    @FieldCheck(canBeNull = false)
+    private String sequence_id;
+    private String obj_type;
+    private String obj_id;
+    private String infos;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getGraph_type() {
+        return graph_type;
+    }
+
+    public void setGraph_type(String graph_type) {
+        this.graph_type = graph_type;
+    }
+
+    public String getSequence_id() {
+        return sequence_id;
+    }
+
+    public void setSequence_id(String sequence_id) {
+        this.sequence_id = sequence_id;
+    }
+
+    public String getObj_type() {
+        return obj_type;
+    }
+
+    public void setObj_type(String obj_type) {
+        this.obj_type = obj_type;
+    }
+
+    public String getObj_id() {
+        return obj_id;
+    }
+
+    public void setObj_id(String obj_id) {
+        this.obj_id = obj_id;
+    }
+
+    public String getInfos() {
+        return infos;
+    }
+
+    public void setInfos(String infos) {
+        this.infos = infos;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", graph_type='" + graph_type + '\'' +
+                ", sequence_id='" + sequence_id + '\'' +
+                ", ...'" +
+                '}';
+    }
+}

+ 44 - 0
src/main/java/com/persagy/dptool/dto/physical/InfocodeScheme.java

@@ -0,0 +1,44 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class InfocodeScheme extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 32)
+    private String scheme_id;
+    @FieldCheck(canBeNull = false)
+    private String scheme_name;
+    private String note;
+
+    public String getScheme_id() {
+        return scheme_id;
+    }
+
+    public void setScheme_id(String scheme_id) {
+        this.scheme_id = scheme_id;
+    }
+
+    public String getScheme_name() {
+        return scheme_name;
+    }
+
+    public void setScheme_name(String scheme_name) {
+        this.scheme_name = scheme_name;
+    }
+
+    public String getNote() {
+        return note;
+    }
+
+    public void setNote(String note) {
+        this.note = note;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "scheme_id='" + scheme_id + '\'' +
+                ", scheme_name='" + scheme_name + '\'' +
+                ", note='" + note + '\'' +
+                '}';
+    }
+}

+ 34 - 0
src/main/java/com/persagy/dptool/dto/physical/InfocodeSchemeFollower.java

@@ -0,0 +1,34 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class InfocodeSchemeFollower extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false, existInfoCodeSchemeId = true)
+    private String scheme_id;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getScheme_id() {
+        return scheme_id;
+    }
+
+    public void setScheme_id(String scheme_id) {
+        this.scheme_id = scheme_id;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", scheme_id='" + scheme_id + '\'' +
+                '}';
+    }
+}

+ 113 - 0
src/main/java/com/persagy/dptool/dto/physical/ObjectInfo.java

@@ -0,0 +1,113 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class ObjectInfo extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false)
+    private String obj_type;
+    @FieldCheck(canBeNull = false, length = 32, existObj = true)
+    private String obj_id;
+    @FieldCheck(canBeNull = false)
+    private String info_id;
+    @FieldCheck(canBeNull = false, length = 14)
+    private String time;
+    private Boolean b_value;
+    private Long l_value;
+    private String s_value;
+    private Double d_value;
+    private String json_value;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getObj_type() {
+        return obj_type;
+    }
+
+    public void setObj_type(String obj_type) {
+        this.obj_type = obj_type;
+    }
+
+    public String getObj_id() {
+        return obj_id;
+    }
+
+    public void setObj_id(String obj_id) {
+        this.obj_id = obj_id;
+    }
+
+    public String getInfo_id() {
+        return info_id;
+    }
+
+    public void setInfo_id(String info_id) {
+        this.info_id = info_id;
+    }
+
+    public String getTime() {
+        return time;
+    }
+
+    public void setTime(String time) {
+        this.time = time;
+    }
+
+    public Boolean getB_value() {
+        return b_value;
+    }
+
+    public void setB_value(Boolean b_value) {
+        this.b_value = b_value;
+    }
+
+    public Long getL_value() {
+        return l_value;
+    }
+
+    public void setL_value(Long l_value) {
+        this.l_value = l_value;
+    }
+
+    public String getS_value() {
+        return s_value;
+    }
+
+    public void setS_value(String s_value) {
+        this.s_value = s_value;
+    }
+
+    public Double getD_value() {
+        return d_value;
+    }
+
+    public void setD_value(Double d_value) {
+        this.d_value = d_value;
+    }
+
+    public String getJson_value() {
+        return json_value;
+    }
+
+    public void setJson_value(String json_value) {
+        this.json_value = json_value;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", obj_type='" + obj_type + '\'' +
+                ", obj_id='" + obj_id + '\'' +
+                ", info_id='" + info_id + '\'' +
+                ", time='" + time + '\'' +
+                "..." +
+                '}';
+    }
+}

+ 85 - 0
src/main/java/com/persagy/dptool/dto/physical/Objects.java

@@ -0,0 +1,85 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class Objects extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false)
+    private String obj_type;
+    @FieldCheck(canBeNull = false, uniq = true, length = 32)
+    private String obj_id;
+    private String subtype;
+    @FieldCheck(length = 14)
+    private String ctime;
+    private String dtime;
+    @FieldCheck(canBeNull = false)
+    private Boolean valid;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getObj_type() {
+        return obj_type;
+    }
+
+    public void setObj_type(String obj_type) {
+        this.obj_type = obj_type;
+    }
+
+    public String getObj_id() {
+        return obj_id;
+    }
+
+    public void setObj_id(String obj_id) {
+        this.obj_id = obj_id;
+    }
+
+    public String getSubtype() {
+        return subtype;
+    }
+
+    public void setSubtype(String subtype) {
+        this.subtype = subtype;
+    }
+
+    public String getCtime() {
+        return ctime;
+    }
+
+    public void setCtime(String ctime) {
+        this.ctime = ctime;
+    }
+
+    public String getDtime() {
+        return dtime;
+    }
+
+    public void setDtime(String dtime) {
+        this.dtime = dtime;
+    }
+
+    public Boolean getValid() {
+        return valid;
+    }
+
+    public void setValid(Boolean valid) {
+        this.valid = valid;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", obj_type='" + obj_type + '\'' +
+                ", obj_id='" + obj_id + '\'' +
+                ", valid=" + valid +
+                "..." +
+                '}';
+    }
+}

+ 4 - 0
src/main/java/com/persagy/dptool/dto/physical/PhysicalWorld.java

@@ -0,0 +1,4 @@
+package com.persagy.dptool.dto.physical;
+
+public abstract class PhysicalWorld {
+}

+ 66 - 0
src/main/java/com/persagy/dptool/dto/physical/Project.java

@@ -0,0 +1,66 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class Project extends PhysicalWorld{
+    @FieldCheck(canBeNull = false, uniq = true, length = 10)
+    private String project_id;
+    @FieldCheck
+    private String password;
+    @FieldCheck(length = 14)
+    private String ctime;
+    private String dtime;
+    @FieldCheck(canBeNull = false)
+    private Boolean valid;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getPassword() {
+        return password;
+    }
+
+    public void setPassword(String password) {
+        this.password = password;
+    }
+
+    public String getCtime() {
+        return ctime;
+    }
+
+    public void setCtime(String ctime) {
+        this.ctime = ctime;
+    }
+
+    public String getDtime() {
+        return dtime;
+    }
+
+    public void setDtime(String dtime) {
+        this.dtime = dtime;
+    }
+
+    public Boolean getValid() {
+        return valid;
+    }
+
+    public void setValid(Boolean valid) {
+        this.valid = valid;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", password='" + password + '\'' +
+                ", ctime='" + ctime + '\'' +
+                ", dtime='" + dtime + '\'' +
+                ", valid=" + valid +
+                '}';
+    }
+}

+ 85 - 0
src/main/java/com/persagy/dptool/dto/physical/RelBtwGraphPeriod.java

@@ -0,0 +1,85 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class RelBtwGraphPeriod extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false)
+    private String graph_type;
+    @FieldCheck(canBeNull = false)
+    private String sequence_id;
+    @FieldCheck(canBeNull = false, length = 14)
+    private String begin_time;
+    @FieldCheck(canBeNull = false, length = 14)
+    private String end_time;
+    private String obj_type;
+    private String obj_id;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getGraph_type() {
+        return graph_type;
+    }
+
+    public void setGraph_type(String graph_type) {
+        this.graph_type = graph_type;
+    }
+
+    public String getSequence_id() {
+        return sequence_id;
+    }
+
+    public void setSequence_id(String sequence_id) {
+        this.sequence_id = sequence_id;
+    }
+
+    public String getBegin_time() {
+        return begin_time;
+    }
+
+    public void setBegin_time(String begin_time) {
+        this.begin_time = begin_time;
+    }
+
+    public String getEnd_time() {
+        return end_time;
+    }
+
+    public void setEnd_time(String end_time) {
+        this.end_time = end_time;
+    }
+
+    public String getObj_type() {
+        return obj_type;
+    }
+
+    public void setObj_type(String obj_type) {
+        this.obj_type = obj_type;
+    }
+
+    public String getObj_id() {
+        return obj_id;
+    }
+
+    public void setObj_id(String obj_id) {
+        this.obj_id = obj_id;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", graph_type='" + graph_type + '\'' +
+                ", sequence_id='" + sequence_id + '\'' +
+                ", begin_time='" + begin_time + '\'' +
+                ", end_time='" + end_time + '\'' +
+                '}';
+    }
+}

+ 88 - 0
src/main/java/com/persagy/dptool/dto/physical/RelBtwObjs.java

@@ -0,0 +1,88 @@
+package com.persagy.dptool.dto.physical;
+
+import com.persagy.dptool.annotation.FieldCheck;
+
+public class RelBtwObjs extends PhysicalWorld {
+    @FieldCheck(canBeNull = false, length = 10)
+    private String project_id;
+    @FieldCheck(canBeNull = false, existGraphId = true)
+    private String graph_id;
+    @FieldCheck(canBeNull = false)
+    private String rel_type;
+    @FieldCheck(canBeNull = false)
+    private String from_obj_type;
+    @FieldCheck(canBeNull = false, existObj = true)
+    private String from_obj_id;
+    @FieldCheck(canBeNull = false)
+    private String to_obj_type;
+    @FieldCheck(canBeNull = false, existObj = true)
+    private String to_obj_id;
+
+    public String getProject_id() {
+        return project_id;
+    }
+
+    public void setProject_id(String project_id) {
+        this.project_id = project_id;
+    }
+
+    public String getGraph_id() {
+        return graph_id;
+    }
+
+    public void setGraph_id(String graph_id) {
+        this.graph_id = graph_id;
+    }
+
+    public String getRel_type() {
+        return rel_type;
+    }
+
+    public void setRel_type(String rel_type) {
+        this.rel_type = rel_type;
+    }
+
+    public String getFrom_obj_type() {
+        return from_obj_type;
+    }
+
+    public void setFrom_obj_type(String from_obj_type) {
+        this.from_obj_type = from_obj_type;
+    }
+
+    public String getFrom_obj_id() {
+        return from_obj_id;
+    }
+
+    public void setFrom_obj_id(String from_obj_id) {
+        this.from_obj_id = from_obj_id;
+    }
+
+    public String getTo_obj_type() {
+        return to_obj_type;
+    }
+
+    public void setTo_obj_type(String to_obj_type) {
+        this.to_obj_type = to_obj_type;
+    }
+
+    public String getTo_obj_id() {
+        return to_obj_id;
+    }
+
+    public void setTo_obj_id(String to_obj_id) {
+        this.to_obj_id = to_obj_id;
+    }
+
+    @Override
+    public String toString() {
+        return "{" +
+                "project_id='" + project_id + '\'' +
+                ", graph_id='" + graph_id + '\'' +
+                ", rel_type='" + rel_type + '\'' +
+                ", from_obj_type='" + from_obj_type + '\'' +
+                ", from_obj_id='" + from_obj_id + '\'' +
+                "..." +
+                '}';
+    }
+}

+ 26 - 3
src/main/java/com/persagy/dptool/primary.fxml

@@ -31,7 +31,7 @@
               <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
                      <children>
                         <Label layoutX="12.0" layoutY="14.0" prefHeight="26.0" prefWidth="128.0" text="数据平台配置目录:" />
-                        <TextField fx:id="txfDir" layoutX="138.0" layoutY="12.0" prefHeight="30.0" prefWidth="516.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
+                        <TextField fx:id="txfDir" layoutX="138.0" layoutY="12.0" prefHeight="30.0" prefWidth="520.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
                         <Button fx:id="btnSelectDir" layoutX="668.0" layoutY="12.0" mnemonicParsing="false" onAction="#selectDir" text="选择" />
                         <Button fx:id="btnCheck" layoutX="736.0" layoutY="12.0" mnemonicParsing="false" onAction="#checkConfig" text="校验" />
                         <Label layoutX="138.0" layoutY="49.0" prefHeight="20.0" prefWidth="644.0" text="注: 路径为数据平台配置文件config.properties所在目录" textFill="#7c7c7c">
@@ -39,7 +39,7 @@
                               <Font size="14.0" />
                            </font>
                         </Label>
-                        <StackPane layoutX="138.0" layoutY="96.0" prefHeight="433.0" prefWidth="611.0">
+                        <StackPane layoutX="138.0" layoutY="98.0" prefHeight="437.0" prefWidth="611.0">
                            <children>
                               <FlowPane orientation="VERTICAL" prefHeight="200.0" prefWidth="200.0" vgap="20.0">
                                  <opaqueInsets>
@@ -58,7 +58,30 @@
           </Tab>
           <Tab text="物理世界">
             <content>
-              <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
+              <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
+                     <children>
+                        <Label layoutX="9.0" layoutY="56.0" prefHeight="26.0" prefWidth="98.0" text="json文件目录:" textAlignment="RIGHT" />
+                        <TextField fx:id="txfDirJson" layoutX="107.0" layoutY="54.0" prefHeight="30.0" prefWidth="544.0" />
+                        <Button fx:id="btnSelecDirJson" layoutX="668.0" layoutY="54.0" mnemonicParsing="false" onAction="#selectDirJson" text="选择" />
+                        <Button fx:id="btnCheckJson" layoutX="736.0" layoutY="54.0" mnemonicParsing="false" onAction="#checkJsonFile" text="校验" />
+                        <Label layoutX="107.0" layoutY="84.0" prefHeight="27.0" prefWidth="666.0" text="注: 只识别由HbaseCat工具导出的json文件,只能校验物理世界相关数据表,json文件名应与表名一致。" textFill="#7c7c7c">
+                           <font>
+                              <Font size="14.0" />
+                           </font>
+                        </Label>
+                        <StackPane layoutX="107.0" layoutY="133.0" prefHeight="397.0" prefWidth="645.0">
+                           <children>
+                              <FlowPane prefHeight="375.0" prefWidth="645.0">
+                                 <children>
+                                    <TextArea fx:id="txaContentJson" editable="false" prefHeight="397.0" prefWidth="648.0" wrapText="true" />
+                                 </children>
+                              </FlowPane>
+                           </children>
+                        </StackPane>
+                        <Label layoutX="39.0" layoutY="133.0" prefHeight="20.0" prefWidth="68.0" text="校验结果:" />
+                        <Label layoutX="55.0" layoutY="14.0" prefHeight="20.0" prefWidth="53.0" text="项目id: " textAlignment="RIGHT" />
+                        <TextField fx:id="txfProject" layoutX="107.0" layoutY="9.0" prefHeight="30.0" prefWidth="164.0" promptText="Pj1101010001" />
+                     </children></AnchorPane>
             </content>
           </Tab>
             <Tab text="其他">