All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hpe.caf.services.job.queue.QueueServicesFactory Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016-2024 Open Text.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.hpe.caf.services.job.queue;

import com.hpe.caf.api.Codec;
import com.hpe.caf.services.configuration.AppConfig;
import com.hpe.caf.util.rabbitmq.RabbitUtil;

import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.net.URISyntaxException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.util.concurrent.TimeoutException;

/**
 * This class is responsible for creating the RabbitMQ connection and channel.
 */
public final class QueueServicesFactory {
    private static final Logger LOG = LoggerFactory.getLogger(QueueServicesFactory.class);

    /**
     * Create a new QueueServices object.
     *
     * @param   configuration       the AppConfig
     * @param   targetQueue         the target queue
     * @param   codec               the serialization codec
     * @return  QueueServices       new QueueServices object
     * @throws  IOException         thrown if the connection cannot be created
     * @throws  TimeoutException    thrown if the connection cannot be created
     */
    public static QueueServices create(final AppConfig configuration, final String targetQueue, final Codec codec)
            throws IOException, TimeoutException, URISyntaxException, NoSuchAlgorithmException, KeyManagementException
    {
        //  Create connection and channel for publishing messages.
        Connection connection;
        try {
            //  Create connection and channel for publishing messages.
            connection = createConnection(configuration);
        } catch (final IOException | TimeoutException e) {
            LOG.warn("Failed to create connection. Will retry", e);
            connection = createConnection(configuration);
        }

        Channel publishChannel = connection.createChannel();
        // Enable publishing acknowledgements
        publishChannel.confirmSelect();
        //  Check target worker queue exists.
        publishChannel.queueDeclarePassive(targetQueue);

        return new QueueServices(connection, publishChannel, targetQueue, codec);
    }

    /**
     * Creates a connection to rabbit messaging server.
     */
    private static Connection createConnection(AppConfig configuration)
            throws IOException, TimeoutException, URISyntaxException, NoSuchAlgorithmException, KeyManagementException
    {
        return RabbitUtil.createRabbitConnection(configuration.getRabbitMQProtocol(), configuration.getRabbitMQHost(),
                configuration.getRabbitMQPort(), configuration.getRabbitMQUsername(), configuration.getRabbitMQPassword());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy