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

org.apache.openejb.loader.SystemClassPath Maven / Gradle / Ivy

The 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.loader;

import java.io.File;
import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLDecoder;
import java.security.AccessController;
import java.security.PrivilegedAction;

/*-------------------------------------------------------*/
/* System ClassLoader Support */
/*-------------------------------------------------------*/

public class SystemClassPath extends BasicURLClassPath {

    private URLClassLoader sysLoader;

    @Override
    public void addJarsToPath(final File dir) throws Exception {
        this.addJarsToPath(dir, getSystemLoader());
        this.rebuildJavaClassPathVariable();
    }

    @Override
    public void addJarToPath(final URL jar) throws Exception {
        this.addJarToPath(jar, getSystemLoader());
        this.rebuildJavaClassPathVariable();
    }

    @Override
    public ClassLoader getClassLoader() {
        try {
            return getSystemLoader();
        } catch (final Exception e) {
            throw new LoaderRuntimeException(e);
        }
    }

    private URLClassLoader getSystemLoader() throws Exception {
        if (sysLoader == null) {
            sysLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
        }
        return sysLoader;
    }

    private void rebuildJavaClassPathVariable() throws Exception {
        final URLClassLoader loader = getSystemLoader();
        final Object cp = getURLClassPath(loader);
        final Method getURLsMethod = getGetURLsMethod();
        final URL[] urls = (URL[]) getURLsMethod.invoke(cp);

        if (urls.length < 1) {
            return;
        }

        final StringBuilder path = new StringBuilder(urls.length * 32);

        File s = new File(URLDecoder.decode(urls[0].getFile(), "UTF-8"));
        path.append(s.getPath());

        for (int i = 1; i < urls.length; i++) {
            path.append(File.pathSeparator);

            s = new File(URLDecoder.decode(urls[i].getFile(), "UTF-8"));

            path.append(s.getPath());
        }
        try {
            System.setProperty("java.class.path", path.toString());
        } catch (final Exception e) {
            // no-op
        }
    }

    private Method getGetURLsMethod() {
        return AccessController.doPrivileged(new PrivilegedAction() {
            @Override
            public Method run() {
                try {
                    final URLClassLoader loader = getSystemLoader();
                    final Object cp = getURLClassPath(loader);
                    final Class clazz = cp.getClass();

                    try {
                        return clazz.getDeclaredMethod("getURLs", URL.class);
                    } catch (final NoSuchMethodException e) {
                        return clazz.getDeclaredMethod("getURLs");
                    }

                } catch (final Exception e) {
                    throw new LoaderRuntimeException(e);
                }

            }

        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy