Merged revisions 8034-8055 via svnmerge from
[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 #include "native/include/java_lang_Object.h"
44
45 #if defined(ENABLE_JAVASE)
46 # include "native/include/java_lang_String.h"/* required by java_lang_Class.h */
47 # include "native/include/java_lang_Class.h"
48 # include "native/include/java_lang_ClassLoader.h"
49 # include "native/include/java_security_ProtectionDomain.h"
50 #endif
51
52 #include "vm/exceptions.h"
53 #include "vm/stringlocal.h"
54
55 #include "vmcore/class.h"
56 #include "vmcore/classcache.h"
57 #include "vmcore/options.h"
58
59 #if defined(ENABLE_STATISTICS)
60 # include "vmcore/statistics.h"
61 #endif
62
63
64 /*
65  * Class:     java/lang/ClassLoader
66  * Method:    defineClass
67  * Signature: (Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;
68  */
69 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)
70 {
71         utf               *utfname;
72         classinfo         *c;
73         classloader       *loader;
74         java_lang_Class   *o;
75 #if defined(ENABLE_JVMTI)
76         jint new_class_data_len = 0;
77         unsigned char* new_class_data = NULL;
78 #endif
79
80         /* check if data was passed */
81
82         if (data == NULL) {
83                 exceptions_throw_nullpointerexception();
84                 return NULL;
85         }
86
87         /* check the indexes passed */
88
89         if ((offset < 0) || (len < 0) || ((offset + len) > data->header.size)) {
90                 exceptions_throw_arrayindexoutofboundsexception();
91                 return NULL;
92         }
93
94         /* add classloader to classloader hashtable */
95
96         assert(cl);
97         loader = loader_hashtable_classloader_add((java_objectheader *) cl);
98
99         if (name != NULL) {
100                 /* convert '.' to '/' in java string */
101
102                 utfname = javastring_toutf((java_objectheader *) name, true);
103         } 
104         else {
105                 utfname = NULL;
106         }
107
108 #if defined(ENABLE_JVMTI)
109         /* XXX again this will not work because of the indirection cell for classloaders */
110         assert(0);
111         /* fire Class File Load Hook JVMTI event */
112
113         if (jvmti)
114                 jvmti_ClassFileLoadHook(utfname, len, (unsigned char *) data->data, 
115                                                                 loader, (java_objectheader *) pd, 
116                                                                 &new_class_data_len, &new_class_data);
117 #endif
118
119         /* define the class */
120
121 #if defined(ENABLE_JVMTI)
122         /* check if the JVMTI wants to modify the class */
123
124         if (new_class_data == NULL)
125                 c = class_define(utfname, loader, new_class_data_len, new_class_data); 
126         else
127 #endif
128                 c = class_define(utfname, loader, len, (u1 *) &data->data[offset]); 
129
130         if (c == NULL)
131                 return NULL;
132
133         /* set ProtectionDomain */
134
135         o = (java_lang_Class *) c;
136
137         o->pd = pd;
138
139         return o;
140 }
141
142
143 /*
144  * These are local overrides for various environment variables in Emacs.
145  * Please do not remove this and leave it at the end of the file, where
146  * Emacs will automagically detect them.
147  * ---------------------------------------------------------------------
148  * Local variables:
149  * mode: c
150  * indent-tabs-mode: t
151  * c-basic-offset: 4
152  * tab-width: 4
153  * End:
154  * vim:noexpandtab:sw=4:ts=4:
155  */