Add APIs of cloud provisioning for Android and JNI layer
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / jni / JniEasySetup.cpp
1 /******************************************************************
2  *
3  * Copyright 2016 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 #include "JniEasySetup.h"
22
23 using namespace OIC::Service;
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 JNIEXPORT jobject JNICALL
29 Java_org_iotivity_service_easysetup_mediator_EasySetup_nativeCreateRemoteEnrollee
30 (JNIEnv *env, jobject interfaceClass)
31 {
32
33     LOGI("JniEasySetup::nativeCreateRemoteEnrollee enter");
34
35     std::shared_ptr<RemoteEnrollee> nativeRemoteEnrollee;
36     jobject jRemoteEnrollee;
37
38     try
39     {
40         nativeRemoteEnrollee = EasySetup::getInstance()->createRemoteEnrollee();
41         //create the java object
42         jRemoteEnrollee = env->NewObject(g_cls_RemoteEnrollee, g_mid_RemoteEnrollee_ctor);
43         if (!jRemoteEnrollee)
44         {
45             LOGE("JniEasySetup::nativeCreateRemoteEnrollee Unable to create the java object");
46             return NULL;
47         }
48
49         JniRemoteEnrollee *jniRemoteEnrollee = new JniRemoteEnrollee(nativeRemoteEnrollee);
50         ESSetHandle<JniRemoteEnrollee>(env, jRemoteEnrollee, jniRemoteEnrollee);
51     }
52     catch (ESBadRequestException exception)
53     {
54         LOGE("JniEasySetup::nativeCreateRemoteEnrollee Unable to create the Native EnrolleeDevice");
55         //throw the exception to java layer
56         throwESException( env,  exception.what());
57     }
58
59     LOGI("JniEasySetup::nativeCreateRemoteEnrollee exit");
60
61     return jRemoteEnrollee;
62 }
63 #ifdef __cplusplus
64 }
65 #endif
66