Package org.jboss.invocation

Source Code of org.jboss.invocation.InVMRemoteInterceptor

/*
* JBoss, Home of Professional Open Source.
* Copyright 2011, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.invocation;

import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedAction;
import org.jboss.marshalling.cloner.ClassLoaderClassCloner;
import org.jboss.marshalling.cloner.ClonerConfiguration;
import org.jboss.marshalling.cloner.ObjectCloner;
import org.jboss.marshalling.cloner.ObjectClonerFactory;
import org.jboss.marshalling.cloner.ObjectCloners;

import javax.interceptor.InvocationContext;

/**
* An invocation processor which passes the invocation (possibly by value) to a target class loader.  Invocations will be
* cloned to the target class loader; replies will be cloned to the caller's thread context class loader.  The target
* interceptor is responsible for security concerns such as authorization as well as setting up environmental context
* such as transaction propagation, naming context, context class loader, etc.
*
* @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a>
*/
public final class InVMRemoteInterceptor implements Interceptor {

    private static final PrivilegedAction<ClassLoader> GET_CLASS_LOADER_ACTION = new PrivilegedAction<ClassLoader>() {
        public ClassLoader run() {
            return Thread.currentThread().getContextClassLoader();
        }
    };

    private final Interceptor targetInterceptor;
    private final Method targetMethod;
    private final ClassLoaderClassCloner classCloner;
    private final PassMode passMode;
    private final Object targetInstance;
    private final ClonerConfiguration configuration;

    /**
     * Construct a new instance.
     *
     * @param targetInterceptor the target interceptor
     * @param targetMethod the target method
     * @param targetClassLoader the target class loader
     * @param passMode the parameter pass mode
     * @param targetInstance the target invocation instance
     */
    public InVMRemoteInterceptor(final Interceptor targetInterceptor, final Method targetMethod, final ClassLoader targetClassLoader, final PassMode passMode, final Object targetInstance) {
        this.targetInterceptor = targetInterceptor;
        this.targetMethod = targetMethod;
        this.passMode = passMode;
        this.targetInstance = targetInstance;
        configuration = new ClonerConfiguration();
        configuration.setClassCloner(classCloner = new ClassLoaderClassCloner(targetClassLoader));
    }

    /** {@inheritDoc} */
    public Object processInvocation(final InvocationContext context) throws Exception {
        final Object[] parameters = context.getParameters();
        final ObjectClonerFactory clonerFactory = ObjectCloners.getSerializingObjectClonerFactory();
        final ObjectCloner cloner = clonerFactory.createCloner(configuration);
        final Object[] newParameters;
        switch (passMode) {
            case REFERENCE_ONLY: {
                newParameters = parameters;
                break;
            }
            case SAME_CLASS_LOADER: {
                newParameters = parameters.clone();
                final int len = newParameters.length;
                for (int i = 0; i < len; i++) {
                    final Object param = parameters[i];
                    if (param != null) {
                        final Class<?> origClass = param.getClass();
                        final Class<?> newClass = classCloner.clone(origClass);
                        if (newClass != origClass) {
                            newParameters[i] = cloner.clone(param);
                        }
                    }
                }
                break;
            }
            case VALUE_ONLY: {
                final int len = parameters.length;
                newParameters = new Object[len];
                for (int i = 0; i < len; i++) {
                     newParameters[i] = cloner.clone(parameters[i]);
                }
                break;
            }
            default: {
                // not reachable
                throw new IllegalStateException();
            }
        }
        final InvocationContext newContext = new SimpleInvocationContext(targetInstance, targetMethod, newParameters, context.getContextData(), null);
        final Object result = targetInterceptor.processInvocation(newContext);
        switch (passMode) {
            case REFERENCE_ONLY: {
                return result;
            }
            case SAME_CLASS_LOADER: {
                if (result == null) {
                    return null;
                }
                final ClassLoaderClassCloner classCloner = new ClassLoaderClassCloner(getContextClassLoader());
                final Class<?> classClone = classCloner.clone(result.getClass());
                if (classClone == result.getClass()) {
                    return result;
                }
                // fall through
            }
            case VALUE_ONLY: {
                if (result == null) {
                    return null;
                }
                final ClonerConfiguration copyBackConfiguration = new ClonerConfiguration();
                copyBackConfiguration.setClassCloner(new ClassLoaderClassCloner(getContextClassLoader()));
                return clonerFactory.createCloner(copyBackConfiguration).clone(result);
            }
            default: {
                // not reachable
                throw new IllegalStateException();
            }
        }
    }

    private ClassLoader getContextClassLoader() {
        final SecurityManager sm = System.getSecurityManager();
        if (sm != null) {
            return AccessController.doPrivileged(GET_CLASS_LOADER_ACTION);
        } else {
            return Thread.currentThread().getContextClassLoader();
        }
    }

    /**
     * The mode to use for parameter and result passing to the target.
     */
    public enum PassMode {
        /**
         * Pass all items by reference always.
         */
        REFERENCE_ONLY,
        /**
         * Pass items by reference which are of the same type and class loader.
         */
        SAME_CLASS_LOADER,
        /**
         * Pass all items by value always.
         */
        VALUE_ONLY,
    }
}
TOP

Related Classes of org.jboss.invocation.InVMRemoteInterceptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.