CACAO
java_lang_management_VMManagementFactory.cpp
Go to the documentation of this file.
1 /* src/native/vm/gnuclasspath/java_lang_management_VMManagementFactory.cpp
2 
3  Copyright (C) 1996-2013
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.hpp"
31 
32 #include "native/jni.hpp"
33 #include "native/native.hpp"
34 
35 #if defined(ENABLE_JNI_HEADERS)
36 # include "native/vm/include/java_lang_management_VMManagementFactory.h"
37 #endif
38 
39 #include "toolbox/logging.hpp"
40 
41 #include "vm/array.hpp"
42 #include "vm/globals.hpp"
43 #include "vm/vm.hpp"
44 
45 #include "vm/jit/builtin.hpp"
46 
47 
48 // Native functions are exported as C functions.
49 extern "C" {
50 
51 /*
52  * Class: java/lang/management/VMManagementFactory
53  * Method: getMemoryPoolNames
54  * Signature: ()[Ljava/lang/String;
55  */
57 {
58  log_println("Java_java_lang_management_VMManagementFactory_getMemoryPoolNames: IMPLEMENT ME!");
59 
61 
62  return oa.get_handle();
63 }
64 
65 
66 /*
67  * Class: java/lang/management/VMManagementFactory
68  * Method: getMemoryManagerNames
69  * Signature: ()[Ljava/lang/String;
70  */
72 {
73  log_println("Java_java_lang_management_VMManagementFactory_getMemoryManagerNames: IMPLEMENT ME!");
74 
76 
77  return oa.get_handle();
78 }
79 
80 
81 /*
82  * Class: java/lang/management/VMManagementFactory
83  * Method: getGarbageCollectorNames
84  * Signature: ()[Ljava/lang/String;
85  */
87 {
88  log_println("Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames: IMPLEMENT ME!");
89 
91 
92  return oa.get_handle();
93 }
94 
95 } // extern "C"
96 
97 
98 /* native methods implemented by this file ************************************/
99 
100 static JNINativeMethod methods[] = {
101  { (char*) "getMemoryPoolNames", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getMemoryPoolNames },
102  { (char*) "getMemoryManagerNames", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getMemoryManagerNames },
103  { (char*) "getGarbageCollectorNames", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames },
104 };
105 
106 
107 /* _Jv_java_lang_management_VMManagementFactory_init ***************************
108 
109  Register native functions.
110 
111 *******************************************************************************/
112 
114 {
115  Utf8String u = Utf8String::from_utf8("java/lang/management/VMManagementFactory");
116 
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  */
JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getMemoryManagerNames(JNIEnv *env, jclass clazz)
JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getMemoryPoolNames(JNIEnv *env, jclass clazz)
Table containing all native methods registered with the VM.
Definition: native.hpp:132
NativeMethods & get_nativemethods()
Definition: vm.hpp:128
void register_methods(Utf8String classname, const JNINativeMethod *methods, size_t count)
Register native methods with the VM.
Definition: native.cpp:242
void _Jv_java_lang_management_VMManagementFactory_init(void)
_Jv_JNIEnv JNIEnv
Definition: jni.hpp:112
virtual java_handle_array_t * get_handle() const
Definition: array.hpp:103
#define NATIVE_METHODS_COUNT
Definition: native.hpp:45
Actual implementation of access class for Java Object arrays.
Definition: array.hpp:381
void log_println(const char *text,...)
Definition: logging.cpp:193
static Utf8String from_utf8(const char *, size_t)
Definition: utf8.cpp:335
classinfo * class_java_lang_String
Definition: globals.cpp:39
JNIEXPORT jobjectArray JNICALL Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames(JNIEnv *env, jclass clazz)
static JNINativeMethod methods[]
static VM * get_current()
Definition: vm.hpp:99