Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-container / android / resource-container / src / main / jni / util / JavaGlobalRef.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 JAVA_GLOBAL_REF_H_
22 #define JAVA_GLOBAL_REF_H_
23
24 #include <memory>
25 #include <cassert>
26
27 #include "ScopedEnv.h"
28
29 class JavaGlobalRef
30 {
31     public:
32     JavaGlobalRef(JNIEnv *env, jobject obj) noexcept :
33         m_obj { }
34         {
35             assert(env  &&"JNIEnv is nullptr");
36
37             static auto deleter = [](jobject * obj)
38             {
39                 if (obj && *obj)
40                 {
41                     ScopedEnv env;
42                     env->DeleteGlobalRef(*obj);
43                 }
44                 delete obj;
45             };
46
47             m_obj.reset(new jobject{ env->NewGlobalRef(obj) }, deleter);
48         }
49
50         operator jobject() const noexcept
51         {
52             return *m_obj;
53         }
54
55     private:
56         std::shared_ptr< jobject > m_obj;
57 };
58
59
60
61 #endif // JAVA_GLOBAL_REF_H_