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

View File

@@ -0,0 +1,69 @@
#include "platform/battery_tracker.hpp"
#include "platform/platform.hpp"
namespace
{
auto const kBatteryTrackingInterval = std::chrono::minutes(10);
bool IsLevelExpired(std::chrono::system_clock::time_point lastRequestTime)
{
return std::chrono::system_clock::now() - lastRequestTime > kBatteryTrackingInterval;
}
} // namespace
namespace platform
{
void BatteryLevelTracker::Subscribe(Subscriber * subscriber)
{
m_subscribers.push_back(subscriber);
if (!IsLevelExpired(m_lastRequestTime))
subscriber->OnBatteryLevelReceived(m_lastReceivedLevel);
if (!m_isTrackingInProgress)
{
m_isTrackingInProgress = true;
RequestBatteryLevel();
}
}
void BatteryLevelTracker::Unsubscribe(Subscriber * subscriber)
{
m_subscribers.erase(std::remove(m_subscribers.begin(), m_subscribers.end(), subscriber),
m_subscribers.end());
}
void BatteryLevelTracker::UnsubscribeAll()
{
m_subscribers.clear();
}
void BatteryLevelTracker::RequestBatteryLevel()
{
if (m_subscribers.empty())
{
m_isTrackingInProgress = false;
return;
}
if (IsLevelExpired(m_lastRequestTime))
{
m_lastReceivedLevel = GetPlatform().GetBatteryLevel();
m_lastRequestTime = std::chrono::system_clock::now();
}
for (auto s : m_subscribers)
{
s->OnBatteryLevelReceived(m_lastReceivedLevel);
}
GetPlatform().RunDelayedTask(Platform::Thread::Background, kBatteryTrackingInterval, [this]
{
GetPlatform().RunTask(Platform::Thread::Gui, [this]
{
RequestBatteryLevel();
});
});
}
} // namespace platform