blob: 8f3224380c142906b8414079ec7c26fc34fb4bc9 [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 {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024namespace mirror {
25class AbstractMethod;
Elliott Hughes418d20f2011-09-22 14:00:39 -070026class Class;
Elliott Hughesaaa5edc2012-05-16 15:54:30 -070027class Field;
Elliott Hughes418d20f2011-09-22 14:00:39 -070028class Object;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029} // namespace mirror
30union JValue;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070031class ScopedObjectAccess;
Elliott Hughes418d20f2011-09-22 14:00:39 -070032
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080033mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070034 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035bool UnboxPrimitiveForArgument(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
36 mirror::AbstractMethod* m, size_t index)
Ian Rogersb726dcb2012-09-05 08:57:23 -070037 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080038bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value,
39 mirror::Field* f)
Ian Rogersb726dcb2012-09-05 08:57:23 -070040 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080041bool UnboxPrimitiveForResult(mirror::Object* o, mirror::Class* dst_class, JValue& unboxed_value)
Ian Rogersb726dcb2012-09-05 08:57:23 -070042 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070043
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044bool ConvertPrimitiveValue(Primitive::Type src_class, Primitive::Type dst_class, const JValue& src,
45 JValue& dst)
Ian Rogersb726dcb2012-09-05 08:57:23 -070046 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070047
Ian Rogers00f7d0e2012-07-19 15:28:27 -070048jobject InvokeMethod(const ScopedObjectAccess& soa, jobject method, jobject receiver, jobject args)
Ian Rogersb726dcb2012-09-05 08:57:23 -070049 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes2a20cfd2011-09-23 19:30:41 -070050
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051bool VerifyObjectInClass(mirror::Object* o, mirror::Class* c)
Ian Rogersb726dcb2012-09-05 08:57:23 -070052 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Elliott Hughes418d20f2011-09-22 14:00:39 -070053
54} // namespace art
55
56#endif // ART_SRC_REFLECTION_H_