2021-01-19 14:22:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Common/ThreadPool.h>
|
|
|
|
#include <Common/ConcurrentBoundedQueue.h>
|
2021-01-20 16:25:30 +00:00
|
|
|
#include <Coordination/TestKeeperStorage.h>
|
2021-01-19 14:22:28 +00:00
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
namespace zkutil
|
|
|
|
{
|
|
|
|
|
|
|
|
using ZooKeeperResponseCallback = std::function<void(const Coordination::ZooKeeperResponsePtr & response)>;
|
|
|
|
|
|
|
|
class TestKeeperStorageDispatcher
|
|
|
|
{
|
|
|
|
private:
|
2021-01-21 13:53:10 +00:00
|
|
|
|
|
|
|
std::atomic<int64_t> session_id_counter{0};
|
2021-01-19 14:22:28 +00:00
|
|
|
Poco::Timespan operation_timeout{0, Coordination::DEFAULT_OPERATION_TIMEOUT_MS * 1000};
|
|
|
|
|
|
|
|
using clock = std::chrono::steady_clock;
|
|
|
|
|
|
|
|
struct RequestInfo
|
|
|
|
{
|
|
|
|
Coordination::ZooKeeperRequestPtr request;
|
|
|
|
clock::time_point time;
|
|
|
|
int64_t session_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::mutex push_request_mutex;
|
|
|
|
|
|
|
|
using RequestsQueue = ConcurrentBoundedQueue<RequestInfo>;
|
|
|
|
RequestsQueue requests_queue{1};
|
|
|
|
std::atomic<bool> shutdown{false};
|
|
|
|
using SessionToResponseCallback = std::unordered_map<int64_t, ZooKeeperResponseCallback>;
|
|
|
|
|
|
|
|
std::mutex session_to_response_callback_mutex;
|
|
|
|
SessionToResponseCallback session_to_response_callback;
|
|
|
|
|
|
|
|
ThreadFromGlobalPool processing_thread;
|
|
|
|
|
|
|
|
TestKeeperStorage storage;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void processingThread();
|
|
|
|
void finalize();
|
|
|
|
void setResponse(int64_t session_id, const Coordination::ZooKeeperResponsePtr & response);
|
|
|
|
|
|
|
|
public:
|
|
|
|
TestKeeperStorageDispatcher();
|
|
|
|
~TestKeeperStorageDispatcher();
|
|
|
|
|
|
|
|
void putRequest(const Coordination::ZooKeeperRequestPtr & request, int64_t session_id);
|
2021-01-21 13:53:10 +00:00
|
|
|
|
2021-01-19 14:22:28 +00:00
|
|
|
int64_t getSessionID()
|
|
|
|
{
|
2021-01-21 13:53:10 +00:00
|
|
|
return session_id_counter.fetch_add(1);
|
2021-01-19 14:22:28 +00:00
|
|
|
}
|
2021-01-21 13:53:10 +00:00
|
|
|
|
2021-01-19 14:22:28 +00:00
|
|
|
void registerSession(int64_t session_id, ZooKeeperResponseCallback callback);
|
2021-01-21 11:37:20 +00:00
|
|
|
/// Call if we don't need any responses for this session no more (session was expired)
|
|
|
|
void finishSession(int64_t session_id);
|
2021-01-19 14:22:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|