5eadcc52ebf675167f22fbd0449a0f811a5e7e3a
[cacao.git] / src / native / vm / gnuclasspath / gnu_java_lang_management_VMRuntimeMXBeanImpl.cpp
1 /* src/native/vm/gnuclasspath/gnu_java_lang_management_VMRuntimeMXBeanImpl.cpp
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 <stdint.h>
29
30 #include "native/jni.h"
31 #include "native/native.h"
32
33 // FIXME
34 extern "C" {
35 #include "native/include/gnu_java_lang_management_VMRuntimeMXBeanImpl.h"
36 }
37
38 #include "vm/builtin.h"
39 #include "vm/global.h"
40 #include "vm/vm.hpp"
41
42 #include "vmcore/globals.hpp"
43 #include "vmcore/utf8.h"
44
45
46 // Native functions are exported as C functions.
47 extern "C" {
48
49 /*
50  * Class:     gnu/java/lang/management/VMRuntimeMXBeanImpl
51  * Method:    getInputArguments
52  * Signature: ()[Ljava/lang/String;
53  */
54 JNIEXPORT java_handle_objectarray_t* JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments(JNIEnv *env, jclass clazz)
55 {
56         log_println("Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments: IMPLEMENT ME!");
57
58         return builtin_anewarray(0, class_java_lang_String);
59 }
60
61
62 /*
63  * Class:     gnu/java/lang/management/VMRuntimeMXBeanImpl
64  * Method:    getStartTime
65  * Signature: ()J
66  */
67 JNIEXPORT int64_t JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime(JNIEnv *env, jclass clazz)
68 {
69         return vm->get_starttime();
70 }
71
72 } // extern "C"
73
74
75 /* native methods implemented by this file ************************************/
76
77 static JNINativeMethod methods[] = {
78         { (char*) "getInputArguments", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments },
79         { (char*) "getStartTime",      (char*) "()J",                   (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime      },
80 };
81
82
83 /* _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init ***********************
84
85    Register native functions.
86
87 *******************************************************************************/
88
89 // FIXME
90 extern "C" {
91 void _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init(void)
92 {
93         utf *u;
94
95         u = utf_new_char("gnu/java/lang/management/VMRuntimeMXBeanImpl");
96
97         native_method_register(u, methods, NATIVE_METHODS_COUNT);
98 }
99 }
100
101
102 /*
103  * These are local overrides for various environment variables in Emacs.
104  * Please do not remove this and leave it at the end of the file, where
105  * Emacs will automagically detect them.
106  * ---------------------------------------------------------------------
107  * Local variables:
108  * mode: c++
109  * indent-tabs-mode: t
110  * c-basic-offset: 4
111  * tab-width: 4
112  * End:
113  * vim:noexpandtab:sw=4:ts=4:
114  */