blob: b829934dd79626cd279e3c24c10178ce9e1bc88e [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
Elliott Hugheseac76672012-05-24 21:56:51 -070023#ifndef NATIVE_METHOD
24#define NATIVE_METHOD(className, functionName, signature) \
25 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
26#endif
Narayan Kamath0dd8c392016-02-01 13:22:18 +000027
28// TODO: Can we do a better job of supporting overloading ?
29#ifndef OVERLOADED_NATIVE_METHOD
30#define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \
31 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
32#endif
33
Elliott Hugheseac76672012-05-24 21:56:51 -070034#define REGISTER_NATIVE_METHODS(jni_class_name) \
35 RegisterNativeMethods(env, jni_class_name, gMethods, arraysize(gMethods))
36
Ian Rogersdf20fe02011-07-20 20:34:16 -070037namespace art {
Ian Rogersdf20fe02011-07-20 20:34:16 -070038
Ian Rogers68d8b422014-07-17 11:09:10 -070039const JNINativeInterface* GetJniNativeInterface();
Mathieu Chartier4d87df62016-01-07 15:14:19 -080040const JNINativeInterface* GetRuntimeShutdownNativeInterface();
Ian Rogers68d8b422014-07-17 11:09:10 -070041
42// Similar to RegisterNatives except its passed a descriptor for a class name and failures are
43// fatal.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
Ian Rogersabd7be92013-08-15 10:26:54 -070045 jint method_count);
Elliott Hughesa2501992011-08-26 19:39:54 -070046
Elliott Hughesa4f94742012-05-29 16:28:38 -070047int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
48
Ian Rogersdf20fe02011-07-20 20:34:16 -070049} // namespace art
Carl Shapiroea4dca82011-08-01 13:45:38 -070050
Elliott Hughesb465ab02011-08-24 11:21:21 -070051std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs);
Ian Rogers68d8b422014-07-17 11:09:10 -070052
Brian Carlstromfc0e3212013-07-17 14:40:12 -070053#endif // ART_RUNTIME_JNI_INTERNAL_H_