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

org.apache.camel.model.TryDefinition Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * 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.TryProcessor;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.util.ExpressionToPredicateAdapter;

/**
 * Marks the beginning of a try, catch, finally block
 *
 * @version 
 */
@Metadata(label = "error")
@XmlRootElement(name = "doTry")
@XmlAccessorType(XmlAccessType.FIELD)
public class TryDefinition extends OutputDefinition {
    @XmlTransient
    private List catchClauses;
    @XmlTransient
    private FinallyDefinition finallyClause;
    @XmlTransient
    private boolean initialized;
    @XmlTransient
    private List> outputsWithoutCatches;

    public TryDefinition() {
    }

    @Override
    public String toString() {
        return "DoTry[" + getOutputs() + "]";
    }

    @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);
        }

        List catchProcessors = new ArrayList();
        if (catchClauses != null) {
            for (CatchDefinition catchClause : catchClauses) {
                catchProcessors.add(createProcessor(routeContext, catchClause));
            }
        }

        FinallyDefinition finallyDefinition = finallyClause;
        if (finallyDefinition == null) {
            finallyDefinition = new FinallyDefinition();
            finallyDefinition.setParent(this);
        }
        Processor finallyProcessor = createProcessor(routeContext, finallyDefinition);

        // must have either a catch or finally
        if (finallyClause == null && catchClauses == null) {
            throw new IllegalArgumentException("doTry must have one or more catch or finally blocks on " + this);
        }

        return new TryProcessor(tryProcessor, catchProcessors, finallyProcessor);
    }

    // Fluent API
    // -------------------------------------------------------------------------

    /**
     * Handles the given exception
     *
     * @param exceptionType  the exception
     * @return the try builder
     */
    @SuppressWarnings("unchecked")
    public TryDefinition doCatch(Class exceptionType) {
        // this method is introduced to avoid compiler warnings about the
        // generic Class arrays in the case we've got only one single Class
        // to build a TryDefinition for
        return doCatch(new Class[] {exceptionType});
    }

    /**
     * Handles the given exception(s)
     *
     * @param exceptionType  the exception(s)
     * @return the try builder
     */
    public TryDefinition doCatch(Class... exceptionType) {
        popBlock();
        List> list = 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.
     * 

* 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 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 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(ExpressionToPredicateAdapter.toPredicate(handled)); } // Properties // ------------------------------------------------------------------------- public List getCatchClauses() { if (catchClauses == null) { checkInitialized(); } return catchClauses; } public FinallyDefinition getFinallyClause() { if (finallyClause == null) { checkInitialized(); } return finallyClause; } public List> getOutputsWithoutCatches() { if (outputsWithoutCatches == null) { checkInitialized(); } return outputsWithoutCatches; } public void setOutputs(List> outputs) { initialized = false; super.setOutputs(outputs); } @Override public void addOutput(ProcessorDefinition output) { initialized = false; super.addOutput(output); } @Override protected void preCreateProcessor() { // force re-creating initialization to ensure its up-to-date initialized = false; checkInitialized(); } /** * Checks whether or not this object has been initialized */ protected void checkInitialized() { if (!initialized) { initialized = true; outputsWithoutCatches = new ArrayList>(); catchClauses = new ArrayList(); 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); } } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy