fc4c34ffcaa99082ebf3d2ad61ada9c1cbdecf12
[cacao.git] / src / native / vm / gnuclasspath / java_lang_VMString.cpp
1 /* src/native/vm/gnuclasspath/java_lang_VMString.cpp - java/lang/VMString
2
3    Copyright (C) 1996-2005, 2006, 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 #include <stdlib.h>
30
31 #include "native/jni.h"
32 #include "native/native.h"
33
34 #include "native/include/java_lang_String.h"
35
36 // FIXME
37 extern "C" {
38 #include "native/include/java_lang_VMString.h"
39 }
40
41 #include "vm/string.hpp"
42
43
44 // Native functions are exported as C functions.
45 extern "C" {
46
47 /*
48  * Class:     java/lang/VMString
49  * Method:    intern
50  * Signature: (Ljava/lang/String;)Ljava/lang/String;
51  */
52 JNIEXPORT java_lang_String* JNICALL Java_java_lang_VMString_intern(JNIEnv *env, jclass clazz, java_lang_String *str)
53 {
54         if (str == NULL)
55                 return NULL;
56
57         return (java_lang_String *) javastring_intern((java_handle_t *) str);
58 }
59
60 } // extern "C"
61
62
63 /* native methods implemented by this file ************************************/
64
65 static JNINativeMethod methods[] = {
66         { (char*) "intern", (char*) "(Ljava/lang/String;)Ljava/lang/String;", (void*) (uintptr_t) &Java_java_lang_VMString_intern },
67 };
68
69
70 /* _Jv_java_lang_VMString_init *************************************************
71
72    Register native functions.
73
74 *******************************************************************************/
75
76 // FIXME
77 extern "C" {
78 void _Jv_java_lang_VMString_init(void)
79 {
80         utf *u;
81
82         u = utf_new_char("java/lang/VMString");
83
84         native_method_register(u, methods, NATIVE_METHODS_COUNT);
85 }
86 }
87
88
89 /*
90  * These are local overrides for various environment variables in Emacs.
91  * Please do not remove this and leave it at the end of the file, where
92  * Emacs will automagically detect them.
93  * ---------------------------------------------------------------------
94  * Local variables:
95  * mode: c++
96  * indent-tabs-mode: t
97  * c-basic-offset: 4
98  * tab-width: 4
99  * End:
100  */