/* src/native/vm/cldc1.1/java_lang_System.cpp Copyright (C) 2006, 2007, 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include #include #include "mm/memory.h" #include "native/jni.h" #include "native/native.h" #include "native/include/java_lang_Object.h" #include "native/include/java_lang_String.h" // FIXME extern "C" { #include "native/include/java_lang_System.h" } #include "vm/builtin.h" #include "vm/properties.h" #include "vm/string.hpp" /* native methods implemented by this file ************************************/ static JNINativeMethod methods[] = { { (char*) "arraycopy", (char*) "(Ljava/lang/Object;ILjava/lang/Object;II)V", (void*) (uintptr_t) &Java_java_lang_System_arraycopy }, { (char*) "getProperty0", (char*) "(Ljava/lang/String;)Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_System_getProperty0 }, }; /* _Jv_java_lang_System_init *************************************************** Register native functions. *******************************************************************************/ // FIXME extern "C" { void _Jv_java_lang_System_init(void) { utf *u; u = utf_new_char("java/lang/System"); native_method_register(u, methods, NATIVE_METHODS_COUNT); } } // Native functions are exported as C functions. extern "C" { /* * Class: java/lang/System * Method: arraycopy * Signature: (Ljava/lang/Object;ILjava/lang/Object;II)V */ JNIEXPORT void JNICALL Java_java_lang_System_arraycopy(JNIEnv *env, jclass clazz, java_lang_Object *src, s4 srcStart, java_lang_Object *dest, s4 destStart, s4 len) { builtin_arraycopy((java_handle_t *) src, srcStart, (java_handle_t *) dest, destStart, len); } /* * Class: java/lang/System * Method: getProperty0 * Signature: (Ljava/lang/String;)Ljava/lang/String; */ JNIEXPORT java_lang_String* JNICALL Java_java_lang_System_getProperty0(JNIEnv *env, jclass clazz, java_lang_String *s) { java_handle_t *so; char* key; const char* value; java_handle_t *result; so = (java_handle_t *) s; /* build an ASCII string out of the java/lang/String passed */ key = javastring_tochar(so); /* get the property from the internal table */ value = properties_get(key); /* release the memory allocated in javastring_tochar */ MFREE(key, char, 0); if (value == NULL) return NULL; result = javastring_new_from_ascii(value); return (java_lang_String *) result; } } // extern "C" /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c++ * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: */