Imported Upstream version 1.1.0
[platform/upstream/iotivity.git] / service / simulator / java / jni / simulator_device_info_jni.cpp
1 /******************************************************************
2  *
3  * Copyright 2015 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 "simulator_device_info_jni.h"
22 #include "simulator_utils_jni.h"
23
24 extern SimulatorClassRefs gSimulatorClassRefs;
25
26 jobject JniDeviceInfo::toJava(DeviceInfo &deviceInfo)
27 {
28     if (!m_env)
29         return nullptr;
30
31     static jmethodID deviceInfoCtor = m_env->GetMethodID(gSimulatorClassRefs.deviceInfoCls, "<init>",
32                                       "()V");
33     jobject jDeviceInfo = m_env->NewObject(gSimulatorClassRefs.deviceInfoCls, deviceInfoCtor);
34     setFieldValue(jDeviceInfo, "mName", deviceInfo.getName());
35     setFieldValue(jDeviceInfo, "mID", deviceInfo.getID());
36     setFieldValue(jDeviceInfo, "mSpecVersion", deviceInfo.getSpecVersion());
37     setFieldValue(jDeviceInfo, "mDMVVersion", deviceInfo.getDataModelVersion());
38
39     return jDeviceInfo;
40 }
41
42 void JniDeviceInfo::setFieldValue(jobject jDeviceInfo, const std::string &fieldName,
43                                   const std::string &value)
44 {
45     jfieldID fieldID = m_env->GetFieldID(m_env->GetObjectClass(jDeviceInfo), fieldName.c_str(),
46                                          "Ljava/lang/String;");
47     jstring valueStr = m_env->NewStringUTF(value.c_str());
48     m_env->SetObjectField(jDeviceInfo, fieldID, valueStr);
49 }