blob: 580a42bcefc7d55acbb189aba0acc1ee4650a62b [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 */
Ian Rogersdf20fe02011-07-20 20:34:16 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_JNI_INTERNAL_H_
18#define ART_RUNTIME_JNI_INTERNAL_H_
Ian Rogersdf20fe02011-07-20 20:34:16 -070019
Ian Rogers68d8b422014-07-17 11:09:10 -070020#include <jni.h>
Elliott Hughesae80b492012-04-24 10:43:17 -070021#include <iosfwd>
Igor Murashkin3b6f4402017-02-16 16:13:17 -080022#include "nativehelper/jni_macros.h"
Elliott Hughes0af55432011-08-17 18:37:28 -070023
Andreas Gampe13b27842016-11-07 16:48:23 -080024#include "base/macros.h"
25
Elliott Hugheseac76672012-05-24 21:56:51 -070026#define REGISTER_NATIVE_METHODS(jni_class_name) \
27 RegisterNativeMethods(env, jni_class_name, gMethods, arraysize(gMethods))
28
Ian Rogersdf20fe02011-07-20 20:34:16 -070029namespace art {
Ian Rogersdf20fe02011-07-20 20:34:16 -070030
Andreas Gampe08883de2016-11-08 13:20:52 -080031class ArtField;
Andreas Gampe13b27842016-11-07 16:48:23 -080032class ArtMethod;
33
Ian Rogers68d8b422014-07-17 11:09:10 -070034const JNINativeInterface* GetJniNativeInterface();
Mathieu Chartier4d87df62016-01-07 15:14:19 -080035const JNINativeInterface* GetRuntimeShutdownNativeInterface();
Ian Rogers68d8b422014-07-17 11:09:10 -070036
37// Similar to RegisterNatives except its passed a descriptor for a class name and failures are
38// fatal.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
Ian Rogersabd7be92013-08-15 10:26:54 -070040 jint method_count);
Elliott Hughesa2501992011-08-26 19:39:54 -070041
Elliott Hughesa4f94742012-05-29 16:28:38 -070042int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
43
Andreas Gampe13b27842016-11-07 16:48:23 -080044namespace jni {
45
46ALWAYS_INLINE
Andreas Gampe08883de2016-11-08 13:20:52 -080047static inline ArtField* DecodeArtField(jfieldID fid) {
48 return reinterpret_cast<ArtField*>(fid);
49}
50
51ALWAYS_INLINE
52static inline jfieldID EncodeArtField(ArtField* field) {
53 return reinterpret_cast<jfieldID>(field);
54}
55
56ALWAYS_INLINE
Andreas Gampe13b27842016-11-07 16:48:23 -080057static inline jmethodID EncodeArtMethod(ArtMethod* art_method) {
58 return reinterpret_cast<jmethodID>(art_method);
59}
60
61ALWAYS_INLINE
62static inline ArtMethod* DecodeArtMethod(jmethodID method_id) {
63 return reinterpret_cast<ArtMethod*>(method_id);
64}
65
66} // namespace jni
Ian Rogersdf20fe02011-07-20 20:34:16 -070067} // namespace art
Carl Shapiroea4dca82011-08-01 13:45:38 -070068
Elliott Hughesb465ab02011-08-24 11:21:21 -070069std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs);
Ian Rogers68d8b422014-07-17 11:09:10 -070070
Brian Carlstromfc0e3212013-07-17 14:40:12 -070071#endif // ART_RUNTIME_JNI_INTERNAL_H_