mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
170 lines
4.5 KiB
170 lines
4.5 KiB
11 years ago
|
#ifndef QUEUE_H__
|
||
|
#define QUEUE_H__
|
||
|
|
||
|
#include <queue>
|
||
10 years ago
|
#include <vector>
|
||
11 years ago
|
#include <mutex>
|
||
|
#include <thread>
|
||
|
#include <condition_variable>
|
||
11 years ago
|
#include <functional>
|
||
11 years ago
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace util
|
||
|
{
|
||
9 years ago
|
template<typename Element>
|
||
|
class Queue
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
void Put (Element e)
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
m_Queue.push (e);
|
||
|
m_NonEmpty.notify_one ();
|
||
|
}
|
||
|
|
||
|
void Put (const std::vector<Element>& vec)
|
||
|
{
|
||
|
if (!vec.empty ())
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
for (auto it: vec)
|
||
|
m_Queue.push (it);
|
||
|
m_NonEmpty.notify_one ();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Element GetNext ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
auto el = GetNonThreadSafe ();
|
||
|
if (!el)
|
||
|
{
|
||
|
m_NonEmpty.wait (l);
|
||
|
el = GetNonThreadSafe ();
|
||
|
}
|
||
|
return el;
|
||
|
}
|
||
|
|
||
|
Element GetNextWithTimeout (int usec)
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
auto el = GetNonThreadSafe ();
|
||
|
if (!el)
|
||
|
{
|
||
|
m_NonEmpty.wait_for (l, std::chrono::milliseconds (usec));
|
||
|
el = GetNonThreadSafe ();
|
||
|
}
|
||
|
return el;
|
||
|
}
|
||
|
|
||
|
void Wait ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
m_NonEmpty.wait (l);
|
||
|
}
|
||
|
|
||
|
bool Wait (int sec, int usec)
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
return m_NonEmpty.wait_for (l, std::chrono::seconds (sec) + std::chrono::milliseconds (usec)) != std::cv_status::timeout;
|
||
|
}
|
||
|
|
||
|
bool IsEmpty ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
return m_Queue.empty ();
|
||
|
}
|
||
|
|
||
|
int GetSize ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
return m_Queue.size ();
|
||
|
}
|
||
|
|
||
|
void WakeUp () { m_NonEmpty.notify_all (); };
|
||
|
|
||
|
Element Get ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
return GetNonThreadSafe ();
|
||
|
}
|
||
|
|
||
|
Element Peek ()
|
||
|
{
|
||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||
|
return GetNonThreadSafe (true);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
|
||
|
Element GetNonThreadSafe (bool peek = false)
|
||
|
{
|
||
|
if (!m_Queue.empty ())
|
||
|
{
|
||
|
auto el = m_Queue.front ();
|
||
|
if (!peek)
|
||
|
m_Queue.pop ();
|
||
|
return el;
|
||
|
}
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
|
||
|
std::queue<Element> m_Queue;
|
||
|
std::mutex m_QueueMutex;
|
||
|
std::condition_variable m_NonEmpty;
|
||
|
};
|
||
|
|
||
|
template<class Msg>
|
||
|
class MsgQueue: public Queue<Msg *>
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
typedef std::function<void()> OnEmpty;
|
||
|
|
||
|
MsgQueue (): m_IsRunning (true), m_Thread (std::bind (&MsgQueue<Msg>::Run, this)) {};
|
||
|
~MsgQueue () { Stop (); };
|
||
|
void Stop()
|
||
|
{
|
||
|
if (m_IsRunning)
|
||
|
{
|
||
|
m_IsRunning = false;
|
||
|
Queue<Msg *>::WakeUp ();
|
||
|
m_Thread.join();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void SetOnEmpty (OnEmpty const & e) { m_OnEmpty = e; };
|
||
|
|
||
|
private:
|
||
|
|
||
|
void Run ()
|
||
|
{
|
||
|
while (m_IsRunning)
|
||
|
{
|
||
|
while (auto msg = Queue<Msg *>::Get ())
|
||
|
{
|
||
|
msg->Process ();
|
||
|
delete msg;
|
||
|
}
|
||
|
if (m_OnEmpty != nullptr)
|
||
|
m_OnEmpty ();
|
||
|
if (m_IsRunning)
|
||
|
Queue<Msg *>::Wait ();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
|
||
|
volatile bool m_IsRunning;
|
||
|
OnEmpty m_OnEmpty;
|
||
|
std::thread m_Thread;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
11 years ago
|
|
||
|
#endif
|