* Removed all Id tags.
[cacao.git] / src / native / vm / cldc1.1 / com_sun_cldchi_jvm_JVM.c
1 /* src/native/vm/cldc1.1/com_sun_cldchi_jvm_JVM.c
2
3    Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25 */
26
27
28 #include "config.h"
29 #include "vm/types.h"
30
31 #include "native/jni.h"
32 #include "native/native.h"
33
34 #include "native/include/java_lang_String.h"
35
36 #include "native/include/com_sun_cldchi_jvm_JVM.h"
37
38 #include "native/vm/java_lang_Runtime.h"
39
40 #include "vm/exceptions.h"
41 #include "vm/stringlocal.h"
42
43
44 /* native methods implemented by this file ************************************/
45  
46 static JNINativeMethod methods[] = {
47         { "loadLibrary", "(Ljava/lang/String;)V", (void *) (ptrint) &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 void _Jv_com_sun_cldchi_jvm_JVM_init(void)
58 {
59         utf *u;
60  
61         u = utf_new_char("com/sun/cldchi/jvm/JVM");
62  
63         native_method_register(u, methods, NATIVE_METHODS_COUNT);
64 }
65
66
67 /*
68  * Class:     com/sun/cldchi/jvm/JVM
69  * Method:    loadLibrary
70  * Signature: (Ljava/lang/String;)V
71  */
72 JNIEXPORT void JNICALL Java_com_sun_cldchi_jvm_JVM_loadLibrary(JNIEnv *env, jclass clazz, java_lang_String *libName)
73 {
74         s4   result;
75         utf *name;
76
77 #if defined(ENABLE_JNI)
78         result = _Jv_java_lang_Runtime_loadLibrary(env, libName, NULL);
79 #else
80         result = _Jv_java_lang_Runtime_loadLibrary(libName, NULL);
81 #endif
82
83         /* check for error and throw one in case */
84
85         if (result == 0) {
86                 name = javastring_toutf((java_handle_t *) libName, false);
87                 exceptions_throw_unsatisfiedlinkerror(name);
88         }
89 }
90
91
92 /*
93  * These are local overrides for various environment variables in Emacs.
94  * Please do not remove this and leave it at the end of the file, where
95  * Emacs will automagically detect them.
96  * ---------------------------------------------------------------------
97  * Local variables:
98  * mode: c
99  * indent-tabs-mode: t
100  * c-basic-offset: 4
101  * tab-width: 4
102  * End:
103  * vim:noexpandtab:sw=4:ts=4:
104  */