SystemClassLoader.java 3.02 KB
Newer Older
1
/* Copyright (C) 2005, 2006  Free Software Foundation
2 3 4 5 6 7 8 9 10 11

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package gnu.gcj.runtime;

import java.io.*;
12
import java.lang.reflect.Field;
13
import java.util.StringTokenizer;
14
import java.util.HashMap;
15 16 17 18 19 20 21 22 23 24
import java.net.URL;
import java.net.URLClassLoader;

public final class SystemClassLoader extends URLClassLoader
{
  SystemClassLoader(ClassLoader parent)
  {
    super(new URL[0], parent);
  }

25 26 27
  // This holds all the "native" classes linked into the executable
  // and registered with this loader.
  private HashMap nativeClasses = new HashMap();
28

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  // This is called to register a native class which was linked into
  // the application but which is registered with the system class
  // loader after the VM is initialized.
  void addClass(Class klass)
  {
    String packageName = null;
    String className = klass.getName();
    int lastDot = className.lastIndexOf('.');
    if (lastDot != -1)
      packageName = className.substring(0, lastDot);
    if (packageName != null && getPackage(packageName) == null)
      {
	// Should have some way to store this information in a
	// precompiled manifest.
	definePackage(packageName, null, null, null, null, null, null, null);
      }
45 46
      
    // Use reflection to access the package-private "loadedClasses" field.
47
    nativeClasses.put(className, klass);
48 49
  }

50 51
  protected native Class findClass(String name);

52 53 54 55 56 57
  // We add the URLs to the system class loader late.  The reason for
  // this is that during bootstrap we don't want to parse URLs or
  // create URL connections, since that will result in circularities
  // causing a crash.
  void init()
  {
58
    String sep = File.pathSeparator;
59 60
    StringTokenizer st
      = new StringTokenizer (System.getProperty ("java.class.path", "."),
61 62 63 64
			     sep, true);
    // Pretend we start with a ':', so if we see a ':' first we add
    // '.'.
    boolean last_was_sep = true;
65 66 67 68 69
    while (st.hasMoreElements ()) 
      {  
	String e = st.nextToken ();
	try
	  {
70 71 72 73 74 75 76 77 78 79 80 81
	    if (sep.equals(e))
	      {
		if (last_was_sep)
		  {
		    // We saw two separators in a row, so add ".".
		    addURL(new URL("file", "", -1, "./"));
		    last_was_sep = false;
		  }
		else
		  last_was_sep = true;
		continue;
	      }
82

83
	    last_was_sep = false;
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
	    File path = new File(e);
	    // Ignore invalid paths.
	    if (!path.exists())
	      continue;
	    if (!e.endsWith (File.separator) && path.isDirectory ())
	      addURL(new URL("file", "", -1, e + File.separator));
	    else
	      addURL(new URL("file", "", -1, e));
	  } 
	catch (java.net.MalformedURLException x)
	  {
	    // This should never happen.
	    throw new RuntimeException(x);
	  }
      }
99 100 101 102 103 104 105 106 107 108 109 110 111
    // If we saw a trailing ":", add "." to the path.
    if (last_was_sep)
      {
	try
	  {
	    addURL(new URL("file", "", -1, "./"));
	  }
	catch (java.net.MalformedURLException x)
	  {
	    // This should never happen.
	    throw new RuntimeException(x);
	  }
      }
112 113
  }
}