mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
159 lines
3.6 KiB
C++
159 lines
3.6 KiB
C++
#pragma once
|
|
|
|
#include <queue>
|
|
#include <type_traits>
|
|
|
|
#include <Poco/Mutex.h>
|
|
#include <Poco/Semaphore.h>
|
|
|
|
#include <common/types.h>
|
|
|
|
|
|
namespace detail
|
|
{
|
|
template <typename T, bool is_nothrow_move_assignable = std::is_nothrow_move_assignable_v<T>>
|
|
struct MoveOrCopyIfThrow;
|
|
|
|
template <typename T>
|
|
struct MoveOrCopyIfThrow<T, true>
|
|
{
|
|
void operator()(T && src, T & dst) const
|
|
{
|
|
dst = std::forward<T>(src);
|
|
}
|
|
};
|
|
|
|
template <typename T>
|
|
struct MoveOrCopyIfThrow<T, false>
|
|
{
|
|
void operator()(T && src, T & dst) const
|
|
{
|
|
dst = src;
|
|
}
|
|
};
|
|
|
|
template <typename T>
|
|
void moveOrCopyIfThrow(T && src, T & dst)
|
|
{
|
|
MoveOrCopyIfThrow<T>()(std::forward<T>(src), dst);
|
|
}
|
|
}
|
|
|
|
/** A very simple thread-safe queue of limited size.
|
|
* If you try to pop an item from an empty queue, the thread is blocked until the queue becomes nonempty.
|
|
* If you try to push an element into an overflowed queue, the thread is blocked until space appears in the queue.
|
|
*/
|
|
template <typename T>
|
|
class ConcurrentBoundedQueue
|
|
{
|
|
private:
|
|
std::queue<T> queue;
|
|
Poco::FastMutex mutex;
|
|
Poco::Semaphore fill_count;
|
|
Poco::Semaphore empty_count;
|
|
|
|
public:
|
|
ConcurrentBoundedQueue(size_t max_fill)
|
|
: fill_count(0, max_fill), empty_count(max_fill, max_fill) {}
|
|
|
|
void push(const T & x)
|
|
{
|
|
empty_count.wait();
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
queue.push(x);
|
|
}
|
|
fill_count.set();
|
|
}
|
|
|
|
template <typename... Args>
|
|
void emplace(Args &&... args)
|
|
{
|
|
empty_count.wait();
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
queue.emplace(std::forward<Args>(args)...);
|
|
}
|
|
fill_count.set();
|
|
}
|
|
|
|
void pop(T & x)
|
|
{
|
|
fill_count.wait();
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
detail::moveOrCopyIfThrow(std::move(queue.front()), x);
|
|
queue.pop();
|
|
}
|
|
empty_count.set();
|
|
}
|
|
|
|
bool tryPush(const T & x, UInt64 milliseconds = 0)
|
|
{
|
|
if (empty_count.tryWait(milliseconds))
|
|
{
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
queue.push(x);
|
|
}
|
|
fill_count.set();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
template <typename... Args>
|
|
bool tryEmplace(UInt64 milliseconds, Args &&... args)
|
|
{
|
|
if (empty_count.tryWait(milliseconds))
|
|
{
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
queue.emplace(std::forward<Args>(args)...);
|
|
}
|
|
fill_count.set();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool tryPop(T & x, UInt64 milliseconds = 0)
|
|
{
|
|
if (fill_count.tryWait(milliseconds))
|
|
{
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
detail::moveOrCopyIfThrow(std::move(queue.front()), x);
|
|
queue.pop();
|
|
}
|
|
empty_count.set();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
size_t size()
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
return queue.size();
|
|
}
|
|
|
|
size_t empty()
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
return queue.empty();
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
while (fill_count.tryWait(0))
|
|
{
|
|
{
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
queue.pop();
|
|
}
|
|
empty_count.set();
|
|
}
|
|
}
|
|
};
|