Merged revisions 7797-7917 via svnmerge from
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Class.c
1 /* src/native/vm/cldc1.1/java_lang_Class.c
2
3    Copyright (C) 2006, 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    $Id: java_lang_VMRuntime.c 5900 2006-11-04 17:30:44Z michi $
26
27 */
28
29
30 #include "config.h"
31 #include "vm/types.h"
32
33 #include "native/jni.h"
34 #include "native/native.h"
35
36 #include "native/include/java_lang_String.h"             /* required by j.l.C */
37 #include "native/include/java_lang_Object.h"
38
39 #include "native/include/java_lang_Class.h"
40
41 #include "native/vm/java_lang_Class.h"
42
43
44 /* native methods implemented by this file ************************************/
45  
46 static JNINativeMethod methods[] = {
47         { "forName",          "(Ljava/lang/String;)Ljava/lang/Class;",(void *) (ptrint) &Java_java_lang_Class_forName          },
48         { "newInstance",      "()Ljava/lang/Object;",                 (void *) (ptrint) &Java_java_lang_Class_newInstance      },
49         { "isInstance",       "(Ljava/lang/Object;)Z",                (void *) (ptrint) &Java_java_lang_Class_isInstance       },
50         { "isAssignableFrom", "(Ljava/lang/Class;)Z",                 (void *) (ptrint) &Java_java_lang_Class_isAssignableFrom },
51         { "isInterface",      "()Z",                                  (void *) (ptrint) &Java_java_lang_Class_isInterface      },
52         { "isArray",          "()Z",                                  (void *) (ptrint) &Java_java_lang_Class_isArray          },
53         { "getName",          "()Ljava/lang/String;",                 (void *) (ptrint) &Java_java_lang_Class_getName          },
54 };
55
56 /* _Jv_java_lang_Class_init ****************************************************
57  
58    Register native functions.
59  
60 *******************************************************************************/
61  
62 void _Jv_java_lang_Class_init(void)
63 {
64         utf *u;
65  
66         u = utf_new_char("java/lang/Class");
67  
68         native_method_register(u, methods, NATIVE_METHODS_COUNT);
69 }
70
71
72 /*
73  * Class:     java/lang/Class
74  * Method:    forName
75  * Signature: (Ljava/lang/String;)Ljava/lang/Class;
76  */
77 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_Class_forName(JNIEnv *env, jclass clazz, java_lang_String *name)
78 {
79         return _Jv_java_lang_Class_forName(name);
80 }
81
82
83 /*
84  * Class:     java/lang/Class
85  * Method:    newInstance
86  * Signature: ()Ljava/lang/Object;
87  */
88 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_Class_newInstance(JNIEnv *env, java_lang_Class* this)
89 {
90         classinfo         *c;
91         java_objectheader *o;
92
93         c = (classinfo *) this;
94
95         o = native_new_and_init(c);
96
97         return (java_lang_Object *) o;
98 }
99
100
101 /*
102  * Class:     java/lang/Class
103  * Method:    isInstance
104  * Signature: (Ljava/lang/Object;)Z
105  */
106 JNIEXPORT s4 JNICALL Java_java_lang_Class_isInstance(JNIEnv *env, java_lang_Class *this, java_lang_Object *obj)
107 {
108         return _Jv_java_lang_Class_isInstance(this, obj);
109 }
110
111
112 /*
113  * Class:     java/lang/Class
114  * Method:    isAssignableFrom
115  * Signature: (Ljava/lang/Class;)Z
116  */
117 JNIEXPORT s4 JNICALL Java_java_lang_Class_isAssignableFrom(JNIEnv *env, java_lang_Class *this, java_lang_Class *cls)
118 {
119         return _Jv_java_lang_Class_isAssignableFrom(this, cls);
120 }
121
122
123 /*
124  * Class:     java/lang/Class
125  * Method:    isInterface
126  * Signature: ()Z
127  */
128 JNIEXPORT s4 JNICALL Java_java_lang_Class_isInterface(JNIEnv *env, java_lang_Class *this)
129 {
130         return _Jv_java_lang_Class_isInterface(this);
131 }
132
133
134 /*
135  * Class:     java/lang/Class
136  * Method:    isArray
137  * Signature: ()Z
138  */
139 JNIEXPORT s4 JNICALL Java_java_lang_Class_isArray(JNIEnv *env, java_lang_Class *this)
140 {
141         return _Jv_java_lang_Class_isArray(this);
142 }
143
144
145 /*
146  * Class:     java/lang/Class
147  * Method:    getName
148  * Signature: ()Ljava/lang/String;
149  */
150 JNIEXPORT java_lang_String* JNICALL Java_java_lang_Class_getName(JNIEnv *env, java_lang_Class *this)
151 {
152         return _Jv_java_lang_Class_getName(this);
153 }
154
155
156 /*
157  * These are local overrides for various environment variables in Emacs.
158  * Please do not remove this and leave it at the end of the file, where
159  * Emacs will automagically detect them.
160  * ---------------------------------------------------------------------
161  * Local variables:
162  * mode: c
163  * indent-tabs-mode: t
164  * c-basic-offset: 4
165  * tab-width: 4
166  * End:
167  * vim:noexpandtab:sw=4:ts=4:
168  */