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

org.apache.openejb.util.proxy.ProxyManager Maven / Gradle / Ivy

There is a newer version: 10.0.0-M3
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.openejb.util.proxy;

import java.lang.reflect.InvocationHandler;
import java.util.HashMap;

public class ProxyManager {

    private static volatile ProxyFactory defaultFactory = new Jdk13ProxyFactory();
    private static final HashMap factories = new HashMap();
    private static volatile String defaultFactoryName;

    public static synchronized ProxyFactory registerFactory(final String factoryName, final ProxyFactory factory) {
        return (ProxyFactory) factories.put(factoryName, factory);
    }

    public static synchronized ProxyFactory unregisterFactory(final String factoryName) {
        return (ProxyFactory) factories.remove(factoryName);
    }

    public static void checkDefaultFactory() {
        if (defaultFactory == null) {
            throw new IllegalStateException("[Proxy Manager] No default proxy factory specified.");
        }
    }

    public static ProxyFactory getFactory(final String factoryName) {
        return (ProxyFactory) factories.get(factoryName);
    }

    public static synchronized ProxyFactory setDefaultFactory(final String factoryName) {
        final ProxyFactory newFactory = getFactory(factoryName);
        if (newFactory == null) {
            return defaultFactory;
        }

        final ProxyFactory oldFactory = defaultFactory;
        defaultFactory = newFactory;
        defaultFactoryName = factoryName;

        return oldFactory;
    }

    public static ProxyFactory getDefaultFactory() {
        return defaultFactory;
    }

    public static String getDefaultFactoryName() {
        return defaultFactoryName;
    }

    public static InvocationHandler getInvocationHandler(final Object proxy) {
        if (LocalBeanProxyFactory.isProxy(proxy.getClass())) {
            return LocalBeanProxyFactory.getInvocationHandler(proxy);
        }
        checkDefaultFactory();
        return defaultFactory.getInvocationHandler(proxy);
    }

    public static Class getProxyClass(final Class interfaceType) throws IllegalAccessException {
        return getProxyClass(new Class[]{interfaceType});
    }

    public static Class getProxyClass(final Class[] interfaces) throws IllegalAccessException {
        checkDefaultFactory();
        return defaultFactory.getProxyClass(interfaces);
    }

    public static Object newProxyInstance(final Class interfaceType, final InvocationHandler h) throws IllegalAccessException {
        return newProxyInstance(new Class[]{interfaceType}, h);
    }

    public static Object newProxyInstance(final Class[] interfaces, final InvocationHandler h) throws IllegalAccessException {
        checkDefaultFactory();
        return defaultFactory.newProxyInstance(interfaces, h);
    }

    public static boolean isProxyClass(final Class cl) {
        checkDefaultFactory();
        return defaultFactory.isProxyClass(cl);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy