001/**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.camel.processor;
018
019import org.apache.camel.AsyncCallback;
020import org.apache.camel.AsyncProcessor;
021import org.apache.camel.Exchange;
022import org.apache.camel.Expression;
023import org.apache.camel.Message;
024import org.apache.camel.Traceable;
025import org.apache.camel.impl.DefaultMessage;
026import org.apache.camel.spi.IdAware;
027import org.apache.camel.support.ServiceSupport;
028import org.apache.camel.util.AsyncProcessorHelper;
029import org.apache.camel.util.ExchangeHelper;
030import org.apache.camel.util.ObjectHelper;
031
032/**
033 * A processor which sets the body on the OUT message with an {@link Expression}.
034 */
035public class TransformProcessor extends ServiceSupport implements AsyncProcessor, Traceable, IdAware {
036    private String id;
037    private final Expression expression;
038
039    public TransformProcessor(Expression expression) {
040        ObjectHelper.notNull(expression, "expression", this);
041        this.expression = expression;
042    }
043
044    public void process(Exchange exchange) throws Exception {
045        AsyncProcessorHelper.process(this, exchange);
046    }
047
048    public boolean process(Exchange exchange, AsyncCallback callback) {
049        try {
050            Object newBody = expression.evaluate(exchange, Object.class);
051
052            if (exchange.getException() != null) {
053                // the expression threw an exception so we should break-out
054                callback.done(true);
055                return true;
056            }
057
058            boolean out = exchange.hasOut();
059            Message old = out ? exchange.getOut() : exchange.getIn();
060
061            // create a new message container so we do not drag specialized message objects along
062            // but that is only needed if the old message is a specialized message
063            boolean copyNeeded = !(old.getClass().equals(DefaultMessage.class));
064
065            if (copyNeeded) {
066                Message msg = new DefaultMessage(exchange.getContext());
067                msg.copyFromWithNewBody(old, newBody);
068
069                // replace message on exchange (must set as OUT)
070                ExchangeHelper.replaceMessage(exchange, msg, true);
071            } else {
072                // no copy needed so set replace value directly
073                old.setBody(newBody);
074
075                // but the message must be on OUT
076                if (!exchange.hasOut()) {
077                    exchange.setOut(exchange.getIn());
078                }
079            }
080
081        } catch (Throwable e) {
082            exchange.setException(e);
083        }
084
085        callback.done(true);
086        return true;
087    }
088
089    @Override
090    public String toString() {
091        return "Transform(" + expression + ")";
092    }
093
094    public String getTraceLabel() {
095        return "transform[" + expression + "]";
096    }
097
098    public String getId() {
099        return id;
100    }
101
102    public void setId(String id) {
103        this.id = id;
104    }
105
106    public Expression getExpression() {
107        return expression;
108    }
109
110    @Override
111    protected void doStart() throws Exception {
112        // noop
113    }
114
115    @Override
116    protected void doStop() throws Exception {
117        // noop
118    }
119}