5f8bea98b87daf845c0040c8ad7a52025b391a7a
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / jni / common / JniNotificationCommon.cpp
1 //******************************************************************\r
2 //\r
3 // Copyright 2016 Samsung Electronics All Rights Reserved.\r
4 //\r
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
6 //\r
7 // Licensed under the Apache License, Version 2.0 (the "License");\r
8 // you may not use this file except in compliance with the License.\r
9 // You may obtain a copy of the License at\r
10 //\r
11 //      http://www.apache.org/licenses/LICENSE-2.0\r
12 //\r
13 // Unless required by applicable law or agreed to in writing, software\r
14 // distributed under the License is distributed on an "AS IS" BASIS,\r
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16 // See the License for the specific language governing permissions and\r
17 // limitations under the License.\r
18 //\r
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
20 \r
21 #include "JniNotificationCommon.h"\r
22 #include <cstddef>\r
23 #include "JniUtils.h"\r
24 \r
25 static jclass g_cls_NSException = NULL;\r
26 static jmethodID g_mid_NSException_ctor = NULL;\r
27 static jmethodID g_mid_NSException_setNativeExceptionLocation = NULL;\r
28 \r
29 static const char *NSResultToChar(const int nsresult)\r
30 {\r
31     switch (nsresult)\r
32     {\r
33         case JNI_NS_OK:\r
34             return "OK";\r
35         case JNI_NS_ERROR:\r
36             return "ERROR";\r
37         case JNI_NS_SUCCESS:\r
38             return "SUCCESS";\r
39         case JNI_NS_FAIL:\r
40             return "FAIL";\r
41         case JNI_NS_ALLOW:\r
42             return "ALLOW";\r
43         case JNI_NS_DENY:\r
44             return "DENY";\r
45         case JNI_EXCEPTION:\r
46             return "JNI_EXCEPTION";\r
47         case JNI_NO_NATIVE_POINTER:\r
48             return "JNI_NO_NATIVE_POINTER";\r
49         case JNI_INVALID_VALUE:\r
50             return "JNI_INVALID_VALUE";\r
51         default:\r
52             return "";\r
53     }\r
54 }\r
55 \r
56 \r
57 jobject getNSException(JNIEnv *env, const char *file, const char *functionName,\r
58                        const int line, const int code, const char *message)\r
59 {\r
60     const char *codeChar = NSResultToChar(code);\r
61     if (codeChar[0] == '\0')\r
62     {\r
63         codeChar = NSResultToChar(JNI_INVALID_VALUE);\r
64     }\r
65     jobject exception = env->NewObject(\r
66                             g_cls_NSException,\r
67                             g_mid_NSException_ctor,\r
68                             env->NewStringUTF(codeChar),\r
69                             env->NewStringUTF(message));\r
70     if (!exception)\r
71     {\r
72         return NULL;\r
73     }\r
74     env->CallVoidMethod(\r
75         exception,\r
76         g_mid_NSException_setNativeExceptionLocation,\r
77         env->NewStringUTF(file),\r
78         env->NewStringUTF(functionName),\r
79         line);\r
80     if (env->ExceptionCheck())\r
81     {\r
82         return NULL;\r
83     }\r
84     return exception;\r
85 }\r
86 \r
87 void throwNSException(JNIEnv *env, jobject exception)\r
88 {\r
89     env->Throw((jthrowable)exception);\r
90 }\r
91 \r
92 int NSExceptionInit(JNIEnv *env)\r
93 {\r
94     if (!env)\r
95     {\r
96         LOGE ("JNIEnv is null");\r
97         return JNI_ERR;\r
98     }\r
99 \r
100     //OcException\r
101     jclass localNSException = env->FindClass(\r
102                                   "org/iotivity/service/ns/common/NSException");\r
103     if (!localNSException)\r
104     {\r
105         LOGE ("Failed to get local NSException");\r
106         return JNI_ERR;\r
107     }\r
108     g_cls_NSException = (jclass)env->NewGlobalRef(localNSException);\r
109 \r
110 \r
111     g_mid_NSException_ctor = env->GetMethodID(g_cls_NSException,\r
112                              "<init>", "(Ljava/lang/String;Ljava/lang/String;)V");\r
113     if (!g_mid_NSException_ctor)\r
114     {\r
115         LOGE ("Failed to Get MethodID");\r
116         return JNI_ERR;\r
117     }\r
118 \r
119     g_mid_NSException_setNativeExceptionLocation = env->GetMethodID(g_cls_NSException,\r
120             "setNativeExceptionLocation",\r
121             "(Ljava/lang/String;Ljava/lang/String;I)V");\r
122     if (!g_mid_NSException_setNativeExceptionLocation)\r
123     {\r
124         LOGE ("Failed to Get MethodID");\r
125         return JNI_ERR;\r
126     }\r
127 \r
128     env->DeleteLocalRef(localNSException);\r
129 \r
130     return JNI_CURRENT_VERSION;\r
131 }\r