SagaFileMoveApp.java 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. package com.persagy.filemove.app;
  2. import com.persagy.filemove.dialog.FileMoveHelpDialog;
  3. import com.persagy.filemove.dialog.MessageDialog;
  4. import com.persagy.filemove.dto.SagaFileMoveDTO;
  5. import com.persagy.filemove.dto.WorkerFactory;
  6. import com.persagy.filemove.service.SagaFileMoveService;
  7. import javafx.application.Application;
  8. import javafx.collections.FXCollections;
  9. import javafx.concurrent.Task;
  10. import javafx.geometry.Insets;
  11. import javafx.geometry.Pos;
  12. import javafx.scene.Node;
  13. import javafx.scene.Scene;
  14. import javafx.scene.control.*;
  15. import javafx.scene.layout.BorderPane;
  16. import javafx.scene.layout.HBox;
  17. import javafx.scene.layout.Pane;
  18. import javafx.scene.layout.VBox;
  19. import javafx.scene.paint.Color;
  20. import javafx.stage.Stage;
  21. import org.slf4j.Logger;
  22. import org.slf4j.LoggerFactory;
  23. import java.lang.reflect.Field;
  24. import java.util.LinkedHashMap;
  25. public class SagaFileMoveApp extends Application {
  26. private static final Logger log = LoggerFactory.getLogger(SagaFileMoveApp.class);
  27. private static final String aboutInfo = "Version:1.0\nJDK:1.8\nAuthor:cuixubin@persagy.com";
  28. private static int appWidth = 640;
  29. private static int appHeight = 560;
  30. public static SagaFileMoveDTO dto = new SagaFileMoveDTO();
  31. /** 数据平台默认systemId */
  32. private static String sysId_dpf = "dataPlatform";
  33. /** 数据平台默认密码 */
  34. private static String secret_dpf = "9e0891a7a8c8e885";
  35. /** revit默认systemId */
  36. private static String sysId_rvt = "revit";
  37. /** revit默认密码 */
  38. private static String secret_rvt = "63afbef6906c342b";
  39. private SagaFileMoveService service = new SagaFileMoveService();
  40. /** 文件服务上传下载接口类型 */
  41. private static final String[] apiTypes = {"default", "file", "image"};
  42. /** 对象类型 */
  43. private static String[] objTypes;
  44. /** 对象类型对应信息点 */
  45. private static final LinkedHashMap<String, String[]> objToInfoCode = new LinkedHashMap<>();
  46. static {
  47. objToInfoCode.put("Fl", new String[]{"FloorMap"});
  48. objToInfoCode.put("Eq", new String[]{"EquipQRCode"});
  49. objToInfoCode.put("Sp", new String[]{"RoomQRCode"});
  50. objToInfoCode.put("Sy", new String[]{"EquipQRCode"});
  51. objToInfoCode.put("Ec", new String[]{"EquipQRCode"});
  52. objTypes = objToInfoCode.keySet().stream().toArray(n -> new String[n]);
  53. }
  54. /** 数据平台地址 */
  55. private TextField tfDPF = new TextField("http://api.sagacloud.cn/data-platform-3");
  56. /** 项目id */
  57. private TextField tfPjId = new TextField("Pj3101050003");
  58. /** 项目密码 */
  59. private TextField tfPjSecret = new TextField();
  60. /** 对象类型 */
  61. private ChoiceBox cbObjType = new ChoiceBox();
  62. /** 对象信息点 */
  63. private ChoiceBox cbObjInfoCodeArray = new ChoiceBox();
  64. /** 文件服务from地址 */
  65. private TextField tfImgFromURL = new TextField("http://47.93.33.207:28888/image-service");
  66. /** 文件服务from的systemId */
  67. private TextField tfImgFromSysId = new TextField(sysId_rvt);
  68. /** 文件服务from的secret */
  69. private TextField tfImgFromSecret = new TextField(secret_rvt);
  70. /** 接口类型 */
  71. private ChoiceBox cbImgFromApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
  72. /** 文件服务To地址 */
  73. private TextField tfImgToURL = new TextField("http://127.0.0.1:6666/image-service");
  74. /** 文件服务To的systemId */
  75. private TextField tfImgToSysId = new TextField(sysId_dpf);
  76. /** 文件服务To的secret */
  77. private TextField tfImgToSecret = new TextField(secret_dpf);
  78. /** 接口类型 */
  79. private ChoiceBox cbImgToApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
  80. /** 执行校验按钮 */
  81. private Button btnValid = new Button("参数校验");
  82. /** 文件传输执行按钮 */
  83. private Button btnExecute = new Button("开始传输");
  84. /** 执行信息 */
  85. private Label lblExecute_sts = new Label();
  86. /** 提示信息 */
  87. private Label lblTips_sts = new Label();
  88. private ProgressBar progressBar_sts = new ProgressBar(0);
  89. public static void main(String[] args) {
  90. launch(args);
  91. }
  92. /**
  93. * 初始化基础控件
  94. */
  95. private void initComponents() {
  96. bindDTO();
  97. tfDPF.setPrefWidth(appWidth * .7);
  98. tfPjId.setPrefWidth(appWidth * .25);
  99. tfPjSecret.setPrefWidth(appWidth * .25);
  100. cbObjType.setItems(FXCollections.observableArrayList(objTypes));
  101. cbObjType.setPrefWidth(appWidth * .1);
  102. // 设置默认选择第一项
  103. cbObjType.getSelectionModel().selectFirst();
  104. cbObjInfoCodeArray.setItems(FXCollections.observableArrayList(objToInfoCode.get(cbObjType.getSelectionModel().getSelectedItem().toString())));
  105. cbObjInfoCodeArray.getSelectionModel().selectFirst();
  106. cbObjInfoCodeArray.setPrefWidth(appWidth * .25);
  107. tfImgFromURL.setPrefWidth(appWidth * .5);
  108. tfImgFromSysId.setPrefWidth(appWidth * .25);
  109. tfImgFromSecret.setPrefWidth(appWidth * .25);
  110. cbImgFromApiType.setPrefWidth(appWidth * .15);
  111. cbImgFromApiType.getSelectionModel().selectFirst();
  112. tfImgToURL.setPrefWidth(appWidth * .5);
  113. tfImgToSysId.setPrefWidth(appWidth * .25);
  114. tfImgToSecret.setPrefWidth(appWidth * .25);
  115. cbImgToApiType.setPrefWidth(appWidth * .15);
  116. cbImgToApiType.getSelectionModel().select(1);
  117. btnValid.setPrefSize(appWidth * .15, 30);
  118. btnExecute.setPrefSize(appWidth * .15, 30);
  119. progressBar_sts.setPrefWidth(appWidth * .55);
  120. // 点击验证参数按钮
  121. btnValid.setOnAction(e -> {
  122. disableSet(true);
  123. lblTips_sts.textProperty().unbind();
  124. lblTips_sts.setText("");
  125. lblExecute_sts.textProperty().unbind();
  126. progressBar_sts.progressProperty().unbind();
  127. progressBar_sts.setProgress(0);
  128. showTipsInfo("校验参数...");
  129. Task<Boolean> worker = WorkerFactory.getValidParamWorker(this);
  130. progressBar_sts.progressProperty().bind(worker.progressProperty());
  131. new Thread(worker).start();
  132. });
  133. // 点击文件迁移按钮
  134. btnExecute.setOnAction(e -> {
  135. disableSet(true);
  136. lblTips_sts.textProperty().unbind();
  137. lblTips_sts.setText("");
  138. lblExecute_sts.textProperty().unbind();
  139. lblExecute_sts.setText("");
  140. progressBar_sts.progressProperty().unbind();
  141. progressBar_sts.setProgress(-1);
  142. Task<Boolean> worker = WorkerFactory.getTransRateWorker(this);
  143. lblTips_sts.textProperty().bind(worker.titleProperty());
  144. lblExecute_sts.textProperty().bind(worker.messageProperty());
  145. progressBar_sts.progressProperty().bind(worker.progressProperty());
  146. new Thread(worker).start();
  147. });
  148. cbObjType.getSelectionModel().selectedIndexProperty().addListener((obv, ov, nv)->{
  149. String objType = cbObjType.getItems().get(nv.intValue()) + "";
  150. cbObjInfoCodeArray.setItems(FXCollections.observableArrayList(objToInfoCode.get(objType)));
  151. cbObjInfoCodeArray.getSelectionModel().selectFirst();
  152. if("Fl".equals(objType)) {
  153. tfImgFromSysId.setText(sysId_rvt);
  154. tfImgFromSecret.setText(secret_rvt);
  155. }else {
  156. tfImgFromSysId.setText(sysId_dpf);
  157. tfImgFromSecret.setText(secret_dpf);
  158. }
  159. });
  160. }
  161. /**
  162. * 设置视图中的所有控件是否为不可编辑状态
  163. * @param disable true-控件不可编辑;false-控件可编辑
  164. */
  165. public void disableSet(boolean disable) {
  166. Field[] allFields = SagaFileMoveApp.class.getDeclaredFields();
  167. for(Field field : allFields) {
  168. if(field.getName().endsWith("_sts")) {
  169. continue;
  170. }
  171. try {
  172. if(Node.class.isAssignableFrom(field.get(this).getClass())) {
  173. Node node = (Node) field.get(this);
  174. node.setDisable(disable);
  175. }
  176. }catch (Exception e) {}
  177. }
  178. }
  179. public void showTipsSuccess(String info) {
  180. lblExecute_sts.setTextFill(Color.DARKGREEN);
  181. lblExecute_sts.setText(info);
  182. }
  183. public void showTipsInfo(String info) {
  184. lblExecute_sts.setTextFill(Color.BLACK);
  185. lblExecute_sts.setText(info);
  186. }
  187. public void showTipsError(String errMsg) {
  188. lblExecute_sts.setTextFill(Color.RED);
  189. lblExecute_sts.setText(errMsg);
  190. }
  191. public void showTipsWarn(String warnMsg) {
  192. lblExecute_sts.setTextFill(Color.DARKORANGE);
  193. lblExecute_sts.setText(warnMsg);
  194. }
  195. /**
  196. * 将控件的值绑定到DTO对象的属性上
  197. */
  198. private void bindDTO() {
  199. dto.dpf.bind(tfDPF.textProperty());
  200. dto.imgFromApiType.bind(cbImgFromApiType.valueProperty());
  201. dto.imgFromSecret.bind(tfImgFromSecret.textProperty());
  202. dto.imgFromSysId.bind(tfImgFromSysId.textProperty());
  203. dto.imgFromUrl.bind(tfImgFromURL.textProperty());
  204. dto.imgToApiType.bind(cbImgToApiType.valueProperty());
  205. dto.imgToSecret.bind(tfImgToSecret.textProperty());
  206. dto.imgToSysId.bind(tfImgToSysId.textProperty());
  207. dto.imgToUrl.bind(tfImgToURL.textProperty());
  208. dto.objInfoCode.bind(cbObjInfoCodeArray.valueProperty());
  209. dto.objType.bind(cbObjType.valueProperty());
  210. dto.pjId.bind(tfPjId.textProperty());
  211. dto.pjSecret.bind(tfPjSecret.textProperty());
  212. }
  213. @Override
  214. public void start(Stage primaryStage) throws Exception {
  215. initComponents();
  216. // 底层border布局
  217. BorderPane baseBorderPane = new BorderPane();
  218. // 菜单栏
  219. MenuBar menuBar = new MenuBar();
  220. menuBar.prefWidthProperty().bind(primaryStage.widthProperty());
  221. menuBar.getMenus().addAll(getHelpMenu());
  222. // 主视图内容布局
  223. Pane centerPane = getCenterPane();
  224. baseBorderPane.setTop(menuBar);
  225. baseBorderPane.setCenter(centerPane);
  226. primaryStage.setResizable(false);
  227. Scene scene = new Scene(baseBorderPane, appWidth, appHeight);
  228. primaryStage.setScene(scene);
  229. primaryStage.show();
  230. }
  231. /**
  232. * 获取主要内容的布局面板实例
  233. * @return
  234. */
  235. private Pane getCenterPane() {
  236. Pane centerPane = new VBox();
  237. centerPane.setPadding(new Insets(0, 5, 0, 5));
  238. TitledPane paneObjParam = getObjTitlePane();
  239. TitledPane paneImgFrom = getImgTitlePane(true);
  240. TitledPane paneImgTo = getImgTitlePane(false);
  241. Pane paneExe = getExePane();
  242. Pane paneConsole = getConsolePane();
  243. centerPane.getChildren().addAll(paneObjParam, paneImgFrom, paneImgTo, paneExe, paneConsole);
  244. Insets nodeInsets = new Insets(0, 0, 15, 0);
  245. VBox.setMargin(paneObjParam, nodeInsets);
  246. VBox.setMargin(paneImgFrom, nodeInsets);
  247. return centerPane;
  248. }
  249. /**
  250. * 获取执行控制面板
  251. * @return
  252. */
  253. private Pane getExePane() {
  254. HBox contentBox = new HBox(btnValid, btnExecute, progressBar_sts, lblTips_sts);
  255. HBox.setMargin(btnExecute, new Insets(0, 20, 0, 15));
  256. HBox.setMargin(progressBar_sts, new Insets(0, 5, 0, 0));
  257. contentBox.setAlignment(Pos.CENTER_LEFT);
  258. contentBox.setPadding(new Insets(15, 0, 0, 0));
  259. return contentBox;
  260. }
  261. /**
  262. * 获取提示信息输出面板
  263. * @return
  264. */
  265. private Pane getConsolePane() {
  266. HBox contentBox = new HBox(lblExecute_sts);
  267. contentBox.setPadding(new Insets(15, 0, 0, 0));
  268. return contentBox;
  269. }
  270. /**
  271. * 生成包含数据平台、项目、对象配置参数的带标题的布局实例
  272. * @return
  273. */
  274. private TitledPane getObjTitlePane() {
  275. String title = "物理对象 - 配置传输哪个项目,哪类对象,哪个信息点对应的文件数据";
  276. String titlePaneBack = "-fx-background-color: wheat";
  277. LinkedHashMap<String, Node> projectMap = new LinkedHashMap<>();
  278. projectMap.put("*项目id ", tfPjId);
  279. projectMap.put("项目密码 ", tfPjSecret);
  280. LinkedHashMap<String, Node> objTypeMap = new LinkedHashMap<>();
  281. objTypeMap.put("*对象类型 ", cbObjType);
  282. objTypeMap.put("*对象信息点 ", cbObjInfoCodeArray);
  283. VBox contentPane = new VBox(getHBoxPane("*数据平台 ", tfDPF),
  284. getHBoxPane(projectMap), getHBoxPane(objTypeMap));
  285. contentPane.setPadding(new Insets(5, 0, 5,10));
  286. contentPane.setStyle("-fx-background-color: antiquewhite");
  287. TitledPane titledPane = new TitledPane(title, contentPane);
  288. titledPane.setCollapsible(false);
  289. return titledPane;
  290. }
  291. /**
  292. * 生成包含文件服务参数控件的带标题的布局实例
  293. * @param isFrom true-数据来源方的文件服务;false-数据接收方的文件服务
  294. * @return
  295. */
  296. private TitledPane getImgTitlePane(boolean isFrom) {
  297. String titleFrom = "From:即获取文件资源数据所访问的image-service服务";
  298. String titleTo = "To:即获上传文件资源所访问的image-service服务";
  299. String title = "文件服务 - " + (isFrom ? titleFrom : titleTo);
  300. String titlePaneBack = "-fx-background-color: wheat";
  301. Node systemId = null, secret = null, serviceURL = null, apiType;
  302. if(isFrom) {
  303. systemId = tfImgFromSysId;
  304. secret = tfImgFromSecret;
  305. serviceURL = tfImgFromURL;
  306. apiType = cbImgFromApiType;
  307. titlePaneBack = "-fx-background-color: bisque";
  308. }else {
  309. systemId = tfImgToSysId;
  310. secret = tfImgToSecret;
  311. serviceURL = tfImgToURL;
  312. apiType = cbImgToApiType;
  313. }
  314. LinkedHashMap<String, Node> urlAndApiTypeMap = new LinkedHashMap<>();
  315. urlAndApiTypeMap.put("*服务URL ", serviceURL);
  316. urlAndApiTypeMap.put("*接口类型 ", apiType);
  317. LinkedHashMap<String, Node> paramMap = new LinkedHashMap<>();
  318. paramMap.put("*systemId ", systemId);
  319. paramMap.put("*secret ", secret);
  320. VBox contentPane = new VBox(getHBoxPane(urlAndApiTypeMap),
  321. getHBoxPane(paramMap));
  322. contentPane.setPadding(new Insets(5, 0, 5,10));
  323. contentPane.setStyle(titlePaneBack);
  324. TitledPane titledPane = new TitledPane(title, contentPane);
  325. titledPane.setCollapsible(false);
  326. return titledPane;
  327. }
  328. /**
  329. * 获取水平排布的含有Label和Node节点两个控件面板实例
  330. * @param label 标签内容
  331. * @param node 控件节点
  332. * @return
  333. */
  334. private Pane getHBoxPane(String label, Node node) {
  335. LinkedHashMap<String, Node> map = new LinkedHashMap<>();
  336. map.put(label, node);
  337. return getHBoxPane(map);
  338. }
  339. /**
  340. * 获取水平排布的含多对(Label:Node)节点组的面板实例
  341. * @param label_textField {标签名:控件节点}
  342. * @return
  343. */
  344. private Pane getHBoxPane(LinkedHashMap<String, Node> label_textField) {
  345. HBox pane = new HBox();
  346. Insets nodeInsets = new Insets(0, 15, 0, 0);
  347. for(String name : label_textField.keySet()) {
  348. Label label = new Label(name);
  349. Node node = label_textField.get(name);
  350. pane.getChildren().addAll(label, node);
  351. HBox.setMargin(node, nodeInsets);
  352. }
  353. pane.setPadding(new Insets(5, 5, 5, 0));
  354. pane.setAlignment(Pos.CENTER_LEFT);
  355. return pane;
  356. }
  357. /**
  358. * 获取帮助菜单按钮
  359. * @return
  360. */
  361. private Menu getHelpMenu() {
  362. // 菜单项
  363. MenuItem mi_help = new MenuItem("Help");
  364. mi_help.setOnAction((e)->{
  365. new FileMoveHelpDialog().showAndWait();
  366. });
  367. MenuItem mi_about = new MenuItem("About");
  368. mi_about.setOnAction((e)->{
  369. new MessageDialog("About", aboutInfo, 300, 120).showAndWait();
  370. });
  371. SeparatorMenuItem seline = new SeparatorMenuItem();
  372. Menu helpMenu = new Menu("Help");
  373. helpMenu.getItems().addAll(mi_help, seline, mi_about);
  374. return helpMenu;
  375. }
  376. }