cuixubin 4 年之前
父節點
當前提交
276a668d3c

+ 72 - 30
src/main/java/com/persagy/filemove/app/SagaFileMoveApp.java

@@ -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
      */

+ 37 - 0
src/main/java/com/persagy/filemove/dto/WorkerValidParam.java

@@ -0,0 +1,37 @@
+package com.persagy.filemove.dto;
+
+import com.persagy.filemove.app.SagaFileMoveApp;
+import javafx.beans.property.SimpleDoubleProperty;
+
+public class WorkerValidParam extends Thread {
+    private SagaFileMoveApp app;
+    private SimpleDoubleProperty doubleProperty = new SimpleDoubleProperty(-1);
+
+    public WorkerValidParam(SagaFileMoveApp app) {
+        this.app = app;
+    }
+
+    public double getDoubleProperty() {
+        return doubleProperty.get();
+    }
+
+    public SimpleDoubleProperty doublePropertyProperty() {
+        return doubleProperty;
+    }
+
+    public void setDoubleProperty(double doubleProperty) {
+        this.doubleProperty.set(doubleProperty);
+    }
+
+    @Override
+    public void run() {
+        while("".equals(app.getTips())) {
+            try {
+                Thread.sleep(500);
+            } catch (InterruptedException e) {
+                e.printStackTrace();
+            }
+        }
+        setDoubleProperty(1.0);
+    }
+}

+ 34 - 15
src/main/java/com/persagy/filemove/service/SagaFileMoveService.java

@@ -30,16 +30,21 @@ public class SagaFileMoveService {
      * 检查数据平台地址和项目信息
      * @return
      */
-    public boolean validParamDpfAndPj() {
+    public boolean validParamDpfAndPj(SagaFileMoveApp app) {
         boolean result = false;
         Map<Object, Object> param = new HashMap<>();
         param.put("projectId", dto.pjId.getValue());
+
+        String reqUrl = dto.dpf.getValue() + url_pj_get;
+        String resp = null;
         try {
-            String resp = HttpTools.httpPostJson(dto.dpf.getValue() + url_pj_get, param);
+            resp = HttpTools.httpPostJson(reqUrl, param);
             if(null != resp && resp.contains(resp_success) && resp.contains(dto.pjId.getValue())) {
                 result = true;
             }
-        }catch (Exception e) {}
+        }catch (Exception e) {
+            app.writeErrToLogFile("url:" + reqUrl + ", param:" + param + ", result:" + resp + "errMsg:" + e.getMessage());
+        }
         return result;
     }
 
@@ -99,7 +104,7 @@ public class SagaFileMoveService {
                     for(TransErrDTO item : noFileSet) {
                         sb.append(JsonTools.beanToJson(item) + "\n");
                     }
-                    app.writeToLogFile(sb.toString());
+                    app.writeErrToLogFile(sb.toString());
                 }
 
                 if(nullKeyNum > 0) {
@@ -107,7 +112,7 @@ public class SagaFileMoveService {
                     for(TransErrDTO item : nullKeySet) {
                         sb.append(JsonTools.beanToJson(item) + "\n");
                     }
-                    app.writeToLogFile(sb.toString());
+                    app.writeErrToLogFile(sb.toString());
                 }
 
                 if(moveErrNum > 0) {
@@ -115,7 +120,7 @@ public class SagaFileMoveService {
                     for(TransErrDTO item : moveErrorSet) {
                         sb.append(JsonTools.beanToJson(item) + "\n");
                     }
-                    app.writeToLogFile(sb.toString());
+                    app.writeErrToLogFile(sb.toString());
                 }
             }else {
                 app.showTipsInfo(tips + " 执行结束,转移成功数:" + totalNum);
@@ -157,7 +162,7 @@ public class SagaFileMoveService {
         try {
             byte[] byteData = HttpTools.httpGetFile(getUrl);
             if(byteData != null) {
-                if(byteData.length == 17) {
+                if(byteData.length < 50 && ifNotExists(byteData)) {
                     // 文件不存在
                     noFileSet.add(new TransErrDTO(objId, key, "not exist", getUrl, ""));
                 }else {
@@ -190,10 +195,12 @@ public class SagaFileMoveService {
         JSONObject paramObj = new JSONObject();
 
         JSONObject criteria = new JSONObject();
-        criteria.put("type", JSONArray.parse("["+dto.objType.getValue()+"]"));
+        JSONArray typeArray = new JSONArray();
+        typeArray.add(dto.objType.getValue());
+        criteria.put("type", typeArray);
 
-        JSONObject returnInfos = new JSONObject();
-        returnInfos.put("returnInfos", JSONArray.parse("["+dto.objInfoCode.getValue()+"]"));
+        JSONArray returnInfos = new JSONArray();
+        returnInfos.add(dto.objInfoCode.getValue());
 
         paramObj.put("customInfo", true);
         paramObj.put("criteria", criteria);
@@ -205,6 +212,7 @@ public class SagaFileMoveService {
             app.showTipsInfo("查询数据平台对象完成。");
         }catch (Exception e){
             app.showTipsError("请求数据平台出错:" + e.getMessage());
+            app.writeErrToLogFile("url:" + reqUrl + ", param:" + paramObj + ", result:" + resp + "errMsg:" + e.getMessage());
         }
 
         if(null != resp) {
@@ -247,7 +255,7 @@ public class SagaFileMoveService {
      * @return
      */
     public boolean validParamImgFromUrl() {
-        return fileGetTest(dto.imgFromUrl.getValue(), dto.imgFromApiType.getValue(), dto.imgFromSysId.getValue(), testKey);
+        return fileGetTest(dto.imgFromUrl.getValue(),  dto.imgFromSysId.getValue());
     }
 
     /**
@@ -255,19 +263,30 @@ public class SagaFileMoveService {
      * @return
      */
     public boolean validParamImgToUrl() {
-        return fileGetTest(dto.imgToUrl.getValue(), dto.imgToApiType.getValue(), dto.imgToSysId.getValue(), testKey);
+        return fileGetTest(dto.imgToUrl.getValue(), dto.imgToSysId.getValue());
     }
 
-    private boolean fileGetTest(String base, String type, String sysId, String key) {
+    private boolean fileGetTest(String base, String sysId) {
         boolean result = false;
-        String url = url_source_get.replace("BASE", base).replace("TYPE", type).replace("SYSID", sysId).replace("KEY", key);
+        String url = base + url_source_get.replace("TYPE", "file").replace("SYSID", sysId) + testKey;
         try {
             byte[] byteData = HttpTools.httpGetFile(url);
-            if(byteData != null && byteData.length == 17) {
+            if(byteData != null && ifNotExists(byteData)) {
                 result = true;
             }
         }catch (Exception e){}
 
         return result;
     }
+
+    /**
+     * 判断byte数组是否包含“not existed”字符串
+     * @param byteData
+     * @return true-包含;false-不包含
+     */
+    private boolean ifNotExists(byte[] byteData) {
+        String s = new String(byteData);
+        System.out.println(s);
+        return s.contains("not existed");
+    }
 }

+ 4 - 4
src/main/java/com/persagy/filemove/util/HttpTools.java

@@ -33,16 +33,16 @@ public class HttpTools {
 
 	static {
 		// 设置整个连接池最大连接数 根据自己的场景决定
-		CONNECTION_MANAGER.setMaxTotal(200);
+		CONNECTION_MANAGER.setMaxTotal(100);
 		// 每个路由(网站)的最大连接数
-		CONNECTION_MANAGER.setDefaultMaxPerRoute(100);
+		CONNECTION_MANAGER.setDefaultMaxPerRoute(50);
 		RequestConfig requestConfig = RequestConfig.custom()
 				// 与远程主机连接建立时间,三次握手完成时间
 				.setConnectTimeout(5000)
 				// 建立连接后,数据包传输过程中,两个数据包之间间隔的最大时间
-				.setSocketTimeout(5000)
+				.setSocketTimeout(10000)
 				// httpClient使用连接池来管理连接,这个时间就是从连接池获取连接的超时时间
-				.setConnectionRequestTimeout(6000).build();
+				.setConnectionRequestTimeout(5000).build();
 		HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONNECTION_MANAGER)
 				.setDefaultRequestConfig(requestConfig).build();
 	}