blob: cfab8f7fe451741783a796864d315308edaee9f1 [file] [log] [blame]
The Android Open Source Project7f844dd2009-03-03 19:28:47 -08001/*
2 * Copyright (C) 2007 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/*
18 * JNI helper functions.
19 *
20 * This file may be included by C or C++ code, which is trouble because jni.h
21 * uses different typedefs for JNIEnv in each language.
Brian Carlstromdd8af232012-05-13 23:56:07 -070022 *
23 * TODO: remove C support.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080024 */
Carl Shapiro1ff7a0d2011-06-14 20:31:24 -070025#ifndef NATIVEHELPER_JNIHELP_H_
26#define NATIVEHELPER_JNIHELP_H_
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080027
28#include "jni.h"
Dan Albert099d5212014-05-21 13:25:01 -070029#include <errno.h>
Dan Bornstein6edaa472009-10-26 13:33:22 -070030#include <unistd.h>
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080031
32#ifndef NELEM
33# define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
34#endif
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40/*
41 * Register one or more native methods with a particular class.
Elliott Hughes73d3c2e2012-05-03 17:06:04 -070042 * "className" looks like "java/lang/String". Aborts on failure.
43 * TODO: fix all callers and change the return type to void.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080044 */
Elliott Hughes87f62a82011-04-22 19:22:54 -070045int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080046
47/*
48 * Throw an exception with the specified class and an optional message.
Elliott Hughes87f62a82011-04-22 19:22:54 -070049 *
Andy McFadden0b9d26c2009-06-04 14:34:14 -070050 * The "className" argument will be passed directly to FindClass, which
51 * takes strings with slashes (e.g. "java/lang/Object").
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080052 *
Elliott Hughes87f62a82011-04-22 19:22:54 -070053 * If an exception is currently pending, we log a warning message and
54 * clear it.
55 *
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080056 * Returns 0 on success, nonzero if something failed (e.g. the exception
Elliott Hughes87f62a82011-04-22 19:22:54 -070057 * class couldn't be found, so *an* exception will still be pending).
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080058 *
59 * Currently aborts the VM if it can't throw the exception.
60 */
61int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
62
63/*
Elliott Hughes9f6e1d32010-01-28 13:43:39 -080064 * Throw a java.lang.NullPointerException, with an optional message.
65 */
66int jniThrowNullPointerException(C_JNIEnv* env, const char* msg);
67
68/*
Dan Bornsteinf84f4c62009-12-07 15:46:23 -080069 * Throw a java.lang.RuntimeException, with an optional message.
70 */
Elliott Hughes9f6e1d32010-01-28 13:43:39 -080071int jniThrowRuntimeException(C_JNIEnv* env, const char* msg);
Dan Bornsteinf84f4c62009-12-07 15:46:23 -080072
73/*
74 * Throw a java.io.IOException, generating the message from errno.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080075 */
76int jniThrowIOException(C_JNIEnv* env, int errnum);
77
78/*
Elliott Hughese4239ae2009-10-20 16:59:01 -070079 * Return a pointer to a locale-dependent error string explaining errno
80 * value 'errnum'. The returned pointer may or may not be equal to 'buf'.
81 * This function is thread-safe (unlike strerror) and portable (unlike
82 * strerror_r).
83 */
84const char* jniStrError(int errnum, char* buf, size_t buflen);
85
86/*
Elliott Hughes87f62a82011-04-22 19:22:54 -070087 * Returns a new java.io.FileDescriptor for the given int fd.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080088 */
89jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd);
90
Carl Shapiroabb4eff2010-06-08 16:37:12 -070091/*
Elliott Hughes87f62a82011-04-22 19:22:54 -070092 * Returns the int fd from a java.io.FileDescriptor.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080093 */
94int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor);
95
96/*
Elliott Hughes87f62a82011-04-22 19:22:54 -070097 * Sets the int fd in a java.io.FileDescriptor.
The Android Open Source Project7f844dd2009-03-03 19:28:47 -080098 */
99void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value);
100
Jeff Brown2c3fc7a2010-06-01 21:07:08 -0700101/*
Jeff Browna7de6782013-04-02 18:09:29 -0700102 * Returns the reference from a java.lang.ref.Reference.
103 */
104jobject jniGetReferent(C_JNIEnv* env, jobject ref);
105
106/*
Jeff Brown2c3fc7a2010-06-01 21:07:08 -0700107 * Log a message and an exception.
108 * If exception is NULL, logs the current exception in the JNI environment.
109 */
110void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception);
111
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800112#ifdef __cplusplus
113}
114#endif
115
116
117/*
118 * For C++ code, we provide inlines that map to the C functions. g++ always
119 * inlines these, even on non-optimized builds.
120 */
Andy McFaddenb53ec152011-02-08 16:12:33 -0800121#if defined(__cplusplus)
Elliott Hughes87f62a82011-04-22 19:22:54 -0700122inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
123 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800124}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700125
126inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) {
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800127 return jniThrowException(&env->functions, className, msg);
128}
Elliott Hughes2f82af12011-04-08 17:15:16 -0700129
Elliott Hughes87f62a82011-04-22 19:22:54 -0700130extern "C" int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args);
Elliott Hughes2f82af12011-04-08 17:15:16 -0700131
132/*
133 * Equivalent to jniThrowException but with a printf-like format string and
134 * variable-length argument list. This is only available in C++.
135 */
Elliott Hughes87f62a82011-04-22 19:22:54 -0700136inline int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, ...) {
Elliott Hughes2f82af12011-04-08 17:15:16 -0700137 va_list args;
138 va_start(args, fmt);
139 return jniThrowExceptionFmt(&env->functions, className, fmt, args);
140 va_end(args);
141}
142
Elliott Hughes87f62a82011-04-22 19:22:54 -0700143inline int jniThrowNullPointerException(JNIEnv* env, const char* msg) {
Elliott Hughes9f6e1d32010-01-28 13:43:39 -0800144 return jniThrowNullPointerException(&env->functions, msg);
145}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700146
147inline int jniThrowRuntimeException(JNIEnv* env, const char* msg) {
Elliott Hughes9f6e1d32010-01-28 13:43:39 -0800148 return jniThrowRuntimeException(&env->functions, msg);
149}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700150
151inline int jniThrowIOException(JNIEnv* env, int errnum) {
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800152 return jniThrowIOException(&env->functions, errnum);
153}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700154
155inline jobject jniCreateFileDescriptor(JNIEnv* env, int fd) {
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800156 return jniCreateFileDescriptor(&env->functions, fd);
157}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700158
159inline int jniGetFDFromFileDescriptor(JNIEnv* env, jobject fileDescriptor) {
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800160 return jniGetFDFromFileDescriptor(&env->functions, fileDescriptor);
161}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700162
163inline void jniSetFileDescriptorOfFD(JNIEnv* env, jobject fileDescriptor, int value) {
Jeff Brown2c3fc7a2010-06-01 21:07:08 -0700164 jniSetFileDescriptorOfFD(&env->functions, fileDescriptor, value);
165}
Elliott Hughes87f62a82011-04-22 19:22:54 -0700166
Jeff Browna7de6782013-04-02 18:09:29 -0700167inline jobject jniGetReferent(JNIEnv* env, jobject ref) {
168 return jniGetReferent(&env->functions, ref);
169}
170
Elliott Hughes87f62a82011-04-22 19:22:54 -0700171inline void jniLogException(JNIEnv* env, int priority, const char* tag, jthrowable exception = NULL) {
Jeff Brown2c3fc7a2010-06-01 21:07:08 -0700172 jniLogException(&env->functions, priority, tag, exception);
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800173}
Brian Carlstromdd8af232012-05-13 23:56:07 -0700174
The Android Open Source Project7f844dd2009-03-03 19:28:47 -0800175#endif
176
Dan Bornstein6edaa472009-10-26 13:33:22 -0700177/*
178 * TEMP_FAILURE_RETRY is defined by some, but not all, versions of
179 * <unistd.h>. (Alas, it is not as standard as we'd hoped!) So, if it's
180 * not already defined, then define it here.
181 */
182#ifndef TEMP_FAILURE_RETRY
183/* Used to retry syscalls that can return EINTR. */
184#define TEMP_FAILURE_RETRY(exp) ({ \
185 typeof (exp) _rc; \
186 do { \
187 _rc = (exp); \
188 } while (_rc == -1 && errno == EINTR); \
189 _rc; })
190#endif
191
Carl Shapiro1ff7a0d2011-06-14 20:31:24 -0700192#endif /* NATIVEHELPER_JNIHELP_H_ */