9dacaf72c82919940b9ecceb684ac9bbbc552664
[cacao.git] / src / native / jni.h
1 /* src/native/jni.h - JNI types and data structures
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    $Id: jni.h 8318 2007-08-16 10:05:34Z michi $
26
27 */
28
29
30 /* GNU Classpath jni.h *********************************************************
31
32    ATTENTION: We include this file before we actually define our own
33    jni.h.  We do this because, otherwise we can get into unresolvable
34    circular header dependencies.
35
36    This is OK as GNU Classpath defines:
37
38    #define _CLASSPATH_JNI_H
39
40    CLASSPATH_JNI_H is in config.h defined.
41
42 *******************************************************************************/
43
44 #include "config.h"
45
46 /* XXX quick hack to not include GCJ's jni_md.h */
47 #define __GCJ_JNI_MD_H__
48
49 #include CLASSPATH_JNI_MD_H
50 #include CLASSPATH_JNI_H
51
52 #ifndef _JNI_H
53 #define _JNI_H
54
55
56 #include "vm/types.h"
57
58 #include "vm/global.h"
59
60 #include "vmcore/method.h"
61
62
63 /* _Jv_JNIEnv *****************************************************************/
64
65 typedef struct _Jv_JNIEnv _Jv_JNIEnv;
66
67 struct _Jv_JNIEnv {
68         const struct JNINativeInterface_ *env;    /* This MUST be the first entry */
69 };
70
71
72 /* _Jv_JavaVM *****************************************************************/
73
74 typedef struct _Jv_JavaVM _Jv_JavaVM;
75
76 struct _Jv_JavaVM {
77         const struct JNIInvokeInterface_ *functions;/*This MUST be the first entry*/
78
79         /* JVM instance-specific variables */
80
81         s8 starttime;                       /* VM startup time                    */
82
83         s4 Java_gnu_java_lang_management_VMClassLoadingMXBeanImpl_verbose;
84         s4 Java_gnu_java_lang_management_VMMemoryMXBeanImpl_verbose;
85         s4 java_lang_management_ThreadMXBean_PeakThreadCount;
86         s4 java_lang_management_ThreadMXBean_ThreadCount;
87         s8 java_lang_management_ThreadMXBean_TotalStartedThreadCount;
88         s4 Java_java_lang_VMClassLoader_defaultAssertionStatus;
89 };
90
91
92 /* CACAO related stuff ********************************************************/
93
94 extern const struct JNIInvokeInterface_ _Jv_JNIInvokeInterface;
95 extern struct JNINativeInterface_ _Jv_JNINativeInterface;
96
97
98 /* hashtable_global_ref_entry *************************************************/
99
100 typedef struct hashtable_global_ref_entry hashtable_global_ref_entry;
101
102 struct hashtable_global_ref_entry {
103         java_object_t              *o;      /* object pointer of global ref       */
104         s4                          refs;   /* references of the current pointer  */
105         hashtable_global_ref_entry *hashlink; /* link for external chaining       */
106 };
107
108
109 /* function prototypes ********************************************************/
110
111 /* initialize JNI subsystem */
112 bool jni_init(void);
113
114 java_handle_t *_Jv_jni_invokeNative(methodinfo *m, java_handle_t *o,
115                                                                         java_handle_objectarray_t *params);
116
117 #endif /* _JNI_H */
118
119
120 /*
121  * These are local overrides for various environment variables in Emacs.
122  * Please do not remove this and leave it at the end of the file, where
123  * Emacs will automagically detect them.
124  * ---------------------------------------------------------------------
125  * Local variables:
126  * mode: c
127  * indent-tabs-mode: t
128  * c-basic-offset: 4
129  * tab-width: 4
130  * End:
131  */