8d1130ae560759b137f3c154acadfb93519d463c
[cacao.git] / src / native / vm / gnuclasspath / java_lang_management_VMManagementFactory.c
1 /* src/native/vm/gnuclasspath/java_lang_management_VMManagementFactory.c
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 #include "config.h"
27
28 #include <stdlib.h>
29
30 #include "vm/types.h"
31
32 #include "native/jni.h"
33 #include "native/native.h"
34
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/vm/include/java_lang_management_VMManagementFactory.h"
37 #endif
38
39 #include "toolbox/logging.h"
40
41 #include "vm/builtin.h"
42 #include "vm/globals.hpp"
43
44
45 /*
46  * Class:     java/lang/management/VMManagementFactory
47  * Method:    getMemoryPoolNames
48  * Signature: ()[Ljava/lang/String;
49  */
50 JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getMemoryPoolNames(JNIEnv *env, jclass clazz)
51 {
52         java_handle_objectarray_t *oa;
53
54         log_println("Java_java_lang_management_VMManagementFactory_getMemoryPoolNames: IMPLEMENT ME!");
55
56         oa = builtin_anewarray(0, class_java_lang_String);
57
58         return oa;
59 }
60
61
62 /*
63  * Class:     java/lang/management/VMManagementFactory
64  * Method:    getMemoryManagerNames
65  * Signature: ()[Ljava/lang/String;
66  */
67 JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getMemoryManagerNames(JNIEnv *env, jclass clazz)
68 {
69         java_handle_objectarray_t *oa;
70
71         log_println("Java_java_lang_management_VMManagementFactory_getMemoryManagerNames: IMPLEMENT ME!");
72
73         oa = builtin_anewarray(0, class_java_lang_String);
74
75         return oa;
76 }
77
78
79 /*
80  * Class:     java/lang/management/VMManagementFactory
81  * Method:    getGarbageCollectorNames
82  * Signature: ()[Ljava/lang/String;
83  */
84 JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames(JNIEnv *env, jclass clazz)
85 {
86         java_handle_objectarray_t *oa;
87
88         log_println("Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames: IMPLEMENT ME!");
89
90         oa = builtin_anewarray(0, class_java_lang_String);
91
92         return oa;
93 }
94
95
96 /* native methods implemented by this file ************************************/
97
98 static JNINativeMethod methods[] = {
99         { "getMemoryPoolNames",       "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getMemoryPoolNames       },
100         { "getMemoryManagerNames",    "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getMemoryManagerNames    },
101         { "getGarbageCollectorNames", "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames },
102 };
103
104
105 /* _Jv_java_lang_management_VMManagementFactory_init ***************************
106
107    Register native functions.
108
109 *******************************************************************************/
110
111 void _Jv_java_lang_management_VMManagementFactory_init(void)
112 {
113         utf *u;
114
115         u = utf_new_char("java/lang/management/VMManagementFactory");
116
117         native_method_register(u, methods, NATIVE_METHODS_COUNT);
118 }
119
120
121 /*
122  * These are local overrides for various environment variables in Emacs.
123  * Please do not remove this and leave it at the end of the file, where
124  * Emacs will automagically detect them.
125  * ---------------------------------------------------------------------
126  * Local variables:
127  * mode: c
128  * indent-tabs-mode: t
129  * c-basic-offset: 4
130  * tab-width: 4
131  * End:
132  * vim:noexpandtab:sw=4:ts=4:
133  */