1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
#include "AddrBookContactQuery.h"
static void Exception_throwNew
(JNIEnv *jniEnv, const char *className, const char *message);
jmethodID
AddrBookContactQuery_getPtrCallbackMethodID(JNIEnv *jniEnv, jobject callback)
{
jclass callbackClass;
jmethodID callbackMethodID = 0;
/*
* Make sure that the specified arguments are valid. For example, check
* whether callback exists and has the necessary signature.
*/
if (callback)
{
callbackClass = (*jniEnv)->GetObjectClass(jniEnv, callback);
if (callbackClass)
{
callbackMethodID
= (*jniEnv)->GetMethodID(
jniEnv,
callbackClass, "callback", "(J)Z");
if (!callbackMethodID)
{
Exception_throwNew(
jniEnv, "java/lang/IllegalArgumentException", "callback");
}
}
}
else
{
Exception_throwNew(
jniEnv, "java/lang/NullPointerException", "callback");
}
return callbackMethodID;
}
static void
Exception_throwNew(JNIEnv *jniEnv, const char *className, const char *message)
{
jclass clazz;
clazz = (*jniEnv)->FindClass(jniEnv, className);
if (clazz)
(*jniEnv)->ThrowNew(jniEnv, clazz, message);
}
|