Files
comaps/drape/pointers.cpp
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

65 lines
1.4 KiB
C++

#include "drape/pointers.hpp"
#include "base/logging.hpp"
#if defined(TRACK_POINTERS)
DpPointerTracker & DpPointerTracker::Instance()
{
static DpPointerTracker pointersTracker;
return pointersTracker;
}
DpPointerTracker::~DpPointerTracker()
{
ASSERT(m_alivePointers.empty(), ());
}
void DpPointerTracker::RefPtrNamed(void * refPtr, std::string const & name)
{
std::lock_guard<std::mutex> lock(m_mutex);
if (refPtr != nullptr)
{
auto it = m_alivePointers.find(refPtr);
if (it != m_alivePointers.end())
it->second.first++;
else
m_alivePointers.insert(make_pair(refPtr, make_pair(1, name)));
}
}
void DpPointerTracker::DestroyPtr(void * p)
{
std::lock_guard<std::mutex> lock(m_mutex);
ASSERT(p != nullptr, ());
auto it = m_alivePointers.find(p);
if (it != m_alivePointers.end())
{
if (it->second.first != 0)
{
LOG(LWARNING, ("Drape pointer [", it->second.second, p,
"] was destroyed, but had references, ref count = ",
it->second.first));
}
m_alivePointers.erase(it);
}
}
void DpPointerTracker::DerefPtr(void * p)
{
std::lock_guard<std::mutex> lock(m_mutex);
if (p != nullptr)
{
auto it = m_alivePointers.find(p);
if (it != m_alivePointers.end())
{
ASSERT(it->second.first > 0, ());
it->second.first--;
}
}
}
DpPointerTracker::TAlivePointers const & DpPointerTracker::GetAlivePointers() const
{
return m_alivePointers;
}
#endif