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,75 @@
#pragma once
#include <condition_variable>
#include <mutex>
#include <queue>
namespace threads
{
template <typename T>
class ThreadSafeQueue
{
public:
ThreadSafeQueue() = default;
ThreadSafeQueue(ThreadSafeQueue const & other)
{
std::lock_guard<std::mutex> lk(other.m_mutex);
m_queue = other.m_queue;
}
void Push(T const & value)
{
{
std::lock_guard lk(m_mutex);
m_queue.push(value);
}
m_cond.notify_one();
}
void Push(T && value)
{
{
std::lock_guard lk(m_mutex);
m_queue.push(std::move(value));
}
m_cond.notify_one();
}
void WaitAndPop(T & value)
{
std::unique_lock lk(m_mutex);
m_cond.wait(lk, [this]{ return !m_queue.empty(); });
value = std::move(m_queue.front());
m_queue.pop();
}
bool TryPop(T & value)
{
std::lock_guard lk(m_mutex);
if (m_queue.empty())
return false;
value = std::move(m_queue.front());
m_queue.pop();
return true;
}
bool Empty() const
{
std::lock_guard lk(m_mutex);
return m_queue.empty();
}
size_t Size() const
{
std::lock_guard lk(m_mutex);
return m_queue.size();
}
private:
mutable std::mutex m_mutex;
std::queue<T> m_queue;
std::condition_variable m_cond;
};
} // namespace threads