c930fab0b5ac02ce4e23c60effe6357961ad851a
[cacao.git] / src / native / jni.h
1 /* src/native/jni.h - JNI types and data structures
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 /* jni.h ***********************************************************************
27
28    ATTENTION: We include this file before we actually define our own
29    jni.h.  We do this because otherwise we can get into unresolvable
30    circular header dependencies.
31
32    This is OK as GNU Classpath defines:
33
34    #define __CLASSPATH_JNI_MD_H__
35    #define _CLASSPATH_JNI_H
36
37    and OpenJDK defines:
38
39    #define _JAVASOFT_JNI_MD_H_
40    #define _JAVASOFT_JNI_H_
41
42    CLASSPATH_JNI_MD_H and CLASSPATH_JNI_H are defined in config.h.
43
44 *******************************************************************************/
45
46 #include "config.h"
47
48 /* We include both headers with the absolute path so we can be sure
49    that the preprocessor does not take another header.  Furthermore we
50    include jni_md.h before jni.h as the latter includes the former. */
51
52 #include INCLUDE_JNI_MD_H
53 #include INCLUDE_JNI_H
54
55 #ifndef _JNI_H
56 #define _JNI_H
57
58
59 #include "vm/types.h"
60
61 #include "vm/global.h"
62
63 #include "vmcore/method.h"
64
65
66 /* _Jv_JNIEnv *****************************************************************/
67
68 #ifndef __cplusplus
69
70 // FIXME The __cplusplus define is just a quick workaround and needs
71 // to be fixed properly.
72
73 typedef struct _Jv_JNIEnv _Jv_JNIEnv;
74
75 struct _Jv_JNIEnv {
76         const struct JNINativeInterface_ *env;    /* This MUST be the first entry */
77 };
78
79 #endif
80
81
82 /* _Jv_JavaVM *****************************************************************/
83
84 #ifndef __cplusplus
85
86 // FIXME The __cplusplus define is just a quick workaround and needs
87 // to be fixed properly.
88
89 typedef struct _Jv_JavaVM _Jv_JavaVM;
90
91 struct _Jv_JavaVM {
92         const struct JNIInvokeInterface_ *functions;/*This MUST be the first entry*/
93
94         /* JVM instance-specific variables */
95
96         s8 starttime;                       /* VM startup time                    */
97
98         s4 Java_gnu_java_lang_management_VMClassLoadingMXBeanImpl_verbose;
99         s4 Java_gnu_java_lang_management_VMMemoryMXBeanImpl_verbose;
100         s4 java_lang_management_ThreadMXBean_PeakThreadCount;
101         s4 java_lang_management_ThreadMXBean_ThreadCount;
102         s8 java_lang_management_ThreadMXBean_TotalStartedThreadCount;
103 };
104
105 #endif
106
107
108 /* CACAO related stuff ********************************************************/
109
110 extern const struct JNIInvokeInterface_ _Jv_JNIInvokeInterface;
111 extern struct JNINativeInterface_ _Jv_JNINativeInterface;
112
113
114 /* hashtable_global_ref_entry *************************************************/
115
116 typedef struct hashtable_global_ref_entry hashtable_global_ref_entry;
117
118 struct hashtable_global_ref_entry {
119         java_object_t              *o;      /* object pointer of global ref       */
120         s4                          refs;   /* references of the current pointer  */
121         hashtable_global_ref_entry *hashlink; /* link for external chaining       */
122 };
123
124
125 /* function prototypes ********************************************************/
126
127 bool jni_init(void);
128 bool jni_version_check(int version);
129
130 #endif /* _JNI_H */
131
132
133 /*
134  * These are local overrides for various environment variables in Emacs.
135  * Please do not remove this and leave it at the end of the file, where
136  * Emacs will automagically detect them.
137  * ---------------------------------------------------------------------
138  * Local variables:
139  * mode: c
140  * indent-tabs-mode: t
141  * c-basic-offset: 4
142  * tab-width: 4
143  * End:
144  */