blob: 30b8ae9b02672d8eb5fd317568e2e058f8705914 [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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import org.apache.camel.Processor;
import org.apache.camel.component.bean.BeanInfo;
import org.apache.camel.component.bean.BeanProcessor;
import org.apache.camel.component.bean.MethodNotFoundException;
import org.apache.camel.component.bean.RegistryBean;
import org.apache.camel.spi.Required;
import org.apache.camel.spi.RouteContext;
import org.apache.camel.util.CamelContextHelper;
import org.apache.camel.util.ObjectHelper;
/**
* Represents an XML <bean/> element
*
* @version
*/
@XmlRootElement(name = "bean")
@XmlAccessorType(XmlAccessType.FIELD)
public class BeanDefinition extends NoOutputDefinition<BeanDefinition> {
@XmlAttribute
private String ref;
@XmlAttribute
private String method;
@XmlAttribute
private String beanType;
@XmlTransient
private Object bean;
public BeanDefinition() {
}
public BeanDefinition(String ref) {
this.ref = ref;
}
public BeanDefinition(String ref, String method) {
this.ref = ref;
this.method = method;
}
@Override
public String toString() {
return "Bean[" + getLabel() + "]";
}
@Override
public String getShortName() {
return "bean";
}
public String getRef() {
return ref;
}
@Required
public void setRef(String ref) {
this.ref = ref;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public void setBean(Object bean) {
this.bean = bean;
}
public String getBeanType() {
return beanType;
}
public void setBeanType(String beanType) {
this.beanType = beanType;
}
// Fluent API
//-------------------------------------------------------------------------
/**
* Sets the ref String on camel bean
*
* @param ref the bean's id in the registry
* @return the builder
*/
public BeanDefinition ref(String ref) {
setRef(ref);
return this;
}
/**
* Sets the calling method name of camel bean
*
* @param method the bean's method name which wants camel to call
* @return the builder
*/
public BeanDefinition method(String method) {
setMethod(method);
return this;
}
/**
* Sets the bean's instance that camel to call
*
* @param bean the instance of the bean
* @return the builder
*/
public BeanDefinition bean(Object bean) {
setBean(bean);
return this;
}
/**
* Sets the Class of the bean that camel will instantiation it for calling
*
* @param beanType the Class of the bean
* @return the builder
*/
public BeanDefinition beanType(Class<?> beanType) {
setBean(beanType);
return this;
}
@Override
public Processor createProcessor(RouteContext routeContext) {
BeanProcessor answer;
if (ObjectHelper.isNotEmpty(ref)) {
RegistryBean beanHolder = new RegistryBean(routeContext.getCamelContext(), ref);
// bean holder will check if the bean exists
bean = beanHolder.getBean();
answer = new BeanProcessor(beanHolder);
} else {
if (bean == null) {
ObjectHelper.notNull(beanType, "bean, ref or beanType", this);
Class<?> clazz;
try {
clazz = routeContext.getCamelContext().getClassResolver().resolveMandatoryClass(beanType);
} catch (ClassNotFoundException e) {
throw ObjectHelper.wrapRuntimeCamelException(e);
}
bean = CamelContextHelper.newInstance(routeContext.getCamelContext(), clazz);
}
ObjectHelper.notNull(bean, "bean", this);
// validate the bean type is not from java so you by mistake think its a reference
// to a bean name but the String is being invoke instead
if (bean instanceof String) {
throw new IllegalArgumentException("The bean instance is a java.lang.String type: " + bean
+ ". We suppose you want to refer to a bean instance by its id instead. Please use beanRef.");
}
answer = new BeanProcessor(bean, routeContext.getCamelContext());
}
if (method != null) {
answer.setMethod(method);
// check there is a method with the given name, and leverage BeanInfo for that
BeanInfo info = new BeanInfo(routeContext.getCamelContext(), bean.getClass());
if (!info.hasMethod(method)) {
throw ObjectHelper.wrapRuntimeCamelException(new MethodNotFoundException(null, bean, method));
}
}
return answer;
}
@Override
public String getLabel() {
if (ref != null) {
String methodText = "";
if (method != null) {
methodText = " method: " + method;
}
return "ref:" + ref + methodText;
} else if (bean != null) {
return bean.toString();
} else if (beanType != null) {
return beanType;
} else {
return "";
}
}
}