|
@@ -3,6 +3,7 @@ package com.persagy.dptool;
|
|
|
import com.persagy.dptool.dialog.HelpDialog;
|
|
|
import com.persagy.dptool.dialog.MessageDialog;
|
|
|
import com.persagy.dptool.dto.PhysicalObject;
|
|
|
+import com.persagy.dptool.dto.VenderInfo;
|
|
|
import javafx.concurrent.Task;
|
|
|
import javafx.event.ActionEvent;
|
|
|
import javafx.fxml.FXML;
|
|
@@ -10,12 +11,13 @@ 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.*;
|
|
|
+import java.util.ResourceBundle;
|
|
|
|
|
|
public class PrimaryController implements Initializable {
|
|
|
private static final Logger log = LoggerFactory.getLogger(PrimaryController.class);
|
|
@@ -34,11 +36,11 @@ public class PrimaryController implements Initializable {
|
|
|
@FXML
|
|
|
public TextField txfProject;
|
|
|
@FXML
|
|
|
- public TextField txfProjectInput;
|
|
|
+ public TextField txfProjectVender;
|
|
|
@FXML
|
|
|
- public TextField txfDataPlatformInput;
|
|
|
+ public Label lblVenderTip;
|
|
|
@FXML
|
|
|
- public TextField txfDirInput;
|
|
|
+ public TextField txfObjInfosJson;
|
|
|
@FXML
|
|
|
public Button btnCheck;
|
|
|
@FXML
|
|
@@ -49,8 +51,6 @@ public class PrimaryController implements Initializable {
|
|
|
@FXML
|
|
|
public TextArea txaContentJson;
|
|
|
@FXML
|
|
|
- public TextArea txaContentInput;
|
|
|
- @FXML
|
|
|
public ProgressIndicator piState;
|
|
|
/** 底部状态栏 */
|
|
|
@FXML
|
|
@@ -68,8 +68,6 @@ public class PrimaryController implements Initializable {
|
|
|
}
|
|
|
txaContentJson.setText("目前只能校验HBase数据库中,物理世界的以下数据表数据:\n" + tableNameSBStr);
|
|
|
|
|
|
- String checkResultFileName = "checkResult" + new Date().getTime() + ".txt";
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -106,84 +104,58 @@ public class PrimaryController implements Initializable {
|
|
|
* 选择配置文件目录
|
|
|
* @param e
|
|
|
*/
|
|
|
- public void selectDirJsonInput(ActionEvent e) {
|
|
|
- DirectoryChooser dirChooser = new DirectoryChooser();
|
|
|
- dirChooser.setTitle("选择json文件目录");
|
|
|
+ public void selectObjInfoJsonInput(ActionEvent e) {
|
|
|
+ FileChooser fileChooser = new FileChooser();
|
|
|
+ fileChooser.setTitle("选择obj_infos.json文件");
|
|
|
|
|
|
- File folder = dirChooser.showDialog(paneRoot.getScene().getWindow());
|
|
|
+ fileChooser.getExtensionFilters().addAll(
|
|
|
+ new FileChooser.ExtensionFilter("json", "*.json"));
|
|
|
+ File file = fileChooser.showOpenDialog(paneRoot.getScene().getWindow());
|
|
|
|
|
|
- if(null != folder) {
|
|
|
- txfDirInput.setText(folder.getAbsolutePath());
|
|
|
+ if(null != file) {
|
|
|
+ txfObjInfosJson.setText(file.getAbsolutePath());
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void inputJsonFile(ActionEvent e) {
|
|
|
- txaContentInput.setText("");
|
|
|
- String projectId = txfProjectInput.getText();
|
|
|
- PhysicalObject physicalObject = null;
|
|
|
+ /**
|
|
|
+ * 厂商库值处理
|
|
|
+ * @param e
|
|
|
+ */
|
|
|
+ public void venderValueHandle(ActionEvent e) {
|
|
|
+ lblVenderTip.setText("");
|
|
|
+
|
|
|
+ String projectId = txfProjectVender.getText();
|
|
|
+
|
|
|
+ VenderInfo venderInfo = null;
|
|
|
if(projectId != null && projectId.trim().length() == 12 && projectId.startsWith("Pj")) {
|
|
|
- physicalObject = new PhysicalObject(projectId, projectId.substring(2));
|
|
|
+ venderInfo = new VenderInfo(projectId);
|
|
|
}else {
|
|
|
- txaContentInput.setText("项目id不合法!");
|
|
|
- txfProject.requestFocus();
|
|
|
+ lblVenderTip.setText("项目id不合法!");
|
|
|
+ txfProjectVender.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();
|
|
|
+ String jsonFilePath = txfObjInfosJson.getText();
|
|
|
+ if(jsonFilePath != null && jsonFilePath.trim().length() > 10) {
|
|
|
+ if(!jsonFilePath.endsWith(".json")) {
|
|
|
+ lblVenderTip.setText("文件格式无法识别!");
|
|
|
+ txfObjInfosJson.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");
|
|
|
+ File jsonFile = new File(jsonFilePath);
|
|
|
+ if(jsonFile.exists() && jsonFile.isFile()) {
|
|
|
+ Task<Boolean> task = TaskFactory.venderValueProcess(this, jsonFile, venderInfo);
|
|
|
+ new Thread(task).start();
|
|
|
+ }else {
|
|
|
+ lblVenderTip.setText("文件无法识别!文件不存在或已损坏");
|
|
|
+ txfObjInfosJson.requestFocus();
|
|
|
+ return;
|
|
|
}
|
|
|
- txaContentInput.setText(errorTips.toString());
|
|
|
+ }else {
|
|
|
+ lblVenderTip.setText("文件路径不合法!");
|
|
|
+ txfObjInfosJson.requestFocus();
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
- Task<Boolean> task = TaskFactory.jsonFileInput(this, jsonFileDir, physicalObject);
|
|
|
- new Thread(task).start();
|
|
|
}
|
|
|
|
|
|
/**
|