|
@@ -1,83 +1,146 @@
|
|
|
package com.scbfkj.uni.process;
|
|
|
|
|
|
-import com.rabbitmq.client.Channel;
|
|
|
-import com.rabbitmq.client.Connection;
|
|
|
-import com.rabbitmq.client.ConnectionFactory;
|
|
|
-import com.rabbitmq.client.GetResponse;
|
|
|
-import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
-import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
+import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
+import com.rabbitmq.jms.admin.RMQConnectionFactory;
|
|
|
+import com.scbfkj.uni.system.Config;
|
|
|
+import jakarta.jms.JMSException;
|
|
|
+import jakarta.jms.Message;
|
|
|
+import jakarta.jms.TextMessage;
|
|
|
+import org.springframework.jms.connection.CachingConnectionFactory;
|
|
|
+import org.springframework.jms.core.JmsTemplate;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
-import java.nio.charset.StandardCharsets;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.Map;
|
|
|
-import java.util.Objects;
|
|
|
-import java.util.concurrent.TimeoutException;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
|
|
|
public class RabbitMQ {
|
|
|
|
|
|
- private final static Map<String, ConnectionFactory> factories = new HashMap<>();
|
|
|
|
|
|
+ private JmsTemplate jmsTemplate;
|
|
|
|
|
|
- public static ConnectionFactory createConnectFactory(String connectionStr) {
|
|
|
- ConnectionFactory connectionFactory = factories.get(connectionStr);
|
|
|
- if (Objects.nonNull(connectionFactory)) return connectionFactory;
|
|
|
+ private final ObjectMapper mapper = new ObjectMapper();
|
|
|
|
|
|
- Map<?, ?> connectConfig = DataFormatUtil.toMap(connectionStr);
|
|
|
+ public List<String> receptionMessage(
|
|
|
+ String host, Long port, String username, String password, String virtualHost, String queueName, Long receiveTimeout, Long pollSize, Long retry) throws JMSException {
|
|
|
+ JmsTemplate template = getJmsTemplate(host, port.intValue(), username, password, virtualHost);
|
|
|
+
|
|
|
+
|
|
|
+ jmsTemplate.setReceiveTimeout(receiveTimeout);
|
|
|
+ long maxSize = 100;
|
|
|
+ if (pollSize > 0) {
|
|
|
+ maxSize = pollSize;
|
|
|
+ }
|
|
|
+ int maxRetry = 0;
|
|
|
+ List<String> result = new ArrayList<>();
|
|
|
|
|
|
- connectionFactory = new ConnectionFactory();
|
|
|
- connectionFactory.setHost(connectConfig.get("host").toString());
|
|
|
- connectionFactory.setUsername(connectConfig.get("username").toString());
|
|
|
- connectionFactory.setPassword(connectConfig.get("password").toString());
|
|
|
- connectionFactory.setPort(Integer.parseInt(connectConfig.get("port").toString()));
|
|
|
- Object virtualHost = connectConfig.get("virtualHost");
|
|
|
- if (Objects.nonNull(virtualHost)) connectionFactory.setVirtualHost(virtualHost.toString());
|
|
|
- connectionFactory.setConnectionTimeout(3000);
|
|
|
- return connectionFactory;
|
|
|
- }
|
|
|
|
|
|
- public static Map<String, Object> sendMessage(String connectionConfig, String exchangeName, String data) throws Exception {
|
|
|
-
|
|
|
- ConnectionFactory connectFactory = createConnectFactory(connectionConfig);
|
|
|
- try (Connection connection = connectFactory.newConnection()) {
|
|
|
- try (Channel channel = connection.createChannel()) {
|
|
|
-// routingKey = (routingKey == null) ? queueName : routingKey;
|
|
|
-// exchangeName = (null == exchangeName) ? "" : exchangeName;
|
|
|
-// AMQP.BasicProperties properties = new AMQP.BasicProperties.Builder().deliveryMode(2).contentEncoding("UTF-8").build();
|
|
|
- //第一个参数是exchange参数,如果是为空字符串,那么就会发送到(AMQP default)默认的exchange,而且routingKey
|
|
|
- //便是所要发送到的队列名
|
|
|
- //todo 如果rabbitmq的服务端为绑定路由,那么写入不进行
|
|
|
- //todo exchangeName为“” 则rabbitmq服务端不需要配置
|
|
|
- //todo exchangeName为不为"" 则rabbitmq必须绑定
|
|
|
- channel.exchangeDeclare(exchangeName, "fanout");
|
|
|
- channel.basicPublish(exchangeName, "/", null, data.getBytes(StandardCharsets.UTF_8));
|
|
|
+ while (true) {
|
|
|
+ try {
|
|
|
+ Message message = template.receive(queueName);
|
|
|
+ if (message == null) {
|
|
|
+ break;
|
|
|
+ } else if (message instanceof TextMessage msg) {
|
|
|
+ String text = msg.getText();
|
|
|
+ result.add(text);
|
|
|
+ if (result.size() >= maxSize) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
} catch (Exception e) {
|
|
|
- return UniReturnUtil.fail(UniReturnUtil.getMessage(e));
|
|
|
+ maxRetry++;
|
|
|
+ if (maxRetry > retry) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ if (jmsTemplate != null) {
|
|
|
+ jmsTemplate = null;
|
|
|
+ }
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|
|
|
- } catch (IOException | TimeoutException e) {
|
|
|
- return UniReturnUtil.fail(UniReturnUtil.getMessage(e));
|
|
|
}
|
|
|
+ return result;
|
|
|
+
|
|
|
|
|
|
- return null;
|
|
|
}
|
|
|
|
|
|
- public static Map<String, Object> receptionMessage(String connectConfig, String routingKey, String exchangeName) throws Exception {
|
|
|
-
|
|
|
- Map<String, Object> connectConfigMaps = (Map<String, Object>) DataFormatUtil.toMap(connectConfig);
|
|
|
- Object arguments = connectConfigMaps.get("arguments");
|
|
|
-// Object prefetchCount = connectConfigMaps.get("prefetchCount");
|
|
|
- try (Connection connection = createConnectFactory(connectConfig).newConnection(); Channel currentChannel = connection.createChannel()) {
|
|
|
- //创建消息通道
|
|
|
- currentChannel.queueDeclare(exchangeName, true, false, false, Objects.isNull(arguments) ? null : ((Map<String, Object>) arguments));
|
|
|
- currentChannel.basicQos(1); //服务端在同一时刻只发送1条数据
|
|
|
- GetResponse getResponse = currentChannel.basicGet(exchangeName, true);
|
|
|
- String repBody = null;
|
|
|
- if (null != getResponse) {
|
|
|
- repBody = new String(getResponse.getBody());
|
|
|
+
|
|
|
+ public void sendMessage(
|
|
|
+ String host, Long port, String username, String password, String virtualHost,String queueName,
|
|
|
+ Object data
|
|
|
+ ) throws JMSException {
|
|
|
+
|
|
|
+ JmsTemplate template = getJmsTemplate(host, port.intValue(), username, password, virtualHost);
|
|
|
+
|
|
|
+ try {
|
|
|
+ if (data instanceof Object[] datas) {
|
|
|
+ for (Object it : datas) {
|
|
|
+
|
|
|
+ execSend(template, it,queueName);
|
|
|
+ }
|
|
|
+ } else if (data instanceof Iterable<?> datas) {
|
|
|
+
|
|
|
+ for (Object it : datas) {
|
|
|
+
|
|
|
+ execSend(template, it, queueName);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ execSend(template, data, queueName);
|
|
|
}
|
|
|
- return UniReturnUtil.success(repBody);
|
|
|
- } catch (IOException | TimeoutException e) {
|
|
|
- return UniReturnUtil.fail(UniReturnUtil.getMessage(e));
|
|
|
+
|
|
|
+ } catch (Exception e) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ if (jmsTemplate != null) {
|
|
|
+ jmsTemplate = null;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ private void execSend(
|
|
|
+ JmsTemplate template,
|
|
|
+ Object data,
|
|
|
+ String queueName) throws IOException {
|
|
|
+ String message = mapper.writeValueAsString(data);
|
|
|
+
|
|
|
+ template.send(queueName,session -> session.createTextMessage(message));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private jakarta.jms.ConnectionFactory createConnectionFactory(String host, int port, String username, String password, String virtualHost) {
|
|
|
+ RMQConnectionFactory connectionFactory = new RMQConnectionFactory();
|
|
|
+ connectionFactory.setUsername(username);
|
|
|
+ connectionFactory.setPassword(password);
|
|
|
+ connectionFactory.setVirtualHost(virtualHost);
|
|
|
+ connectionFactory.setHost(host);
|
|
|
+ connectionFactory.setPort(port);
|
|
|
+ return connectionFactory;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private CachingConnectionFactory createCachingConnectionFactory(jakarta.jms.ConnectionFactory factory) {
|
|
|
+ CachingConnectionFactory cachingConnectionFactory = new CachingConnectionFactory();
|
|
|
+ cachingConnectionFactory.setTargetConnectionFactory(factory);
|
|
|
+ return cachingConnectionFactory;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ private JmsTemplate getJmsTemplate(String host, int port, String username, String password, String virtualHost) throws JMSException {
|
|
|
+ if (jmsTemplate == null) {
|
|
|
+ jakarta.jms.ConnectionFactory connectionFactory = createConnectionFactory(host, port, username, password, virtualHost);
|
|
|
+ CachingConnectionFactory cachingConnectionFactory = createCachingConnectionFactory(connectionFactory);
|
|
|
+ jmsTemplate = createJmsTemplate(cachingConnectionFactory);
|
|
|
+ }
|
|
|
+ return jmsTemplate;
|
|
|
+ }
|
|
|
+
|
|
|
+ private JmsTemplate createJmsTemplate(CachingConnectionFactory factory) {
|
|
|
+ JmsTemplate jmsTemplate = new JmsTemplate();
|
|
|
+ jmsTemplate.setConnectionFactory(factory);
|
|
|
+ return jmsTemplate;
|
|
|
+ }
|
|
|
}
|