/* src/native/vm/gnuclasspath/gnu_classpath_VMSystemProperties.cpp Copyright (C) 1996-2005, 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 "vm/types.h" #include "mm/memory.h" #include "native/jni.h" #include "native/native.h" #include "native/include/java_util_Properties.h" /// FIXME extern "C" { #include "native/include/gnu_classpath_VMSystemProperties.h" } #include "vm/exceptions.hpp" #include "vm/properties.h" #include "vm/vm.hpp" // Native functions are exported as C functions. extern "C" { /* * Class: gnu/classpath/VMSystemProperties * Method: preInit * Signature: (Ljava/util/Properties;)V */ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_preInit(JNIEnv *env, jclass clazz, java_util_Properties *properties) { java_handle_t *p; p = (java_handle_t *) properties; if (p == NULL) { exceptions_throw_nullpointerexception(); return; } /* fill the java.util.Properties object */ properties_system_add_all(p); } /* * Class: gnu/classpath/VMSystemProperties * Method: postInit * Signature: (Ljava/util/Properties;)V */ JNIEXPORT void JNICALL Java_gnu_classpath_VMSystemProperties_postInit(JNIEnv *env, jclass clazz, java_util_Properties *properties) { java_handle_t *p; #if defined(ENABLE_JRE_LAYOUT) char *java_home; char *path; s4 len; #endif p = (java_handle_t *) properties; if (p == NULL) { exceptions_throw_nullpointerexception(); return; } /* post-set some properties */ #if defined(ENABLE_JRE_LAYOUT) /* XXX when we do it that way, we can't set these properties on commandline */ java_home = properties_get("java.home"); properties_system_add(p, "gnu.classpath.home", java_home); len = strlen("file://") + strlen(java_home) + strlen("/lib") + strlen("0"); path = MNEW(char, len); strcpy(path, "file://"); strcat(path, java_home); strcat(path, "/lib"); properties_system_add(p, "gnu.classpath.home.url", path); MFREE(path, char, len); #endif } } // extern "C" /* native methods implemented by this file ************************************/ static JNINativeMethod methods[] = { { (char*) "preInit", (char*) "(Ljava/util/Properties;)V", (void*) (uintptr_t) &Java_gnu_classpath_VMSystemProperties_preInit }, { (char*) "postInit", (char*) "(Ljava/util/Properties;)V", (void*) (uintptr_t) &Java_gnu_classpath_VMSystemProperties_postInit }, }; /* _Jv_gnu_classpat_VMSystemProperties_init ************************************ Register native functions. *******************************************************************************/ // FIXME extern "C" { void _Jv_gnu_classpath_VMSystemProperties_init(void) { utf *u; u = utf_new_char("gnu/classpath/VMSystemProperties"); native_method_register(u, methods, NATIVE_METHODS_COUNT); } } /* * 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: */