/* * Copyright 2002-2015 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 * * 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.springframework.integration.support.converter; 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.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; } @Override public Message<?> toMessage(Object object, MessageHeaders headers) { try { return this.inboundMessageMapper.toMessage(object); } catch (Exception e) { throw new MessageConversionException("failed to convert object to Message", e); } } @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<Object> { DefaultInboundMessageMapper() { super(); } @Override public Message<?> toMessage(Object object) throws Exception { if (object == null) { return null; } if (object instanceof Message<?>) { return (Message<?>) object; } return getMessageBuilderFactory().withPayload(object).build(); } } private static class DefaultOutboundMessageMapper implements OutboundMessageMapper<Object> { DefaultOutboundMessageMapper() { super(); } @Override public Object fromMessage(Message<?> message) throws Exception { return (message != null) ? message.getPayload() : null; } } }