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