瀏覽代碼

增加物理世界数据表导入逻辑

cuixubin 4 年之前
父節點
當前提交
89f695b151

+ 0 - 14
pom.xml

@@ -80,20 +80,6 @@
 
     <build>
         <finalName>data-platform-tool</finalName>
-        <resources>
-            <resource>
-                <directory>src/main/java</directory>
-                <includes>
-                    <include>**/*.fxml</include>
-                </includes>
-            </resource>
-            <resource>
-                <directory>src/main/resources</directory>
-                <includes>
-                    <include>**/*.fxml</include>
-                </includes>
-            </resource>
-        </resources>
 
         <plugins>
             <plugin>

+ 33 - 10
src/main/java/com/persagy/dptool/CommonUtil.java

@@ -181,7 +181,7 @@ public class CommonUtil {
      * @param objects
      * @param <T>
      * @param physicalObject
-     * @return
+     * @return 包含Error字符的错误详情信息或者null
      */
     public static <T extends PhysicalWorld> String annotationFieldCheck(List<T> objects, PhysicalObject physicalObject) {
         if(null == objects || objects.isEmpty()) {
@@ -212,43 +212,43 @@ public class CommonUtil {
                         Object value = field.get(obj);
 
                         if (!fieldCheck.canBeNull() && null == value) {
-                            errorMsg += fieldName + "值不允许为null。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[1]);
                         }
 
                         if (fieldCheck.length() > 0 && null != value && value.toString().length() != fieldCheck.length()) {
-                            errorMsg += fieldName + "值不合法。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[2]);
                         }
 
                         if(fieldCheck.uniq()) {
                             if(fieldName2UniqValue.containsKey(fieldName) && fieldName2UniqValue.get(fieldName).contains(value)) {
-                                errorMsg += fieldName + "存在重复值。";
+                                errorMsg += errorTip(fieldName,ConstantData.errorCodes[4]);
                             }else {
                                 fieldName2UniqValue.get(fieldName).add(value);
                             }
                         }
 
                         if(fieldCheck.existObj() && physicalObject.objIdSet != null && !physicalObject.objIdSet.contains(value)) {
-                            errorMsg += fieldName + "值在objects表中不存在。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[3]) + "相关表:objects; ";
                         }
 
                         if(fieldCheck.existGraphId() && physicalObject.graphIdSet != null && !physicalObject.graphIdSet.contains(value)) {
-                            errorMsg += fieldName + "值在graph_instance表中不存在。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[3]) + "相关表:graph_instance; ";
                         }
 
                         if(fieldCheck.existInfoCodeSchemeId() && physicalObject.infoCodeSchemeIdSet != null && !physicalObject.infoCodeSchemeIdSet.contains(value)) {
-                            errorMsg += fieldName + "值在infocode_scheme表中不存在。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[3]) + " 相关表:infocode_scheme; ";
                         }
 
                         if(fieldCheck.existCtmDictId() && physicalObject.ctmDicIdSet != null && !physicalObject.ctmDicIdSet.contains(value)) {
-                            errorMsg += fieldName + "值在ctm_dict表中不存在。";
+                            errorMsg += errorTip(fieldName,ConstantData.errorCodes[3]) + "相关表:ctm_dict; ";
                         }
 
                         if(fieldCheck.existCtmDictNodeType() && !ConstantData.customDictNodeType.contains(value)) {
-                            errorMsg += fieldName + "值不合法!取值仅限于以下:" + ConstantData.customDictNodeType;
+                            errorMsg += fieldName + ":" + ConstantData.errorCodes[2] + "值范围:" + ConstantData.customDictNodeType;
                         }
 
                         if(errorMsg.length() > 0) {
-                            sbResultStr.append(obj.toString() + "记录异常!" + errorMsg + "\n");
+                            sbResultStr.append("异常记录:" + obj.toString() + errorMsg + "\n");
                         }
                     }
                 }
@@ -265,6 +265,29 @@ public class CommonUtil {
         return null;
     }
 
+    private static String errorTip(String fieldName, String errorCode) {
+        return "异常字段:" + fieldName + ", 错误码:" + errorCode + ", ";
+    }
+
+    /**
+     * 测试数据平台服务连通性
+     * @param serviceUrl 数据平台地址 http://ip:port/data-platform-3
+     * @return
+     */
+    public static boolean dataPlatformConnectTest(String serviceUrl) {
+        boolean result = false;
+
+        String url = serviceUrl + "/dict/query/direction";
+        try {
+            String respStr = httpGetRequest(url);
+            if(null != respStr) {
+                result = respStr.contains("success");
+            }
+        }catch (Exception e){}
+
+        return result;
+    }
+
     public static void main(String[] args) {
         List<Project> projects = new ArrayList<>();
         Project pj1 = new Project();

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

@@ -5,6 +5,11 @@ import java.util.*;
 public class ConstantData {
     /** 文件服务默认systemId与secret对应关系{systemId:secret} */
     public static Map<String, String> imgKeyMap = new HashMap<>();
+
+    /** {Error99:其他错误, Error001:null值错误, Error002:字面值不合法, Error003:无对应实体记录, Error004:重复值}*/
+    public static String[] errorCodes = {"Error99", "Error001", "Error002", "Error003"};
+    public static LinkedHashMap<String, String> errorCodeName = new LinkedHashMap<>();
+
     /** 数据字典配置文件基础目录 Dictionary */
     public static String dicFolderDictionary = "Dictionary";
     /** 数据字典配置文件基础目录 eqFamily */
@@ -39,6 +44,10 @@ public class ConstantData {
         imgKeyMap.put("duoduo", "df548507374559a3"); imgKeyMap.put("dataPlatform", "9e0891a7a8c8e885");
 
         dicFolderBase.add(dicFolderInfoCode); dicFolderBase.add(dicFolderDictionary); dicFolderBase.add(dicFolderEqFamily);
+
+        errorCodeName.put("Error01", "null值错误"); errorCodeName.put("Error02", "字面值不合法");
+        errorCodeName.put("Error03", "无对应实体记录"); errorCodeName.put("Error04", "重复值");
+        errorCodeName.put("Error99", "其他错误");
     }
 
 }

+ 3 - 3
src/main/java/com/persagy/dptool/MainApp.java

@@ -7,7 +7,7 @@ import javafx.scene.Scene;
 import javafx.stage.Stage;
 
 import java.io.IOException;
-import java.io.InputStream;
+import java.net.URL;
 
 public class MainApp extends Application {
 
@@ -17,8 +17,8 @@ public class MainApp extends Application {
 
     @Override
     public void start(Stage primaryStage) throws IOException {
-        InputStream is = MainApp.class.getResourceAsStream("primary.fxml");
-        Parent root = new FXMLLoader().load(is);
+        URL rul = MainApp.class.getResource("/primary.fxml");
+        Parent root = new FXMLLoader().load(rul);
         primaryStage.setTitle("data-platform-tool");
         primaryStage.setScene(new Scene(root));
         primaryStage.setResizable(false);

+ 13 - 10
src/main/java/com/persagy/dptool/PhysicalCheckUtil.java

@@ -1,13 +1,16 @@
 package com.persagy.dptool;
 
 import com.persagy.dptool.dto.PhysicalObject;
-import com.persagy.dptool.dto.physical.*;
 import com.persagy.dptool.dto.physical.Objects;
+import com.persagy.dptool.dto.physical.*;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.io.File;
 import java.util.*;
 
 public class PhysicalCheckUtil {
+    private static final Logger log = LoggerFactory.getLogger(PhysicalCheckUtil.class);
     public static final String[] tipsArray = {"无异常。", "无指定项目数据。", "无数据。"};
     public static final String checkPrefix = "check_";
 
@@ -180,7 +183,7 @@ public class PhysicalCheckUtil {
                         if(null != graphType && sequenceId != null) {
                             graphIdSet.add(graphType+sequenceId);
                             if(physicalObject.graphIdSet != null && !physicalObject.graphIdSet.contains(graphType+sequenceId)) {
-                                noObjErr.append(item.toString() + "记录异常!graph_instance表无对应记录。\n");
+                                noObjErr.append(item.toString() + ":"+ConstantData.errorCodes[3]+", 相关表:graph_instance\n");
                             }
                         }
                     }
@@ -486,14 +489,14 @@ public class PhysicalCheckUtil {
                                 if(item.getParent() == null) {
                                     // 专业码
                                     if(majorSet.contains(code)) {
-                                        eqTreeErr.append(item.toString() + "记录异常!code值重复。\n");
+                                        eqTreeErr.append(item.toString() + ConstantData.errorCodes[4] + ", code值重复。\n");
                                     }else {
                                         majorSet.add(code);
                                     }
                                 }else {
                                     // 系统码
                                     if(systemSet.contains(code)) {
-                                        eqTreeErr.append(item.toString() + "记录异常!code值重复。\n");
+                                        eqTreeErr.append(item.toString() + ConstantData.errorCodes[4] + ", code值重复。\n");
                                     }else {
                                         systemSet.add(code);
                                     }
@@ -501,14 +504,14 @@ public class PhysicalCheckUtil {
                             }else if(code.length() == 4) {
                                 // 设备码
                                 if(equipSet.contains(code)) {
-                                    eqTreeErr.append(item.toString() + "记录异常!code值重复。\n");
+                                    eqTreeErr.append(item.toString() + ConstantData.errorCodes[4] + ", code值重复。\n");
                                 }else {
                                     equipSet.add(code);
                                 }
                             }else {
                                 // 其他类型
                                 if(compSet.contains(code)) {
-                                    eqTreeErr.append(item.toString() + "记录异常!code值重复。\n");
+                                    eqTreeErr.append(item.toString() + ConstantData.errorCodes[4] + ", code值重复。\n");
                                 }else {
                                     compSet.add(code);
                                 }
@@ -543,18 +546,18 @@ public class PhysicalCheckUtil {
 
                     if(codeLength == 2 ) {
                         if(parent != null && !dicId2MajorCode.get(dicId).contains(parent)) {
-                            eqTreeErr.append(node.toString() + "记录异常!找不到parent值对应的记录。\n");
+                            eqTreeErr.append(node.toString() + ConstantData.errorCodes[3] + ", 找不到parent值对应的记录。\n");
                         }
                     }else if(codeLength == 4) {
                         if(!dicId2SystemCode.get(dicId).contains(parent)) {
-                            eqTreeErr.append(node.toString() + "记录异常!parent值不能为null且对应记录必须存在。\n");
+                            eqTreeErr.append(node.toString() + ConstantData.errorCodes[1] + ", parent值不能为null且对应记录必须存在。\n");
                         }
                     }else if(codeLength == 6) {
                         if(!dicId2EquipCode.get(dicId).contains(parent)) {
-                            eqTreeErr.append(node.toString() + "记录异常!parent值不能为null且对应记录必须存在。\n");
+                            eqTreeErr.append(node.toString() + ConstantData.errorCodes[1] + ", parent值不能为null且对应记录必须存在。\n");
                         }
                     }else {
-                        eqTreeErr.append(node.toString() + "记录异常!code值长度不合法。专业和系统长度为2,设备长度为4,部件长度为6。\n");
+                        eqTreeErr.append(node.toString() + ConstantData.errorCodes[2] + ", 专业和系统长度为2,设备长度为4,部件长度为6。\n");
                     }
                 }
             }

+ 107 - 51
src/main/java/com/persagy/dptool/PrimaryController.java

@@ -1,5 +1,7 @@
 package com.persagy.dptool;
 
+import com.persagy.dptool.dialog.HelpDialog;
+import com.persagy.dptool.dialog.MessageDialog;
 import com.persagy.dptool.dto.PhysicalObject;
 import javafx.concurrent.Task;
 import javafx.event.ActionEvent;
@@ -8,14 +10,16 @@ import javafx.fxml.Initializable;
 import javafx.scene.control.*;
 import javafx.scene.layout.BorderPane;
 import javafx.stage.DirectoryChooser;
-import javafx.stage.FileChooser;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.io.File;
 import java.net.URL;
-import java.util.Date;
-import java.util.ResourceBundle;
+import java.util.*;
 
 public class PrimaryController implements Initializable {
+    private static final Logger log = LoggerFactory.getLogger(PrimaryController.class);
+
     @FXML
     private BorderPane paneRoot;
     @FXML
@@ -30,9 +34,11 @@ public class PrimaryController implements Initializable {
     @FXML
     public TextField txfProject;
     @FXML
-    public TextField txfCheckResultFile;
+    public TextField txfProjectInput;
+    @FXML
+    public TextField txfDataPlatformInput;
     @FXML
-    public Button btnSelectDirJson;
+    public TextField txfDirInput;
     @FXML
     public Button btnCheck;
     @FXML
@@ -43,13 +49,13 @@ public class PrimaryController implements Initializable {
     @FXML
     public TextArea txaContentJson;
     @FXML
+    public TextArea txaContentInput;
+    @FXML
     public ProgressIndicator piState;
     /** 底部状态栏 */
     @FXML
     public Label lblState;
 
-    private static File tableCheckResultFile;
-
     @Override
     public void initialize(URL location, ResourceBundle resources) {
         piState.setProgress(-1);
@@ -63,11 +69,7 @@ public class PrimaryController implements Initializable {
         txaContentJson.setText("目前只能校验HBase数据库中,物理世界的以下数据表数据:\n" + tableNameSBStr);
 
         String checkResultFileName = "checkResult" + new Date().getTime() + ".txt";
-        txfCheckResultFile.setText(PrimaryController.class.getClassLoader().getResource("").toString() + checkResultFileName);
 
-        // ----
-        txfProject.setText("Pj3101040001");
-        txfDirJson.setText("D:\\var\\tableJson");
     }
 
     /**
@@ -85,16 +87,18 @@ public class PrimaryController implements Initializable {
         }
     }
 
-    public void selectTxtFile(ActionEvent e) {
-        FileChooser fileChooser = new FileChooser();
-        fileChooser.setTitle("指定存放结果文件");
-
-        fileChooser.getExtensionFilters().addAll(new FileChooser.ExtensionFilter("Text", "*.txt"));
+    /**
+     * 选择配置文件目录
+     * @param e
+     */
+    public void selectDirJson(ActionEvent e) {
+        DirectoryChooser dirChooser = new DirectoryChooser();
+        dirChooser.setTitle("选择json文件目录");
 
-        File file = fileChooser.showSaveDialog(paneRoot.getScene().getWindow());
+        File folder = dirChooser.showDialog(paneRoot.getScene().getWindow());
 
-        if(null != file) {
-            txfCheckResultFile.setText(file.getAbsolutePath());
+        if(null != folder) {
+            txfDirJson.setText(folder.getAbsolutePath());
         }
     }
 
@@ -102,15 +106,84 @@ public class PrimaryController implements Initializable {
      * 选择配置文件目录
      * @param e
      */
-    public void selectDirJson(ActionEvent e) {
+    public void selectDirJsonInput(ActionEvent e) {
         DirectoryChooser dirChooser = new DirectoryChooser();
         dirChooser.setTitle("选择json文件目录");
 
         File folder = dirChooser.showDialog(paneRoot.getScene().getWindow());
 
         if(null != folder) {
-            txfDirJson.setText(folder.getAbsolutePath());
+            txfDirInput.setText(folder.getAbsolutePath());
+        }
+    }
+
+    public void inputJsonFile(ActionEvent e) {
+        txaContentInput.setText("");
+        String projectId = txfProjectInput.getText();
+        PhysicalObject physicalObject = null;
+        if(projectId != null && projectId.trim().length() == 12 && projectId.startsWith("Pj")) {
+            physicalObject = new PhysicalObject(projectId, projectId.substring(2));
+        }else {
+            txaContentInput.setText("项目id不合法!");
+            txfProject.requestFocus();
+            return;
+        }
+
+        String dataPlatformService = txfDataPlatformInput.getText();
+        if(null == dataPlatformService || dataPlatformService.trim().length() < 20) {
+            txaContentInput.setText("数据平台地址不合法!");
+            txfDataPlatformInput.requestFocus();
+            return;
+        }else if(!CommonUtil.dataPlatformConnectTest(dataPlatformService)) {
+            txaContentInput.setText("数据平台服务访问不通!请确保服务地址填写正确,且保证服务可访问。");
+            txfDataPlatformInput.requestFocus();
+            return;
+        }else {
+            physicalObject.dataPlatformUrl = dataPlatformService;
+        }
+
+        File jsonFileDir = null;
+        String filePath = txfDirInput.getText();
+
+        if(null != filePath) {
+            filePath = filePath.trim();
+            jsonFileDir = new File(filePath);
+            if(!jsonFileDir.exists() || !jsonFileDir.isDirectory()) {
+                txaContentInput.setText("目录地址不合法!");
+                txfDirInput.requestFocus();
+                return;
+            }
+        }else {
+            txaContentInput.setText("目录地址不合法!");
+        }
+
+        LinkedHashMap<String, File> fileMap = new LinkedHashMap<>();
+
+        Map<String, File> realFileMap = new HashMap<>();
+        for(File file : jsonFileDir.listFiles()) {
+            if(file.isFile() && file.getName().endsWith(ConstantData.tablesFileType)) {
+                realFileMap.put(file.getName(), file);
+            }
         }
+
+        for(String tableName : ConstantData.tablesNameList) {
+            String realFileName = tableName+ConstantData.tablesFileType;
+            if(realFileMap.containsKey(realFileName)) {
+                fileMap.put(tableName, realFileMap.get(realFileName));
+            }
+        }
+
+        if(fileMap.isEmpty() || fileMap.size() != 9) {
+            StringBuilder errorTips = new StringBuilder("未找到完备、合法的数据表json文件!至少包含以下数据表文件:\n");
+            for(int i=0; i<9; i++) {
+                errorTips.append(" " + (i+1) + ". " + ConstantData.tablesNameList.get(i) + "\n");
+            }
+            txaContentInput.setText(errorTips.toString());
+            return;
+        }
+
+        Task<Boolean> task = TaskFactory.jsonFileInput(this, jsonFileDir, physicalObject);
+        new Thread(task).start();
     }
 
     /**
@@ -146,35 +219,6 @@ public class PrimaryController implements Initializable {
             return;
         }
 
-        String logFilePath = txfCheckResultFile.getText();
-        if(logFilePath == null || logFilePath.trim().length() < 0) {
-            txaContentJson.setText("请先指定存放结果文件!");
-            txfCheckResultFile.requestFocus();
-            return;
-        }
-        File logFile = new File(logFilePath);
-        try {
-            if(!logFile.exists()) {
-                logFile.createNewFile();
-            }
-
-            if(!logFile.exists() || !logFile.isFile()) {
-                txaContentJson.setText("存放结果文件无法访问,请重新指定或手动创建!");
-                txfCheckResultFile.requestFocus();
-                return;
-            }
-        }catch (Exception ex) {
-            logFile = null;
-        }
-
-        if(logFile == null) {
-            txaContentJson.setText("存放结果文件不存在,请手动创建并指定!");
-            txfCheckResultFile.requestFocus();
-            return;
-        }else {
-            tableCheckResultFile = logFile;
-        }
-
         File jsonFileDir = null;
         String filePath = txfDirJson.getText();
 
@@ -183,12 +227,14 @@ public class PrimaryController implements Initializable {
             jsonFileDir = new File(filePath);
             if(!jsonFileDir.exists() || jsonFileDir.isFile()) {
                 txaContentJson.setText("目录地址不合法!");
+                txfDirJson.requestFocus();
                 return;
             }
         }else {
             txaContentJson.setText("目录地址不合法!");
         }
 
+        log.info("【物理世界数据表json文件】----校验----开始----");
         Task<Boolean> task = TaskFactory.checkTableJsonFiles(this, physicalObject, jsonFileDir);
         new Thread(task).start();
     }
@@ -219,9 +265,19 @@ public class PrimaryController implements Initializable {
     public void setDisable(boolean disable, int typeIndex) {
         if(1 == typeIndex) {
             paneTab.setDisable(disable);
-        }else if(2 == typeIndex){
+        }else if(2 == typeIndex) {
+            paneTab.setDisable(disable);
+        }else if(3 == typeIndex) {
             paneTab.setDisable(disable);
         }
+    }
+
+    public void showHelp(ActionEvent e) {
+        new HelpDialog(paneRoot.getScene().getWindow().getX() + 20, paneRoot.getScene().getWindow().getY() + 20).showAndWait();
+    }
 
+    public void showAbout(ActionEvent e) {
+        String aboutInfo = "Version:1.0\nJDK:1.8\nAuthor:cuixubin@persagy.com";
+        new MessageDialog("About", aboutInfo, 300, 120, paneRoot.getScene().getWindow().getX() + 20, paneRoot.getScene().getWindow().getY() + 20).showAndWait();
     }
 }

+ 50 - 12
src/main/java/com/persagy/dptool/TaskFactory.java

@@ -6,14 +6,36 @@ import com.rabbitmq.client.Connection;
 import com.rabbitmq.client.ConnectionFactory;
 import javafx.application.Platform;
 import javafx.concurrent.Task;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import javax.jms.TopicSession;
 import java.io.File;
 import java.util.*;
 
 public class TaskFactory {
+    private static final Logger log = LoggerFactory.getLogger(PrimaryController.class);
     public static String[] prefixStr = {"- Error", "- Warn"};
 
+    public static Task<Boolean> jsonFileInput(PrimaryController controller, File fileDir, PhysicalObject physicalObject) {
+        return new Task<Boolean>() {
+            @Override
+            protected Boolean call() throws Exception {
+                Platform.runLater(()->{
+                    controller.txaContentInput.setText("");
+                    controller.setDisable(true, 3);
+                    controller.piState.setVisible(true);
+                    controller.lblState.setText("分析json文件...");
+                });
+
+                log.info("【物理世界数据导入】--1--分析----开始----");
+
+
+                return true;
+            }
+        };
+    }
+
     public static Task<Boolean> checkConfig(PrimaryController controller, File configFile, File propertyFile) {
         return new Task<Boolean>() {
             @Override
@@ -121,6 +143,8 @@ public class TaskFactory {
                     controller.lblState.setText("");
                     controller.txaContentJson.setText(checkResult.toString());
                 });
+
+                log.info("【物理世界数据表json文件】----校验----结束----");
                 return true;
             }
         };
@@ -132,7 +156,7 @@ public class TaskFactory {
      * @return 异常信息,返回null表示无异常
      */
     private static String relationCheck(PhysicalObject physicalObject) {
-        StringBuilder sbStr = new StringBuilder("跨表数据异常:\n");
+        StringBuilder sbStr = new StringBuilder("");
         if(physicalObject.graphIdSet != null && physicalObject.graphIdPeriodSet != null) {
             Set<String> errorGraphIdSet = new HashSet<>();
             for(String graphId : physicalObject.graphIdSet) {
@@ -143,13 +167,14 @@ public class TaskFactory {
 
             if(!errorGraphIdSet.isEmpty()) {
                 sbStr.append("[graph_instance, rel_btw_graph_period]表\n");
-                sbStr.append("graph_instance表中 ‘graphy_type字段值+sequence_id值’ 在rel_btw_graph_period表中缺少对应记录。异常数据:" + errorGraphIdSet);
+                sbStr.append("graph_instance表中[graphy_type字段 + sequence_id字段]的值,在rel_btw_graph_period表中缺少对应记录。异常数据:" + errorGraphIdSet);
                 sbStr.append("\n\n");
             }
         }
 
-        if(sbStr.length() > 20) {
-            return sbStr.toString();
+        if(sbStr.length() > 0) {
+            log.info("跨表数据异常详情:\n" + sbStr.toString());
+            return "存在跨表数据异常!详情见日志。";
         }
 
         return null;
@@ -164,26 +189,39 @@ public class TaskFactory {
      * @return
      */
     private static String checkTableJsonFile(String tableName, File file, PhysicalObject physicalObject, PhysicalCheckUtil checkUtil) {
-        StringBuilder result = new StringBuilder(tableName + "校验结果:\n");
+        String resultSubStr = tableName + "校验结果:\n";
+        String errorDetail = "";
 
         if(null == file || !file.isFile()) {
-            result.append("未找到对应的"+ConstantData.tablesFileType+"文件!");
+            resultSubStr += "未找到对应的"+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());
+                    if(checkResult.toString().contains("Error")) {
+                        errorDetail = tableName + "校验结果,异常信息详情:\n" + checkResult.toString();
+                        resultSubStr += "存在异常数据,详情见日志文件。";
+                    }else {
+                        resultSubStr += checkResult.toString();
+                    }
                 }else {
-                    result.append("校验逻辑出错!");
+                    resultSubStr += "校验逻辑出错!";
                 }
             }catch (Exception e) {
-                result.append("不支持该文件校验!");
+                resultSubStr += "不支持该文件校验!";
+
             }
         }
 
-        result.append("\n\n");
-        return result.toString();
+
+        if(errorDetail.length() > 0) {
+            log.info(errorDetail);
+        }else {
+            log.info(resultSubStr);
+        }
+
+        return resultSubStr + "\n\n";
     }
 
     /**
@@ -578,7 +616,7 @@ public class TaskFactory {
      */
     private static boolean fileGetTest(String base, String sysId) {
         boolean result = false;
-        String url = base + File.separator + "common/file_get?key=dPfToOltEsTkey&systemId=" + sysId;
+        String url = base + "/common/file_get?key=dPfToOltEsTkey&systemId=" + sysId;
         try {
             byte[] byteData = CommonUtil.httpGetFile(url);
             if(byteData != null && ifNotExists(byteData)) {

+ 37 - 0
src/main/java/com/persagy/dptool/dialog/HelpDialog.java

@@ -0,0 +1,37 @@
+package com.persagy.dptool.dialog;
+
+import com.persagy.dptool.ConstantData;
+import javafx.scene.Scene;
+import javafx.scene.control.Label;
+import javafx.scene.layout.Pane;
+import javafx.stage.Modality;
+import javafx.stage.Stage;
+import javafx.stage.StageStyle;
+
+
+public class HelpDialog extends Stage {
+    public HelpDialog(double x, double y) {
+        StringBuilder msg = new StringBuilder("功能说明:\n\n");
+        msg.append(" 1. 离线校验数据平台config.properties文件配置,本地数据字典配置;\n");
+        msg.append(" 2. 离线检查指定项目的物理世界数据。\n\n\n");
+
+        msg.append("错误码说明:\n\n");
+        for(String code : ConstantData.errorCodeName.keySet()) {
+            msg.append(" " + code + ": " + ConstantData.errorCodeName.get(code) + "; \n");
+        }
+
+        Label label = new Label(msg.toString());
+        label.setLayoutX(20); label.setLayoutY(20);
+
+        Pane pane = new Pane();
+        pane.getChildren().addAll(label);
+
+        Scene scene = new Scene(pane, 560, 320);
+        setScene(scene);
+        setTitle("Help");
+        setResizable(false);
+        initStyle(StageStyle.UTILITY);
+        initModality(Modality.APPLICATION_MODAL);
+        setX(x); setY(y);
+    }
+}

+ 26 - 0
src/main/java/com/persagy/dptool/dialog/MessageDialog.java

@@ -0,0 +1,26 @@
+package com.persagy.dptool.dialog;
+
+import javafx.scene.Scene;
+import javafx.scene.control.Label;
+import javafx.scene.layout.Pane;
+import javafx.stage.Modality;
+import javafx.stage.Stage;
+import javafx.stage.StageStyle;
+
+
+public class MessageDialog extends Stage {
+    public MessageDialog(String title, String msg, int width, int heigt, double x, double y) {
+        Label label = new Label(msg);
+        label.setLayoutX(20); label.setLayoutY(20);
+        Pane pane = new Pane();
+        pane.getChildren().add(label);
+
+        Scene scene = new Scene(pane, width, heigt);
+        setScene(scene);
+        setTitle(title);
+        setResizable(false);
+        initStyle(StageStyle.UTILITY);
+        initModality(Modality.APPLICATION_MODAL);
+        setX(x); setY(y);
+    }
+}

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

@@ -3,6 +3,8 @@ package com.persagy.dptool.dto;
 import java.util.Set;
 
 public class PhysicalObject {
+    /** 数据平台服务地址 */
+    public String dataPlatformUrl;
     /** 项目id,包含Pj前缀 */
     public String projectId;
     /** 项目id,不含Pj前缀 */

+ 0 - 117
src/main/java/com/persagy/dptool/primary.fxml

@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<?import javafx.scene.effect.*?>
-<?import javafx.scene.text.*?>
-<?import javafx.geometry.*?>
-<?import java.lang.*?>
-<?import java.util.*?>
-<?import javafx.scene.*?>
-<?import javafx.scene.control.*?>
-<?import javafx.scene.layout.*?>
-
-<BorderPane fx:id="paneRoot" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="640.0" prefWidth="860.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.persagy.dptool.PrimaryController">
-   <top>
-      <MenuBar BorderPane.alignment="CENTER">
-        <menus>
-          <Menu mnemonicParsing="false" text="Help">
-            <items>
-                  <MenuItem mnemonicParsing="false" text="Help" />
-                  <SeparatorMenuItem mnemonicParsing="false" />
-              <MenuItem mnemonicParsing="false" text="About" />
-            </items>
-          </Menu>
-        </menus>
-      </MenuBar>
-   </top>
-   <center>
-      <TabPane fx:id="paneTab" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" BorderPane.alignment="CENTER">
-        <tabs>
-          <Tab text="配置校验">
-            <content>
-              <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="592.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
-                        <Button fx:id="btnSelectDir" layoutX="733.0" layoutY="12.0" mnemonicParsing="false" onAction="#selectDir" text="···" />
-                        <Button fx:id="btnCheck" layoutX="776.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">
-                           <font>
-                              <Font size="14.0" />
-                           </font>
-                        </Label>
-                        <StackPane layoutX="79.0" layoutY="98.0" prefHeight="437.0" prefWidth="746.0">
-                           <children>
-                              <FlowPane orientation="VERTICAL" prefHeight="200.0" prefWidth="200.0" vgap="20.0">
-                                 <opaqueInsets>
-                                    <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" />
-                                 </opaqueInsets>
-                                 <children>
-                                    <TextArea fx:id="txaContent" editable="false" prefHeight="436.0" prefWidth="747.0" wrapText="true" />
-                                 </children>
-                              </FlowPane>
-                           </children>
-                        </StackPane>
-                        <Label layoutX="9.0" layoutY="96.0" prefHeight="20.0" prefWidth="70.0" text="校验结果:" />
-                     </children>
-                  </AnchorPane>
-            </content>
-          </Tab>
-          <Tab text="物理世界">
-            <content>
-              <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="620.0" />
-                        <Button fx:id="btnSelecDirJson" layoutX="731.0" layoutY="54.0" mnemonicParsing="false" onAction="#selectDirJson" text="···" />
-                        <Button fx:id="btnCheckJson" layoutX="777.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="349.0" prefWidth="720.0">
-                           <children>
-                              <FlowPane prefHeight="375.0" prefWidth="645.0">
-                                 <children>
-                                    <TextArea fx:id="txaContentJson" editable="false" prefHeight="401.0" prefWidth="720.0" wrapText="true" />
-                                 </children>
-                              </FlowPane>
-                           </children>
-                        </StackPane>
-                        <Label layoutX="9.0" layoutY="133.0" prefHeight="20.0" prefWidth="98.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="138.0" promptText="Pj1101010001" />
-                        <Label layoutX="266.0" layoutY="14.0" text="存放结果文件: " />
-                        <TextField fx:id="txfCheckResultFile" editable="false" layoutX="366.0" layoutY="9.0" prefHeight="30.0" prefWidth="426.0" />
-                        <Button layoutX="796.0" layoutY="9.0" mnemonicParsing="false" onAction="#selectTxtFile" text="···" />
-                     </children></AnchorPane>
-            </content>
-          </Tab>
-            <Tab text="其他">
-              <content>
-                <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
-              </content>
-            </Tab>
-        </tabs>
-      </TabPane>
-   </center>
-   <bottom>
-      <HBox prefHeight="35.0" prefWidth="800.0" BorderPane.alignment="CENTER">
-         <children>
-            <ProgressIndicator fx:id="piState" prefHeight="26.0" prefWidth="30.0" progress="0.0">
-               <cursor>
-                  <Cursor fx:constant="NONE" />
-               </cursor>
-            </ProgressIndicator>
-            <Label fx:id="lblState" prefHeight="35.0" prefWidth="762.0">
-               <HBox.margin>
-                  <Insets left="3.0" />
-               </HBox.margin>
-            </Label>
-         </children>
-         <BorderPane.margin>
-            <Insets left="5.0" />
-         </BorderPane.margin>
-      </HBox>
-   </bottom>
-</BorderPane>

+ 14 - 0
src/main/resources/log4j.properties

@@ -0,0 +1,14 @@
+log4j.rootLogger=INFO, console, file
+
+log4j.appender.console=org.apache.log4j.ConsoleAppender
+log4j.appender.console.layout=org.apache.log4j.PatternLayout
+log4j.appender.console.layout.ConversionPattern=%d{yyyy.MM.dd HH:mm:ss} - %m%n
+
+log4j.appender.file=org.apache.log4j.DailyRollingFileAppender
+log4j.appender.file.File=logs/check-log.log
+log4j.appender.file.layout=org.apache.log4j.PatternLayout
+
+
+log4j.appender.A3.MaxFileSize=10MB
+log4j.appender.A3.MaxBackupIndex=10
+log4j.appender.file.layout.ConversionPattern=%d{yyyy.MM.dd HH:mm:ss} - %m%n

+ 115 - 92
src/main/resources/primary.fxml

@@ -10,108 +10,131 @@
 <?import javafx.scene.layout.*?>
 
 <BorderPane fx:id="paneRoot" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="640.0" prefWidth="860.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.persagy.dptool.PrimaryController">
-   <top>
-      <MenuBar BorderPane.alignment="CENTER">
-        <menus>
-          <Menu mnemonicParsing="false" text="Help">
-            <items>
-                  <MenuItem mnemonicParsing="false" text="Help" />
-                  <SeparatorMenuItem mnemonicParsing="false" />
-              <MenuItem mnemonicParsing="false" text="About" />
-            </items>
-          </Menu>
-        </menus>
-      </MenuBar>
-   </top>
-   <center>
-      <TabPane fx:id="paneTab" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" BorderPane.alignment="CENTER">
-        <tabs>
-          <Tab text="配置校验">
-            <content>
-              <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
+    <top>
+        <MenuBar BorderPane.alignment="CENTER">
+            <menus>
+                <Menu mnemonicParsing="false" text="Help">
+                    <items>
+                        <MenuItem mnemonicParsing="false" onAction="#showHelp" text="Help" />
+                        <SeparatorMenuItem mnemonicParsing="false" />
+                        <MenuItem mnemonicParsing="false" onAction="#showAbout" text="About" />
+                    </items>
+                </Menu>
+            </menus>
+        </MenuBar>
+    </top>
+    <center>
+        <TabPane fx:id="paneTab" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" BorderPane.alignment="CENTER">
+            <tabs>
+                <Tab text="配置校验">
+                    <content>
+                        <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="592.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
+                                <Button fx:id="btnSelectDir" layoutX="733.0" layoutY="12.0" mnemonicParsing="false" onAction="#selectDir" text="···" />
+                                <Button fx:id="btnCheck" layoutX="776.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所在目录,或本地数据字典property文件夹所在目录" textFill="#7c7c7c">
+                                    <font>
+                                        <Font size="14.0" />
+                                    </font>
+                                </Label>
+                                <StackPane layoutX="79.0" layoutY="98.0" prefHeight="437.0" prefWidth="746.0">
+                                    <children>
+                                        <FlowPane orientation="VERTICAL" prefHeight="200.0" prefWidth="200.0" vgap="20.0">
+                                            <opaqueInsets>
+                                                <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" />
+                                            </opaqueInsets>
+                                            <children>
+                                                <TextArea fx:id="txaContent" editable="false" prefHeight="436.0" prefWidth="747.0" wrapText="true" />
+                                            </children>
+                                        </FlowPane>
+                                    </children>
+                                </StackPane>
+                                <Label layoutX="9.0" layoutY="96.0" prefHeight="20.0" prefWidth="70.0" text="校验结果:" />
+                            </children>
+                        </AnchorPane>
+                    </content>
+                </Tab>
+                <Tab text="物理世界校验">
+                    <content>
+                        <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="620.0" />
+                                <Button fx:id="btnSelecDirJson" layoutX="731.0" layoutY="54.0" mnemonicParsing="false" onAction="#selectDirJson" text="···" />
+                                <Button fx:id="btnCheckJson" layoutX="777.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="349.0" prefWidth="720.0">
+                                    <children>
+                                        <FlowPane prefHeight="375.0" prefWidth="645.0">
+                                            <children>
+                                                <TextArea fx:id="txaContentJson" editable="false" prefHeight="401.0" prefWidth="720.0" wrapText="true" />
+                                            </children>
+                                        </FlowPane>
+                                    </children>
+                                </StackPane>
+                                <Label layoutX="9.0" layoutY="133.0" prefHeight="20.0" prefWidth="98.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="138.0" promptText="Pj1101010001" />
+                            </children></AnchorPane>
+                    </content>
+                </Tab>
+                <Tab text="物理世界导入">
+                    <content>
+                        <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="592.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
-                        <Button fx:id="btnSelectDir" layoutX="733.0" layoutY="12.0" mnemonicParsing="false" onAction="#selectDir" text="···" />
-                        <Button fx:id="btnCheck" layoutX="776.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">
+                        <Label layoutX="14.0" layoutY="14.0" text="项目id: " />
+                        <Label layoutX="225.0" layoutY="14.0" text="数据平台地址: " />
+                        <TextField fx:id="txfProjectInput" layoutX="66.0" layoutY="9.0" prefHeight="30.0" prefWidth="144.0" promptText="Pj110101001" />
+                        <TextField fx:id="txfDataPlatformInput" layoutX="324.0" layoutY="9.0" prefHeight="30.0" prefWidth="499.0" promptText="http://127.0.0.1:8080/data-platform-3" />
+                        <Label layoutX="14.0" layoutY="55.0" text="json文件目录: " />
+                        <TextField fx:id="txfDirInput" layoutX="111.0" layoutY="50.0" prefHeight="30.0" prefWidth="680.0" />
+                        <Button layoutX="793.0" layoutY="50.0" mnemonicParsing="false" onAction="#selectDirJsonInput" text="···" />
+                        <Label layoutX="111.0" layoutY="80.0" prefHeight="24.0" prefWidth="733.0" text="注: 只识别由HbaseCat工具导出的json文件;json文件名应与表名一致。请保证json文件通过了物理世界校验。" textFill="#7c7c7c">
                            <font>
                               <Font size="14.0" />
                            </font>
                         </Label>
-                        <StackPane layoutX="79.0" layoutY="98.0" prefHeight="437.0" prefWidth="746.0">
+                        <Label layoutX="55.0" layoutY="142.0" />
+                        <Button layoutX="15.0" layoutY="122.0" mnemonicParsing="false" onAction="#inputJsonFile" text="执行" />
+                        <Label layoutX="21.0" layoutY="171.0" />
+                        <StackPane layoutX="71.0" layoutY="122.0" prefHeight="408.0" prefWidth="752.0">
                            <children>
-                              <FlowPane orientation="VERTICAL" prefHeight="200.0" prefWidth="200.0" vgap="20.0">
-                                 <opaqueInsets>
-                                    <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" />
-                                 </opaqueInsets>
+                              <FlowPane prefHeight="408.0" prefWidth="781.0">
                                  <children>
-                                    <TextArea fx:id="txaContent" editable="false" prefHeight="436.0" prefWidth="747.0" wrapText="true" />
+                                    <TextArea fx:id="txaContentInput" prefHeight="410.0" prefWidth="753.0" />
                                  </children>
                               </FlowPane>
                            </children>
                         </StackPane>
-                        <Label layoutX="9.0" layoutY="96.0" prefHeight="20.0" prefWidth="70.0" text="校验结果:" />
-                     </children>
-                  </AnchorPane>
-            </content>
-          </Tab>
-          <Tab text="物理世界">
-            <content>
-              <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="620.0" />
-                        <Button fx:id="btnSelecDirJson" layoutX="731.0" layoutY="54.0" mnemonicParsing="false" onAction="#selectDirJson" text="···" />
-                        <Button fx:id="btnCheckJson" layoutX="777.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="349.0" prefWidth="720.0">
-                           <children>
-                              <FlowPane prefHeight="375.0" prefWidth="645.0">
-                                 <children>
-                                    <TextArea fx:id="txaContentJson" editable="false" prefHeight="401.0" prefWidth="720.0" wrapText="true" />
-                                 </children>
-                              </FlowPane>
-                           </children>
-                        </StackPane>
-                        <Label layoutX="9.0" layoutY="133.0" prefHeight="20.0" prefWidth="98.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="138.0" promptText="Pj1101010001" />
-                        <Label layoutX="266.0" layoutY="14.0" text="存放结果文件: " />
-                        <TextField fx:id="txfCheckResultFile" layoutX="366.0" layoutY="9.0" prefHeight="30.0" prefWidth="426.0" />
-                        <Button layoutX="796.0" layoutY="9.0" mnemonicParsing="false" text="···" />
                      </children></AnchorPane>
-            </content>
-          </Tab>
-            <Tab text="其他">
-              <content>
-                <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
-              </content>
-            </Tab>
-        </tabs>
-      </TabPane>
-   </center>
-   <bottom>
-      <HBox prefHeight="35.0" prefWidth="800.0" BorderPane.alignment="CENTER">
-         <children>
-            <ProgressIndicator fx:id="piState" prefHeight="26.0" prefWidth="30.0" progress="0.0">
-               <cursor>
-                  <Cursor fx:constant="NONE" />
-               </cursor>
-            </ProgressIndicator>
-            <Label fx:id="lblState" prefHeight="35.0" prefWidth="762.0">
-               <HBox.margin>
-                  <Insets left="3.0" />
-               </HBox.margin>
-            </Label>
-         </children>
-         <BorderPane.margin>
-            <Insets left="5.0" />
-         </BorderPane.margin>
-      </HBox>
-   </bottom>
+                    </content>
+                </Tab>
+            </tabs>
+        </TabPane>
+    </center>
+    <bottom>
+        <HBox prefHeight="35.0" prefWidth="800.0" BorderPane.alignment="CENTER">
+            <children>
+                <ProgressIndicator fx:id="piState" prefHeight="26.0" prefWidth="30.0" progress="0.0">
+                    <cursor>
+                        <Cursor fx:constant="NONE" />
+                    </cursor>
+                </ProgressIndicator>
+                <Label fx:id="lblState" prefHeight="35.0" prefWidth="762.0">
+                    <HBox.margin>
+                        <Insets left="3.0" />
+                    </HBox.margin>
+                </Label>
+            </children>
+            <BorderPane.margin>
+                <Insets left="5.0" />
+            </BorderPane.margin>
+        </HBox>
+    </bottom>
 </BorderPane>