blob: 0ab1c157e79992d5132074762668e251c31ff45b [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.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import org.apache.camel.Processor;
import org.apache.camel.processor.AOPProcessor;
import org.apache.camel.spi.RouteContext;
/**
* Represents an XML <aop/> element
*
* @deprecated will be removed in the future. You can for example use {@link Processor} and
* {@link org.apache.camel.spi.InterceptStrategy} to do AOP in Camel.
* @version
*/
@XmlRootElement(name = "aop")
@XmlAccessorType(XmlAccessType.FIELD)
@Deprecated
public class AOPDefinition extends OutputDefinition<AOPDefinition> {
@XmlAttribute
private String beforeUri;
@XmlAttribute
private String afterUri;
@XmlAttribute
private String afterFinallyUri;
public AOPDefinition() {
}
@Override
public String toString() {
return "AOP[" + getOutputs() + "]";
}
public String getBeforeUri() {
return beforeUri;
}
public void setBeforeUri(String beforeUri) {
this.beforeUri = beforeUri;
}
public String getAfterUri() {
return afterUri;
}
public void setAfterUri(String afterUri) {
this.afterUri = afterUri;
}
public String getAfterFinallyUri() {
return afterFinallyUri;
}
public void setAfterFinallyUri(String afterFinallyUri) {
this.afterFinallyUri = afterFinallyUri;
}
@Override
public String getShortName() {
return "aop";
}
@Override
public String getLabel() {
return "aop";
}
@Override
public Processor createProcessor(final RouteContext routeContext) throws Exception {
// either before or after must be provided
if (beforeUri == null && afterUri == null && afterFinallyUri == null) {
throw new IllegalArgumentException("At least one of before, after or afterFinally must be provided on: " + this);
}
// use a pipeline to assemble the before and target processor
// and the after if not afterFinally
Collection<ProcessorDefinition> pipe = new ArrayList<ProcessorDefinition>();
Processor finallyProcessor = null;
if (beforeUri != null) {
pipe.add(new ToDefinition(beforeUri));
}
pipe.addAll(getOutputs());
if (afterUri != null) {
pipe.add(new ToDefinition(afterUri));
} else if (afterFinallyUri != null) {
finallyProcessor = new ToDefinition(afterFinallyUri).createProcessor(routeContext);
}
Processor tryProcessor = createOutputsProcessor(routeContext, pipe);
// the AOP processor is based on TryProcessor so we do not have any catches
return new AOPProcessor(tryProcessor, null, finallyProcessor);
}
/**
* Uses a AOP around.
*
* @param beforeUri the uri of the before endpoint
* @param afterUri the uri of the after endpoint
* @return the builder
*/
public AOPDefinition around(String beforeUri, String afterUri) {
this.beforeUri = beforeUri;
this.afterUri = afterUri;
this.afterFinallyUri = null;
return this;
}
/**
* Uses a AOP around with after being invoked in a finally block
*
* @param beforeUri the uri of the before endpoint
* @param afterUri the uri of the after endpoint
* @return the builder
*/
public AOPDefinition aroundFinally(String beforeUri, String afterUri) {
this.beforeUri = beforeUri;
this.afterUri = null;
this.afterFinallyUri = afterUri;
return this;
}
/**
* Uses a AOP before.
*
* @param beforeUri the uri of the before endpoint
* @return the builder
*/
public AOPDefinition before(String beforeUri) {
this.beforeUri = beforeUri;
this.afterUri = null;
this.afterFinallyUri = null;
return this;
}
/**
* Uses a AOP after.
*
* @param afterUri the uri of the after endpoint
* @return the builder
*/
public AOPDefinition after(String afterUri) {
this.beforeUri = null;
this.afterUri = afterUri;
this.afterFinallyUri = null;
return this;
}
/**
* Uses a AOP after with after being invoked in a finally block.
*
* @param afterUri the uri of the after endpoint
* @return the builder
*/
public AOPDefinition afterFinally(String afterUri) {
this.beforeUri = null;
this.afterUri = null;
this.afterFinallyUri = afterUri;
return this;
}
}