Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / android / android_api / base / jni / JniPinCheckListener.cpp
1 /*
2 * //******************************************************************
3 * //
4 * // Copyright 2015 Samsung Electronics All Rights Reserved.
5 * //
6 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 * //
8 * // Licensed under the Apache License, Version 2.0 (the "License");
9 * // you may not use this file except in compliance with the License.
10 * // You may obtain a copy of the License at
11 * //
12 * //      http://www.apache.org/licenses/LICENSE-2.0
13 * //
14 * // Unless required by applicable law or agreed to in writing, software
15 * // distributed under the License is distributed on an "AS IS" BASIS,
16 * // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * // See the License for the specific language governing permissions and
18 * // limitations under the License.
19 * //
20 * //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 */
22 #include "JniPinCheckListener.h"
23 #include "oic_string.h"
24
25 JniPinCheckListener::JniPinCheckListener(JNIEnv *env, jobject jListener)
26 {
27     m_jListener = env->NewGlobalRef(jListener);
28 }
29
30 JniPinCheckListener::~JniPinCheckListener()
31 {
32     LOGI("~JniPinCheckListener()");
33     if (m_jListener)
34     {
35         jint ret;
36         JNIEnv *env = GetJNIEnv(ret);
37         if (NULL == env) return;
38         env->DeleteGlobalRef(m_jListener);
39         if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
40     }
41 }
42
43 void JniPinCheckListener::PinCallback(char *pinBuf, size_t bufSize)
44 {
45     jint ret;
46
47     JNIEnv *env = GetJNIEnv(ret);
48     if (NULL == env) return;
49
50     jclass clsL = env->GetObjectClass(m_jListener);
51
52     if (!clsL)
53     {
54         if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
55         return;
56     }
57
58     jmethodID midL = env->GetMethodID(clsL, "pinCallbackListener", "()Ljava/lang/String;");
59     if (!midL)
60     {
61         if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
62         return;
63     }
64     jstring jpin = (jstring)env->CallObjectMethod(m_jListener, midL);
65     if (env->ExceptionCheck())
66     {
67         LOGE("Java exception is thrown");
68         if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
69         return;
70     }
71
72     char *str = (char*)env->GetStringUTFChars(jpin, NULL);
73     OICStrcpy(pinBuf, bufSize, str);
74     env->ReleaseStringUTFChars(jpin, str);
75
76     if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
77 }