blob: 32f1dd63bc18dcdaccd43d9a16923c94196254cd [file] [log] [blame]
/**
* 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.model;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import org.apache.camel.Expression;
import org.apache.camel.Predicate;
import org.apache.camel.Processor;
import org.apache.camel.builder.ExpressionBuilder;
import org.apache.camel.processor.CatchProcessor;
import org.apache.camel.processor.TryProcessor;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.util.CastUtils;
import static org.apache.camel.builder.PredicateBuilder.toPredicate;
/**
* Represents an XML <try/> element
*
* @version
*/
@XmlRootElement(name = "doTry")
@XmlAccessorType(XmlAccessType.FIELD)
public class TryDefinition extends OutputDefinition<TryDefinition> {
@XmlTransient
private List<CatchDefinition> catchClauses;
@XmlTransient
private FinallyDefinition finallyClause;
@XmlTransient
private boolean initialized;
@XmlTransient
private List<ProcessorDefinition> outputsWithoutCatches;
public TryDefinition() {
}
@Override
public String toString() {
return "DoTry[" + getOutputs() + "]";
}
@Override
public String getShortName() {
return "doTry";
}
@Override
public String getLabel() {
return "doTry";
}
@Override
public Processor createProcessor(RouteContext routeContext) throws Exception {
Processor tryProcessor = createOutputsProcessor(routeContext, getOutputsWithoutCatches());
if (tryProcessor == null) {
throw new IllegalArgumentException("Definition has no children on " + this);
}
Processor finallyProcessor = null;
if (finallyClause != null) {
finallyProcessor = finallyClause.createProcessor(routeContext);
}
List<CatchProcessor> catchProcessors = new ArrayList<CatchProcessor>();
if (catchClauses != null) {
for (CatchDefinition catchClause : catchClauses) {
catchProcessors.add(catchClause.createProcessor(routeContext));
}
}
return new TryProcessor(tryProcessor, catchProcessors, finallyProcessor);
}
// Fluent API
// -------------------------------------------------------------------------
/**
* Handles the given exception(s)
*
* @param exceptionType the exception(s)
* @return the try builder
*/
public TryDefinition doCatch(Class... exceptionType) {
popBlock();
List<Class> list = CastUtils.cast(Arrays.asList(exceptionType));
CatchDefinition answer = new CatchDefinition(list);
addOutput(answer);
pushBlock(answer);
return this;
}
/**
* The finally block for a given handle
*
* @return the try builder
*/
public TryDefinition doFinally() {
popBlock();
FinallyDefinition answer = new FinallyDefinition();
addOutput(answer);
pushBlock(answer);
return this;
}
/**
* Sets an additional predicate that should be true before the onCatch is triggered.
* <p/>
* To be used for fine grained controlling whether a thrown exception should be intercepted
* by this exception type or not.
*
* @param predicate predicate that determines true or false
* @return the builder
*/
public TryDefinition onWhen(Predicate predicate) {
// we must use a delegate so we can use the fluent builder based on TryDefinition
// to configure all with try .. catch .. finally
// set the onWhen predicate on all the catch definitions
Iterator<CatchDefinition> it = ProcessorDefinitionHelper.filterTypeInOutputs(getOutputs(), CatchDefinition.class);
while (it.hasNext()) {
CatchDefinition doCatch = it.next();
doCatch.setOnWhen(new WhenDefinition(predicate));
}
return this;
}
/**
* Sets whether the exchange should be marked as handled or not.
*
* @param handled handled or not
* @return the builder
* @deprecated will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
* from a {@link Processor} or use the {@link ProcessorDefinition#throwException(Exception)}
*/
@Deprecated
public TryDefinition handled(boolean handled) {
Expression expression = ExpressionBuilder.constantExpression(Boolean.toString(handled));
return handled(expression);
}
/**
* Sets whether the exchange should be marked as handled or not.
*
* @param handled predicate that determines true or false
* @return the builder
* @deprecated will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
* from a {@link Processor} or use the {@link ProcessorDefinition#throwException(Exception)}
*/
@Deprecated
public TryDefinition handled(Predicate handled) {
// we must use a delegate so we can use the fluent builder based on TryDefinition
// to configure all with try .. catch .. finally
// set the handled on all the catch definitions
Iterator<CatchDefinition> it = ProcessorDefinitionHelper.filterTypeInOutputs(getOutputs(), CatchDefinition.class);
while (it.hasNext()) {
CatchDefinition doCatch = it.next();
doCatch.setHandledPolicy(handled);
}
return this;
}
/**
* Sets whether the exchange should be marked as handled or not.
*
* @param handled expression that determines true or false
* @return the builder
* @deprecated will be removed in Camel 3.0. Instead of using handled(false) you can re-throw the exception
* from a {@link Processor} or use the {@link ProcessorDefinition#throwException(Exception)}
*/
@Deprecated
public TryDefinition handled(Expression handled) {
return handled(toPredicate(handled));
}
// Properties
// -------------------------------------------------------------------------
public List<CatchDefinition> getCatchClauses() {
if (catchClauses == null) {
checkInitialized();
}
return catchClauses;
}
public FinallyDefinition getFinallyClause() {
if (finallyClause == null) {
checkInitialized();
}
return finallyClause;
}
public List<ProcessorDefinition> getOutputsWithoutCatches() {
if (outputsWithoutCatches == null) {
checkInitialized();
}
return outputsWithoutCatches;
}
public void setOutputs(List<ProcessorDefinition> outputs) {
initialized = false;
super.setOutputs(outputs);
}
@Override
public void addOutput(ProcessorDefinition output) {
initialized = false;
super.addOutput(output);
}
/**
* Checks whether or not this object has been initialized
*/
protected void checkInitialized() {
if (!initialized) {
initialized = true;
outputsWithoutCatches = new ArrayList<ProcessorDefinition>();
catchClauses = new ArrayList<CatchDefinition>();
finallyClause = null;
for (ProcessorDefinition output : outputs) {
if (output instanceof CatchDefinition) {
catchClauses.add((CatchDefinition)output);
} else if (output instanceof FinallyDefinition) {
if (finallyClause != null) {
throw new IllegalArgumentException("Multiple finally clauses added: " + finallyClause
+ " and " + output);
} else {
finallyClause = (FinallyDefinition)output;
}
} else {
outputsWithoutCatches.add(output);
}
}
}
}
}