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

org.apache.camel.component.bean.ProxyHelper 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.component.bean;

import java.lang.reflect.Proxy;

import org.apache.camel.Endpoint;
import org.apache.camel.Producer;
import org.apache.camel.processor.DeferServiceFactory;

/**
 * A helper class for creating proxies which delegate to Camel
 *
 * @version 
 */
public final class ProxyHelper {

    /**
     * Utility classes should not have a public constructor.
     */
    private ProxyHelper() {
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxyObject(Endpoint endpoint, Producer producer, ClassLoader classLoader, Class[] interfaces, MethodInfoCache methodCache) {
        return createProxyObject(endpoint, true, producer, classLoader, interfaces, methodCache);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    @SuppressWarnings("unchecked")
    public static  T createProxyObject(Endpoint endpoint, boolean binding, Producer producer, ClassLoader classLoader, Class[] interfaces, MethodInfoCache methodCache) {
        return (T) Proxy.newProxyInstance(classLoader, interfaces.clone(), new CamelInvocationHandler(endpoint, binding, producer, methodCache));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxy(Endpoint endpoint, ClassLoader cl, Class interfaceClass, MethodInfoCache methodCache) throws Exception {
        return createProxy(endpoint, true, cl, toArray(interfaceClass), methodCache);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, boolean binding, ClassLoader cl, Class interfaceClass, MethodInfoCache methodCache) throws Exception {
        return createProxy(endpoint, binding, cl, toArray(interfaceClass), methodCache);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxy(Endpoint endpoint, ClassLoader cl, Class[] interfaceClasses, MethodInfoCache methodCache) throws Exception {
        return createProxy(endpoint, true, cl, interfaceClasses, methodCache);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, boolean binding, ClassLoader cl, Class[] interfaceClasses, MethodInfoCache methodCache) throws Exception {
        Producer producer = DeferServiceFactory.createProducer(endpoint);
        endpoint.getCamelContext().deferStartService(producer, true);
        return createProxyObject(endpoint, binding, producer, cl, interfaceClasses, methodCache);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, ClassLoader cl, Class interfaceClass) throws Exception {
        return createProxy(endpoint, true, cl, toArray(interfaceClass));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxy(Endpoint endpoint, ClassLoader cl, Class... interfaceClasses) throws Exception {
        return createProxy(endpoint, true, cl, interfaceClasses);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, boolean binding, ClassLoader cl, Class... interfaceClasses) throws Exception {
        return createProxy(endpoint, binding, cl, interfaceClasses, createMethodInfoCache(endpoint));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, Class interfaceClass) throws Exception {
        return createProxy(endpoint, true, toArray(interfaceClass));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxy(Endpoint endpoint, Class... interfaceClasses) throws Exception {
        return createProxy(endpoint, true, interfaceClasses);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, boolean binding, Class... interfaceClasses) throws Exception {
        return createProxy(endpoint, binding, getClassLoader(interfaceClasses), interfaceClasses);
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, Producer producer, Class interfaceClass) throws Exception {
        return createProxy(endpoint, true, producer, toArray(interfaceClass));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     *
     * @deprecated use the same method name with binding as parameter
     */
    @Deprecated
    public static  T createProxy(Endpoint endpoint, Producer producer, Class... interfaceClasses) throws Exception {
        return createProxyObject(endpoint, true, producer, getClassLoader(interfaceClasses), interfaceClasses, createMethodInfoCache(endpoint));
    }

    /**
     * Creates a Proxy which sends the exchange to the endpoint.
     */
    public static  T createProxy(Endpoint endpoint, boolean binding, Producer producer, Class... interfaceClasses) throws Exception {
        return createProxyObject(endpoint, binding, producer, getClassLoader(interfaceClasses), interfaceClasses, createMethodInfoCache(endpoint));
    }

    /**
     * Returns the class loader of the first interface or throws {@link IllegalArgumentException} if there are no interfaces specified
     */
    protected static ClassLoader getClassLoader(Class... interfaces) {
        if (interfaces == null || interfaces.length < 1) {
            throw new IllegalArgumentException("You must provide at least 1 interface class.");
        }
        return interfaces[0].getClassLoader();
    }

    protected static MethodInfoCache createMethodInfoCache(Endpoint endpoint) {
        return new MethodInfoCache(endpoint.getCamelContext());
    }

    @SuppressWarnings("unchecked")
    private static  Class[] toArray(Class interfaceClass) {
        // this method and it's usage is introduced to avoid compiler warnings
        // about the generic Class arrays in the case we've got only one single
        // Class to build a Proxy for
        return new Class[] {interfaceClass};
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy