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
This commit is contained in:
Konstantin Pastbin
2025-04-13 16:37:30 +07:00
commit e3e4a1985a
12931 changed files with 13195100 additions and 0 deletions

64
drape/pointers.cpp Normal file
View File

@@ -0,0 +1,64 @@
#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