Merge from subtype.
[cacao.git] / src / native / vm / cldc1.1 / java_lang_System.cpp
1 /* src/native/vm/cldc1.1/java_lang_System.cpp
2
3    Copyright (C) 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 #include <stdlib.h>
30
31 #include "mm/memory.h"
32
33 #include "native/jni.hpp"
34 #include "native/native.hpp"
35
36 #if defined(ENABLE_JNI_HEADERS)
37 # include "native/include/java_lang_System.h"
38 #endif
39
40 #include "vm/jit/builtin.hpp"
41 #include "vm/properties.hpp"
42 #include "vm/string.hpp"
43 #include "vm/vm.hpp"
44
45
46 // Native functions are exported as C functions.
47 extern "C" {
48
49 /*
50  * Class:     java/lang/System
51  * Method:    arraycopy
52  * Signature: (Ljava/lang/Object;ILjava/lang/Object;II)V
53  */
54 JNIEXPORT void JNICALL Java_java_lang_System_arraycopy(JNIEnv *env, jclass clazz, jobject src, jint srcStart, jobject dest, jint destStart, jint len)
55 {
56         builtin_arraycopy((java_handle_t *) src, srcStart,
57                                           (java_handle_t *) dest, destStart, len);
58 }
59
60
61 /*
62  * Class:     java/lang/System
63  * Method:    getProperty0
64  * Signature: (Ljava/lang/String;)Ljava/lang/String;
65  */
66
67 JNIEXPORT jstring JNICALL Java_java_lang_System_getProperty0(JNIEnv *env, jclass clazz, jstring s)
68 {
69         java_handle_t *so;
70         char*          key;
71         const char*    value;
72         java_handle_t *result;
73
74         so = (java_handle_t *) s;
75
76         /* build an ASCII string out of the java/lang/String passed */
77
78         key = javastring_tochar(so);
79
80         /* get the property from the internal table */
81
82         value = VM::get_current()->get_properties().get(key);
83
84         /* release the memory allocated in javastring_tochar */
85
86         MFREE(key, char, 0);
87
88         if (value == NULL)
89                 return NULL;
90
91         result = javastring_new_from_ascii(value);
92
93         return (jstring) result;
94 }
95
96 } // extern "C"
97
98
99 /* native methods implemented by this file ************************************/
100  
101 static JNINativeMethod methods[] = {
102         { (char*) "arraycopy",    (char*) "(Ljava/lang/Object;ILjava/lang/Object;II)V", (void*) (uintptr_t) &Java_java_lang_System_arraycopy    },
103         { (char*) "getProperty0", (char*) "(Ljava/lang/String;)Ljava/lang/String;",     (void*) (uintptr_t) &Java_java_lang_System_getProperty0 },
104 };
105
106
107 /* _Jv_java_lang_System_init ***************************************************
108  
109    Register native functions.
110  
111 *******************************************************************************/
112  
113 void _Jv_java_lang_System_init(void)
114 {
115         utf* u = utf_new_char("java/lang/System");
116  
117         NativeMethods& nm = VM::get_current()->get_nativemethods();
118         nm.register_methods(u, methods, NATIVE_METHODS_COUNT);
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  */