com.rabbitmq.client.impl.recovery.RecoveryAwareAMQConnectionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amqp-client Show documentation
Show all versions of amqp-client Show documentation
The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.
// Copyright (c) 2007-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
//
// This software, the RabbitMQ Java client library, is triple-licensed under the
// Mozilla Public License 2.0 ("MPL"), the GNU General Public License version 2
// ("GPL") and the Apache License version 2 ("ASL"). For the MPL, please see
// LICENSE-MPL-RabbitMQ. For the GPL, please see LICENSE-GPL2. For the ASL,
// please see LICENSE-APACHE2.
//
// This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
// either express or implied. See the LICENSE file for specific language governing
// rights and limitations of this software.
//
// If you have any questions regarding licensing, please contact us at
// [email protected].
package com.rabbitmq.client.impl.recovery;
import com.rabbitmq.client.*;
import com.rabbitmq.client.impl.ConnectionParams;
import com.rabbitmq.client.impl.FrameHandler;
import com.rabbitmq.client.impl.FrameHandlerFactory;
import com.rabbitmq.client.observation.ObservationCollector;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeoutException;
public class RecoveryAwareAMQConnectionFactory {
private final ConnectionParams params;
private final FrameHandlerFactory factory;
private final AddressResolver addressResolver;
private final MetricsCollector metricsCollector;
private final ObservationCollector observationCollector;
public RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, List addrs) {
this(params, factory, new ListAddressResolver(addrs), new NoOpMetricsCollector(),
ObservationCollector.NO_OP);
}
public RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, AddressResolver addressResolver) {
this(params, factory, addressResolver, new NoOpMetricsCollector(),
ObservationCollector.NO_OP);
}
public RecoveryAwareAMQConnectionFactory(ConnectionParams params, FrameHandlerFactory factory, AddressResolver addressResolver,
MetricsCollector metricsCollector, ObservationCollector observationCollector) {
this.params = params;
this.factory = factory;
this.addressResolver = addressResolver;
this.metricsCollector = metricsCollector;
this.observationCollector = observationCollector;
}
/**
* @return an interface to the connection
* @throws java.io.IOException if it encounters a problem
*/
// package protected API, made public for testing only
public RecoveryAwareAMQConnection newConnection() throws IOException, TimeoutException {
Exception lastException = null;
List resolved = addressResolver.getAddresses();
List shuffled = addressResolver.maybeShuffle(resolved);
for (Address addr : shuffled) {
try {
FrameHandler frameHandler = factory.create(addr, connectionName());
RecoveryAwareAMQConnection conn = createConnection(params, frameHandler, metricsCollector);
conn.start();
metricsCollector.newConnection(conn);
return conn;
} catch (IOException e) {
lastException = e;
} catch (TimeoutException te) {
lastException = te;
}
}
if (lastException != null) {
if (lastException instanceof IOException) {
throw (IOException) lastException;
} else if (lastException instanceof TimeoutException) {
throw (TimeoutException) lastException;
}
}
throw new IOException("failed to connect");
}
protected RecoveryAwareAMQConnection createConnection(ConnectionParams params, FrameHandler handler, MetricsCollector metricsCollector) {
return new RecoveryAwareAMQConnection(params, handler, metricsCollector,
this.observationCollector);
}
private String connectionName() {
Map clientProperties = params.getClientProperties();
if (clientProperties == null) {
return null;
} else {
Object connectionName = clientProperties.get("connection_name");
return connectionName == null ? null : connectionName.toString();
}
}
}