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

org.apache.aries.util.internal.BundleToClassLoaderAdapter Maven / Gradle / Ivy

/*
 * 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.aries.util.internal;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;

import org.osgi.framework.Bundle;
import org.osgi.framework.BundleReference;

public class BundleToClassLoaderAdapter extends ClassLoader implements BundleReference
{
  private final Bundle b;

  public BundleToClassLoaderAdapter(Bundle bundle)
  {
    b = bundle;
  }

  @Override
  public URL getResource(final String name)
  {
    return AccessController.doPrivileged(new PrivilegedAction() {
	public URL run()
      {
        return b.getResource(name);
      }
    });
  }

  @Override
  public InputStream getResourceAsStream(String name)
  {
    URL url = getResource(name);

    InputStream result = null;

    if (url != null) {
      try {
        result = url.openStream();
      } catch (IOException e) {
      }
    }

    return result;
  }

  @Override
  public Enumeration getResources(final String name) throws IOException
  {
    Enumeration urls;
    try {
      urls = AccessController.doPrivileged(new PrivilegedExceptionAction>() {
		@SuppressWarnings("unchecked")
        public Enumeration run() throws IOException
        {
          return b.getResources(name);
        }
      });
    } catch (PrivilegedActionException e) {
      Exception cause = e.getException();

      if (cause instanceof IOException) throw (IOException)cause;
      if (cause instanceof RuntimeException) throw (RuntimeException)cause;

      IOException ioe = new IOException(name);
      ioe.initCause(cause);
      throw ioe;
    }

    if (urls == null) {
      urls = Collections.enumeration(new ArrayList());
    }

    return urls;
  }

  /*
   * Notes we overwrite loadClass rather than findClass because we don't want to delegate
   * to the default classloader, only the bundle.
   * 
   * Also note that ClassLoader#loadClass(String) by javadoc on ClassLoader delegates
   * to this method, so we don't need to overwrite it separately.
   * 
   * (non-Javadoc)
   * @see java.lang.ClassLoader#loadClass(java.lang.String, boolean)
   */  
  @Override
  public Class loadClass(final String name, boolean resolve) throws ClassNotFoundException
  {
    try {
      Class result = AccessController.doPrivileged(new PrivilegedExceptionAction>() {
        public Class run() throws ClassNotFoundException
        {
          return b.loadClass(name);
        }
      });
      
      if (resolve) resolveClass(result);
      
      return result;
    } catch (PrivilegedActionException e) {
      Exception cause = e.getException();

      if (cause instanceof ClassNotFoundException) throw (ClassNotFoundException)cause;
      if (cause instanceof RuntimeException) throw (RuntimeException)cause;

      throw new ClassNotFoundException(name, cause);
    }
  }

  public Bundle getBundle()
  {
    return b;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy