OSDN Git Service

5666d277d5718b36ce778e3101d59cc539ac7598
[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 
116       = (JniPrintStream) getPrintStream(klass.name.replace('/', '_') + ".h", 
117                                         klass);
118     if (out == null)
119       return;
120     out.println();
121     out.print("#ifndef __");
122     out.print(xname);
123     out.println("__");
124     out.print("#define __");
125     out.print(xname);
126     out.println("__");
127     out.println();
128     out.println("#ifdef __cplusplus");
129     out.println("extern \"C\"");
130     out.println("{");
131     out.println("#endif");
132     out.println();
133
134     Iterator i = klass.methods.iterator();
135     while (i.hasNext())
136       {
137         MethodNode method = (MethodNode) i.next();
138         if (! Modifier.isNative(method.access))
139           continue;
140         out.print("JNIEXPORT ");
141         out.print(Type.getReturnType(method.desc));
142         out.print(" JNICALL ");
143         out.print(method, xname);
144         out.println(";");
145       }
146
147     out.println();
148
149     writeFields(klass, out);
150
151     out.println("#ifdef __cplusplus");
152     out.println("}");
153     out.println("#endif");
154     out.println();
155     out.print("#endif /* __");
156     out.print(xname);
157     out.println("__ */");
158     out.close();
159   }
160 }