Clean up some SonarQube warnings (trailing whitespace, etc).
[platform/upstream/iotivity.git] / android / android_api / base / jni / JniEntityHandler.cpp
index 860d52b..1ca1421 100644 (file)
-/*\r
-* //******************************************************************\r
-* //\r
-* // Copyright 2015 Intel Corporation.\r
-* //\r
-* //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
-* //\r
-* // Licensed under the Apache License, Version 2.0 (the "License");\r
-* // you may not use this file except in compliance with the License.\r
-* // You may obtain a copy of the License at\r
-* //\r
-* //      http://www.apache.org/licenses/LICENSE-2.0\r
-* //\r
-* // Unless required by applicable law or agreed to in writing, software\r
-* // distributed under the License is distributed on an "AS IS" BASIS,\r
-* // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-* // See the License for the specific language governing permissions and\r
-* // limitations under the License.\r
-* //\r
-* //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\r
-*/\r
-#include "JniEntityHandler.h"\r
-#include "JniOcResourceRequest.h"\r
-#include "JniOcResourceResponse.h"\r
-#include "JniUtils.h"\r
-\r
-JniEntityHandler::JniEntityHandler(JNIEnv *env, jobject entityHandler)\r
-{\r
-    m_jListener = env->NewGlobalRef(entityHandler);\r
-}\r
-\r
-JniEntityHandler::~JniEntityHandler()\r
-{\r
-    LOGD("~JniEntityHandler");\r
-    if (m_jListener)\r
-    {\r
-        jint ret;\r
-        JNIEnv *env = GetJNIEnv(ret);\r
-        if (NULL == env) return;\r
-        env->DeleteGlobalRef(m_jListener);\r
-        if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();\r
-    }\r
-}\r
-\r
-OCEntityHandlerResult JniEntityHandler::handleEntity(const std::shared_ptr<OCResourceRequest> request)\r
-{\r
-    LOGD("JniEntityHandler_handleEntity");\r
-    jint envRet;\r
-    JNIEnv *env = GetJNIEnv(envRet);\r
-    if (NULL == env) return OC_EH_ERROR;\r
-\r
-    JniOcResourceRequest* jniResReq = new JniOcResourceRequest(request);\r
-    jlong reqHandle = reinterpret_cast<jlong>(jniResReq);\r
-    jobject jResourceRequest = env->NewObject(g_cls_OcResourceRequest, g_mid_OcResourceRequest_N_ctor,\r
-        reqHandle);\r
-    if (!jResourceRequest)\r
-    {\r
-        LOGE("Failed to create OcResourceRequest");\r
-        delete jniResReq;\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-\r
-    jclass clsL = env->GetObjectClass(m_jListener);\r
-    if (!clsL)\r
-    {\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    jmethodID midL = env->GetMethodID(clsL, "handleEntity",\r
-        "(Lorg/iotivity/base/OcResourceRequest;)Lorg/iotivity/base/EntityHandlerResult;");\r
-    if (!midL)\r
-    {\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    jobject entityHandlerResult = env->CallObjectMethod(m_jListener, midL, jResourceRequest);\r
-    if (env->ExceptionCheck())\r
-    {\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    if (!entityHandlerResult)\r
-    {\r
-        ThrowOcException(JNI_INVALID_VALUE, "EntityHandlerResult cannot be null");\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    jclass clsResult = env->GetObjectClass(entityHandlerResult);\r
-    if (!clsResult)\r
-    {\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    jmethodID getValue_ID = env->GetMethodID(clsResult, "getValue", "()I");\r
-    if (!getValue_ID)\r
-    {\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-    jint jResult = env->CallIntMethod(entityHandlerResult, getValue_ID);\r
-    if (env->ExceptionCheck())\r
-    {\r
-        LOGE("Java exception is thrown");\r
-        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-        return OC_EH_ERROR;\r
-    }\r
-\r
-    if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();\r
-    return JniUtils::getOCEntityHandlerResult(env, static_cast<int>(jResult));\r
+/*
+* //******************************************************************
+* //
+* // Copyright 2015 Intel Corporation.
+* //
+* //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+* //
+* // Licensed under the Apache License, Version 2.0 (the "License");
+* // you may not use this file except in compliance with the License.
+* // You may obtain a copy of the License at
+* //
+* //      http://www.apache.org/licenses/LICENSE-2.0
+* //
+* // Unless required by applicable law or agreed to in writing, software
+* // distributed under the License is distributed on an "AS IS" BASIS,
+* // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* // See the License for the specific language governing permissions and
+* // limitations under the License.
+* //
+* //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+*/
+#include "JniEntityHandler.h"
+#include "JniOcResourceRequest.h"
+#include "JniOcResourceResponse.h"
+#include "JniUtils.h"
+
+JniEntityHandler::JniEntityHandler(JNIEnv *env, jobject entityHandler)
+{
+    m_jListener = env->NewGlobalRef(entityHandler);
+}
+
+JniEntityHandler::~JniEntityHandler()
+{
+    LOGD("~JniEntityHandler");
+    if (m_jListener)
+    {
+        jint ret;
+        JNIEnv *env = GetJNIEnv(ret);
+        if (NULL == env) return;
+        env->DeleteGlobalRef(m_jListener);
+        if (JNI_EDETACHED == ret) g_jvm->DetachCurrentThread();
+    }
+}
+
+OCEntityHandlerResult JniEntityHandler::handleEntity(const std::shared_ptr<OCResourceRequest> request)
+{
+    LOGD("JniEntityHandler_handleEntity");
+    jint envRet;
+    JNIEnv *env = GetJNIEnv(envRet);
+    if (NULL == env) return OC_EH_ERROR;
+
+    JniOcResourceRequest* jniResReq = new JniOcResourceRequest(request);
+    jlong reqHandle = reinterpret_cast<jlong>(jniResReq);
+    jobject jResourceRequest = env->NewObject(g_cls_OcResourceRequest, g_mid_OcResourceRequest_N_ctor,
+        reqHandle);
+    if (!jResourceRequest)
+    {
+        LOGE("Failed to create OcResourceRequest");
+        delete jniResReq;
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+
+    jclass clsL = env->GetObjectClass(m_jListener);
+    if (!clsL)
+    {
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    jmethodID midL = env->GetMethodID(clsL, "handleEntity",
+        "(Lorg/iotivity/base/OcResourceRequest;)Lorg/iotivity/base/EntityHandlerResult;");
+    if (!midL)
+    {
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    jobject entityHandlerResult = env->CallObjectMethod(m_jListener, midL, jResourceRequest);
+    if (env->ExceptionCheck())
+    {
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    if (!entityHandlerResult)
+    {
+        ThrowOcException(JNI_INVALID_VALUE, "EntityHandlerResult cannot be null");
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    jclass clsResult = env->GetObjectClass(entityHandlerResult);
+    if (!clsResult)
+    {
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    jmethodID getValue_ID = env->GetMethodID(clsResult, "getValue", "()I");
+    if (!getValue_ID)
+    {
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+    jint jResult = env->CallIntMethod(entityHandlerResult, getValue_ID);
+    if (env->ExceptionCheck())
+    {
+        LOGE("Java exception is thrown");
+        if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+        return OC_EH_ERROR;
+    }
+
+    if (JNI_EDETACHED == envRet) g_jvm->DetachCurrentThread();
+    return JniUtils::getOCEntityHandlerResult(env, static_cast<int>(jResult));
 }
\ No newline at end of file