* stringtable_update, get_type: removed
[cacao.git] / src / native / native.h
1 /* src/native/native.h - table of native functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28
29    Changes: Christian Thalinger
30
31    $Id: native.h 2892 2005-07-04 20:33:12Z twisti $
32
33 */
34
35
36 #ifndef _NATIVE_H
37 #define _NATIVE_H
38
39 #if !defined(ENABLE_STATICVM)
40 # include "libltdl/ltdl.h"
41 #endif
42
43 #include "vm/class.h"
44 #include "vm/global.h"
45 #include "vm/method.h"
46 #include "vm/utf8.h"
47 #include "native/jni.h"
48 #include "native/include/java_lang_String.h"
49 #include "native/include/java_lang_ClassLoader.h"
50 #include "native/include/java_lang_Throwable.h"
51
52
53 /* table for locating native methods */
54
55 typedef struct nativeref nativeref;
56 typedef struct nativecompref nativecompref;
57
58
59 #if !defined(ENABLE_STATICVM)
60 typedef struct library_hash_loader_entry library_hash_loader_entry;
61 typedef struct library_hash_name_entry library_hash_name_entry;
62
63 /* library_hash_loader_entry **************************************************/
64
65 struct library_hash_loader_entry {
66         java_objectheader         *loader;  /* class loader                       */
67         library_hash_name_entry   *namelink;/* libraries loaded by this loader    */
68         library_hash_loader_entry *hashlink;/* link for external chaining         */
69 };
70
71
72 /* library_hash_name_entry ****************************************************/
73
74 struct library_hash_name_entry {
75         utf                     *name;      /* library name                       */
76         lt_dlhandle              handle;    /* libtool library handle             */
77         library_hash_name_entry *hashlink;  /* link for external chaining         */
78 };
79 #endif
80
81
82 struct nativeref {
83         char       *classname;
84         char       *methodname;
85         char       *descriptor;
86         bool        isstatic;
87         functionptr func;
88 };
89
90 /* table for fast string comparison */
91
92 struct nativecompref {
93         utf        *classname;
94         utf        *methodname;
95         utf        *descriptor;
96         bool        isstatic;
97         functionptr func;
98 };
99
100
101 bool use_class_as_object(classinfo *c);
102
103 /* initialize native subsystem */
104 bool native_init(void);
105
106 /* find native function */
107 functionptr native_findfunction(utf *cname, utf *mname, 
108                                                                 utf *desc, bool isstatic);
109
110 #if !defined(ENABLE_STATICVM)
111 /* add a library to the library hash */
112 void native_library_hash_add(utf *filename, java_objectheader *loader,
113                                                          lt_dlhandle handle);
114
115 /* resolve native function */
116 functionptr native_resolve_function(methodinfo *m);
117 #endif
118
119 /* create new object on the heap and call the initializer */
120 java_objectheader *native_new_and_init(classinfo *c);
121
122 /* create new object on the heap and call the initializer 
123    mainly used for exceptions with a message */
124 java_objectheader *native_new_and_init_string(classinfo *c, java_lang_String *s);
125
126 /* create new object on the heap and call the initializer 
127    mainly used for exceptions with an index */
128 java_objectheader *native_new_and_init_int(classinfo *c, s4 i);
129
130 /* create new object on the heap and call the initializer 
131    mainly used for exceptions with cause */
132 java_objectheader *native_new_and_init_throwable(classinfo *c, java_lang_Throwable *t);
133
134 /* add property to temporary property list -- located in nat/VMRuntime.c */
135 void create_property(char *key, char *value);
136
137 /* search 'classinfo'-structure for a field with the specified name */
138 fieldinfo *class_findfield_approx(classinfo *c, utf *name);
139 s4 class_findfield_index_approx(classinfo *c, utf *name);
140
141 void copy_vftbl(vftbl_t **dest, vftbl_t *src);
142
143 utf *create_methodsig(java_objectarray* types, char *retType);
144
145 java_objectarray *native_get_parametertypes(methodinfo *m);
146 java_objectarray *native_get_exceptiontypes(methodinfo *m);
147 classinfo *native_get_returntype(methodinfo *m);
148
149
150 /*----- For Static Analysis of Natives by parseRT -----*/
151
152 /*---------- global variables ---------------------------*/
153 typedef struct classMeth classMeth;
154 typedef struct nativeCall   nativeCall;
155 typedef struct methodCall   methodCall;
156 typedef struct nativeMethod nativeMethod;
157
158 typedef struct nativeCompCall   nativeCompCall;
159 typedef struct methodCompCall   methodCompCall;
160 typedef struct nativeCompMethod nativeCompMethod;
161
162 /*---------- Define Constants ---------------------------*/
163 #define MAXCALLS 30 
164
165 struct classMeth {
166         int i_class;
167         int j_method;
168         int methCnt;
169 };
170
171 struct  methodCall{
172         char *classname;
173         char *methodname;
174         char *descriptor;
175 };
176
177 struct  nativeMethod  {
178         char *methodname;
179         char *descriptor;
180         struct methodCall methodCalls[MAXCALLS];
181 };
182
183
184 struct nativeCall {
185         char *classname;
186         struct nativeMethod methods[MAXCALLS];
187         int methCnt;
188         int callCnt[MAXCALLS];
189 };
190
191
192 struct methodCompCall {
193         utf *classname;
194         utf *methodname;
195         utf *descriptor;
196 };
197
198
199 struct nativeCompMethod {
200         utf *methodname;
201         utf *descriptor;
202         struct methodCompCall methodCalls[MAXCALLS];
203 };
204
205
206 struct nativeCompCall {
207         utf *classname;
208         struct nativeCompMethod methods[MAXCALLS];
209         int methCnt;
210         int callCnt[MAXCALLS];
211 };
212
213
214 bool natcall2utf(bool);
215 void printNativeCall(nativeCall);
216 void markNativeMethodsRT(utf *, utf* , utf* ); 
217
218 #endif /* _NATIVE_H */
219
220
221 /*
222  * These are local overrides for various environment variables in Emacs.
223  * Please do not remove this and leave it at the end of the file, where
224  * Emacs will automagically detect them.
225  * ---------------------------------------------------------------------
226  * Local variables:
227  * mode: c
228  * indent-tabs-mode: t
229  * c-basic-offset: 4
230  * tab-width: 4
231  * End:
232  */