2016-08-31 16:15:15 +01:00
|
|
|
/*
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-08-31 16:15:15 +01:00
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-08-31 16:15:15 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fb/Environment.h>
|
|
|
|
#include <jni/WeakReference.h>
|
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace jni {
|
|
|
|
|
|
|
|
WeakReference::WeakReference(jobject strongRef) :
|
|
|
|
m_weakReference(Environment::current()->NewWeakGlobalRef(strongRef))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WeakReference::~WeakReference() {
|
|
|
|
auto env = Environment::current();
|
|
|
|
FBASSERTMSGF(env, "Attempt to delete jni::WeakReference from non-JNI thread");
|
|
|
|
env->DeleteWeakGlobalRef(m_weakReference);
|
|
|
|
}
|
|
|
|
|
|
|
|
ResolvedWeakReference::ResolvedWeakReference(jobject weakRef) :
|
|
|
|
m_strongReference(Environment::current()->NewLocalRef(weakRef))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ResolvedWeakReference::ResolvedWeakReference(const RefPtr<WeakReference>& weakRef) :
|
|
|
|
m_strongReference(Environment::current()->NewLocalRef(weakRef->weakRef()))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ResolvedWeakReference::~ResolvedWeakReference() {
|
|
|
|
if (m_strongReference)
|
|
|
|
Environment::current()->DeleteLocalRef(m_strongReference);
|
|
|
|
}
|
|
|
|
|
|
|
|
} }
|
|
|
|
|