Merge branch 'upstream' into tizen
[platform/upstream/iotivity.git] / service / simulator / java / jni / simulator_platform_info_jni.h
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 #ifndef SIMULATOR_PLATFORM_INFO_JNI_H_
22 #define SIMULATOR_PLATFORM_INFO_JNI_H_
23
24 #include "simulator_platform_info.h"
25 #include <jni.h>
26
27 class JniPlatformInfo
28 {
29     public:
30         JniPlatformInfo(JNIEnv *env) : m_env(env) {}
31         JniPlatformInfo(const JniPlatformInfo &) = delete;
32         JniPlatformInfo &operator=(const JniPlatformInfo &) = delete;
33         JniPlatformInfo(const JniPlatformInfo &&) = delete;
34         JniPlatformInfo &operator=(const JniPlatformInfo && ) = delete;
35         jobject toJava(PlatformInfo &platformInfo);
36         PlatformInfo toCpp(jobject jPlatformInfo);
37
38     private:
39         void setFieldValue(jobject jPlatformInfo, const std::string &fieldName,
40                            const std::string &value);
41         std::string getFieldValue(jobject jPlatformInfo, const std::string &fieldName);
42
43         JNIEnv *m_env;
44 };
45
46 #endif