b532a520fb03b68947695e2503a3abe577ed71e9
[cacao.git] / src / native / vm / java_lang_reflect_Method.c
1 /* src/native/vm/java_lang_reflect_Method.c
2
3    Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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_reflect_Method.c 8063 2007-06-11 14:44:58Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33
34 #include "vm/types.h"
35
36 #include "native/jni.h"
37 #include "native/llni.h"
38 #include "native/native.h"
39
40 #include "native/include/java_lang_Object.h"
41
42 #include "native/include/java_lang_reflect_Method.h"
43
44 #include "vm/access.h"
45 #include "vm/builtin.h"
46 #include "vm/initialize.h"
47
48 #include "vmcore/class.h"
49 #include "vmcore/method.h"
50
51
52 /*
53  * Class:     java/lang/reflect/Method
54  * Method:    invoke
55  * Signature: (Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
56  */
57 java_lang_Object *_Jv_java_lang_reflect_Method_invoke(java_lang_reflect_Method *this, java_lang_Object *o, java_handle_objectarray_t *args)
58 {
59         classinfo  *c;
60         methodinfo *m;
61         s4          override;
62         int32_t     slot;
63
64         LLNI_field_get_cls(this, clazz, c);
65         LLNI_field_get_val(this, slot , slot);
66         m = &(c->methods[slot]);
67
68
69         /* check method access */
70
71         /* check if we should bypass security checks (AccessibleObject) */
72
73 #if defined(WITH_CLASSPATH_GNU)
74         LLNI_field_get_val(this, flag, override);
75 #elif defined(WITH_CLASSPATH_SUN)
76         LLNI_field_get_val(this, override, override);
77 #else
78 # error unknown classpath configuration
79 #endif
80
81         if (override == false) {
82                 if (!access_check_method(m, 1))
83                         return NULL;
84         }
85
86         /* check if method class is initialized */
87
88         if (!(c->state & CLASS_INITIALIZED))
89                 if (!initialize_class(c))
90                         return NULL;
91
92         /* call the Java method via a helper function */
93
94         return (java_lang_Object *) _Jv_jni_invokeNative(m, (java_handle_t *) o, args);
95 }
96
97
98 /*
99  * These are local overrides for various environment variables in Emacs.
100  * Please do not remove this and leave it at the end of the file, where
101  * Emacs will automagically detect them.
102  * ---------------------------------------------------------------------
103  * Local variables:
104  * mode: c
105  * indent-tabs-mode: t
106  * c-basic-offset: 4
107  * tab-width: 4
108  * End:
109  */