blob: 48b10f58251cdad5c245f9b3524884a3b083e83a [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
27#define REGISTER_NATIVE_METHODS(jni_class_name) \
28 RegisterNativeMethods(env, jni_class_name, gMethods, arraysize(gMethods))
29
Ian Rogersdf20fe02011-07-20 20:34:16 -070030namespace art {
Ian Rogersdf20fe02011-07-20 20:34:16 -070031
Ian Rogers68d8b422014-07-17 11:09:10 -070032const JNINativeInterface* GetJniNativeInterface();
33
34// Similar to RegisterNatives except its passed a descriptor for a class name and failures are
35// fatal.
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036void RegisterNativeMethods(JNIEnv* env, const char* jni_class_name, const JNINativeMethod* methods,
Ian Rogersabd7be92013-08-15 10:26:54 -070037 jint method_count);
Elliott Hughesa2501992011-08-26 19:39:54 -070038
Elliott Hughesa4f94742012-05-29 16:28:38 -070039int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
40
Ian Rogersdf20fe02011-07-20 20:34:16 -070041} // namespace art
Carl Shapiroea4dca82011-08-01 13:45:38 -070042
Elliott Hughesb465ab02011-08-24 11:21:21 -070043std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs);
Ian Rogers68d8b422014-07-17 11:09:10 -070044
Brian Carlstromfc0e3212013-07-17 14:40:12 -070045#endif // ART_RUNTIME_JNI_INTERNAL_H_