CACAO
com_sun_cldchi_jvm_JVM.cpp
Go to the documentation of this file.
1 /* src/native/vm/cldc1.1/com_sun_cldchi_jvm_JVM.cpp
2 
3  Copyright (C) 2007-2013
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.hpp"
31 #include "native/native.hpp"
32 
33 #if defined(ENABLE_JNI_HEADERS)
34 # include "native/include/com_sun_cldchi_jvm_JVM.h"
35 #endif
36 
37 #include "vm/exceptions.hpp"
38 #include "vm/string.hpp"
39 #include "vm/vm.hpp"
40 
41 
42 // Native functions are exported as C functions.
43 extern "C" {
44 
45 /*
46  * Class: com/sun/cldchi/jvm/JVM
47  * Method: loadLibrary
48  * Signature: (Ljava/lang/String;)V
49  */
50 JNIEXPORT void JNICALL Java_com_sun_cldchi_jvm_JVM_loadLibrary(JNIEnv *env, jclass clazz, jstring libName)
51 {
52  if (libName == NULL) {
54  return;
55  }
56 
57  // REMOVEME When we use Java-strings internally.
59 
60  NativeLibrary nl(name);
61  bool result = nl.load(env);
62 
63  // Check for error and throw an exception in case.
64  if (result == false) {
66  }
67 }
68 
69 } // extern "C"
70 
71 
72 /* native methods implemented by this file ************************************/
73 
74 static JNINativeMethod methods[] = {
75  { (char*) "loadLibrary", (char*) "(Ljava/lang/String;)V", (void*) (uintptr_t) &Java_com_sun_cldchi_jvm_JVM_loadLibrary },
76 };
77 
78 
79 /* _Jv_com_sun_cldchi_jvm_JVM_init *********************************************
80 
81  Register native functions.
82 
83 *******************************************************************************/
84 
86 {
87  Utf8String u = Utf8String::from_utf8("com/sun/cldchi/jvm/JVM");
88 
91 }
92 
93 
94 /*
95  * These are local overrides for various environment variables in Emacs.
96  * Please do not remove this and leave it at the end of the file, where
97  * Emacs will automagically detect them.
98  * ---------------------------------------------------------------------
99  * Local variables:
100  * mode: c++
101  * indent-tabs-mode: t
102  * c-basic-offset: 4
103  * tab-width: 4
104  * End:
105  * vim:noexpandtab:sw=4:ts=4:
106  */
Table containing all native methods registered with the VM.
Definition: native.hpp:132
NativeMethods & get_nativemethods()
Definition: vm.hpp:128
void register_methods(Utf8String classname, const JNINativeMethod *methods, size_t count)
Register native methods with the VM.
Definition: native.cpp:242
Utf8String to_utf8() const
Definition: string.cpp:437
_Jv_JNIEnv JNIEnv
Definition: jni.hpp:112
#define NATIVE_METHODS_COUNT
Definition: native.hpp:45
JNIEnv jclass jobject const char * name
Definition: jvmti.h:312
void _Jv_com_sun_cldchi_jvm_JVM_init(void)
bool load(JNIEnv *env)
Load this native library and initialize it, if possible.
Definition: native.cpp:469
void exceptions_throw_nullpointerexception(void)
static Utf8String from_utf8(const char *, size_t)
Definition: utf8.cpp:335
JNIEXPORT void JNICALL Java_com_sun_cldchi_jvm_JVM_loadLibrary(JNIEnv *env, jclass clazz, jstring libName)
Represents a native library.
Definition: native.hpp:60
static JNINativeMethod methods[]
void exceptions_throw_unsatisfiedlinkerror(Utf8String name)
Definition: exceptions.cpp:931
Nl nl
Definition: OStream.cpp:56
static VM * get_current()
Definition: vm.hpp:99