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

org.springframework.integration.support.converter.SimpleMessageConverter Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2002-2019 the original author or authors.
 *
 * 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
 *
 *      https://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.springframework.integration.support.converter;

import java.util.Map;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.integration.mapping.InboundMessageMapper;
import org.springframework.integration.mapping.OutboundMessageMapper;
import org.springframework.integration.support.DefaultMessageBuilderFactory;
import org.springframework.integration.support.MessageBuilderFactory;
import org.springframework.integration.support.utils.IntegrationUtils;
import org.springframework.lang.Nullable;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHeaders;
import org.springframework.messaging.converter.MessageConversionException;
import org.springframework.messaging.converter.MessageConverter;

/**
 * @author Mark Fisher
 * @author Gary Russell
 * @author Artem Bilan
 *
 * @since 2.0
 */
@SuppressWarnings({ "unchecked", "rawtypes" })
public class SimpleMessageConverter implements MessageConverter, BeanFactoryAware {

	private volatile InboundMessageMapper inboundMessageMapper;

	private volatile OutboundMessageMapper outboundMessageMapper;

	private volatile MessageBuilderFactory messageBuilderFactory = new DefaultMessageBuilderFactory();

	private volatile boolean messageBuilderFactorySet;

	private BeanFactory beanFactory;

	public SimpleMessageConverter() {
		this(null, null);
	}

	public SimpleMessageConverter(InboundMessageMapper inboundMessageMapper) {
		this(inboundMessageMapper,
				(inboundMessageMapper instanceof OutboundMessageMapper
						? (OutboundMessageMapper) inboundMessageMapper
						: null));
	}

	public SimpleMessageConverter(OutboundMessageMapper outboundMessageMapper) {
		this(outboundMessageMapper instanceof InboundMessageMapper
						? (InboundMessageMapper) outboundMessageMapper
						: null,
				outboundMessageMapper);
	}

	public SimpleMessageConverter(InboundMessageMapper inboundMessageMapper,
			OutboundMessageMapper outboundMessageMapper) {
		this.setInboundMessageMapper(inboundMessageMapper);
		this.setOutboundMessageMapper(outboundMessageMapper);
	}


	public final void setInboundMessageMapper(InboundMessageMapper inboundMessageMapper) {
		this.inboundMessageMapper = (inboundMessageMapper != null)
				? inboundMessageMapper
				: new DefaultInboundMessageMapper();
	}

	public final void setOutboundMessageMapper(OutboundMessageMapper outboundMessageMapper) {
		this.outboundMessageMapper = (outboundMessageMapper != null
				? outboundMessageMapper
				: new DefaultOutboundMessageMapper());
	}

	@Override
	public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
		this.beanFactory = beanFactory;
	}

	protected MessageBuilderFactory getMessageBuilderFactory() {
		if (!this.messageBuilderFactorySet) {
			if (this.beanFactory != null) {
				this.messageBuilderFactory = IntegrationUtils.getMessageBuilderFactory(this.beanFactory);
			}
			this.messageBuilderFactorySet = true;
		}
		return this.messageBuilderFactory;
	}

	@Nullable
	@Override
	public Message toMessage(Object object, @Nullable MessageHeaders headers) {
		try {
			return this.inboundMessageMapper.toMessage(object, headers);
		}
		catch (Exception e) {
			throw new MessageConversionException("failed to convert object to Message", e);
		}
	}

	@Nullable
	@Override
	public Object fromMessage(Message message, Class targetClass) {
		try {
			return this.outboundMessageMapper.fromMessage(message);
		}
		catch (Exception e) {
			throw new MessageConversionException(message, "failed to convert Message to object", e);
		}
	}


	private class DefaultInboundMessageMapper implements InboundMessageMapper {

		DefaultInboundMessageMapper() {
			super();
		}

		@Override
		public Message toMessage(Object object, @Nullable Map headers) {
			if (object == null) {
				return null;
			}
			if (object instanceof Message) {
				return (Message) object;
			}
			return getMessageBuilderFactory()
					.withPayload(object)
					.copyHeadersIfAbsent(headers)
					.build();
		}

	}


	private static class DefaultOutboundMessageMapper implements OutboundMessageMapper {

		DefaultOutboundMessageMapper() {
			super();
		}

		@Override
		public Object fromMessage(Message message) {
			return (message != null) ? message.getPayload() : null;
		}

	}

}