blob: 581199234c2e70f2c205383bf58dd0b3a84aed7d [file] [log] [blame]
Elliott Hughes2a20cfd2011-09-23 19:30:41 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070017#include "class_linker.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070018#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070019#include "mirror/art_method.h"
20#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080021#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include "mirror/object-inl.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080023#include "object_utils.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070024#include "reflection.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070025#include "scoped_thread_state_change.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070026#include "well_known_classes.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070027
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070028namespace art {
29
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070030/*
31 * We get here through Constructor.newInstance(). The Constructor object
32 * would not be available if the constructor weren't public (per the
33 * definition of Class.getConstructor), so we can skip the method access
34 * check. We can also safely assume the constructor isn't associated
35 * with an interface, array, or primitive class.
36 */
Elliott Hughes0512f022012-03-15 22:10:52 -070037static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs) {
Ian Rogers1eb512d2013-10-18 15:42:20 -070038 // TODO: ScopedFastNativeObjectAccess
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039 ScopedObjectAccess soa(env);
Brian Carlstromea46f952013-07-30 01:26:50 -070040 jobject art_method = soa.Env()->GetObjectField(
41 javaMethod, WellKnownClasses::java_lang_reflect_AbstractMethod_artMethod);
42
43 mirror::ArtMethod* m = soa.Decode<mirror::Object*>(art_method)->AsArtMethod();
Mathieu Chartierc528dba2013-11-26 12:00:11 -080044 SirtRef<mirror::Class> c(soa.Self(), m->GetDeclaringClass());
Ian Rogers62d6c772013-02-27 08:32:07 -080045 if (UNLIKELY(c->IsAbstract())) {
46 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
47 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/InstantiationException;",
48 "Can't instantiate %s %s",
49 c->IsInterface() ? "interface" : "abstract class",
Mathieu Chartierc528dba2013-11-26 12:00:11 -080050 PrettyDescriptor(c.get()).c_str());
51 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070052 }
53
Ian Rogers0045a292012-03-31 21:08:41 -070054 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070055 DCHECK(soa.Self()->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080056 return nullptr;
Brian Carlstrom5d40f182011-09-26 22:29:18 -070057 }
58
Mathieu Chartiercbb2d202013-11-14 17:45:16 -080059 mirror::Object* receiver = c->AllocNonMovableObject(soa.Self());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080060 if (receiver == nullptr) {
61 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070062 }
63
Ian Rogers00f7d0e2012-07-19 15:28:27 -070064 jobject javaReceiver = soa.AddLocalReference<jobject>(receiver);
65 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070066
67 // Constructors are ()V methods, so we shouldn't touch the result of InvokeMethod.
68 return javaReceiver;
69}
70
71static JNINativeMethod gMethods[] = {
Ian Rogers1eb512d2013-10-18 15:42:20 -070072 NATIVE_METHOD(Constructor, newInstance, "!([Ljava/lang/Object;)Ljava/lang/Object;"),
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070073};
74
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070075void register_java_lang_reflect_Constructor(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -070076 REGISTER_NATIVE_METHODS("java/lang/reflect/Constructor");
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070077}
78
79} // namespace art