[IOT-1089] Change Android build system to accomodate both Android and Generic Java...
[contrib/iotivity.git] / java / jni / JniOcResourceHandle.cpp
1 /*
2 * //******************************************************************
3 * //
4 * // Copyright 2015 Intel Corporation.
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 "JniOcResourceHandle.h"
23
24 using namespace OC;
25
26 JniOcResourceHandle::JniOcResourceHandle(OCResourceHandle resourceHandle)
27     : m_resourceHandle(resourceHandle)
28 {}
29
30 JniOcResourceHandle::~JniOcResourceHandle()
31 {
32     LOGD("~JniOcResourceHandle()");
33 }
34
35 JniOcResourceHandle* JniOcResourceHandle::getJniOcResourceHandlePtr
36 (JNIEnv *env, jobject thiz)
37 {
38     JniOcResourceHandle *handle = GetHandle<JniOcResourceHandle>(env, thiz);
39     if (env->ExceptionCheck())
40     {
41         LOGE("Failed to get native handle from OcResourceHandle");
42     }
43     if (!handle)
44     {
45         ThrowOcException(JNI_NO_NATIVE_POINTER, "");
46     }
47     return handle;
48 }
49
50 OCResourceHandle JniOcResourceHandle::getOCResourceHandle()
51 {
52     return this->m_resourceHandle;
53 }
54
55 /*
56 * Class:     org_iotivity_base_OcResourceHandle
57 * Method:    dispose
58 * Signature: ()V
59 */
60 JNIEXPORT void JNICALL Java_org_iotivity_base_OcResourceHandle_dispose
61 (JNIEnv *env, jobject thiz)
62 {
63     LOGD("OcResourceHandle_dispose");
64     JniOcResourceHandle *resourceHandle = JniOcResourceHandle::getJniOcResourceHandlePtr(env, thiz);
65     delete resourceHandle;
66 }