* configure.ac,
[cacao.git] / src / native / vm / java_lang_ClassLoader.c
1 /* src/native/vm/java_lang_ClassLoader.c - java/lang/ClassLoader
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_VMClass.c 6131 2006-12-06 22:15:57Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33 #include <string.h>
34
35 #include "vm/types.h"
36
37 #include "mm/memory.h"
38
39 #include "vm/global.h"                          /* required by native headers */
40
41 #include "native/jni.h"
42
43 /* keep this order of the native includes */
44
45 #include "native/include/java_lang_Object.h"
46
47 #if defined(ENABLE_JAVASE)
48 # include "native/include/java_lang_String.h"            /* required by j.l.C */
49
50 # if defined(WITH_CLASSPATH_SUN)
51 #  include "native/include/java_nio_ByteBuffer.h"       /* required by j.l.CL */
52 # endif
53
54 # include "native/include/java_lang_ClassLoader.h"       /* required by j.l.C */
55 # include "native/include/java_lang_Class.h"
56 # include "native/include/java_security_ProtectionDomain.h"
57 #endif
58
59 #include "vm/exceptions.h"
60 #include "vm/stringlocal.h"
61
62 #include "vmcore/class.h"
63 #include "vmcore/classcache.h"
64 #include "vmcore/options.h"
65
66 #if defined(ENABLE_STATISTICS)
67 # include "vmcore/statistics.h"
68 #endif
69
70
71 /*
72  * Class:     java/lang/ClassLoader
73  * Method:    defineClass
74  * Signature: (Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;
75  */
76 java_lang_Class *_Jv_java_lang_ClassLoader_defineClass(java_lang_ClassLoader *cl, java_lang_String *name, java_bytearray *data, s4 offset, s4 len, java_security_ProtectionDomain *pd)
77 {
78         java_objectheader *loader;
79         utf               *utfname;
80         classinfo         *c;
81         java_lang_Class   *o;
82
83 #if defined(ENABLE_JVMTI)
84         jint new_class_data_len = 0;
85         unsigned char* new_class_data = NULL;
86 #endif
87
88         loader = (java_objectheader *) cl;
89
90         /* check if data was passed */
91
92         if (data == NULL) {
93                 exceptions_throw_nullpointerexception();
94                 return NULL;
95         }
96
97         /* check the indexes passed */
98
99         if ((offset < 0) || (len < 0) || ((offset + len) > data->header.size)) {
100                 exceptions_throw_arrayindexoutofboundsexception();
101                 return NULL;
102         }
103
104         if (name != NULL) {
105                 /* convert '.' to '/' in java string */
106
107                 utfname = javastring_toutf((java_objectheader *) name, true);
108         } 
109         else {
110                 utfname = NULL;
111         }
112
113 #if defined(ENABLE_JVMTI)
114         /* fire Class File Load Hook JVMTI event */
115
116         if (jvmti)
117                 jvmti_ClassFileLoadHook(utfname, len, (unsigned char *) data->data, 
118                                                                 loader, (java_objectheader *) pd, 
119                                                                 &new_class_data_len, &new_class_data);
120 #endif
121
122         /* define the class */
123
124 #if defined(ENABLE_JVMTI)
125         /* check if the JVMTI wants to modify the class */
126
127         if (new_class_data == NULL)
128                 c = class_define(utfname, loader, new_class_data_len, new_class_data); 
129         else
130 #endif
131                 c = class_define(utfname, loader, len, (u1 *) &data->data[offset]); 
132
133         if (c == NULL)
134                 return NULL;
135
136         /* for convenience */
137
138         o = (java_lang_Class *) c;
139
140 #if defined(WITH_CLASSPATH_GNU)
141         /* set ProtectionDomain */
142
143         o->pd = pd;
144 #endif
145
146         return o;
147 }
148
149
150 /*
151  * These are local overrides for various environment variables in Emacs.
152  * Please do not remove this and leave it at the end of the file, where
153  * Emacs will automagically detect them.
154  * ---------------------------------------------------------------------
155  * Local variables:
156  * mode: c
157  * indent-tabs-mode: t
158  * c-basic-offset: 4
159  * tab-width: 4
160  * End:
161  * vim:noexpandtab:sw=4:ts=4:
162  */