blob: fb6e76ba5880c1800e8fb3c6fdfa2a33d9e0be84 (
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
|
<html>
<head>
<title>GlueGen Home Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<P>
GlueGen is a tool which automatically generates the Java and JNI code
necessary to call C libraries. It reads as input ANSI C header files
and separate configuration files which provide control over many
aspects of the glue code generation. GlueGen uses a complete ANSI C
parser and an internal representation (IR) capable of representing all
C types to represent the APIs for which it generates interfaces. It
has the ability to perform significant transformations on the IR
before glue code emission. GlueGen is currently powerful enough to
bind even low-level APIs such as the Java Native Interface (JNI) and
the AWT Native Interface (JAWT) back up to the Java programming
language. GlueGen is currently used to generate the <a
href="http://jogl.dev.java.net/">JOGL</a> interface to the OpenGL 3D
graphics API and the <a href="http://joal.dev.java.net/">JOAL</a>
interface to the OpenAL audio library.
</P>
<h4> Documentation and Source Code </h4>
<P>
The source code for GlueGen can be obtained via CVS:
<pre>
cvs -d :pserver:guest@cvs.dev.java.net:/cvs co gluegen
</pre>
The preliminary <a
href="https://gluegen.dev.java.net/unbranded-source/browse/*checkout*/gluegen/doc/manual/index.html?rev=HEAD&content-type=text/html">GlueGen
manual</a> is also on-line.
</P>
<h4> Community </h4>
<P>
The GlueGen <a
href="https://gluegen.dev.java.net/servlets/ProjectForumView">discussion
forum</a> and <a
href="https://gluegen.dev.java.net/servlets/ProjectMailingListList">mailing
lists</a> are available for discussions on how to use and develop the
tool.
</P>
</body>
</html>
|