Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / jni / jniutil / src / jni_string.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 #include "jni_string.h"
21
22 #define LOG_TAG "TM_JString"
23
24 JString::JString(JNIEnv *env, jstring value) :
25                 JObject(env, value) {
26         const char *buff = env->GetStringUTFChars(value, 0);
27
28         m_cstr = buff;
29
30         env->ReleaseStringUTFChars(value, buff);
31 }
32
33 JString::JString(JNIEnv *env, const char *value) :
34                 JObject(env) {
35         m_cstr = value;
36
37         if (env) {
38                 m_pObject = env->NewStringUTF(value);
39         }
40 }
41
42 JString::JString(JNIEnv *env, const std::string &value) :
43                 JObject(env) {
44         m_cstr = value;
45
46         if (env) {
47                 m_pObject = env->NewStringUTF(value.c_str());
48         }
49 }
50
51 JString::~JString() {
52 }
53
54 bool JString::getValue(std::string &value) {
55         value = m_cstr;
56         return true;
57 }
58
59 const char *JString::c_str() {
60         return m_cstr.c_str();
61 }
62