* src/native/vm/gnu: Renamed to src/native/vm/gnuclasspath.
[cacao.git] / src / native / vm / gnuclasspath / java_lang_VMObject.c
1 /* src/native/vm/gnu/java_lang_VMObject.c - java/lang/VMObject
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 #include "config.h"
29
30 #include <stdint.h>
31
32 #include "native/jni.h"
33 #include "native/llni.h"
34 #include "native/native.h"
35
36 #include "native/include/java_lang_Class.h"            /* required by j.l.VMO */
37 #include "native/include/java_lang_Cloneable.h"        /* required by j.l.VMO */
38 #include "native/include/java_lang_Object.h"           /* required by j.l.VMO */
39
40 #include "native/include/java_lang_VMObject.h"
41
42 #include "threads/lock-common.h"
43
44 #include "vm/builtin.h"
45 #include "vm/exceptions.h"
46
47 #include "vmcore/utf8.h"
48
49
50 /* native methods implemented by this file ************************************/
51
52 static JNINativeMethod methods[] = {
53         { "getClass",  "(Ljava/lang/Object;)Ljava/lang/Class;",     (void *) (intptr_t) &Java_java_lang_VMObject_getClass  },
54         { "clone",     "(Ljava/lang/Cloneable;)Ljava/lang/Object;", (void *) (intptr_t) &Java_java_lang_VMObject_clone     },
55         { "notify",    "(Ljava/lang/Object;)V",                     (void *) (intptr_t) &Java_java_lang_VMObject_notify    },
56         { "notifyAll", "(Ljava/lang/Object;)V",                     (void *) (intptr_t) &Java_java_lang_VMObject_notifyAll },
57         { "wait",      "(Ljava/lang/Object;JI)V",                   (void *) (intptr_t) &Java_java_lang_VMObject_wait      },
58 };
59
60
61 /* _Jv_java_lang_VMObject_init *************************************************
62
63    Register native functions.
64
65 *******************************************************************************/
66
67 void _Jv_java_lang_VMObject_init(void)
68 {
69         utf *u;
70
71         u = utf_new_char("java/lang/VMObject");
72
73         native_method_register(u, methods, NATIVE_METHODS_COUNT);
74 }
75
76
77 /*
78  * Class:     java/lang/VMObject
79  * Method:    getClass
80  * Signature: (Ljava/lang/Object;)Ljava/lang/Class;
81  */
82 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_VMObject_getClass(JNIEnv *env, jclass clazz, java_lang_Object *obj)
83 {
84         classinfo *c;
85
86         if (obj == NULL) {
87                 exceptions_throw_nullpointerexception();
88                 return NULL;
89         }
90
91         LLNI_class_get(obj, c);
92
93         return LLNI_classinfo_wrap(c);
94 }
95
96
97 /*
98  * Class:     java/lang/VMObject
99  * Method:    clone
100  * Signature: (Ljava/lang/Cloneable;)Ljava/lang/Object;
101  */
102 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_VMObject_clone(JNIEnv *env, jclass clazz, java_lang_Cloneable *this)
103 {
104         java_handle_t *o;
105         java_handle_t *co;
106
107         o = (java_handle_t *) this;
108
109         co = builtin_clone(NULL, o);
110
111         return (java_lang_Object *) co;
112 }
113
114
115 /*
116  * Class:     java/lang/VMObject
117  * Method:    notify
118  * Signature: (Ljava/lang/Object;)V
119  */
120 JNIEXPORT void JNICALL Java_java_lang_VMObject_notify(JNIEnv *env, jclass clazz, java_lang_Object *this)
121 {
122 #if defined(ENABLE_THREADS)
123         lock_notify_object((java_handle_t *) this);
124 #endif
125 }
126
127
128 /*
129  * Class:     java/lang/VMObject
130  * Method:    notifyAll
131  * Signature: (Ljava/lang/Object;)V
132  */
133 JNIEXPORT void JNICALL Java_java_lang_VMObject_notifyAll(JNIEnv *env, jclass clazz, java_lang_Object *this)
134 {
135 #if defined(ENABLE_THREADS)
136         lock_notify_all_object((java_handle_t *) this);
137 #endif
138 }
139
140
141 /*
142  * Class:     java/lang/VMObject
143  * Method:    wait
144  * Signature: (Ljava/lang/Object;JI)V
145  */
146 JNIEXPORT void JNICALL Java_java_lang_VMObject_wait(JNIEnv *env, jclass clazz, java_lang_Object *o, int64_t ms, int32_t ns)
147 {
148 #if defined(ENABLE_JVMTI)
149         /* Monitor Wait */
150         if (jvmti) jvmti_MonitorWaiting(true, o, ms);
151 #endif
152
153 #if defined(ENABLE_THREADS)
154         lock_wait_for_object((java_handle_t *) o, ms, ns);
155 #endif
156
157 #if defined(ENABLE_JVMTI)
158         /* Monitor Waited */
159         /* XXX: How do you know if wait timed out ?*/
160         if (jvmti) jvmti_MonitorWaiting(false, o, 0);
161 #endif
162 }
163
164
165 /*
166  * These are local overrides for various environment variables in Emacs.
167  * Please do not remove this and leave it at the end of the file, where
168  * Emacs will automagically detect them.
169  * ---------------------------------------------------------------------
170  * Local variables:
171  * mode: c
172  * indent-tabs-mode: t
173  * c-basic-offset: 4
174  * tab-width: 4
175  * End:
176  */