* Removed all Id tags.
[cacao.git] / src / native / native.h
1 /* src/native/native.h - table of native functions
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25 */
26
27
28 #ifndef _NATIVE_H
29 #define _NATIVE_H
30
31 #include "config.h"
32
33 #if defined(ENABLE_LTDL) && defined(HAVE_LTDL_H)
34 # include <ltdl.h>
35 #endif
36
37 #include <stdint.h>
38
39 #include "native/jni.h"
40
41 #include "vm/global.h"
42
43 #include "vmcore/class.h"
44 #include "vmcore/method.h"
45 #include "vmcore/utf8.h"
46
47
48 /* defines ********************************************************************/
49
50 #define NATIVE_METHODS_COUNT    sizeof(methods) / sizeof(JNINativeMethod)
51
52
53 /* table for locating native methods */
54
55 #if defined(WITH_STATIC_CLASSPATH)
56 typedef struct nativeref nativeref;
57 typedef struct nativecompref nativecompref;
58 #endif
59
60
61 /* native_methods_node_t ******************************************************/
62
63 typedef struct native_methods_node_t native_methods_node_t;
64
65 struct native_methods_node_t {
66         utf         *classname;             /* class name                         */
67         utf         *name;                  /* method name                        */
68         utf         *descriptor;            /* descriptor name                    */
69         functionptr  function;              /* pointer to the implementation      */
70 };
71
72
73 /* hashtable_library_loader_entry *********************************************/
74
75 #if defined(ENABLE_LTDL)
76 typedef struct hashtable_library_loader_entry hashtable_library_loader_entry;
77 typedef struct hashtable_library_name_entry   hashtable_library_name_entry;
78
79 struct hashtable_library_loader_entry {
80         classloader                    *loader;  /* class loader                  */
81         hashtable_library_name_entry   *namelink;/* libs loaded by this loader    */
82         hashtable_library_loader_entry *hashlink;/* link for external chaining    */
83 };
84 #endif
85
86
87 /* hashtable_library_name_entry ***********************************************/
88
89 #if defined(ENABLE_LTDL)
90 struct hashtable_library_name_entry {
91         utf                          *name;      /* library name                  */
92         lt_dlhandle                   handle;    /* libtool library handle        */
93         hashtable_library_name_entry *hashlink;  /* link for external chaining    */
94 };
95 #endif
96
97
98 struct nativeref {
99         char       *classname;
100         char       *methodname;
101         char       *descriptor;
102         bool        isstatic;
103         functionptr func;
104 };
105
106 /* table for fast string comparison */
107
108 struct nativecompref {
109         utf        *classname;
110         utf        *methodname;
111         utf        *descriptor;
112         bool        isstatic;
113         functionptr func;
114 };
115
116
117 /* function prototypes ********************************************************/
118
119 bool native_init(void);
120
121 void native_method_register(utf *classname, const JNINativeMethod *methods,
122                                                         int32_t count);
123
124 #if defined(WITH_STATIC_CLASSPATH)
125
126 functionptr native_findfunction(utf *cname, utf *mname, utf *desc,
127                                                                 bool isstatic);
128
129 #else /* defined(WITH_STATIC_CLASSPATH) */
130
131 # if defined(ENABLE_LTDL)
132 lt_dlhandle native_library_open(utf *filename);
133 void        native_library_add(utf *filename, classloader *loader,
134                                                            lt_dlhandle handle);
135 hashtable_library_name_entry *native_library_find(utf *filename,
136                                                                                                   classloader *loader);
137 # endif
138
139 functionptr native_resolve_function(methodinfo *m);
140
141 #endif /* defined(WITH_STATIC_CLASSPATH) */
142
143 java_handle_t *native_new_and_init(classinfo *c);
144
145 java_handle_t *native_new_and_init_string(classinfo *c, java_handle_t *s);
146
147 #endif /* _NATIVE_H */
148
149
150 /*
151  * These are local overrides for various environment variables in Emacs.
152  * Please do not remove this and leave it at the end of the file, where
153  * Emacs will automagically detect them.
154  * ---------------------------------------------------------------------
155  * Local variables:
156  * mode: c
157  * indent-tabs-mode: t
158  * c-basic-offset: 4
159  * tab-width: 4
160  * End:
161  */