|
@@ -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();
|
|
|
}
|
|
|
}
|