* src/native/vm/cldc1.1/com_sun_cldc_io_ResourceInputStream.c,
[cacao.git] / src / native / vm / cldc1.1 / com_sun_cldchi_jvm_JVM.cpp
1 /* src/native/vm/cldc1.1/com_sun_cldchi_jvm_JVM.cpp
2
3    Copyright (C) 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 #include "native/include/java_lang_String.h"
34
35 // FIXME
36 extern "C" { 
37 #include "native/include/com_sun_cldchi_jvm_JVM.h"
38 }
39
40 #include "vm/exceptions.hpp"
41 #include "vm/string.hpp"
42
43
44 /* native methods implemented by this file ************************************/
45  
46 static JNINativeMethod methods[] = {
47         { (char*) "loadLibrary", (char*) "(Ljava/lang/String;)V", (void*) (uintptr_t) &Java_com_sun_cldchi_jvm_JVM_loadLibrary },
48 };
49
50
51 /* _Jv_com_sun_cldchi_jvm_JVM_init *********************************************
52  
53    Register native functions.
54  
55 *******************************************************************************/
56  
57 // FIXME
58 extern "C" { 
59 void _Jv_com_sun_cldchi_jvm_JVM_init(void)
60 {
61         utf *u;
62  
63         u = utf_new_char("com/sun/cldchi/jvm/JVM");
64  
65         native_method_register(u, methods, NATIVE_METHODS_COUNT);
66 }
67 }
68
69
70 // Native functions are exported as C functions.
71 extern "C" {
72
73 /*
74  * Class:     com/sun/cldchi/jvm/JVM
75  * Method:    loadLibrary
76  * Signature: (Ljava/lang/String;)V
77  */
78 JNIEXPORT void JNICALL Java_com_sun_cldchi_jvm_JVM_loadLibrary(JNIEnv *env, jclass clazz, java_lang_String *libName)
79 {
80         int  result;
81         utf *name;
82
83         /* REMOVEME When we use Java-strings internally. */
84
85         if (libName == NULL) {
86                 exceptions_throw_nullpointerexception();
87                 return;
88         }
89
90         name = javastring_toutf((java_handle_t *) libName, false);
91
92         result = native_library_load(env, name, NULL);
93
94         /* Check for error and throw an exception in case. */
95
96         if (result == 0) {
97                 exceptions_throw_unsatisfiedlinkerror(name);
98         }
99 }
100
101 } // extern "C"
102
103
104 /*
105  * These are local overrides for various environment variables in Emacs.
106  * Please do not remove this and leave it at the end of the file, where
107  * Emacs will automagically detect them.
108  * ---------------------------------------------------------------------
109  * Local variables:
110  * mode: c++
111  * indent-tabs-mode: t
112  * c-basic-offset: 4
113  * tab-width: 4
114  * End:
115  * vim:noexpandtab:sw=4:ts=4:
116  */