Java and JNI support for collection resource.
[platform/upstream/iotivity.git] / service / simulator / java / jni / 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
21 #include "jni_string.h"
22
23 JniString::JniString(JNIEnv *env, jstring &string)
24     :   m_env(nullptr), m_string(nullptr), m_cStr("")
25 {
26     m_env = env;
27     m_string = string;
28     if (m_string)
29     {
30         m_cStr = env->GetStringUTFChars(m_string, nullptr);
31     }
32 }
33
34 JniString::~JniString()
35 {
36     if (m_string && m_cStr)
37     {
38         m_env->ReleaseStringUTFChars(m_string, m_cStr);
39     }
40 }
41
42 std::string JniString::get()
43 {
44     return std::string(m_cStr);
45 }
46