blob: ac2f72d4b64d29fef69fd13291f63d76dd8e9ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* Copyright (C) 2001 Free Software Foundation
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.util.Hashtable;
/**
* A ClassLoader backed by a gcj-compiled shared library.
* @author Per Bothner <per@bothner.com>, Brainfood Inc.
*/
public class SharedLibLoader extends ClassLoader
{
public native void finalize ();
/** Called during dlopen's processing of the init section. */
void registerClass(String name, Class cls)
{
classMap.put(name, cls);
}
/** Load a shared library, and associate a ClassLoader with it.
* @param libname named of shared library (passed to dlopen)
* @param parent the parent ClassLoader
* @parem flags passed to dlopen
*/
public SharedLibLoader(String libname, ClassLoader parent, int flags)
{
super(parent);
init(libname, flags);
}
/** Load a shared library, and asociate a ClassLoader with it.
* @param libname named of shared library (passed to dlopen)
*/
public SharedLibLoader(String libname)
{
super(getSystemClassLoader());
init(libname, 0);
}
void init(String libname, int flags)
{
init(libname.getBytes(), flags);
}
native void init(byte[] libname, int flags);
public Class loadClass(String name)
throws ClassNotFoundException
{
return super.loadClass(name);
}
public Class findClass(String name)
throws ClassNotFoundException
{
Object cls = classMap.get(name);
if (cls == null)
throw new ClassNotFoundException(name);
return (Class) cls;
}
/** The handle returned by dlopen. */
gnu.gcj.RawData handler;
/** Map classnames to Classes. */
Hashtable classMap = new Hashtable(20);
}
|