/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.camel.component.rabbitmq; import java.io.IOException; import java.util.Collections; import java.util.HashMap; import java.util.Map; import com.rabbitmq.client.Channel; public class RabbitMQDeclareSupport { private final RabbitMQEndpoint endpoint; RabbitMQDeclareSupport(final RabbitMQEndpoint endpoint) { this.endpoint = endpoint; } public void declareAndBindExchangesAndQueuesUsing(final Channel channel) throws IOException { declareAndBindDeadLetterExchangeWithQueue(channel); declareAndBindExchangeWithQueue(channel); } private void declareAndBindDeadLetterExchangeWithQueue(final Channel channel) throws IOException { if (endpoint.getDeadLetterExchange() != null) { // TODO Do we need to setup the args for the DeadLetter? declareExchange(channel, endpoint.getDeadLetterExchange(), endpoint.getDeadLetterExchangeType(), Collections.<String, Object>emptyMap()); declareAndBindQueue(channel, endpoint.getDeadLetterQueue(), endpoint.getDeadLetterExchange(), endpoint.getDeadLetterRoutingKey(), null, null); } } private void declareAndBindExchangeWithQueue(final Channel channel) throws IOException { if (shouldDeclareExchange()) { declareExchange(channel, endpoint.getExchangeName(), endpoint.getExchangeType(), resolvedExchangeArguments()); } if (shouldDeclareQueue()) { // need to make sure the queueDeclare is same with the exchange declare declareAndBindQueue(channel, endpoint.getQueue(), endpoint.getExchangeName(), endpoint.getRoutingKey(), resolvedQueueArguments(), endpoint.getBindingArgs()); } } private Map<String, Object> resolvedQueueArguments() { Map<String, Object> queueArgs = new HashMap<>(); populateQueueArgumentsFromDeadLetterExchange(queueArgs); populateQueueArgumentsFromConfigurer(queueArgs); queueArgs.putAll(endpoint.getQueueArgs()); return queueArgs; } private Map<String, Object> populateQueueArgumentsFromDeadLetterExchange(final Map<String, Object> queueArgs) { if (endpoint.getDeadLetterExchange() != null) { queueArgs.put(RabbitMQConstants.RABBITMQ_DEAD_LETTER_EXCHANGE, endpoint.getDeadLetterExchange()); queueArgs.put(RabbitMQConstants.RABBITMQ_DEAD_LETTER_ROUTING_KEY, endpoint.getDeadLetterRoutingKey()); } return queueArgs; } private Map<String, Object> resolvedExchangeArguments() { Map<String, Object> exchangeArgs = new HashMap<>(); if (endpoint.getExchangeArgsConfigurer() != null) { endpoint.getExchangeArgsConfigurer().configurArgs(exchangeArgs); } exchangeArgs.putAll(endpoint.getExchangeArgs()); return exchangeArgs; } private boolean shouldDeclareQueue() { return !endpoint.isSkipQueueDeclare() && endpoint.getQueue() != null; } private boolean shouldDeclareExchange() { return !endpoint.isSkipExchangeDeclare(); } private boolean shouldBindQueue() { return !endpoint.isSkipQueueBind(); } private void populateQueueArgumentsFromConfigurer(final Map<String, Object> queueArgs) { if (endpoint.getQueueArgsConfigurer() != null) { endpoint.getQueueArgsConfigurer().configurArgs(queueArgs); } } private void declareExchange(final Channel channel, final String exchange, final String exchangeType, final Map<String, Object> exchangeArgs) throws IOException { channel.exchangeDeclare(exchange, exchangeType, endpoint.isDurable(), endpoint.isAutoDelete(), exchangeArgs); } private void declareAndBindQueue(final Channel channel, final String queue, final String exchange, final String routingKey, final Map<String, Object> queueArgs, final Map<String, Object> bindingArgs) throws IOException { channel.queueDeclare(queue, endpoint.isDurable(), endpoint.isExclusive(), endpoint.isAutoDelete(), queueArgs); if (shouldBindQueue()) { channel.queueBind(queue, exchange, emptyIfNull(routingKey), bindingArgs); } } private String emptyIfNull(final String routingKey) { return routingKey == null ? "" : routingKey; } }