2016-03-01 17:47:53 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-03-25 12:21:10 +00:00
|
|
|
#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:
|
2017-04-01 07:20:54 +00:00
|
|
|
using CancellationHook = std::function<void()>;
|
2016-03-01 17:47:53 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
SingleBarrier(GetZooKeeper get_zookeeper_, const std::string & path_, size_t counter_);
|
2016-03-01 17:47:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
SingleBarrier(const SingleBarrier &) = delete;
|
|
|
|
SingleBarrier & operator=(const SingleBarrier &) = delete;
|
2016-03-01 17:47:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
SingleBarrier(SingleBarrier &&) = default;
|
|
|
|
SingleBarrier & operator=(SingleBarrier &&) = default;
|
2016-03-01 17:47:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Register a function that cancels barrier operations if requested.
|
|
|
|
void setCancellationHook(CancellationHook cancellation_hook_);
|
2016-03-01 17:47:53 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void enter(UInt64 timeout = 0);
|
2016-03-01 17:47:53 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Cancel any ongoing operation if requested. Additionally perform cleanup.
|
|
|
|
void abortIfRequested();
|
2016-03-01 17:47:53 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
/// 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
|
|
|
};
|
|
|
|
|
|
|
|
}
|