/* * 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.transformer; import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.BeanFactoryAware; import org.springframework.context.Lifecycle; import org.springframework.integration.handler.MessageProcessor; 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.util.Assert; /** * Base class for Message Transformers that delegate to a {@link MessageProcessor}. * * @author Mark Fisher * @author Artem Bilan */ public abstract class AbstractMessageProcessingTransformer implements Transformer, BeanFactoryAware, Lifecycle { private final MessageProcessor<?> messageProcessor; private volatile MessageBuilderFactory messageBuilderFactory = new DefaultMessageBuilderFactory(); private volatile boolean messageBuilderFactorySet; private BeanFactory beanFactory; protected AbstractMessageProcessingTransformer(MessageProcessor<?> messageProcessor) { Assert.notNull(messageProcessor, "messageProcessor must not be null"); this.messageProcessor = messageProcessor; } @Override public void setBeanFactory(BeanFactory beanFactory) { this.beanFactory = beanFactory; if (this.messageProcessor instanceof BeanFactoryAware) { ((BeanFactoryAware) this.messageProcessor).setBeanFactory(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 void start() { if (this.messageProcessor instanceof Lifecycle) { ((Lifecycle) this.messageProcessor).start(); } } @Override public void stop() { if (this.messageProcessor instanceof Lifecycle) { ((Lifecycle) this.messageProcessor).stop(); } } @Override public boolean isRunning() { return !(this.messageProcessor instanceof Lifecycle) || ((Lifecycle) this.messageProcessor).isRunning(); } @Override public final Message<?> transform(Message<?> message) { Object result = this.messageProcessor.processMessage(message); if (result == null) { return null; } if (result instanceof Message<?>) { return (Message<?>) result; } return getMessageBuilderFactory().withPayload(result).copyHeaders(message.getHeaders()).build(); } }