blob: 0e462d56b3c403d81d90916f0f6aa8f61c8286bd [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>
Elliott Hughes0af55432011-08-17 18:37:28 -070022
Andreas Gampe13b27842016-11-07 16:48:23 -080023#include "base/macros.h"
24
Elliott Hugheseac76672012-05-24 21:56:51 -070025#ifndef NATIVE_METHOD
26#define NATIVE_METHOD(className, functionName, signature) \
27 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
28#endif
Narayan Kamath0dd8c392016-02-01 13:22:18 +000029
30// TODO: Can we do a better job of supporting overloading ?
31#ifndef OVERLOADED_NATIVE_METHOD
32#define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \
33 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
34#endif
35
Elliott Hugheseac76672012-05-24 21:56:51 -070036#define REGISTER_NATIVE_METHODS(jni_class_name) \
37 RegisterNativeMethods(env, jni_class_name, gMethods, arraysize(gMethods))
38
Ian Rogersdf20fe02011-07-20 20:34:16 -070039namespace art {
Ian Rogersdf20fe02011-07-20 20:34:16 -070040
Andreas Gampe13b27842016-11-07 16:48:23 -080041class ArtMethod;
42
Ian Rogers68d8b422014-07-17 11:09:10 -070043const JNINativeInterface* GetJniNativeInterface();
Mathieu Chartier4d87df62016-01-07 15:14:19 -080044const JNINativeInterface* GetRuntimeShutdownNativeInterface();
Ian Rogers68d8b422014-07-17 11:09:10 -070045
46// Similar to RegisterNatives except its passed a descriptor for a class name and failures are
47// fatal.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070048void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
Ian Rogersabd7be92013-08-15 10:26:54 -070049 jint method_count);
Elliott Hughesa2501992011-08-26 19:39:54 -070050
Elliott Hughesa4f94742012-05-29 16:28:38 -070051int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
52
Andreas Gampe13b27842016-11-07 16:48:23 -080053namespace jni {
54
55ALWAYS_INLINE
56static inline jmethodID EncodeArtMethod(ArtMethod* art_method) {
57 return reinterpret_cast<jmethodID>(art_method);
58}
59
60ALWAYS_INLINE
61static inline ArtMethod* DecodeArtMethod(jmethodID method_id) {
62 return reinterpret_cast<ArtMethod*>(method_id);
63}
64
65} // namespace jni
Ian Rogersdf20fe02011-07-20 20:34:16 -070066} // namespace art
Carl Shapiroea4dca82011-08-01 13:45:38 -070067
Elliott Hughesb465ab02011-08-24 11:21:21 -070068std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs);
Ian Rogers68d8b422014-07-17 11:09:10 -070069
Brian Carlstromfc0e3212013-07-17 14:40:12 -070070#endif // ART_RUNTIME_JNI_INTERNAL_H_