2017-03-28 00:59:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See documentation in RefBase.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
|
|
|
|
class ReferenceRenamer;
|
|
|
|
|
2021-05-04 21:27:56 +00:00
|
|
|
void LightRefBase_reportIncStrongRequireStrongFailed(const void* thiz);
|
|
|
|
|
2017-03-28 00:59:01 +00:00
|
|
|
template <class T>
|
|
|
|
class LightRefBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
inline LightRefBase() : mCount(0) { }
|
|
|
|
inline void incStrong(__attribute__((unused)) const void* id) const {
|
|
|
|
mCount.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
}
|
2021-05-04 21:27:56 +00:00
|
|
|
inline void incStrongRequireStrong(__attribute__((unused)) const void* id) const {
|
|
|
|
if (0 == mCount.fetch_add(1, std::memory_order_relaxed)) {
|
|
|
|
LightRefBase_reportIncStrongRequireStrongFailed(this);
|
|
|
|
}
|
|
|
|
}
|
2017-03-28 00:59:01 +00:00
|
|
|
inline void decStrong(__attribute__((unused)) const void* id) const {
|
|
|
|
if (mCount.fetch_sub(1, std::memory_order_release) == 1) {
|
|
|
|
std::atomic_thread_fence(std::memory_order_acquire);
|
|
|
|
delete static_cast<const T*>(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! DEBUGGING ONLY: Get current strong ref count.
|
|
|
|
inline int32_t getStrongCount() const {
|
|
|
|
return mCount.load(std::memory_order_relaxed);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
inline ~LightRefBase() { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class ReferenceMover;
|
|
|
|
inline static void renameRefs(size_t /*n*/, const ReferenceRenamer& /*renamer*/) { }
|
|
|
|
inline static void renameRefId(T* /*ref*/, const void* /*old_id*/ , const void* /*new_id*/) { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
mutable std::atomic<int32_t> mCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This is a wrapper around LightRefBase that simply enforces a virtual
|
|
|
|
// destructor to eliminate the template requirement of LightRefBase
|
|
|
|
class VirtualLightRefBase : public LightRefBase<VirtualLightRefBase> {
|
|
|
|
public:
|
|
|
|
virtual ~VirtualLightRefBase() = default;
|
|
|
|
};
|
|
|
|
|
2018-04-10 21:31:29 +00:00
|
|
|
} // namespace android
|