429436751fd8db63930d3d95d4e003c6e965b514
[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/llni.h"
35 #include "native/native.h"
36
37 #include "native/include/java_lang_String.h"             /* required by j.l.C */
38 #include "native/include/java_lang_Object.h"
39
40 #include "native/include/java_lang_Class.h"
41
42 #include "native/vm/java_lang_Class.h"
43
44
45 /* native methods implemented by this file ************************************/
46  
47 static JNINativeMethod methods[] = {
48         { "forName",          "(Ljava/lang/String;)Ljava/lang/Class;",(void *) (ptrint) &Java_java_lang_Class_forName          },
49         { "newInstance",      "()Ljava/lang/Object;",                 (void *) (ptrint) &Java_java_lang_Class_newInstance      },
50         { "isInstance",       "(Ljava/lang/Object;)Z",                (void *) (ptrint) &Java_java_lang_Class_isInstance       },
51         { "isAssignableFrom", "(Ljava/lang/Class;)Z",                 (void *) (ptrint) &Java_java_lang_Class_isAssignableFrom },
52         { "isInterface",      "()Z",                                  (void *) (ptrint) &_Jv_java_lang_Class_isInterface       },
53         { "isArray",          "()Z",                                  (void *) (ptrint) &_Jv_java_lang_Class_isArray           },
54         { "getName",          "()Ljava/lang/String;",                 (void *) (ptrint) &Java_java_lang_Class_getName          },
55 };
56
57 /* _Jv_java_lang_Class_init ****************************************************
58  
59    Register native functions.
60  
61 *******************************************************************************/
62  
63 void _Jv_java_lang_Class_init(void)
64 {
65         utf *u;
66  
67         u = utf_new_char("java/lang/Class");
68  
69         native_method_register(u, methods, NATIVE_METHODS_COUNT);
70 }
71
72
73 /*
74  * Class:     java/lang/Class
75  * Method:    forName
76  * Signature: (Ljava/lang/String;)Ljava/lang/Class;
77  */
78 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_Class_forName(JNIEnv *env, jclass clazz, java_lang_String *name)
79 {
80         return _Jv_java_lang_Class_forName(name);
81 }
82
83
84 /*
85  * Class:     java/lang/Class
86  * Method:    newInstance
87  * Signature: ()Ljava/lang/Object;
88  */
89 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_Class_newInstance(JNIEnv *env, java_lang_Class* this)
90 {
91         classinfo     *c;
92         java_handle_t *o;
93
94         c = LLNI_classinfo_unwrap(this);
95
96         o = native_new_and_init(c);
97
98         return (java_lang_Object *) o;
99 }
100
101
102 /*
103  * Class:     java/lang/Class
104  * Method:    isInstance
105  * Signature: (Ljava/lang/Object;)Z
106  */
107 JNIEXPORT s4 JNICALL Java_java_lang_Class_isInstance(JNIEnv *env, java_lang_Class *this, java_lang_Object *obj)
108 {
109         return _Jv_java_lang_Class_isInstance(this, obj);
110 }
111
112
113 /*
114  * Class:     java/lang/Class
115  * Method:    isAssignableFrom
116  * Signature: (Ljava/lang/Class;)Z
117  */
118 JNIEXPORT s4 JNICALL Java_java_lang_Class_isAssignableFrom(JNIEnv *env, java_lang_Class *this, java_lang_Class *cls)
119 {
120         return _Jv_java_lang_Class_isAssignableFrom(this, cls);
121 }
122
123
124 /*
125  * Class:     java/lang/Class
126  * Method:    getName
127  * Signature: ()Ljava/lang/String;
128  */
129 JNIEXPORT java_lang_String* JNICALL Java_java_lang_Class_getName(JNIEnv *env, java_lang_Class *this)
130 {
131         return _Jv_java_lang_Class_getName(this);
132 }
133
134
135 /*
136  * These are local overrides for various environment variables in Emacs.
137  * Please do not remove this and leave it at the end of the file, where
138  * Emacs will automagically detect them.
139  * ---------------------------------------------------------------------
140  * Local variables:
141  * mode: c
142  * indent-tabs-mode: t
143  * c-basic-offset: 4
144  * tab-width: 4
145  * End:
146  * vim:noexpandtab:sw=4:ts=4:
147  */