Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / service / things-manager / sdk / java / 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) : JObject(env, value)
25 {
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) : JObject(env)
34 {
35     m_cstr = value;
36
37     if (env)
38     {
39         m_pObject = env->NewStringUTF( value );
40     }
41 }
42
43 JString::JString(JNIEnv *env, const std::string &value) : JObject(env)
44 {
45     m_cstr = value;
46
47     if (env)
48     {
49         m_pObject = env->NewStringUTF( value.c_str() );
50     }
51 }
52
53 JString::~JString()
54 {
55 }
56
57 bool JString::getValue(std::string &value)
58 {
59     value = m_cstr;
60     return true;
61 }
62
63 const char *JString::c_str()
64 {
65     return m_cstr.c_str();
66 }
67
68