|
@@ -1,6 +1,7 @@
|
|
|
package com.persagy.filemove.app;
|
|
|
|
|
|
import com.persagy.filemove.dto.SagaFileMoveDTO;
|
|
|
+import com.persagy.filemove.dto.WorkerValidParam;
|
|
|
import com.persagy.filemove.service.SagaFileMoveService;
|
|
|
import com.persagy.filemove.util.StringTools;
|
|
|
import javafx.application.Application;
|
|
@@ -26,7 +27,16 @@ public class SagaFileMoveApp extends Application {
|
|
|
private static final Logger log = LoggerFactory.getLogger(SagaFileMoveApp.class);
|
|
|
|
|
|
private static int appWidth = 640;
|
|
|
- private static int appHeight = 520;
|
|
|
+ private static int appHeight = 560;
|
|
|
+
|
|
|
+ /** 数据平台默认systemId */
|
|
|
+ private static String sysId_dpf = "dataPlatform";
|
|
|
+ /** 数据平台默认密码 */
|
|
|
+ private static String secret_dpf = "9e0891a7a8c8e885";
|
|
|
+ /** revit默认systemId */
|
|
|
+ private static String sysId_rvt = "revit";
|
|
|
+ /** revit默认密码 */
|
|
|
+ private static String secret_rvt = "63afbef6906c342b";
|
|
|
|
|
|
private SagaFileMoveDTO dto = new SagaFileMoveDTO();
|
|
|
private SagaFileMoveService service = new SagaFileMoveService(dto);
|
|
@@ -60,20 +70,20 @@ public class SagaFileMoveApp extends Application {
|
|
|
private ChoiceBox cbObjInfoCodeArray = new ChoiceBox();
|
|
|
|
|
|
/** 文件服务from地址 */
|
|
|
- private TextField tfImgFromURL = new TextField("http://127.0.0.1:8080/image-service");
|
|
|
+ private TextField tfImgFromURL = new TextField("http://47.93.33.207:28888/image-service");
|
|
|
/** 文件服务from的systemId */
|
|
|
- private TextField tfImgFromSysId = new TextField("dataPlatform");
|
|
|
+ private TextField tfImgFromSysId = new TextField(sysId_rvt);
|
|
|
/** 文件服务from的secret */
|
|
|
- private TextField tfImgFromSecret = new TextField("9e0891a7a8c8e885");
|
|
|
+ private TextField tfImgFromSecret = new TextField(secret_rvt);
|
|
|
/** 接口类型 */
|
|
|
private ChoiceBox cbImgFromApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
|
|
|
|
|
|
/** 文件服务To地址 */
|
|
|
private TextField tfImgToURL = new TextField("http://127.0.0.1:8080/image-service");
|
|
|
/** 文件服务To的systemId */
|
|
|
- private TextField tfImgToSysId = new TextField("dataPlatform");
|
|
|
+ private TextField tfImgToSysId = new TextField(sysId_dpf);
|
|
|
/** 文件服务To的secret */
|
|
|
- private TextField tfImgToSecret = new TextField("9e0891a7a8c8e885");
|
|
|
+ private TextField tfImgToSecret = new TextField(secret_dpf);
|
|
|
/** 接口类型 */
|
|
|
private ChoiceBox cbImgToApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
|
|
|
|
|
@@ -83,6 +93,9 @@ public class SagaFileMoveApp extends Application {
|
|
|
private Button btnExecute = new Button("开始传输");
|
|
|
/** 执行信息 */
|
|
|
private Label lblExecute = new Label();
|
|
|
+ /** 进度指示器 */
|
|
|
+ private ProgressBar progressBar = new ProgressBar(0);
|
|
|
+
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
launch(args);
|
|
@@ -120,34 +133,43 @@ public class SagaFileMoveApp extends Application {
|
|
|
cbImgToApiType.setPrefWidth(appWidth * .15);
|
|
|
cbImgToApiType.getSelectionModel().select(1);
|
|
|
|
|
|
+ btnValid.setPrefSize(appWidth * .15, 30);
|
|
|
+ btnExecute.setPrefSize(appWidth * .15, 30);
|
|
|
+ progressBar.setPrefSize(appWidth * .65, 25);
|
|
|
+
|
|
|
btnValid.setOnAction(e -> {
|
|
|
+ progressBar.setProgress(-1);
|
|
|
validParam();
|
|
|
+ progressBar.setProgress(1);
|
|
|
});
|
|
|
|
|
|
btnExecute.setOnAction(e -> {
|
|
|
if(validParam()) {
|
|
|
- // 所有控件设置为不可操作
|
|
|
- disableSet(true, this);
|
|
|
+ // 记录当前参数
|
|
|
+ writeInfoToLogFile("执行参数:" + dto.toString());
|
|
|
|
|
|
// 执行资源迁移逻辑
|
|
|
service.resourceMove(this);
|
|
|
-
|
|
|
- // 所有控件设置为可操作
|
|
|
- disableSet(false, this);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
cbObjType.getSelectionModel().selectedIndexProperty().addListener((obv, ov, nv)->{
|
|
|
- cbObjInfoCodeArray.setItems(FXCollections.observableArrayList(objToInfoCode.get(cbObjType.getItems().get(nv.intValue()))));
|
|
|
+ String objType = cbObjType.getItems().get(nv.intValue()) + "";
|
|
|
+ cbObjInfoCodeArray.setItems(FXCollections.observableArrayList(objToInfoCode.get(objType)));
|
|
|
cbObjInfoCodeArray.getSelectionModel().selectFirst();
|
|
|
+
|
|
|
+ if("Fl".equals(objType)) {
|
|
|
+ tfImgFromSysId.setText(sysId_rvt);
|
|
|
+ tfImgFromSecret.setText(secret_rvt);
|
|
|
+ }else {
|
|
|
+ tfImgFromSysId.setText(sysId_dpf);
|
|
|
+ tfImgFromSecret.setText(secret_dpf);
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 资源转移逻辑
|
|
|
- */
|
|
|
- private void resourceMove() {
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 设置视图中的所有控件是否为不可编辑状态
|
|
@@ -172,37 +194,41 @@ public class SagaFileMoveApp extends Application {
|
|
|
* @return
|
|
|
*/
|
|
|
private boolean validParam() {
|
|
|
- //
|
|
|
+ showTipsInfo("");
|
|
|
+ boolean result = true;
|
|
|
+ WorkerValidParam worker = new WorkerValidParam(this);
|
|
|
+ worker.start();
|
|
|
+
|
|
|
if(StringTools.isBlank(dto.dpf.getValue()) || StringTools.isBlank(dto.pjId.getValue()) ||
|
|
|
StringTools.isBlank(dto.imgFromUrl.getValue()) || StringTools.isBlank(dto.imgFromSysId.getValue()) ||
|
|
|
StringTools.isBlank(dto.imgFromSecret.getValue()) || StringTools.isBlank(dto.imgToUrl.getValue()) ||
|
|
|
StringTools.isBlank(dto.imgToSysId.getValue()) || StringTools.isBlank(dto.imgToSecret.getValue())) {
|
|
|
showTipsError("必填参数不能为空!");
|
|
|
- return false;
|
|
|
+ result = false;
|
|
|
}
|
|
|
|
|
|
- if(!service.validParamDpfAndPj()) {
|
|
|
+ if(result && !service.validParamDpfAndPj(this)) {
|
|
|
showTipsError("获取不到项目信息!请确保数据平台地址和项目id参数正确。");
|
|
|
- return false;
|
|
|
+ result = false;
|
|
|
}
|
|
|
|
|
|
- if(!service.validParamImgFromUrl()) {
|
|
|
+ if(result && !service.validParamImgFromUrl()) {
|
|
|
showTipsError("[文件服务-From]访问不通!请确保URL正确。");
|
|
|
- return false;
|
|
|
+ result = false;
|
|
|
}
|
|
|
|
|
|
- if(!service.validParamImgToUrl()) {
|
|
|
+ if(result && !service.validParamImgToUrl()) {
|
|
|
showTipsError("[文件服务-To]访问不通!请确保URL正确。");
|
|
|
- return false;
|
|
|
+ result = false;
|
|
|
}
|
|
|
|
|
|
- if(dto.imgFromUrl.getValue().equals(dto.imgToUrl.getValue())) {
|
|
|
+ if(result && dto.imgFromUrl.getValue().equals(dto.imgToUrl.getValue())) {
|
|
|
showTipsWarn("参数校验通过。警告:两个文件服务的URL相同!");
|
|
|
}else {
|
|
|
showTipsSuccess("校验通过");
|
|
|
}
|
|
|
|
|
|
- return true;
|
|
|
+ return result;
|
|
|
}
|
|
|
|
|
|
public void showTipsSuccess(String info) {
|
|
@@ -229,10 +255,14 @@ public class SagaFileMoveApp extends Application {
|
|
|
log.warn(warnMsg);
|
|
|
}
|
|
|
|
|
|
- public void writeToLogFile(String msg) {
|
|
|
+ public void writeErrToLogFile(String msg) {
|
|
|
log.error(msg);
|
|
|
}
|
|
|
|
|
|
+ public void writeInfoToLogFile(String msg) {
|
|
|
+ log.info(msg);
|
|
|
+ }
|
|
|
+
|
|
|
public String getTips() {
|
|
|
return lblExecute.getText();
|
|
|
}
|
|
@@ -293,8 +323,9 @@ public class SagaFileMoveApp extends Application {
|
|
|
TitledPane paneImgTo = getImgTitlePane(false);
|
|
|
|
|
|
Pane paneExe = getExePane();
|
|
|
+ Pane paneConsole = getConsolePane();
|
|
|
|
|
|
- centerPane.getChildren().addAll(paneObjParam, paneImgFrom, paneImgTo, paneExe);
|
|
|
+ centerPane.getChildren().addAll(paneObjParam, paneImgFrom, paneImgTo, paneExe, paneConsole);
|
|
|
Insets nodeInsets = new Insets(0, 0, 15, 0);
|
|
|
VBox.setMargin(paneObjParam, nodeInsets);
|
|
|
VBox.setMargin(paneImgFrom, nodeInsets);
|
|
@@ -306,14 +337,25 @@ public class SagaFileMoveApp extends Application {
|
|
|
* @return
|
|
|
*/
|
|
|
private Pane getExePane() {
|
|
|
- HBox contentBox = new HBox(btnValid, btnExecute, lblExecute);
|
|
|
+ HBox contentBox = new HBox(btnValid, btnExecute, progressBar);
|
|
|
HBox.setMargin(btnExecute, new Insets(0, 20, 0, 15));
|
|
|
+ contentBox.setAlignment(Pos.CENTER_LEFT);
|
|
|
contentBox.setPadding(new Insets(15, 0, 0, 0));
|
|
|
|
|
|
return contentBox;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 获取提示信息输出面板
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private Pane getConsolePane() {
|
|
|
+ HBox contentBox = new HBox(lblExecute);
|
|
|
+ contentBox.setPadding(new Insets(15, 0, 0, 0));
|
|
|
+ return contentBox;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 生成包含数据平台、项目、对象配置参数的带标题的布局实例
|
|
|
* @return
|
|
|
*/
|