blob: 3121a90d09027b94a9a5115b3bfc430b583774ad [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
Andreas Gampe277ccbd2014-11-03 21:36:10 -080017#include "java_lang_reflect_Constructor.h"
18
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070019#include "class_linker.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070020#include "jni_internal.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070021#include "mirror/art_method.h"
22#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "mirror/object-inl.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070025#include "reflection.h"
Ian Rogers53b8b092014-03-13 23:45:53 -070026#include "scoped_fast_native_object_access.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070027#include "well_known_classes.h"
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070028
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070029namespace art {
30
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070031/*
32 * We get here through Constructor.newInstance(). The Constructor object
33 * would not be available if the constructor weren't public (per the
34 * definition of Class.getConstructor), so we can skip the method access
35 * check. We can also safely assume the constructor isn't associated
36 * with an interface, array, or primitive class.
37 */
Jeff Hao11d5d8f2014-03-26 15:08:20 -070038static jobject Constructor_newInstance(JNIEnv* env, jobject javaMethod, jobjectArray javaArgs,
39 jboolean accessible) {
Ian Rogers53b8b092014-03-13 23:45:53 -070040 ScopedFastNativeObjectAccess soa(env);
Ian Rogers62f05122014-03-21 11:21:29 -070041 mirror::ArtMethod* m = mirror::ArtMethod::FromReflectedMethod(soa, javaMethod);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070042 StackHandleScope<1> hs(soa.Self());
43 Handle<mirror::Class> c(hs.NewHandle(m->GetDeclaringClass()));
Ian Rogers62d6c772013-02-27 08:32:07 -080044 if (UNLIKELY(c->IsAbstract())) {
45 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow();
46 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/InstantiationException;",
47 "Can't instantiate %s %s",
48 c->IsInterface() ? "interface" : "abstract class",
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070049 PrettyDescriptor(c.Get()).c_str());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080050 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070051 }
52
Ian Rogers7b078e82014-09-10 14:44:24 -070053 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -070054 DCHECK(soa.Self()->IsExceptionPending());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080055 return nullptr;
Brian Carlstrom5d40f182011-09-26 22:29:18 -070056 }
57
Mathieu Chartierf4b97622014-03-10 13:26:27 -070058 bool movable = true;
59 if (!kMovingMethods && c->IsArtMethodClass()) {
60 movable = false;
61 } else if (!kMovingFields && c->IsArtFieldClass()) {
62 movable = false;
63 } else if (!kMovingClasses && c->IsClassClass()) {
64 movable = false;
65 }
66 mirror::Object* receiver =
67 movable ? c->AllocObject(soa.Self()) : c->AllocNonMovableObject(soa.Self());
Mathieu Chartierc528dba2013-11-26 12:00:11 -080068 if (receiver == nullptr) {
69 return nullptr;
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070070 }
71
Ian Rogers00f7d0e2012-07-19 15:28:27 -070072 jobject javaReceiver = soa.AddLocalReference<jobject>(receiver);
Jeff Haocb4581a2014-03-28 15:43:37 -070073 InvokeMethod(soa, javaMethod, javaReceiver, javaArgs, (accessible == JNI_TRUE));
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070074
75 // Constructors are ()V methods, so we shouldn't touch the result of InvokeMethod.
76 return javaReceiver;
77}
78
79static JNINativeMethod gMethods[] = {
Jeff Hao11d5d8f2014-03-26 15:08:20 -070080 NATIVE_METHOD(Constructor, newInstance, "!([Ljava/lang/Object;Z)Ljava/lang/Object;"),
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070081};
82
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070083void register_java_lang_reflect_Constructor(JNIEnv* env) {
Elliott Hugheseac76672012-05-24 21:56:51 -070084 REGISTER_NATIVE_METHODS("java/lang/reflect/Constructor");
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070085}
86
87} // namespace art