blob: e0263bdb8f57eacbeb529494274376987932e670 [file] [log] [blame]
Elliott Hughes418d20f2011-09-22 14:00:39 -07001/*
2 * Copyright (C) 2011 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
17#ifndef ART_SRC_REFLECTION_H_
18#define ART_SRC_REFLECTION_H_
19
20#include "jni.h"
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070021#include "primitive.h"
Elliott Hughes418d20f2011-09-22 14:00:39 -070022
23namespace art {
24
25class Class;
26union JValue;
27class Object;
28
29void InitBoxingMethods(JNIEnv* env);
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070030void BoxPrimitive(JNIEnv* env, Primitive::Type src_class, JValue& value);
Elliott Hughes418d20f2011-09-22 14:00:39 -070031bool UnboxPrimitive(JNIEnv* env, Object* o, Class* dst_class, JValue& unboxed_value);
32
Brian Carlstrom6b4ef022011-10-23 14:59:04 -070033bool ConvertPrimitiveValue(Primitive::Type src_class, Primitive::Type dst_class, const JValue& src, JValue& dst);
Elliott Hughes418d20f2011-09-22 14:00:39 -070034
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070035jobject InvokeMethod(JNIEnv* env, jobject method, jobject receiver, jobject args, jobject params);
36
Elliott Hughes418d20f2011-09-22 14:00:39 -070037bool VerifyObjectInClass(JNIEnv* env, Object* o, Class* c);
38
39} // namespace art
40
41#endif // ART_SRC_REFLECTION_H_