2014-04-02 07:59:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <zkutil/ZooKeeper.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/Exception.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
2014-04-02 07:59:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-24 05:00:24 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2016-01-24 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** The synchronization is primitive. Works as follows:
|
|
|
|
* Creates a non-ephemeral incremental node and marks it as locked (LOCKED).
|
|
|
|
* `unlock()` unlocks it (UNLOCKED).
|
|
|
|
* When the destructor is called or the session ends in ZooKeeper, it goes into the ABANDONED state.
|
|
|
|
* (Including when the program is halted).
|
2014-04-02 07:59:43 +00:00
|
|
|
*/
|
2014-08-07 09:23:55 +00:00
|
|
|
class AbandonableLockInZooKeeper : private boost::noncopyable
|
2014-04-02 07:59:43 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
enum State
|
|
|
|
{
|
|
|
|
UNLOCKED,
|
|
|
|
LOCKED,
|
|
|
|
ABANDONED,
|
|
|
|
};
|
|
|
|
|
|
|
|
AbandonableLockInZooKeeper(
|
|
|
|
const String & path_prefix_, const String & temp_path, zkutil::ZooKeeper & zookeeper_)
|
|
|
|
: zookeeper(zookeeper_), path_prefix(path_prefix_)
|
|
|
|
{
|
2017-04-16 15:00:33 +00:00
|
|
|
/// Let's create an secondary ephemeral node.
|
2017-04-01 07:20:54 +00:00
|
|
|
holder_path = zookeeper.create(temp_path + "/abandonable_lock-", "", zkutil::CreateMode::EphemeralSequential);
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// Write the path to the secondary node in the main node.
|
2017-04-01 07:20:54 +00:00
|
|
|
path = zookeeper.create(path_prefix, holder_path, zkutil::CreateMode::PersistentSequential);
|
|
|
|
|
|
|
|
if (path.size() <= path_prefix.size())
|
|
|
|
throw Exception("Logical error: name of sequential node is shorter than prefix.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
AbandonableLockInZooKeeper(AbandonableLockInZooKeeper && rhs)
|
|
|
|
: zookeeper(rhs.zookeeper)
|
|
|
|
{
|
|
|
|
std::swap(path_prefix, rhs.path_prefix);
|
|
|
|
std::swap(path, rhs.path);
|
|
|
|
std::swap(holder_path, rhs.holder_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
String getPath() const
|
|
|
|
{
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// Parse the number at the end of the path.
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt64 getNumber() const
|
|
|
|
{
|
|
|
|
return parse<UInt64>(path.c_str() + path_prefix.size(), path.size() - path_prefix.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void unlock()
|
|
|
|
{
|
|
|
|
zookeeper.remove(path);
|
|
|
|
zookeeper.remove(holder_path);
|
|
|
|
holder_path = "";
|
|
|
|
}
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// Adds actions equivalent to `unlock()` to the list.
|
2017-04-01 07:20:54 +00:00
|
|
|
void getUnlockOps(zkutil::Ops & ops)
|
|
|
|
{
|
|
|
|
ops.emplace_back(std::make_unique<zkutil::Op::Remove>(path, -1));
|
|
|
|
ops.emplace_back(std::make_unique<zkutil::Op::Remove>(holder_path, -1));
|
|
|
|
}
|
|
|
|
|
|
|
|
~AbandonableLockInZooKeeper()
|
|
|
|
{
|
|
|
|
if (holder_path.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
zookeeper.tryRemoveEphemeralNodeWithRetries(holder_path);
|
2017-04-16 15:00:33 +00:00
|
|
|
zookeeper.trySet(path, ""); /// It's not necessary.
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException("~AbandonableLockInZooKeeper");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static State check(const String & path, zkutil::ZooKeeper & zookeeper)
|
|
|
|
{
|
|
|
|
String holder_path;
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// If there is no main node, UNLOCKED.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!zookeeper.tryGet(path, holder_path))
|
|
|
|
return UNLOCKED;
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// If there is no path to the secondary node in the main node, ABANDONED.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (holder_path.empty())
|
|
|
|
return ABANDONED;
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// If the secondary node is alive, LOCKED.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (zookeeper.exists(holder_path))
|
|
|
|
return LOCKED;
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// If there is no secondary node, you need to test again the existence of the main node,
|
|
|
|
/// because during this time you might have time to call unlock().
|
|
|
|
/// At the same time, we will remove the path to the secondary node from there.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (zookeeper.trySet(path, "") == ZOK)
|
|
|
|
return ABANDONED;
|
|
|
|
|
|
|
|
return UNLOCKED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void createAbandonedIfNotExists(const String & path, zkutil::ZooKeeper & zookeeper)
|
|
|
|
{
|
|
|
|
zookeeper.createIfNotExists(path, "");
|
|
|
|
}
|
2014-07-25 16:32:02 +00:00
|
|
|
|
2014-04-02 07:59:43 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
zkutil::ZooKeeper & zookeeper;
|
|
|
|
String path_prefix;
|
|
|
|
String path;
|
|
|
|
String holder_path;
|
2014-04-02 07:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|