summaryrefslogtreecommitdiffstats
path: root/luni/src/main/native/java_io_ObjectStreamClass.cpp
blob: 721136e90217f4a73c8b0c869a40cc87eaf4b83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You under the Apache License, Version 2.0
 *  (the "License"); you may not use this file except in compliance with
 *  the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

#define LOG_TAG "ObjectStreamClass"

#include "JNIHelp.h"
#include "JniConstants.h"

static jobject getSignature(JNIEnv* env, jclass c, jobject object) {
    jmethodID mid = env->GetMethodID(c, "getSignature", "()Ljava/lang/String;");
    if (!mid) {
        return NULL;
    }
    jclass objectClass = env->GetObjectClass(object);
    return env->CallNonvirtualObjectMethod(object, objectClass, mid);
}

static jobject ObjectStreamClass_getFieldSignature(JNIEnv* env, jclass, jobject field) {
    return getSignature(env, JniConstants::fieldClass, field);
}

static jobject ObjectStreamClass_getMethodSignature(JNIEnv* env, jclass, jobject method) {
    return getSignature(env, JniConstants::methodClass, method);
}

static jobject ObjectStreamClass_getConstructorSignature(JNIEnv* env, jclass, jobject constructor) {
    return getSignature(env, JniConstants::constructorClass, constructor);
}

static jboolean ObjectStreamClass_hasClinit(JNIEnv * env, jclass, jclass targetClass) {
    jmethodID mid = env->GetStaticMethodID(targetClass, "<clinit>", "()V");
    env->ExceptionClear();
    return (mid != 0);
}

static jint ObjectStreamClass_getConstructorId(JNIEnv* env, jclass, jclass constructorClass) {
    return reinterpret_cast<jint>(env->GetMethodID(constructorClass, "<init>", "()V"));
}

static jobject ObjectStreamClass_newInstance(JNIEnv* env, jclass, jclass instantiationClass, jint methodId) {
    return env->NewObject(instantiationClass, reinterpret_cast<jmethodID>(methodId));
}

static JNINativeMethod gMethods[] = {
    NATIVE_METHOD(ObjectStreamClass, getConstructorId, "(Ljava/lang/Class;)I"),
    NATIVE_METHOD(ObjectStreamClass, getConstructorSignature, "(Ljava/lang/reflect/Constructor;)Ljava/lang/String;"),
    NATIVE_METHOD(ObjectStreamClass, getFieldSignature, "(Ljava/lang/reflect/Field;)Ljava/lang/String;"),
    NATIVE_METHOD(ObjectStreamClass, getMethodSignature, "(Ljava/lang/reflect/Method;)Ljava/lang/String;"),
    NATIVE_METHOD(ObjectStreamClass, hasClinit, "(Ljava/lang/Class;)Z"),
    NATIVE_METHOD(ObjectStreamClass, newInstance, "(Ljava/lang/Class;I)Ljava/lang/Object;"),
};
int register_java_io_ObjectStreamClass(JNIEnv* env) {
    return jniRegisterNativeMethods(env, "java/io/ObjectStreamClass", gMethods, NELEM(gMethods));
}