OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / classpath / tools / gnu / classpath / tools / javah / JniIncludePrinter.java
1 /* JniIncludePrinter.java - Generate a JNI header file
2  Copyright (C) 2006 Free Software Foundation, Inc.
3
4  This file is part of GNU Classpath.
5
6  GNU Classpath is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)
9  any later version.
10
11  GNU Classpath is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with GNU Classpath; see the file COPYING.  If not, write to the
18  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  02110-1301 USA.
20
21  Linking this library statically or dynamically with other modules is
22  making a combined work based on this library.  Thus, the terms and
23  conditions of the GNU General Public License cover the whole
24  combination.
25
26  As a special exception, the copyright holders of this library give you
27  permission to link this library with independent modules to produce an
28  executable, regardless of the license terms of these independent
29  modules, and to copy and distribute the resulting executable under
30  terms of your choice, provided that you also meet, for each linked
31  independent module, the terms and conditions of the license of that
32  module.  An independent module is a module which is not derived from
33  or based on this library.  If you modify this library, you may extend
34  this exception to your version of the library, but you are not
35  obligated to do so.  If you do not wish to do so, delete this
36  exception statement from your version. */
37
38
39 package gnu.classpath.tools.javah;
40
41 import java.io.File;
42 import java.io.FileOutputStream;
43 import java.io.IOException;
44 import java.io.PrintStream;
45 import java.lang.reflect.Modifier;
46 import java.util.Iterator;
47
48 import org.objectweb.asm.Type;
49 import org.objectweb.asm.tree.FieldNode;
50 import org.objectweb.asm.tree.MethodNode;
51
52 public class JniIncludePrinter
53     extends Printer
54 {
55   protected JniIncludePrinter(Main classpath, File outFile, boolean isDir,
56                               boolean force)
57   {
58     super(classpath, outFile, isDir, force);
59   }
60
61   private void writeFields(ClassWrapper klass, JniPrintStream out)
62   {
63     boolean wroteAny = false;
64     for (; klass != null; klass = klass.superClass)
65       {
66         Iterator i = klass.fields.iterator();
67         while (i.hasNext())
68           {
69             FieldNode field = (FieldNode) i.next();
70             if (! Modifier.isStatic(field.access)
71                 || ! Modifier.isFinal(field.access))
72               continue;
73             if (! (field.value instanceof Integer)
74                 && ! (field.value instanceof Long))
75               continue;
76             
77             // Note that we don't want to mangle the field name.
78             String name = (JniHelper.mangle(klass.name) + "_" + field.name);
79             out.print("#undef ");
80             out.println(name);
81             out.print("#define ");
82             out.print(name);
83             out.print(" ");
84             out.print(field.value);
85             if (field.value instanceof Integer)
86               out.print("L");
87             else if (field.value instanceof Long)
88               out.print("LL");
89             out.println();
90             wroteAny = true;
91           }
92       }
93     if (wroteAny)
94       out.println();
95   }
96
97   protected void writePreambleImpl(PrintStream out)
98   {
99     out.println("/* DO NOT EDIT THIS FILE - it is machine generated */");
100     out.println();
101     out.println("#include <jni.h>");
102   }
103
104   protected PrintStream getPrintStreamImpl(FileOutputStream fos,
105                                            ClassWrapper klass)
106   {
107     return new JniPrintStream(classpath, fos, klass);
108   }
109
110   public void printClass(ClassWrapper klass) throws IOException
111   {
112     if (! klass.hasNativeMethod())
113       return;
114     String xname = JniHelper.mangle(klass.name);
115     JniPrintStream out = (JniPrintStream) getPrintStream(klass.name + ".h", klass);
116     if (out == null)
117       return;
118     out.println();
119     out.print("#ifndef __");
120     out.print(xname);
121     out.println("__");
122     out.print("#define __");
123     out.print(xname);
124     out.println("__");
125     out.println();
126     out.println("#ifdef __cplusplus");
127     out.println("extern \"C\"");
128     out.println("{");
129     out.println("#endif");
130     out.println();
131
132     Iterator i = klass.methods.iterator();
133     while (i.hasNext())
134       {
135         MethodNode method = (MethodNode) i.next();
136         if (! Modifier.isNative(method.access))
137           continue;
138         out.print("JNIEXPORT ");
139         out.print(Type.getReturnType(method.desc));
140         out.print(" JNICALL ");
141         out.print(method, xname);
142         out.println(";");
143       }
144
145     out.println();
146
147     writeFields(klass, out);
148
149     out.println("#ifdef __cplusplus");
150     out.println("}");
151     out.println("#endif");
152     out.println();
153     out.print("#endif /* __");
154     out.print(xname);
155     out.println("__ */");
156     out.close();
157   }
158 }