ClickHouse/libs/libzkutil/include/zkutil/SingleBarrier.h

58 lines
1.9 KiB
C++
Raw Normal View History

2016-03-01 17:47:53 +00:00
#pragma once
#include <zkutil/Common.h>
2016-03-01 17:47:53 +00:00
#include <string>
#include <functional>
namespace zkutil
{
2016-09-01 09:58:56 +00:00
/// Implementation of a distributed single barrier for ZooKeeper.
/// Consider a barrier with N slots. A node that wants to enter this barrier
/// creates a uniquely identified token and puts it in a free slot, then waits
/// until all of the N slots have been taken.
/// This implementation allows entering a barrier more than once. This is done
/// by prefixing tokens with a tag which is an integer number representing the
/// number of times this barrier has already been crossed. When a node attempts
/// to puts its token into a slot, first it looks for lingering obsolete tokens,
/// then, if found, deletes them. If a node has put its token into the last free
/// slot, it increments the tag value.
2016-03-01 17:47:53 +00:00
class SingleBarrier final
{
public:
using CancellationHook = std::function<void()>;
2016-03-01 17:47:53 +00:00
public:
SingleBarrier(GetZooKeeper get_zookeeper_, const std::string & path_, size_t counter_);
2016-03-01 17:47:53 +00:00
SingleBarrier(const SingleBarrier &) = delete;
SingleBarrier & operator=(const SingleBarrier &) = delete;
2016-03-01 17:47:53 +00:00
SingleBarrier(SingleBarrier &&) = default;
SingleBarrier & operator=(SingleBarrier &&) = default;
2016-03-01 17:47:53 +00:00
/// Register a function that cancels barrier operations if requested.
void setCancellationHook(CancellationHook cancellation_hook_);
2016-03-01 17:47:53 +00:00
void enter(UInt64 timeout = 0);
2016-03-01 17:47:53 +00:00
private:
/// Cancel any ongoing operation if requested. Additionally perform cleanup.
void abortIfRequested();
2016-03-01 17:47:53 +00:00
private:
/// Helper that acquires an alive ZooKeeper session.
GetZooKeeper get_zookeeper;
EventPtr event = std::make_shared<Poco::Event>();
/// Function that cancels barrier operations if requested.
CancellationHook cancellation_hook;
/// Path to the barrier storage.
std::string path;
/// Token created by the node attempting to enter the barrier.
std::string token;
/// Number of available slots.
size_t counter;
2016-03-01 17:47:53 +00:00
};
}