cuixubin 4 年之前
父節點
當前提交
fa5048a589

+ 58 - 116
src/main/java/com/persagy/filemove/app/SagaFileMoveApp.java

@@ -1,10 +1,9 @@
 package com.persagy.filemove.app;
 
 import com.persagy.filemove.dto.SagaFileMoveDTO;
+import com.persagy.filemove.dto.WorkerFactory;
 import com.persagy.filemove.service.SagaFileMoveService;
-import com.persagy.filemove.util.StringTools;
 import javafx.application.Application;
-import javafx.application.Platform;
 import javafx.collections.FXCollections;
 import javafx.concurrent.Task;
 import javafx.geometry.Insets;
@@ -29,6 +28,7 @@ public class SagaFileMoveApp extends Application {
 
     private static int appWidth = 640;
     private static int appHeight = 560;
+    public static SagaFileMoveDTO dto = new SagaFileMoveDTO();
 
     /** 数据平台默认systemId */
     private static String sysId_dpf = "dataPlatform";
@@ -39,8 +39,7 @@ public class SagaFileMoveApp extends Application {
     /** revit默认密码 */
     private static String secret_rvt = "63afbef6906c342b";
 
-    private SagaFileMoveDTO dto = new SagaFileMoveDTO();
-    private SagaFileMoveService service = new SagaFileMoveService(dto);
+    private SagaFileMoveService service = new SagaFileMoveService();
 
     /** 文件服务上传下载接口类型 */
     private static final String[] apiTypes = {"default", "file", "image"};
@@ -62,7 +61,7 @@ public class SagaFileMoveApp extends Application {
     private TextField tfDPF = new TextField("http://api.sagacloud.cn/data-platform-3");
 
     /** 项目id */
-    private TextField tfPjId = new TextField("Pj1101010001");
+    private TextField tfPjId = new TextField("Pj3101050003");
     /** 项目密码 */
     private TextField tfPjSecret = new TextField();
     /** 对象类型 */
@@ -80,7 +79,7 @@ public class SagaFileMoveApp extends Application {
     private ChoiceBox cbImgFromApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
 
     /** 文件服务To地址 */
-    private TextField tfImgToURL = new TextField("http://127.0.0.1:8080/image-service");
+    private TextField tfImgToURL = new TextField("http://27.115.36.114:9909/image-service");
     /** 文件服务To的systemId */
     private TextField tfImgToSysId = new TextField(sysId_dpf);
     /** 文件服务To的secret */
@@ -93,9 +92,11 @@ public class SagaFileMoveApp extends Application {
     /** 文件传输执行按钮 */
     private Button btnExecute = new Button("开始传输");
     /** 执行信息 */
-    private Label lblExecute = new Label();
-    /** 进度指示器 */
-    private ProgressBar progressBar = new ProgressBar(0);
+    private Label lblExecute_sts = new Label();
+    /** 提示信息 */
+    private Label lblTips_sts = new Label();
+
+    private ProgressBar progressBar_sts = new ProgressBar(0);
 
     public static void main(String[] args) {
         launch(args);
@@ -135,29 +136,44 @@ public class SagaFileMoveApp extends Application {
 
         btnValid.setPrefSize(appWidth * .15, 30);
         btnExecute.setPrefSize(appWidth * .15, 30);
-        progressBar.setPrefSize(appWidth * .65, 25);
 
+        progressBar_sts.setPrefWidth(appWidth * .55);
+
+        // 点击验证参数按钮
         btnValid.setOnAction(e -> {
-            progressBar.progressProperty().unbind();
-            progressBar.setProgress(0);
-            Task<Boolean> worker = paramValidWorker();
-            progressBar.progressProperty().bind(worker.progressProperty());
-            worker.messageProperty().addListener((obv, ov, nv)->{
-                System.out.println(nv);
-            });
+            disableSet(true);
+            lblTips_sts.textProperty().unbind();
+            lblTips_sts.setText("");
+            lblExecute_sts.textProperty().unbind();
+            progressBar_sts.progressProperty().unbind();
+            progressBar_sts.setProgress(0);
+
+            showTipsInfo("校验参数...");
+
+            Task<Boolean> worker = WorkerFactory.getValidParamWorker(this);
+            progressBar_sts.progressProperty().bind(worker.progressProperty());
             new Thread(worker).start();
         });
 
-
+        // 点击文件迁移按钮
         btnExecute.setOnAction(e -> {
-            String errorMsg = getParamValidResult();
-            if(errorMsg != null && errorMsg.startsWith("success")) {
-                // 记录当前参数
-                writeInfoToLogFile("执行参数:" + dto.toString());
+            disableSet(true);
 
-                // 执行资源迁移逻辑
-                service.resourceMove(this);
-            }
+            lblTips_sts.textProperty().unbind();
+            lblTips_sts.setText("");
+
+            lblExecute_sts.textProperty().unbind();
+            lblExecute_sts.setText("");
+
+            progressBar_sts.progressProperty().unbind();
+            progressBar_sts.setProgress(-1);
+
+            Task<Boolean> worker = WorkerFactory.getTransRateWorker(this);
+            lblTips_sts.textProperty().bind(worker.titleProperty());
+            lblExecute_sts.textProperty().bind(worker.messageProperty());
+            progressBar_sts.progressProperty().bind(worker.progressProperty());
+
+            new Thread(worker).start();
         });
 
         cbObjType.getSelectionModel().selectedIndexProperty().addListener((obv, ov, nv)->{
@@ -173,123 +189,48 @@ public class SagaFileMoveApp extends Application {
                 tfImgFromSecret.setText(secret_dpf);
             }
         });
-    }
 
-    public Task<Boolean> paramValidWorker() {
-        return new Task<Boolean>() {
-
-            @Override
-            protected Boolean call() throws Exception {
-            updateProgress(-1, 1);
-            String result = getParamValidResult();
-            updateProgress(1, 1);
-
-            Platform.runLater(() -> {
-                if(result.startsWith("success")) {
-                    if(result.contains("warning")) {
-                        showTipsWarn(result);
-                    }else {
-                        showTipsSuccess(result);
-                    }
-                }else {
-                    showTipsError(result);
-                }
-            });
-            return true;
-            }
-        };
     }
 
 
     /**
      * 设置视图中的所有控件是否为不可编辑状态
      * @param disable true-控件不可编辑;false-控件可编辑
-     * @param father
      */
-    private void disableSet(boolean disable, SagaFileMoveApp father) {
+    public void disableSet(boolean disable) {
         Field[] allFields = SagaFileMoveApp.class.getDeclaredFields();
 
         for(Field field : allFields) {
+            if(field.getName().endsWith("_sts")) {
+                continue;
+            }
             try {
-                if(Node.class.isAssignableFrom(field.get(father).getClass())) {
-                    Node node = (Node) field.get(father);
+                if(Node.class.isAssignableFrom(field.get(this).getClass())) {
+                    Node node = (Node) field.get(this);
                     node.setDisable(disable);
                 }
             }catch (Exception e) {}
         }
     }
 
-    /**
-     * 校验参数
-     * @return 参数无误,返回"success-信息";
-     */
-    private String getParamValidResult() {
-        String errorMsg = null;
-
-        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())) {
-            errorMsg = "必填参数不能为空!";
-        }
-
-        if(errorMsg == null && !service.validParamDpfAndPj(this)) {
-            errorMsg = "获取不到项目信息!请确保数据平台地址和项目id参数正确。";
-        }
-
-        if(errorMsg == null && !service.validParamImgFromUrl()) {
-            errorMsg = "[文件服务-From]访问不通!请确保URL正确。";
-        }
-
-        if(errorMsg == null && !service.validParamImgToUrl()) {
-            errorMsg = "[文件服务-To]访问不通!请确保URL正确。";
-        }
-
-        if(errorMsg == null) {
-            if(dto.imgFromUrl.getValue().equals(dto.imgToUrl.getValue())) {
-                errorMsg = "success-校验通过。warning-两个文件服务的URL相同!";
-            }else {
-                errorMsg = "success-校验通过";
-            }
-        }
-
-        return errorMsg;
-    }
-
     public void showTipsSuccess(String info) {
-        lblExecute.setTextFill(Color.DARKGREEN);
-        lblExecute.setText(info);
-        log.info(info);
+        lblExecute_sts.setTextFill(Color.DARKGREEN);
+        lblExecute_sts.setText(info);
     }
 
     public void showTipsInfo(String info) {
-        lblExecute.setTextFill(Color.BLACK);
-        lblExecute.setText(info);
-        log.info(info);
+        lblExecute_sts.setTextFill(Color.BLACK);
+        lblExecute_sts.setText(info);
     }
 
     public void showTipsError(String errMsg) {
-        lblExecute.setTextFill(Color.RED);
-        lblExecute.setText(errMsg);
-        log.error(errMsg);
+        lblExecute_sts.setTextFill(Color.RED);
+        lblExecute_sts.setText(errMsg);
     }
 
     public void showTipsWarn(String warnMsg) {
-        lblExecute.setTextFill(Color.DARKORANGE);
-        lblExecute.setText(warnMsg);
-        log.warn(warnMsg);
-    }
-
-    public void writeErrToLogFile(String msg) {
-        log.error(msg);
-    }
-
-    public void writeInfoToLogFile(String msg) {
-        log.info(msg);
-    }
-
-    public String getTips() {
-        return lblExecute.getText();
+        lblExecute_sts.setTextFill(Color.DARKORANGE);
+        lblExecute_sts.setText(warnMsg);
     }
 
     /**
@@ -362,8 +303,9 @@ public class SagaFileMoveApp extends Application {
      * @return
      */
     private Pane getExePane() {
-        HBox contentBox = new HBox(btnValid, btnExecute, progressBar);
+        HBox contentBox = new HBox(btnValid, btnExecute, progressBar_sts, lblTips_sts);
         HBox.setMargin(btnExecute, new Insets(0, 20, 0, 15));
+        HBox.setMargin(progressBar_sts, new Insets(0, 5, 0, 0));
         contentBox.setAlignment(Pos.CENTER_LEFT);
         contentBox.setPadding(new Insets(15, 0, 0, 0));
 
@@ -375,7 +317,7 @@ public class SagaFileMoveApp extends Application {
      * @return
      */
     private Pane getConsolePane() {
-        HBox contentBox = new HBox(lblExecute);
+        HBox contentBox = new HBox(lblExecute_sts);
         contentBox.setPadding(new Insets(15, 0, 0, 0));
         return contentBox;
     }

+ 0 - 39
src/main/java/com/persagy/filemove/dto/ProgressWorker.java

@@ -1,39 +0,0 @@
-package com.persagy.filemove.dto;
-
-import com.persagy.filemove.app.SagaFileMoveApp;
-import javafx.concurrent.Task;
-
-public class ProgressWorker {
-    public static Task<Boolean> paramValidWorker(SagaFileMoveApp app) {
-        return new Task<Boolean>() {
-
-            @Override
-            protected Boolean call() throws Exception {
-                int num = 1;
-                long sleepTime = 200;
-                Double nextSleepTime = 200.0;
-
-                while(!"".equals(app.getTips())) {
-                    updateProgress(num++, 100);
-                    try {
-                        Thread.sleep(sleepTime);
-                    } catch (InterruptedException e) {
-                        e.printStackTrace();
-                    }
-                    nextSleepTime = nextSleepTime * 1.06;
-                    sleepTime = nextSleepTime.longValue();
-
-                    if(num == 101) {
-                        break;
-                    }
-                }
-                for(int i=0; i<5; i++) {
-                    updateMessage("sleep 0.5s -- " + i);
-                    updateProgress(i + 1, 5);
-                    Thread.sleep(100);
-                }
-                return true;
-            }
-        };
-    }
-}

+ 14 - 0
src/main/java/com/persagy/filemove/dto/ResourceDTO.java

@@ -0,0 +1,14 @@
+package com.persagy.filemove.dto;
+
+import java.util.HashMap;
+import java.util.Map;
+
+/**
+ * 对象与文件key信息查询结果DTO
+ */
+public class ResourceDTO {
+    /** 错误信息 */
+    public String errorMsg;
+    /** {对象id:资源key} */
+    public Map<String, String> obj_key = new HashMap<>();
+}

+ 12 - 1
src/main/java/com/persagy/filemove/dto/SagaFileMoveDTO.java

@@ -1,5 +1,6 @@
 package com.persagy.filemove.dto;
 
+import com.persagy.filemove.util.StringTools;
 import javafx.beans.property.SimpleStringProperty;
 
 public class SagaFileMoveDTO {
@@ -30,7 +31,17 @@ public class SagaFileMoveDTO {
     /** 文件服务To的接口类型 */
     public SimpleStringProperty imgToApiType = new SimpleStringProperty();
 
-
+    
+    public boolean validNecessaryParam() {
+        if(StringTools.isBlank(dpf.getValue()) || StringTools.isBlank(pjId.getValue()) ||
+                StringTools.isBlank(imgFromUrl.getValue()) || StringTools.isBlank(imgFromSysId.getValue()) ||
+                StringTools.isBlank(imgFromSecret.getValue()) || StringTools.isBlank(imgToUrl.getValue()) ||
+                StringTools.isBlank(imgToSysId.getValue()) || StringTools.isBlank(imgToSecret.getValue())) {
+            return false;
+        }
+        return true;
+    }
+    
     @Override
     public String toString() {
         return "SagaFileMoveDTO{" +

+ 155 - 0
src/main/java/com/persagy/filemove/dto/WorkerFactory.java

@@ -0,0 +1,155 @@
+package com.persagy.filemove.dto;
+
+import com.persagy.filemove.app.SagaFileMoveApp;
+import com.persagy.filemove.service.SagaFileMoveService;
+import com.persagy.filemove.util.JsonTools;
+import javafx.application.Platform;
+import javafx.concurrent.Task;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.util.HashSet;
+import java.util.Map;
+import java.util.Set;
+
+public class WorkerFactory {
+    private static final Logger log = LoggerFactory.getLogger(WorkerFactory.class);
+
+    /**
+     * 获取执行参数校验的worker线程实例
+     * @param app
+     * @return
+     */
+    public static Task<Boolean> getValidParamWorker(SagaFileMoveApp app) {
+        return new Task<Boolean>() {
+            @Override
+            protected Boolean call() throws Exception {
+                updateProgress(-1, 1);
+                String result = SagaFileMoveService.getParamValidResult();
+                updateProgress(0, 1);
+
+                Platform.runLater(()->{
+                    if(result.startsWith("success")) {
+                        if(result.contains("warning")) {
+                            app.showTipsWarn(result);
+                        }else {
+                            app.showTipsSuccess(result);
+                        }
+                    }else {
+                        app.showTipsError(result);
+                    }
+                });
+
+                app.disableSet(false);
+
+                return true;
+            }
+        };
+    }
+
+
+    public static Task<Boolean> getTransRateWorker(SagaFileMoveApp app) {
+        return new Task<Boolean>() {
+            @Override
+            protected Boolean call() throws Exception {
+                boolean paramOK = false;
+                updateMessage("准备...");
+                updateProgress(-1, 1);
+                Thread.sleep(1000);
+
+                // 获取校验参数结果
+                String result = SagaFileMoveService.getParamValidResult();
+
+                if(result.startsWith("success")) {
+                    // 校验通过
+
+                    updateMessage("获取待迁移资源的key信息...");
+                    Thread.sleep(1000);
+
+                    ResourceDTO resourceDTO = SagaFileMoveService.requestSourceKey();
+
+                    updateProgress(0, 1);
+                    if(null != resourceDTO.errorMsg) {
+                        // 获取资源key信息出错
+                        updateMessage(resourceDTO.errorMsg);
+                    }else {
+                        Map<String, String> obj_key = resourceDTO.obj_key;
+
+                        if(obj_key.isEmpty()) {
+                            // 没有要转移的数据
+                            updateMessage("结束。查询到"+SagaFileMoveApp.dto.objType+"对象记录数为0。");
+                        }else {
+                            updateMessage("开始迁移数据,资源文件总数量:" + obj_key.size());
+                            updateTitle("0.0%");
+
+                            // 文件不存在信息集合
+                            Set<TransErrDTO> noFileSet = new HashSet<>();
+                            // 资源key为null信息集合
+                            Set<TransErrDTO> nullKeySet = new HashSet<>();
+                            // 文件转移失败信息集合
+                            Set<TransErrDTO> moveErrorSet = new HashSet<>();
+
+                            // 要转移资源的总数量
+                            int totalNum = obj_key.size();
+
+                            int movedNum = 0;
+                            for(String objId : obj_key.keySet()) {
+                                SagaFileMoveService.fileMove(objId, obj_key.get(objId), noFileSet, nullKeySet, moveErrorSet);
+                                System.out.println("--- " + movedNum);
+                                updateProgress(++movedNum, totalNum);
+                                updateTitle(String.format("%.1f", 100.0 * movedNum / totalNum)+"%");
+                            }
+
+                            int noFileNum = noFileSet.size(), nullKeyNum = nullKeySet.size(), moveErrNum = moveErrorSet.size();
+                            int errorNum = noFileNum + nullKeyNum + moveErrNum;
+
+                            if(errorNum > 0) {
+
+                                StringBuilder sb = null;
+
+                                if(noFileNum > 0) {
+                                    sb = new StringBuilder("对象关联的文件不存在的数量:" + noFileNum + "。详情:\n");
+                                    for(TransErrDTO item : noFileSet) {
+                                        sb.append(JsonTools.beanToJson(item) + "\n");
+                                    }
+                                    log.error(sb.toString());
+                                }
+
+                                if(nullKeyNum > 0) {
+                                    sb = new StringBuilder("对象关联文件key为空的数量:" + nullKeyNum + "。详情:\n");
+                                    for(TransErrDTO item : nullKeySet) {
+                                        sb.append(JsonTools.beanToJson(item) + "\n");
+                                    }
+                                    log.error(sb.toString());
+                                }
+
+                                if(moveErrNum > 0) {
+                                    sb = new StringBuilder("文件迁移出错的数量:" + moveErrNum + "。详情:\n");
+                                    for(TransErrDTO item : moveErrorSet) {
+                                        sb.append(JsonTools.beanToJson(item) + "\n");
+                                    }
+                                    log.error(sb.toString());
+                                }
+                            }
+
+                            if(errorNum > 0) {
+                                updateMessage("迁移完成。共:" + totalNum + ", 出错:" + errorNum + "。详情请见日志信息。");
+                            }else {
+                                updateMessage("迁移完成。");
+                            }
+                        }
+                    }
+                }else {
+                    // 校验失败
+                    updateProgress(0, 1);
+                    updateMessage(result);
+                }
+
+                app.disableSet(false);
+
+                return true;
+            }
+        };
+    }
+
+}

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

@@ -1,46 +0,0 @@
-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(0);
-
-    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() {
-        int num = 1;
-        long sleepTime = 200;
-        Double nextSleepTime = 200.0;
-        while("".equals(app.getTips())) {
-            setDoubleProperty(num++ / 100.0);
-            try {
-                Thread.sleep(sleepTime);
-            } catch (InterruptedException e) {
-                e.printStackTrace();
-            }
-            nextSleepTime = nextSleepTime * 1.06;
-            sleepTime = nextSleepTime.longValue();
-
-            if(num == 101) {
-                break;
-            }
-        }
-    }
-}

+ 149 - 139
src/main/java/com/persagy/filemove/service/SagaFileMoveService.java

@@ -3,204 +3,210 @@ package com.persagy.filemove.service;
 import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
 import com.persagy.filemove.app.SagaFileMoveApp;
-import com.persagy.filemove.dto.SagaFileMoveDTO;
+import com.persagy.filemove.dto.ResourceDTO;
 import com.persagy.filemove.dto.TransErrDTO;
 import com.persagy.filemove.util.HttpTools;
 import com.persagy.filemove.util.JsonTools;
+import javafx.beans.property.SimpleStringProperty;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.util.HashMap;
-import java.util.HashSet;
 import java.util.Map;
 import java.util.Set;
 
 public class SagaFileMoveService {
-    private SagaFileMoveDTO dto;
-    private static final String resp_success = "success";
-    private static final String testKey = "persagyAndSagaTest2020121130";
-    private static final String url_pj_get = "/mng/project/query";
-    private static final String url_obj_query = "/object/subset_query?projectId=PJID&secret=SEC";
-    private static final String url_source_get = "/common/TYPE_get?systemId=SYSID&key=";
-    private static final String url_source_send = "/common/TYPE_upload?systemId=SYSID&secret=SEC&overwrite=true&key=";
-
-    public SagaFileMoveService(SagaFileMoveDTO dto) {
-        this.dto = dto;
-    }
+    private static final Logger log = LoggerFactory.getLogger(SagaFileMoveService.class);
+    public static final String resp_success = "success";
+    public static final String testKey = "persagyAndSagaTest2020121130";
+    public static final String url_pj_get = "/mng/project/query";
+    public static final String url_obj_query = "/object/subset_query?projectId=PJID&secret=SEC";
+    public static final String url_source_get = "/common/TYPE_get?systemId=SYSID&key=";
+    public static final String url_source_send = "/common/TYPE_upload?systemId=SYSID&secret=SEC&overwrite=true&key=";
+
+    public static SimpleStringProperty rateProperty = new SimpleStringProperty("");
+
 
     /**
      * 检查数据平台地址和项目信息
      * @return
      */
-    public boolean validParamDpfAndPj(SagaFileMoveApp app) {
+    public static boolean validParamDpfAndPj() {
         boolean result = false;
         Map<Object, Object> param = new HashMap<>();
-        param.put("projectId", dto.pjId.getValue());
+        param.put("projectId", SagaFileMoveApp.dto.pjId.getValue());
 
-        String reqUrl = dto.dpf.getValue() + url_pj_get;
+        String reqUrl = SagaFileMoveApp.dto.dpf.getValue() + url_pj_get;
         String resp = null;
         try {
             resp = HttpTools.httpPostJson(reqUrl, param);
-            if(null != resp && resp.contains(resp_success) && resp.contains(dto.pjId.getValue())) {
+            if(null != resp && resp.contains(resp_success) && resp.contains(SagaFileMoveApp.dto.pjId.getValue())) {
                 result = true;
             }
         }catch (Exception e) {
-            app.writeErrToLogFile("url:" + reqUrl + ", param:" + param + ", result:" + resp + "errMsg:" + e.getMessage());
+            log.error("url:" + reqUrl + ", param:" + param + ", result:" + resp + "errMsg:" + e.getMessage());
         }
         return result;
     }
 
     /**
-     * 资源转移逻辑
+     * 校验参数
+     * @return 参数无误,返回"success-信息";
      */
-    public void resourceMove(SagaFileMoveApp app) {
-        final String tipPrefix = "文件迁移:";
-        Map<String, String> obj_key = requestSourceKey(app);
-        if(!obj_key.isEmpty()) {
-            int totalNum = obj_key.size();
-
-            // 文件不存在对象id集合
-            Set<TransErrDTO> noFileSet = new HashSet<>();
-            // 资源key为null的对象id集合
-            Set<TransErrDTO> nullKeySet = new HashSet<>();
-            // 文件转移失败的对象id集合
-            Set<TransErrDTO> moveErrorSet = new HashSet<>();
-
-            int handleIndex = 1;
-
-            // 默认使用image_get下载文件
-            String getApiType = "image";
-            if("file".equals(dto.imgFromApiType.getValue())) {
-                getApiType = "file";
-            }
-
-            // 默认使用file_upload上传文件
-            String toImgApi = "file";
-            if("image".equals(dto.imgToApiType.getValue())) {
-                toImgApi = "image";
-            }
-
-            String getUrl = dto.imgFromUrl.getValue() + url_source_get;
-            getUrl = getUrl.replace("TYPE", getApiType)
-                    .replace("SYSID", dto.imgFromSysId.getValue());
-
-            for(String objId : obj_key.keySet()) {
-                app.showTipsInfo(tipPrefix + handleIndex + " / " + totalNum);
+    public static String getParamValidResult() {
+        String errorMsg = null;
 
-                fileMove(objId, obj_key.get(objId), getUrl, toImgApi, noFileSet, nullKeySet, moveErrorSet);
-
-                handleIndex ++;
-            }
-
-            String tips = app.getTips();
-            int noFileNum = noFileSet.size(), nullKeyNum = nullKeySet.size(), moveErrNum = moveErrorSet.size();
-            int errorNum = noFileNum + nullKeyNum + moveErrNum;
-            if(errorNum > 0) {
-                tips = tips + " 执行结束,转移失败数:" + (totalNum - errorNum) + "。详情见日志文件。";
-                app.showTipsError(tips);
+        if(!SagaFileMoveApp.dto.validNecessaryParam()) {
+            errorMsg = "必填参数不能为空!";
+        }
 
-                StringBuilder sb = null;
+        if(errorMsg == null && !validParamDpfAndPj()) {
+            errorMsg = "获取不到项目信息!请确保数据平台地址和项目id参数正确。";
+        }
 
-                if(noFileNum > 0) {
-                    sb = new StringBuilder("对象关联的文件不存在的数量:" + noFileNum + "。详情:\n");
-                    for(TransErrDTO item : noFileSet) {
-                        sb.append(JsonTools.beanToJson(item) + "\n");
-                    }
-                    app.writeErrToLogFile(sb.toString());
-                }
+        if(errorMsg == null && !validParamImgFromUrl()) {
+            errorMsg = "[文件服务-From]访问不通!请确保URL正确。";
+        }
 
-                if(nullKeyNum > 0) {
-                    sb = new StringBuilder("对象关联文件key为空的数量:" + nullKeyNum + "。详情:\n");
-                    for(TransErrDTO item : nullKeySet) {
-                        sb.append(JsonTools.beanToJson(item) + "\n");
-                    }
-                    app.writeErrToLogFile(sb.toString());
-                }
+        if(errorMsg == null && !validParamImgToUrl()) {
+            errorMsg = "[文件服务-To]访问不通!请确保URL正确。";
+        }
 
-                if(moveErrNum > 0) {
-                    sb = new StringBuilder("文件迁移出错的数量:" + moveErrNum + "。详情:\n");
-                    for(TransErrDTO item : moveErrorSet) {
-                        sb.append(JsonTools.beanToJson(item) + "\n");
-                    }
-                    app.writeErrToLogFile(sb.toString());
-                }
+        if(errorMsg == null) {
+            if(SagaFileMoveApp.dto.imgFromUrl.getValue().equals(SagaFileMoveApp.dto.imgToUrl.getValue())) {
+                errorMsg = "success-校验通过。warning-两个文件服务的URL相同!";
             }else {
-                app.showTipsInfo(tips + " 执行结束,转移成功数:" + totalNum);
+                errorMsg = "success-校验通过";
             }
         }
+
+        return errorMsg;
     }
 
     /**
      * 在两个文件服务器之间转移文件
      * @param objId 对象id
      * @param key 文件资源的key
-     * @param getUrl 获取资源的url
-     * @param toImgApi 上传文件使用的接口类型
-     * @param noFileSet 文件不存在对象id集合
-     * @param nullKeySet 资源key为null的对象id集合
-     * @param moveErrorSet 文件转移失败的对象id集合
+     * @param noFileSet 文件不存在错误信息集合
+     * @param nullKeySet 资源key为null的信息集合
+     * @param moveErrorSet 文件转移失败的信息集合
      */
-    private void fileMove(String objId, String key, String getUrl, String toImgApi, Set<TransErrDTO> noFileSet, Set<TransErrDTO> nullKeySet, Set<TransErrDTO> moveErrorSet) {
+    public static void fileMove(String objId, String key, Set<TransErrDTO> noFileSet, Set<TransErrDTO> nullKeySet, Set<TransErrDTO> moveErrorSet) {
         if(key == null || key.trim().length() == 0) {
             // 文件资源key值为空
             nullKeySet.add(new TransErrDTO(objId, key, "", "", ""));
             return;
         }
 
-        getUrl = getUrl + key;
+        String getImgUrl = buildGetResourceUrl(key);
+        String sendUrl = buildUploadResourceUrl(key);
 
-        if(key.endsWith(".jsonz")) {
-            // 对于.jsonz文件,从file_get接口获取
-            getUrl = getUrl.replace("image_get","file_get");
+        byte[] resourceByteData = null;
+
+        try {
+            Thread.sleep(3000);
+            resourceByteData = HttpTools.httpGetFile(getImgUrl);
+        }catch (Exception e) {
+            e.printStackTrace();
+            moveErrorSet.add(new TransErrDTO(objId, key, "getResourceError:" + e.getMessage(), getImgUrl, sendUrl));
+        }
+
+        if(resourceByteData != null) {
+            if(resourceByteData.length < 50 && ifNotExists(resourceByteData)) {
+                // 文件不存在
+                noFileSet.add(new TransErrDTO(objId, key, "resourceNotExist", getImgUrl, ""));
+            }else {
+                String uploadResult = null;
+
+                try {
+                    uploadResult = HttpTools.httpPostRequest(sendUrl, resourceByteData);
+                }catch (Exception e){
+                    e.printStackTrace();
+                    // 文件转移报错
+                    moveErrorSet.add(new TransErrDTO(objId, key, "uploadResourceError:" + e.getMessage(), getImgUrl, sendUrl));
+                }
+
+                if(null == uploadResult || !uploadResult.contains(resp_success)) {
+                    // 文件转移失败
+                    moveErrorSet.add(new TransErrDTO(objId, key, "uploadResourceFailed:" + uploadResult, getImgUrl, sendUrl));
+                }
+            }
+        }
+    }
+
+    /**
+     * 获取上传资源Url
+     * @param key 资源key
+     * @return
+     */
+    private static String buildUploadResourceUrl(String key) {
+        // 默认使用file_upload上传文件
+        String toImgApi = "file";
+        if("image".equals(SagaFileMoveApp.dto.imgToApiType.getValue())) {
+            toImgApi = "image";
         }
 
-        String sendUrl = dto.imgToUrl.getValue() + url_source_send;
+        String sendUrl = SagaFileMoveApp.dto.imgToUrl.getValue() + url_source_send;
         sendUrl = sendUrl.replace("TYPE", toImgApi)
-                .replace("SYSID", dto.imgToSysId.getValue())
-                .replace("SEC", dto.imgToSecret.getValue())
+                .replace("SYSID", SagaFileMoveApp.dto.imgToSysId.getValue())
+                .replace("SEC", SagaFileMoveApp.dto.imgToSecret.getValue())
                 + key;
 
+        return sendUrl;
+    }
 
-        try {
-            byte[] byteData = HttpTools.httpGetFile(getUrl);
-            if(byteData != null) {
-                if(byteData.length < 50 && ifNotExists(byteData)) {
-                    // 文件不存在
-                    noFileSet.add(new TransErrDTO(objId, key, "not exist", getUrl, ""));
-                }else {
-                    String uploadResult = HttpTools.httpPostRequest(sendUrl, byteData);
-                    if(null == uploadResult || !uploadResult.contains(resp_success)) {
-                        // 文件转移失败
-                        moveErrorSet.add(new TransErrDTO(objId, key, "downloadSuccess uploadError", getUrl, sendUrl));
-                    }
-                }
-            }
-        }catch (Exception e){
-            // 文件转移报错
-            moveErrorSet.add(new TransErrDTO(objId, key, "serviceError:" + e.getMessage(), getUrl, sendUrl));
+    /**
+     * 构建获取资源的Url
+     * @param key 文件资源的key
+     * @return
+     */
+    private static String buildGetResourceUrl(String key) {
+        // 下载资源使用的接口,默认使用image_get接口
+        String getImgApi = "image";
+
+        if("file".equals(SagaFileMoveApp.dto.imgFromApiType.getValue())) {
+            // UI指定使用file_get下载文件
+            getImgApi = "file";
         }
+
+        // 获取资源的url
+        String getImgUrl = SagaFileMoveApp.dto.imgFromUrl.getValue() + url_source_get;
+        getImgUrl = getImgUrl.replace("TYPE", getImgApi)
+                .replace("SYSID", SagaFileMoveApp.dto.imgFromSysId.getValue());
+
+        getImgUrl = getImgUrl + key;
+
+        if(key.endsWith(".jsonz")) {
+            // 对于.jsonz文件,从file_get接口获取
+            getImgUrl = getImgUrl.replace("image_get","file_get");
+        }
+
+        return getImgUrl;
     }
 
     /**
      * 从数据平台获取对象关联的资源key
-     * @param app
      * @return
      */
-    private Map<String, String> requestSourceKey(SagaFileMoveApp app) {
+    public static ResourceDTO requestSourceKey() {
+        ResourceDTO result = new ResourceDTO();
         Map<String, String> obj_key = new HashMap<>();
+        result.obj_key = obj_key;
 
-        app.showTipsInfo("查询数据平台对象,获取文件资源key...");
+        log.info("查询数据平台对象,获取文件资源key...");
 
-        String reqUrl = dto.dpf.getValue() + url_obj_query;
-        reqUrl = reqUrl.replace("PJID", dto.pjId.getValue()).replace("SEC", dto.pjSecret.getValue());
+        String reqUrl = SagaFileMoveApp.dto.dpf.getValue() + url_obj_query;
+        reqUrl = reqUrl.replace("PJID", SagaFileMoveApp.dto.pjId.getValue()).replace("SEC", SagaFileMoveApp.dto.pjSecret.getValue());
 
         JSONObject paramObj = new JSONObject();
 
         JSONObject criteria = new JSONObject();
         JSONArray typeArray = new JSONArray();
-        typeArray.add(dto.objType.getValue());
+        typeArray.add(SagaFileMoveApp.dto.objType.getValue());
         criteria.put("type", typeArray);
 
         JSONArray returnInfos = new JSONArray();
-        returnInfos.add(dto.objInfoCode.getValue());
+        returnInfos.add(SagaFileMoveApp.dto.objInfoCode.getValue());
 
         paramObj.put("customInfo", true);
         paramObj.put("criteria", criteria);
@@ -209,20 +215,22 @@ public class SagaFileMoveService {
         String resp = null;
         try{
             resp = HttpTools.httpPostJson(reqUrl, paramObj);
-            app.showTipsInfo("查询数据平台对象完成。");
         }catch (Exception e){
-            app.showTipsError("请求数据平台出错:" + e.getMessage());
-            app.writeErrToLogFile("url:" + reqUrl + ", param:" + paramObj + ", result:" + resp + "errMsg:" + e.getMessage());
+            e.printStackTrace();
+            log.error("请求数据平台出错!url:" + reqUrl + ", param:" + paramObj + ", result:" + resp + "errMsg:" + e.getMessage());
+            result.errorMsg = "请求数据平台出错!";
+            return result;
         }
 
         if(null != resp) {
-            app.showTipsInfo("查询结果转为Json对象...");
-
             JSONObject respJson = null;
             try {
                 respJson = JsonTools.strToJsonObj(resp);
             }catch (Exception e) {
-                app.showTipsError("String转Json对象失败:" + e.getMessage());
+                e.printStackTrace();
+                log.error("String转Json对象失败:" + e.getMessage());
+                result.errorMsg = "String转Json对象失败:" + e.getMessage();
+                return result;
             }
 
             if(respJson != null && resp_success.equals(respJson.getString("Result"))) {
@@ -235,38 +243,40 @@ public class SagaFileMoveService {
                         JSONObject infoJson = content.getJSONObject(i).getJSONObject("infos");
 
                         if(null != infoJson) {
-                            sourceKey = infoJson.getString(dto.objInfoCode.getValue());
+                            sourceKey = infoJson.getString(SagaFileMoveApp.dto.objInfoCode.getValue());
                         }
                         obj_key.put(objId, sourceKey);
                     }
+
                 }else {
-                    app.showTipsWarn("结束。查询到数据平台对象数量为0。");
+                    log.info("结束。查询到数据平台对象数量为0。");
                 }
             }else {
-                app.showTipsError("请求数据平台数据出错:" + respJson.getString("ResultMsg"));
+                result.errorMsg = "请求数据平台出错:" + resp;
+                log.error("请求数据平台出错:" + resp);
             }
         }
 
-        return obj_key;
+        return result;
     }
 
     /**
      * 校验文件服务From是否可访问
      * @return
      */
-    public boolean validParamImgFromUrl() {
-        return fileGetTest(dto.imgFromUrl.getValue(),  dto.imgFromSysId.getValue());
+    public static boolean validParamImgFromUrl() {
+        return fileGetTest(SagaFileMoveApp.dto.imgFromUrl.getValue(),  SagaFileMoveApp.dto.imgFromSysId.getValue());
     }
 
     /**
      * 校验文件服务From是否可访问
      * @return
      */
-    public boolean validParamImgToUrl() {
-        return fileGetTest(dto.imgToUrl.getValue(), dto.imgToSysId.getValue());
+    public static boolean validParamImgToUrl() {
+        return fileGetTest(SagaFileMoveApp.dto.imgToUrl.getValue(), SagaFileMoveApp.dto.imgToSysId.getValue());
     }
 
-    private boolean fileGetTest(String base, String sysId) {
+    private static boolean fileGetTest(String base, String sysId) {
         boolean result = false;
         String url = base + url_source_get.replace("TYPE", "file").replace("SYSID", sysId) + testKey;
         try {
@@ -284,7 +294,7 @@ public class SagaFileMoveService {
      * @param byteData
      * @return true-包含;false-不包含
      */
-    private boolean ifNotExists(byte[] byteData) {
+    private static boolean ifNotExists(byte[] byteData) {
         String s = new String(byteData);
         System.out.println(s);
         return s.contains("not existed");