• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef SCOPED_LOCAL_REF_H_included
18 #define SCOPED_LOCAL_REF_H_included
19 
20 #include <macros.h>
21 #include "jni.h"
22 
23 #include <stddef.h>
24 
25 // A smart pointer that deletes a JNI local reference when it goes out of scope.
26 template<typename T>
27 class ScopedLocalRef {
28 public:
ScopedLocalRef(JNIEnv * env,T localRef)29     ScopedLocalRef(JNIEnv* env, T localRef) : mEnv(env), mLocalRef(localRef) {
30     }
31 
~ScopedLocalRef()32     ~ScopedLocalRef() {
33         reset();
34     }
35 
36     void reset(T ptr = nullptr) {
37         if (ptr != mLocalRef) {
38             if (mLocalRef != nullptr) {
39                 mEnv->DeleteLocalRef(mLocalRef);
40             }
41             mLocalRef = ptr;
42         }
43     }
44 
45     CONSCRYPT_WARN_UNUSED
release()46     T release() {
47         T localRef = mLocalRef;
48         mLocalRef = nullptr;
49         return localRef;
50     }
51 
get()52     T get() const {
53         return mLocalRef;
54     }
55 
56 private:
57     JNIEnv* mEnv;
58     T mLocalRef;
59 
60     // Disallow copy and assignment.
61     ScopedLocalRef(const ScopedLocalRef&);
62     void operator=(const ScopedLocalRef&);
63 };
64 
65 #endif  // SCOPED_LOCAL_REF_H_included
66