blob: 8224a5e9cdd1463b9bcf9fc8efe7b47161a07b5e [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.AbstractList;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
import org.apache.camel.Predicate;
import org.apache.camel.Processor;
import org.apache.camel.builder.ExpressionClause;
import org.apache.camel.processor.ChoiceProcessor;
import org.apache.camel.processor.FilterProcessor;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.util.CollectionStringBuffer;
import org.apache.camel.util.ObjectHelper;
/**
* Represents an XML <choice/> element
*
* @version
*/
@XmlRootElement(name = "choice")
@XmlAccessorType(XmlAccessType.FIELD)
public class ChoiceDefinition extends ProcessorDefinition<ChoiceDefinition> {
@XmlElementRef
private List<WhenDefinition> whenClauses = new ArrayList<WhenDefinition>();
@XmlElement
private OtherwiseDefinition otherwise;
public ChoiceDefinition() {
}
@Override
public List<ProcessorDefinition> getOutputs() {
// wrap the outputs into a list where we can on the inside control the when/otherwise
// but make it appear as a list on the outside
return new AbstractList<ProcessorDefinition>() {
public ProcessorDefinition get(int index) {
if (index < whenClauses.size()) {
return whenClauses.get(index);
}
if (index == whenClauses.size()) {
return otherwise;
}
throw new IndexOutOfBoundsException("Index " + index + " is out of bounds with size " + size());
}
public boolean add(ProcessorDefinition def) {
if (def instanceof WhenDefinition) {
return whenClauses.add((WhenDefinition)def);
} else if (def instanceof OtherwiseDefinition) {
otherwise = (OtherwiseDefinition)def;
return true;
}
throw new IllegalArgumentException("Expected either a WhenDefinition or OtherwiseDefinition but was "
+ ObjectHelper.classCanonicalName(def));
}
public int size() {
return whenClauses.size() + (otherwise == null ? 0 : 1);
}
public void clear() {
whenClauses.clear();
otherwise = null;
}
public ProcessorDefinition set(int index, ProcessorDefinition element) {
if (index < whenClauses.size()) {
if (element instanceof WhenDefinition) {
return whenClauses.set(index, (WhenDefinition)element);
}
throw new IllegalArgumentException("Expected WhenDefinition but was "
+ ObjectHelper.classCanonicalName(element));
} else if (index == whenClauses.size()) {
ProcessorDefinition old = otherwise;
otherwise = (OtherwiseDefinition)element;
return old;
}
throw new IndexOutOfBoundsException("Index " + index + " is out of bounds with size " + size());
}
public ProcessorDefinition remove(int index) {
if (index < whenClauses.size()) {
return whenClauses.remove(index);
} else if (index == whenClauses.size()) {
ProcessorDefinition old = otherwise;
otherwise = null;
return old;
}
throw new IndexOutOfBoundsException("Index " + index + " is out of bounds with size " + size());
}
};
}
@Override
public boolean isOutputSupported() {
return true;
}
@Override
public String toString() {
return "Choice[" + getWhenClauses() + (getOtherwise() != null ? " " + getOtherwise() : "") + "]";
}
@Override
public String getShortName() {
return "choice";
}
@Override
public Processor createProcessor(RouteContext routeContext) throws Exception {
List<FilterProcessor> filters = new ArrayList<FilterProcessor>();
for (WhenDefinition whenClause : whenClauses) {
filters.add(whenClause.createProcessor(routeContext));
}
Processor otherwiseProcessor = null;
if (otherwise != null) {
otherwiseProcessor = otherwise.createProcessor(routeContext);
}
return new ChoiceProcessor(filters, otherwiseProcessor);
}
// Fluent API
// -------------------------------------------------------------------------
/**
* Sets the predicate for the when node
*
* @param predicate the predicate
* @return the builder
*/
public ChoiceDefinition when(Predicate predicate) {
addClause(new WhenDefinition(predicate));
return this;
}
/**
* Creates an expression for the when node
*
* @return expression to be used as builder to configure the when node
*/
public ExpressionClause<ChoiceDefinition> when() {
ExpressionClause<ChoiceDefinition> clause = new ExpressionClause<ChoiceDefinition>(this);
addClause(new WhenDefinition(clause));
return clause;
}
private void addClause(ProcessorDefinition when) {
popBlock();
addOutput(when);
pushBlock(when);
}
/**
* Sets the otherwise node
*
* @return the builder
*/
public ChoiceDefinition otherwise() {
OtherwiseDefinition answer = new OtherwiseDefinition();
addClause(answer);
return this;
}
@Override
public void setId(String value) {
// when setting id, we should set it on the fine grained element, if possible
if (otherwise != null) {
otherwise.setId(value);
} else if (!getWhenClauses().isEmpty()) {
int size = getWhenClauses().size();
getWhenClauses().get(size - 1).setId(value);
} else {
super.setId(value);
}
}
// Properties
// -------------------------------------------------------------------------
@Override
public String getLabel() {
CollectionStringBuffer buffer = new CollectionStringBuffer();
List<WhenDefinition> list = getWhenClauses();
for (WhenDefinition whenType : list) {
buffer.append(whenType.getLabel());
}
return buffer.toString();
}
public List<WhenDefinition> getWhenClauses() {
return whenClauses;
}
public void setWhenClauses(List<WhenDefinition> whenClauses) {
this.whenClauses = whenClauses;
}
public OtherwiseDefinition getOtherwise() {
return otherwise;
}
public void setOtherwise(OtherwiseDefinition otherwise) {
this.otherwise = otherwise;
}
@Override
protected void configureChild(ProcessorDefinition output) {
if (whenClauses == null || whenClauses.isEmpty()) {
return;
}
for (WhenDefinition when : whenClauses) {
if (when.getExpression() instanceof ExpressionClause) {
ExpressionClause clause = (ExpressionClause) when.getExpression();
if (clause.getExpressionType() != null) {
// if using the Java DSL then the expression may have been set using the
// ExpressionClause which is a fancy builder to define expressions and predicates
// using fluent builders in the DSL. However we need afterwards a callback to
// reset the expression to the expression type the ExpressionClause did build for us
when.setExpression(clause.getExpressionType());
}
}
}
}
}