Browse Source

完成数据平台config.propertieswen文件校验逻辑开发

cuixubin 4 năm trước cách đây
mục cha
commit
f237f7511b

+ 17 - 0
pom.xml

@@ -51,6 +51,23 @@
             <artifactId>httpcore</artifactId>
             <version>4.4.9</version>
         </dependency>
+        <!-- activeMQ -->
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-client</artifactId>
+            <version>5.15.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>5.7.0</version>
+        </dependency>
+        <!-- rabbitMQ -->
+        <dependency>
+            <groupId>com.rabbitmq</groupId>
+            <artifactId>amqp-client</artifactId>
+            <version>5.7.3</version>
+        </dependency>
     </dependencies>
 
     <repositories>

+ 131 - 0
src/main/java/com/persagy/dptool/CommonUtil.java

@@ -0,0 +1,131 @@
+package com.persagy.dptool;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.core.type.TypeReference;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.apache.http.client.config.RequestConfig;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.client.methods.HttpUriRequest;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.client.CloseableHttpClient;
+import org.apache.http.impl.client.HttpClients;
+import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
+import org.apache.http.util.EntityUtils;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Properties;
+
+public class CommonUtil {
+    public static final ObjectMapper jsonMapper = new ObjectMapper();
+    private final static PoolingHttpClientConnectionManager CONNECTION_MANAGER = new PoolingHttpClientConnectionManager();
+    private final static CloseableHttpClient HTTP_CLIENT;
+    private static final String UTF8 = "utf-8";
+
+    static {
+        // 设置整个连接池最大连接数 根据自己的场景决定
+        CONNECTION_MANAGER.setMaxTotal(100);
+        // 每个路由(网站)的最大连接数
+        CONNECTION_MANAGER.setDefaultMaxPerRoute(50);
+        RequestConfig requestConfig = RequestConfig.custom()
+                // 与远程主机连接建立时间,三次握手完成时间
+                .setConnectTimeout(60000)
+                // 建立连接后,数据包传输过程中,两个数据包之间间隔的最大时间
+                .setSocketTimeout(600000)
+                // httpClient使用连接池来管理连接,这个时间就是从连接池获取连接的超时时间
+                .setConnectionRequestTimeout(60000).build();
+        HTTP_CLIENT = HttpClients.custom().setConnectionManager(CONNECTION_MANAGER)
+                .setDefaultRequestConfig(requestConfig).build();
+    }
+    private static String sendRequest(HttpUriRequest request) throws IOException {
+        CloseableHttpResponse response = HTTP_CLIENT.execute(request);
+        return EntityUtils.toString(response.getEntity(), UTF8);
+    }
+
+    public static String httpGetRequest(String url) throws Exception {
+        HttpGet httpGet = new HttpGet(url);
+        return sendRequest(httpGet);
+    }
+
+    public static String httpPostRequest(String url) throws Exception {
+        HttpPost httpPost = new HttpPost(url);
+        return sendRequest(httpPost);
+    }
+
+    public static byte[] httpGetFile(String url) throws Exception {
+        HttpGet httpGet = new HttpGet(url);
+        CloseableHttpResponse response = HTTP_CLIENT.execute(httpGet);
+        return EntityUtils.toByteArray(response.getEntity());
+    }
+
+    public static String httpPostJson(String url, Map<Object, Object> params) throws IOException {
+        HttpPost httpPost = new HttpPost(url);
+        httpPost.addHeader("Content-Type", "application/json;charset=utf-8");
+        httpPost.setEntity(new StringEntity(beanToJsonStr(params), UTF8));
+        String respContent = sendRequest(httpPost);
+        return respContent;
+    }
+
+    /**
+     * 对象转json字符串
+     * @param obj
+     * @return
+     * @throws JsonProcessingException
+     */
+    public static String beanToJsonStr(Object obj) throws JsonProcessingException {
+        return jsonMapper.writeValueAsString(obj);
+    }
+
+    /**
+     * json字符串转Map
+     * @param jsonStr
+     * @return
+     * @throws IOException
+     */
+    public static Map<String, Object> jsonStrToMap(String jsonStr) throws IOException {
+        return jsonMapper.readValue(jsonStr, new TypeReference<Map>() {});
+    }
+
+    /**
+     * json字符串转对象
+     * @param jsonStr
+     * @param clz
+     * @param <T>
+     * @return
+     * @throws IOException
+     */
+    public static <T> T jsonStrToObj(String jsonStr, Class<T> clz) throws IOException {
+        return  jsonMapper.readValue(jsonStr, clz);
+    }
+
+    /**
+     * 读取properties文件信息,转为map
+     * @param propertyFile
+     * @return
+     */
+    public static Map<String, String> property2Map(File propertyFile) {
+        Map<String, String> result = new HashMap<>();
+
+        Properties prop = new Properties();
+        try(InputStream in = new FileInputStream(propertyFile)){
+            prop.load(in);
+            Iterator<String> it = prop.stringPropertyNames().iterator();
+            String key = null;
+            while(it.hasNext()){
+                key = it.next();
+                result.put(key, prop.getProperty(key));
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+        return result;
+    }
+}

+ 16 - 0
src/main/java/com/persagy/dptool/DataDTO.java

@@ -0,0 +1,16 @@
+package com.persagy.dptool;
+
+import javafx.beans.property.SimpleStringProperty;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class DataDTO {
+    public static Map<String, String> imgKeyMap = new HashMap<>();
+    static {
+        imgKeyMap.put("dev", "123"); imgKeyMap.put("saas", "46f869eea8b31d14");
+        imgKeyMap.put("superClass", "90b92e6f71b47b31"); imgKeyMap.put("revit", "63afbef6906c342b");
+        imgKeyMap.put("duoduo", "df548507374559a3"); imgKeyMap.put("dataPlatform", "9e0891a7a8c8e885");
+    }
+    public SimpleStringProperty testStr;
+}

+ 1 - 1
src/main/java/com/persagy/dptool/MainApp.java

@@ -19,7 +19,7 @@ public class MainApp extends Application {
     public void start(Stage primaryStage) throws IOException {
         InputStream is = MainApp.class.getResourceAsStream("primary.fxml");
         Parent root = new FXMLLoader().load(is);
-        primaryStage.setTitle("Hello World");
+        primaryStage.setTitle("data-platform-tool");
         primaryStage.setScene(new Scene(root));
         primaryStage.show();
     }

+ 87 - 1
src/main/java/com/persagy/dptool/PrimaryController.java

@@ -1,19 +1,105 @@
 package com.persagy.dptool;
 
+import javafx.concurrent.Task;
 import javafx.event.ActionEvent;
+import javafx.fxml.FXML;
 import javafx.fxml.Initializable;
+import javafx.scene.control.*;
+import javafx.scene.layout.BorderPane;
+import javafx.stage.DirectoryChooser;
 
+import java.io.File;
 import java.net.URL;
 import java.util.ResourceBundle;
 
 public class PrimaryController implements Initializable {
+    @FXML
+    private BorderPane paneRoot;
+    @FXML
+    private TabPane paneTab;
+    /** 配置文件目录 */
+    @FXML
+    public TextField txfDir;
+    @FXML
+    public Button btnSelectDir;
+    @FXML
+    public Button btnCheck;
+    /** 校验结果文本域 */
+    @FXML
+    public TextArea txaContent;
+    @FXML
+    public ProgressIndicator piState;
+    /** 底部状态栏 */
+    @FXML
+    public Label lblState;
+
 
     @Override
     public void initialize(URL location, ResourceBundle resources) {
+        piState.setProgress(-1);
+        piState.setVisible(false);
+        lblState.setText("");
+    }
+
+    /**
+     * 选择配置文件目录
+     * @param e
+     */
+    public void selectDir(ActionEvent e) {
+        DirectoryChooser dirChooser =new DirectoryChooser();
+        dirChooser.setTitle("选择配置文件目录");
 
+        File folder = dirChooser.showDialog(paneRoot.getScene().getWindow());
+
+        if(null != folder) {
+            txfDir.setText(folder.getAbsolutePath());
+        }
     }
 
+    /**
+     * 检查配置文件
+     * @param e
+     */
     public void checkConfig(ActionEvent e) {
-        System.out.println("checked");
+        File configFile = getFile(txfDir.getText(), "config.properties");
+        File propertyFile = getFile(txfDir.getText(), "property");
+
+        if(null == configFile && propertyFile == null) {
+            txaContent.setText("未找到需要校验的config.properties文件和property数据字典文件夹,请确保所选目录是否正确。");
+            return;
+        }
+
+        Task<Boolean> task = TaskFactory.checkConfig(this, configFile, propertyFile);
+        new Thread(task).start();
+    }
+
+    /**
+     * 根据文件路径获取文件实例
+     * @param dirPath
+     * @return
+     */
+    private File getFile(String dirPath, String fileName) {
+        File file = null;
+
+        if(dirPath != null) {
+            dirPath = dirPath.trim() + File.separator + fileName;
+            file = new File(dirPath);
+            if(!file.exists()) {
+                file = null;
+            }
+        }
+        return file;
+    }
+
+    /**
+     * 设置tab页签中的控件是否可用
+     * @param disable true-可用
+     * @param typeIndex 从1开始
+     */
+    public void setDisable(boolean disable, int typeIndex) {
+        if(1 == typeIndex) {
+            paneTab.setDisable(disable);
+        }
+
     }
 }

+ 233 - 0
src/main/java/com/persagy/dptool/TaskFactory.java

@@ -0,0 +1,233 @@
+package com.persagy.dptool;
+
+import com.rabbitmq.client.Channel;
+import com.rabbitmq.client.Connection;
+import com.rabbitmq.client.ConnectionFactory;
+import javafx.application.Platform;
+import javafx.concurrent.Task;
+
+import javax.jms.TopicSession;
+import java.io.File;
+import java.util.Map;
+
+public class TaskFactory {
+    public static String[] prefixStr = {"- Error", "- Warn"};
+
+    public static Task<Boolean> checkConfig(PrimaryController controller, File configFile, File propertyFile) {
+        return new Task<Boolean>() {
+            @Override
+            protected Boolean call() throws Exception {
+                Platform.runLater(()->{
+                    controller.txaContent.setText("");
+                    controller.setDisable(true, 1);
+                    controller.piState.setVisible(true);
+                    controller.lblState.setText("准备校验...");
+                });
+
+                if(configFile != null && configFile.isFile()) {
+                    Platform.runLater(()->{
+                        controller.lblState.setText("校验config.properties文件...");
+                    });
+                    Thread.sleep(500);
+
+                    Map<String, String> configMap = CommonUtil.property2Map(configFile);
+                    String propertyFileCheckResult = checkConfigFile(controller, configMap);
+                    Platform.runLater(()->{
+                        controller.txaContent.setText(propertyFileCheckResult);
+                    });
+                }else {
+                    Platform.runLater(()->{
+                        controller.lblState.setText("未找到config.properties文件,准备校验数据字典文件...");
+                    });
+                    Thread.sleep(500);
+                }
+
+                Platform.runLater(()->{
+                    controller.setDisable(false, 1);
+                    controller.piState.setVisible(false);
+                    controller.lblState.setText("");
+                });
+                return true;
+            }
+        };
+    }
+
+    /**
+     * 校验数据平台properties配置文件
+     * @param controller
+     * @param configMap
+     */
+    private static String checkConfigFile(PrimaryController controller, Map<String, String> configMap) {
+        StringBuilder sbStr = new StringBuilder("【config.properties配置文件】\n");
+
+        String dictSource = configMap.get("dict.source");
+        if(dictSource == null) {
+            sbStr.append(getLineString("配置项dict.source缺失;", 0));
+        }else if(!"local".equals(dictSource)) {
+            sbStr.append(getLineString("配置项dict.source未使用本地数据字典配置;",1));
+        }
+
+        String jmsActive = configMap.get("jms.active");
+        if("false".equals(jmsActive)) {
+            sbStr.append(getLineString("消息中间件配置未打开;", 0));
+        }else {
+            String jmsChoice = configMap.get("jms.choice");
+            if("rabbit".equals(jmsChoice)) {
+                // 使用的是rabbitMq中间件
+                sbStr.append(checkRabbitMq(configMap));
+            }else {
+                // 使用是activeMq中间件
+                sbStr.append(checkActiveMQ(configMap));
+            }
+        }
+
+        String imgServiceUrl = configMap.get("image.service.url");
+        if(imgServiceUrl == null) {
+            sbStr.append(getLineString("配置项image.service.url缺失;", 0));
+        }else {
+            String imgSystemId = configMap.get("image.service.systemId");
+            String imgSecret= configMap.get("image.service.secret");
+            if(null != imgSecret && imgSystemId != null) {
+                if(!imgSecret.equals(DataDTO.imgKeyMap.get(imgSystemId))) {
+                    sbStr.append(getLineString("文件服务systemId与secret不匹配;", 0));
+                }else {
+                    if(!fileGetTest(imgServiceUrl, imgSystemId)) {
+                        sbStr.append(getLineString("文件服务访问不通,请确保生产环境数据平台可访问文件服务;", 0));
+                    }
+                }
+            }else {
+                if(null == imgSystemId) {
+                    sbStr.append("Error:配置项image.service.systemId缺失;\n");
+                }
+                if(null == imgSecret) {
+                    sbStr.append("Error:配置项image.service.secret缺失;\n");
+                }
+            }
+        }
+
+        String checkResult = sbStr.toString();
+        if(checkResult.contains("Error") || checkResult.contains("Warn")) {
+            checkResult = checkResult + "\n";
+        }else {
+            checkResult = checkResult + "未发现异常配置。\n\n";
+        }
+
+        return checkResult;
+    }
+
+    private static String checkActiveMQ(Map<String, String> configMap) {
+        String result = "";
+
+        String brokerurl = configMap.get("jms.brokerurl");
+        String userName = configMap.get("jms.userName");
+        String password = configMap.get("jms.password");
+        String topic = configMap.get("jms.topic");
+
+        if(brokerurl == null || userName == null || password == null || topic == null) {
+            result += getLineString("ActiveMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
+            return result;
+        }
+
+        if(!"dataPlatform.broadcast".equals(topic)) {
+            result += getLineString("ActiveMq配置项jms.topic值不是默认值dataPlatform.broadcast;", 1);
+        }
+
+        try {
+            javax.jms.ConnectionFactory factory = new org.apache.activemq.ActiveMQConnectionFactory(userName, password, brokerurl);
+            javax.jms.Connection connection = factory.createConnection();
+            connection.start();
+            javax.jms.Session session = connection.createSession(false, TopicSession.AUTO_ACKNOWLEDGE);
+            javax.jms.Topic topicObj = session.createTopic(topic);
+            javax.jms.MessageProducer messageProducer = session.createProducer(topicObj);
+            messageProducer.setTimeToLive(1000 * 60 * 60 * 2);
+        }catch (Exception e) {
+            e.printStackTrace();
+            result += getLineString("ActiveMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
+        }
+
+        return result;
+    }
+
+    /**
+     * 检查rabbitMQ服务
+     * @param configMap
+     * @return
+     */
+    private static String checkRabbitMq(Map<String, String> configMap) {
+        String result = "";
+        String host = configMap.get("rabbit.host");
+        String port = configMap.get("rabbit.port");
+        String virtualhost = configMap.get("rabbit.virtualhost");
+        String userName = configMap.get("rabbit.userName");
+        String password = configMap.get("rabbit.password");
+        String topic = configMap.get("rabbit.topic");
+        String routingKey = configMap.get("rabbit.routingKey");
+
+        if(host == null || port == null || virtualhost == null || userName == null || password == null || topic == null || routingKey == null) {
+            result += getLineString("RabbitMq必有配置项值不能为空!请到FTP下载标准数据平台程序,参考其配置文件内容;", 0);
+            return result;
+        }
+
+        if(!"dataPlatform.broadcast".equals(topic)) {
+            result += getLineString("RabbitMq配置项rabbit.topic值不是默认值dataPlatform.broadcast;", 1);
+        }
+
+        if(!"dataPlatform".equals(routingKey)) {
+            result += getLineString("RabbitMq配置项rabbit.routingKey值不是默认值dataPlatform;", 1);
+        }
+
+        try {
+            ConnectionFactory factory = new ConnectionFactory();
+            factory.setUsername(userName);
+            factory.setPassword(password);
+            factory.setHost(host);
+            factory.setPort(Integer.parseInt(port));
+            factory.setVirtualHost(virtualhost);
+
+            Connection connection = factory.newConnection();
+            Channel channel = connection.createChannel();
+            channel.exchangeDeclare(topic, "topic", true);
+
+//            channel.basicPublish(topic, routingKey, null, "data-platform-tool-testMsg".getBytes(Charset.forName("UTF-8")));
+
+        }catch (Exception e) {
+            e.printStackTrace();
+            result += getLineString("RabbitMq消息中间件服务访问不通!errorMsg=" + e.getMessage() + " 请确保生产环境消息中间件服务能够正常访问。", 0);
+        }
+
+        return result;
+    }
+
+    private static String getLineString(String str, int prefixIndex) {
+        return  prefixStr[prefixIndex] + ":" + str + "\n";
+    }
+
+    /**
+     * 测试文件服务file_get接口
+     * @param base
+     * @param sysId
+     * @return
+     */
+    private static boolean fileGetTest(String base, String sysId) {
+        boolean result = false;
+        String url = base + File.separator + "common/file_get?key=dPfToOltEsTkey&systemId=" + sysId;
+        try {
+            byte[] byteData = CommonUtil.httpGetFile(url);
+            if(byteData != null && ifNotExists(byteData)) {
+                result = true;
+            }
+        }catch (Exception e){}
+
+        return result;
+    }
+
+    /**
+     * 判断byte数组是否包含“not existed”字符串
+     * @param byteData
+     * @return true-包含;false-不包含
+     */
+    private static boolean ifNotExists(byte[] byteData) {
+        String s = new String(byteData);
+        return s.contains("not existed");
+    }
+}

+ 25 - 14
src/main/java/com/persagy/dptool/primary.fxml

@@ -9,8 +9,7 @@
 <?import javafx.scene.control.*?>
 <?import javafx.scene.layout.*?>
 
-
-<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="640.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.persagy.dptool.PrimaryController">
+<BorderPane fx:id="paneRoot" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="640.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.persagy.dptool.PrimaryController">
    <top>
       <MenuBar BorderPane.alignment="CENTER">
         <menus>
@@ -24,25 +23,18 @@
         </menus>
       </MenuBar>
    </top>
-   <bottom>
-      <Label prefHeight="30.0" prefWidth="800.0" text="Label" BorderPane.alignment="CENTER">
-         <padding>
-            <Insets left="5.0" />
-         </padding>
-      </Label>
-   </bottom>
    <center>
-      <TabPane prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" BorderPane.alignment="CENTER">
+      <TabPane fx:id="paneTab" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="UNAVAILABLE" BorderPane.alignment="CENTER">
         <tabs>
           <Tab text="配置校验">
             <content>
               <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
                      <children>
                         <Label layoutX="12.0" layoutY="14.0" prefHeight="26.0" prefWidth="128.0" text="数据平台配置目录:" />
-                        <TextField layoutX="138.0" layoutY="12.0" prefHeight="30.0" prefWidth="516.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
-                        <Button layoutX="668.0" layoutY="12.0" mnemonicParsing="false" text="选择" />
+                        <TextField fx:id="txfDir" layoutX="138.0" layoutY="12.0" prefHeight="30.0" prefWidth="516.0" promptText="D:/develop/tomcat9/webapps/data-platform-3/WEB-INF/classes/" />
+                        <Button fx:id="btnSelectDir" layoutX="668.0" layoutY="12.0" mnemonicParsing="false" onAction="#selectDir" text="选择" />
                         <Button fx:id="btnCheck" layoutX="736.0" layoutY="12.0" mnemonicParsing="false" onAction="#checkConfig" text="校验" />
-                        <Label layoutX="138.0" layoutY="49.0" prefHeight="20.0" prefWidth="644.0" text="注: 路径为数据平台配置文件config.proerties所在目录" textFill="#7c7c7c">
+                        <Label layoutX="138.0" layoutY="49.0" prefHeight="20.0" prefWidth="644.0" text="注: 路径为数据平台配置文件config.properties所在目录" textFill="#7c7c7c">
                            <font>
                               <Font size="14.0" />
                            </font>
@@ -54,7 +46,7 @@
                                     <Insets bottom="3.0" left="3.0" right="3.0" top="3.0" />
                                  </opaqueInsets>
                                  <children>
-                                    <TextArea editable="false" prefHeight="436.0" prefWidth="611.0" text="helloworld" />
+                                    <TextArea fx:id="txaContent" editable="false" prefHeight="436.0" prefWidth="611.0" wrapText="true" />
                                  </children>
                               </FlowPane>
                            </children>
@@ -77,4 +69,23 @@
         </tabs>
       </TabPane>
    </center>
+   <bottom>
+      <HBox prefHeight="35.0" prefWidth="800.0" BorderPane.alignment="CENTER">
+         <children>
+            <ProgressIndicator fx:id="piState" prefHeight="26.0" prefWidth="30.0" progress="0.0">
+               <cursor>
+                  <Cursor fx:constant="NONE" />
+               </cursor>
+            </ProgressIndicator>
+            <Label fx:id="lblState" prefHeight="35.0" prefWidth="762.0">
+               <HBox.margin>
+                  <Insets left="3.0" />
+               </HBox.margin>
+            </Label>
+         </children>
+         <BorderPane.margin>
+            <Insets left="5.0" />
+         </BorderPane.margin>
+      </HBox>
+   </bottom>
 </BorderPane>