* This commit implementes C++ wrapper classes for CLDC 1.1. Again to
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Runtime.cpp
1 /* src/native/vm/cldc1.1/java_lang_Runtime.cpp
2
3    Copyright (C) 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 #include "config.h"
27
28 #include <stdint.h>
29
30 #include "mm/gc.hpp"
31
32 #include "native/jni.h"
33 #include "native/native.h"
34
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/include/java_lang_Runtime.h"
37 #endif
38
39 #include "vm/vm.hpp"
40
41 #include "vmcore/utf8.h"
42
43
44 // Native functions are exported as C functions.
45 extern "C" {
46
47 /*
48  * Class:     java/lang/Runtime
49  * Method:    exitInternal
50  * Signature: (I)V
51  */
52 JNIEXPORT void JNICALL Java_java_lang_Runtime_exitInternal(JNIEnv *env, jobject _this, jint status)
53 {
54         vm_shutdown(status);
55 }
56
57
58 /*
59  * Class:     java/lang/Runtime
60  * Method:    freeMemory
61  * Signature: ()J
62  */
63 JNIEXPORT jlong JNICALL Java_java_lang_Runtime_freeMemory(JNIEnv *env, jobject _this)
64 {
65         return gc_get_free_bytes();
66 }
67
68
69 /*
70  * Class:     java/lang/Runtime
71  * Method:    totalMemory
72  * Signature: ()J
73  */
74 JNIEXPORT jlong JNICALL Java_java_lang_Runtime_totalMemory(JNIEnv *env, jobject _this)
75 {
76         return gc_get_heap_size();
77 }
78
79
80 /*
81  * Class:     java/lang/Runtime
82  * Method:    gc
83  * Signature: ()V
84  */
85 JNIEXPORT void JNICALL Java_java_lang_Runtime_gc(JNIEnv *env, jobject _this)
86 {
87         gc_call();
88 }
89
90 } // extern "C"
91
92
93 /* native methods implemented by this file ************************************/
94  
95 static JNINativeMethod methods[] = {
96         { (char*) "exitInternal", (char*) "(I)V", (void*) (uintptr_t) &Java_java_lang_Runtime_exitInternal },
97         { (char*) "freeMemory",   (char*) "()J",  (void*) (uintptr_t) &Java_java_lang_Runtime_freeMemory   },
98         { (char*) "totalMemory",  (char*) "()J",  (void*) (uintptr_t) &Java_java_lang_Runtime_totalMemory  },
99         { (char*) "gc",           (char*) "()V",  (void*) (uintptr_t) &Java_java_lang_Runtime_gc           },
100 };
101  
102  
103 /* _Jv_java_lang_Runtime_init **************************************************
104  
105    Register native functions.
106  
107 *******************************************************************************/
108  
109 // FIXME
110 extern "C" {
111 void _Jv_java_lang_Runtime_init(void)
112 {
113         utf *u;
114  
115         u = utf_new_char("java/lang/Runtime");
116  
117         native_method_register(u, methods, NATIVE_METHODS_COUNT);
118 }
119 }
120
121
122 /*
123  * These are local overrides for various environment variables in Emacs.
124  * Please do not remove this and leave it at the end of the file, where
125  * Emacs will automagically detect them.
126  * ---------------------------------------------------------------------
127  * Local variables:
128  * mode: c++
129  * indent-tabs-mode: t
130  * c-basic-offset: 4
131  * tab-width: 4
132  * End:
133  * vim:noexpandtab:sw=4:ts=4:
134  */