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