2014-10-16 01:21:03 +00:00
|
|
|
|
#include <functional>
|
2014-03-07 13:50:58 +00:00
|
|
|
|
#include <zkutil/ZooKeeper.h>
|
|
|
|
|
#include <boost/make_shared.hpp>
|
2014-03-22 14:44:44 +00:00
|
|
|
|
#include <Yandex/logger_useful.h>
|
2014-09-11 20:34:41 +00:00
|
|
|
|
#include <DB/Common/ProfileEvents.h>
|
2014-10-16 01:21:03 +00:00
|
|
|
|
|
2014-03-07 13:50:58 +00:00
|
|
|
|
|
|
|
|
|
namespace zkutil
|
|
|
|
|
{
|
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
const int CreateMode::Persistent = 0;
|
|
|
|
|
const int CreateMode::Ephemeral = ZOO_EPHEMERAL;
|
|
|
|
|
const int CreateMode::EphemeralSequential = ZOO_EPHEMERAL | ZOO_SEQUENCE;
|
|
|
|
|
const int CreateMode::PersistentSequential = ZOO_SEQUENCE;
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
void check(int32_t code, const std::string path = "")
|
|
|
|
|
{
|
|
|
|
|
if (code != ZOK)
|
|
|
|
|
{
|
|
|
|
|
if (path.size())
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
else
|
|
|
|
|
throw KeeperException(code);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
struct WatchWithEvent
|
2014-03-07 13:50:58 +00:00
|
|
|
|
{
|
2014-06-30 11:33:06 +00:00
|
|
|
|
/// существует все время существования WatchWithEvent
|
2014-06-04 13:48:36 +00:00
|
|
|
|
ZooKeeper & zk;
|
2014-06-30 11:33:06 +00:00
|
|
|
|
EventPtr event;
|
2014-04-08 10:13:49 +00:00
|
|
|
|
|
2014-07-01 08:50:03 +00:00
|
|
|
|
WatchWithEvent(ZooKeeper & zk_, EventPtr event_) : zk(zk_), event(event_) {}
|
2014-03-07 13:50:58 +00:00
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
void process(zhandle_t * zh, int32_t event_type, int32_t state, const char * path)
|
|
|
|
|
{
|
2014-07-08 12:45:10 +00:00
|
|
|
|
if (event)
|
2014-07-01 08:50:03 +00:00
|
|
|
|
{
|
|
|
|
|
event->set();
|
2014-07-07 14:51:25 +00:00
|
|
|
|
event = nullptr;
|
2014-07-01 08:50:03 +00:00
|
|
|
|
}
|
2014-06-30 11:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2014-03-07 13:50:58 +00:00
|
|
|
|
|
2014-10-18 17:53:18 +00:00
|
|
|
|
void ZooKeeper::processEvent(zhandle_t * zh, int type, int state, const char * path, void * watcherCtx)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (watcherCtx)
|
2014-03-07 13:50:58 +00:00
|
|
|
|
{
|
2014-10-18 17:53:18 +00:00
|
|
|
|
WatchWithEvent * watch = static_cast<WatchWithEvent *>(watcherCtx);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
watch->process(zh, type, state, path);
|
2014-07-01 08:50:03 +00:00
|
|
|
|
|
|
|
|
|
/// Гарантируется, что не-ZOO_SESSION_EVENT событие придет ровно один раз (https://issues.apache.org/jira/browse/ZOOKEEPER-890).
|
|
|
|
|
if (type != ZOO_SESSION_EVENT)
|
|
|
|
|
{
|
2014-07-18 11:53:24 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(watch->zk.mutex);
|
|
|
|
|
watch->zk.watch_store.erase(watch);
|
|
|
|
|
}
|
2014-07-01 08:50:03 +00:00
|
|
|
|
delete watch;
|
|
|
|
|
}
|
2014-03-07 13:50:58 +00:00
|
|
|
|
}
|
2014-06-04 13:48:36 +00:00
|
|
|
|
}
|
2014-03-07 13:50:58 +00:00
|
|
|
|
|
2014-11-26 18:58:51 +00:00
|
|
|
|
void ZooKeeper::init(const std::string & hosts_, int32_t session_timeout_ms_)
|
2014-03-07 13:50:58 +00:00
|
|
|
|
{
|
2014-10-09 23:12:10 +00:00
|
|
|
|
log = &Logger::get("ZooKeeper");
|
2014-06-30 18:12:18 +00:00
|
|
|
|
zoo_set_debug_level(ZOO_LOG_LEVEL_ERROR);
|
2014-04-25 13:55:15 +00:00
|
|
|
|
hosts = hosts_;
|
2014-11-26 18:58:51 +00:00
|
|
|
|
session_timeout_ms = session_timeout_ms_;
|
2014-03-13 14:49:17 +00:00
|
|
|
|
|
2014-11-26 18:58:51 +00:00
|
|
|
|
impl = zookeeper_init(hosts.c_str(), nullptr, session_timeout_ms, nullptr, nullptr, 0);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperInit);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
|
|
|
|
if (!impl)
|
|
|
|
|
throw KeeperException("Fail to initialize zookeeper. Hosts are " + hosts);
|
2014-03-07 13:50:58 +00:00
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
default_acl = &ZOO_OPEN_ACL_UNSAFE;
|
2014-03-07 13:50:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-26 18:58:51 +00:00
|
|
|
|
ZooKeeper::ZooKeeper(const std::string & hosts, int32_t session_timeout_ms)
|
2014-03-13 14:49:17 +00:00
|
|
|
|
{
|
2014-11-26 18:58:51 +00:00
|
|
|
|
init(hosts, session_timeout_ms);
|
2014-03-13 14:49:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct ZooKeeperArgs
|
|
|
|
|
{
|
2014-03-14 10:48:54 +00:00
|
|
|
|
ZooKeeperArgs(const Poco::Util::AbstractConfiguration & config, const std::string & config_name)
|
2014-03-13 14:49:17 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::Util::AbstractConfiguration::Keys keys;
|
|
|
|
|
config.keys(config_name, keys);
|
|
|
|
|
std::string node_key = "node";
|
|
|
|
|
|
2014-10-21 13:18:37 +00:00
|
|
|
|
std::vector<std::string> hosts_strings;
|
|
|
|
|
|
2014-03-13 14:49:17 +00:00
|
|
|
|
session_timeout_ms = DEFAULT_SESSION_TIMEOUT;
|
|
|
|
|
for (const auto & key : keys)
|
|
|
|
|
{
|
|
|
|
|
if (key == node_key || key.compare(0, node_key.size(), node_key) == 0)
|
|
|
|
|
{
|
2014-10-21 13:18:37 +00:00
|
|
|
|
hosts_strings.push_back(
|
|
|
|
|
config.getString(config_name + "." + key + ".host") + ":" + config.getString(config_name + "." + key + ".port"));
|
2014-03-13 14:49:17 +00:00
|
|
|
|
}
|
|
|
|
|
else if (key == "session_timeout_ms")
|
|
|
|
|
{
|
|
|
|
|
session_timeout_ms = config.getInt(config_name + "." + key);
|
|
|
|
|
}
|
|
|
|
|
else throw KeeperException(std::string("Unknown key ") + key + " in config file");
|
|
|
|
|
}
|
2014-10-21 13:18:37 +00:00
|
|
|
|
|
|
|
|
|
/// перемешиваем порядок хостов, чтобы сделать нагрузку на zookeeper более равномерной
|
|
|
|
|
std::random_shuffle(hosts_strings.begin(), hosts_strings.end());
|
|
|
|
|
|
|
|
|
|
for (auto & host : hosts_strings)
|
|
|
|
|
{
|
|
|
|
|
if (hosts.size())
|
|
|
|
|
hosts += ",";
|
|
|
|
|
hosts += host;
|
|
|
|
|
}
|
2014-03-13 14:49:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string hosts;
|
|
|
|
|
size_t session_timeout_ms;
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-08 12:45:10 +00:00
|
|
|
|
ZooKeeper::ZooKeeper(const Poco::Util::AbstractConfiguration & config, const std::string & config_name)
|
2014-03-13 14:49:17 +00:00
|
|
|
|
{
|
|
|
|
|
ZooKeeperArgs args(config, config_name);
|
2014-07-08 12:45:10 +00:00
|
|
|
|
init(args.hosts, args.session_timeout_ms);
|
2014-03-13 14:49:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
void * ZooKeeper::watchForEvent(EventPtr event)
|
|
|
|
|
{
|
2014-07-01 08:50:03 +00:00
|
|
|
|
if (event)
|
|
|
|
|
{
|
|
|
|
|
WatchWithEvent * res = new WatchWithEvent(*this, event);
|
2014-07-18 11:53:24 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
watch_store.insert(res);
|
2014-07-18 12:25:24 +00:00
|
|
|
|
if (watch_store.size() % 10000 == 0)
|
|
|
|
|
{
|
|
|
|
|
LOG_ERROR(log, "There are " << watch_store.size() << " active watches. There must be a leak somewhere.");
|
|
|
|
|
}
|
2014-07-18 11:53:24 +00:00
|
|
|
|
}
|
2014-10-18 17:53:18 +00:00
|
|
|
|
return res;
|
2014-07-01 08:50:03 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2014-06-30 11:33:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
watcher_fn ZooKeeper::callbackForEvent(EventPtr event)
|
|
|
|
|
{
|
|
|
|
|
return event ? processEvent : nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::getChildrenImpl(const std::string & path, Strings & res,
|
|
|
|
|
Stat * stat_,
|
2014-06-30 11:33:06 +00:00
|
|
|
|
EventPtr watch)
|
2014-03-07 19:18:48 +00:00
|
|
|
|
{
|
2014-06-04 13:48:36 +00:00
|
|
|
|
String_vector strings;
|
|
|
|
|
int code;
|
|
|
|
|
Stat stat;
|
2014-06-30 11:33:06 +00:00
|
|
|
|
code = zoo_wget_children2(impl, path.c_str(), callbackForEvent(watch), watchForEvent(watch), &strings, &stat);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperGetChildren);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
|
|
|
|
if (code == ZOK)
|
|
|
|
|
{
|
2014-06-04 16:48:55 +00:00
|
|
|
|
if (stat_)
|
|
|
|
|
*stat_ = stat;
|
2014-06-04 13:48:36 +00:00
|
|
|
|
res.resize(strings.count);
|
|
|
|
|
for (int i = 0; i < strings.count; ++i)
|
|
|
|
|
res[i] = std::string(strings.data[i]);
|
|
|
|
|
deallocate_String_vector(&strings);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return code;
|
2014-03-07 19:18:48 +00:00
|
|
|
|
}
|
2014-06-04 16:48:55 +00:00
|
|
|
|
Strings ZooKeeper::getChildren(
|
2014-06-30 11:33:06 +00:00
|
|
|
|
const std::string & path, Stat * stat, EventPtr watch)
|
2014-06-04 16:48:55 +00:00
|
|
|
|
{
|
|
|
|
|
Strings res;
|
|
|
|
|
check(tryGetChildren(path, res, stat, watch), path);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
2014-03-07 19:18:48 +00:00
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::tryGetChildren(const std::string & path, Strings & res,
|
2014-06-30 11:33:06 +00:00
|
|
|
|
Stat * stat_, EventPtr watch)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::getChildrenImpl, this, std::ref(path), std::ref(res), stat_, watch));
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE))
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return code;
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::createImpl(const std::string & path, const std::string & data, int32_t mode, std::string & pathCreated)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-06-04 13:48:36 +00:00
|
|
|
|
int code;
|
|
|
|
|
/// имя ноды может быть больше переданного пути, если создается sequential нода.
|
|
|
|
|
size_t name_buffer_size = path.size() + SEQUENTIAL_SUFFIX_SIZE;
|
|
|
|
|
char * name_buffer = new char[name_buffer_size];
|
|
|
|
|
|
2014-07-18 11:53:24 +00:00
|
|
|
|
code = zoo_create(impl, path.c_str(), data.c_str(), data.size(), getDefaultACL(), mode, name_buffer, name_buffer_size);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperCreate);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-03-21 18:58:24 +00:00
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
if (code == ZOK)
|
|
|
|
|
{
|
|
|
|
|
pathCreated = std::string(name_buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delete[] name_buffer;
|
|
|
|
|
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string ZooKeeper::create(const std::string & path, const std::string & data, int32_t type)
|
|
|
|
|
{
|
|
|
|
|
std::string pathCreated;
|
|
|
|
|
check(tryCreate(path, data, type, pathCreated), path);
|
|
|
|
|
return pathCreated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int32_t ZooKeeper::tryCreate(const std::string & path, const std::string & data, int32_t mode, std::string & pathCreated)
|
|
|
|
|
{
|
2014-06-26 19:08:48 +00:00
|
|
|
|
int code = createImpl(path, data, mode, pathCreated);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
|
|
|
|
code == ZNODEEXISTS ||
|
2014-07-18 16:50:51 +00:00
|
|
|
|
code == ZNOCHILDRENFOREPHEMERALS))
|
2014-04-21 07:22:38 +00:00
|
|
|
|
throw KeeperException(code, path);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-03-07 19:18:48 +00:00
|
|
|
|
return code;
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
int32_t ZooKeeper::tryCreate(const std::string & path, const std::string & data, int32_t mode)
|
2014-05-07 13:58:20 +00:00
|
|
|
|
{
|
2014-06-04 13:48:36 +00:00
|
|
|
|
std::string pathCreated;
|
|
|
|
|
return tryCreate(path, data, mode, pathCreated);
|
2014-05-07 13:58:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t ZooKeeper::tryCreateWithRetries(const std::string & path, const std::string & data, int32_t mode, std::string & pathCreated, size_t* attempt)
|
2014-07-03 17:24:17 +00:00
|
|
|
|
{
|
2014-10-31 12:59:31 +00:00
|
|
|
|
return retry([&path, &data, mode, &pathCreated, this] { return tryCreate(path, data, mode, pathCreated); }, attempt);
|
2014-07-03 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-06-27 17:52:50 +00:00
|
|
|
|
void ZooKeeper::createIfNotExists(const std::string & path, const std::string & data)
|
|
|
|
|
{
|
2014-09-24 13:02:47 +00:00
|
|
|
|
std::string pathCreated;
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::createImpl, this, std::ref(path), std::ref(data), zkutil::CreateMode::Persistent, std::ref(pathCreated)));
|
2014-06-27 17:52:50 +00:00
|
|
|
|
|
|
|
|
|
if (code == ZOK || code == ZNODEEXISTS)
|
|
|
|
|
return;
|
|
|
|
|
else
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 14:05:38 +00:00
|
|
|
|
void ZooKeeper::createAncestors(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
size_t pos = 1;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
pos = path.find('/', pos);
|
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
|
break;
|
|
|
|
|
createIfNotExists(path.substr(0, pos), "");
|
|
|
|
|
++pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::removeImpl(const std::string & path, int32_t version)
|
|
|
|
|
{
|
|
|
|
|
int32_t code = zoo_delete(impl, path.c_str(), version);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperRemove);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-07 17:57:53 +00:00
|
|
|
|
void ZooKeeper::remove(const std::string & path, int32_t version)
|
|
|
|
|
{
|
2014-06-04 16:48:55 +00:00
|
|
|
|
check(tryRemove(path, version), path);
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-05-15 14:53:39 +00:00
|
|
|
|
void ZooKeeper::removeWithRetries(const std::string & path, int32_t version)
|
|
|
|
|
{
|
|
|
|
|
size_t attempt;
|
|
|
|
|
int code = tryRemoveWithRetries(path, version, &attempt);
|
|
|
|
|
|
|
|
|
|
if (!(code == ZOK || (code == ZNONODE && attempt > 0)))
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
int32_t ZooKeeper::tryRemove(const std::string & path, int32_t version)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-06-26 19:08:48 +00:00
|
|
|
|
int32_t code = removeImpl(path, version);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
|
|
|
|
code == ZBADVERSION ||
|
2014-07-18 16:50:51 +00:00
|
|
|
|
code == ZNOTEMPTY))
|
2014-04-21 07:22:38 +00:00
|
|
|
|
throw KeeperException(code, path);
|
2014-03-07 19:18:48 +00:00
|
|
|
|
return code;
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-03 17:24:17 +00:00
|
|
|
|
int32_t ZooKeeper::tryRemoveWithRetries(const std::string & path, int32_t version, size_t * attempt)
|
2014-07-02 15:04:42 +00:00
|
|
|
|
{
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::removeImpl, this, std::ref(path), version), attempt);
|
2014-07-18 16:50:51 +00:00
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
|
|
|
|
code == ZBADVERSION ||
|
|
|
|
|
code == ZNOTEMPTY))
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
return code;
|
2014-07-02 15:04:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
int32_t ZooKeeper::existsImpl(const std::string & path, Stat * stat_, EventPtr watch)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-06-04 13:48:36 +00:00
|
|
|
|
int32_t code;
|
|
|
|
|
Stat stat;
|
2014-06-30 11:33:06 +00:00
|
|
|
|
code = zoo_wexists(impl, path.c_str(), callbackForEvent(watch), watchForEvent(watch), &stat);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperExists);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
if (code == ZOK)
|
|
|
|
|
{
|
|
|
|
|
if (stat_)
|
|
|
|
|
*stat_ = stat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
bool ZooKeeper::exists(const std::string & path, Stat * stat_, EventPtr watch)
|
2014-06-04 16:48:55 +00:00
|
|
|
|
{
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::existsImpl, this, path, stat_, watch));
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE))
|
2014-04-21 07:22:38 +00:00
|
|
|
|
throw KeeperException(code, path);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
if (code == ZNONODE)
|
2014-03-07 19:18:48 +00:00
|
|
|
|
return false;
|
|
|
|
|
return true;
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
int32_t ZooKeeper::getImpl(const std::string & path, std::string & res, Stat * stat_, EventPtr watch)
|
2014-06-04 16:48:55 +00:00
|
|
|
|
{
|
|
|
|
|
char buffer[MAX_NODE_SIZE];
|
|
|
|
|
int buffer_len = MAX_NODE_SIZE;
|
|
|
|
|
int32_t code;
|
|
|
|
|
Stat stat;
|
2014-06-30 11:33:06 +00:00
|
|
|
|
code = zoo_wget(impl, path.c_str(), callbackForEvent(watch), watchForEvent(watch), buffer, &buffer_len, &stat);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperGet);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
|
|
|
|
if (code == ZOK)
|
|
|
|
|
{
|
|
|
|
|
if (stat_)
|
|
|
|
|
*stat_ = stat;
|
|
|
|
|
|
2014-10-09 23:12:10 +00:00
|
|
|
|
if (buffer_len < 0) /// Такое бывает, если в ноде в ZK лежит NULL. Не будем отличать его от пустой строки.
|
|
|
|
|
res.clear();
|
|
|
|
|
else
|
|
|
|
|
res.assign(buffer, buffer_len);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
std::string ZooKeeper::get(const std::string & path, Stat * stat, EventPtr watch)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
|
|
|
|
std::string res;
|
2014-06-04 13:48:36 +00:00
|
|
|
|
if (tryGet(path, res, stat, watch))
|
|
|
|
|
return res;
|
|
|
|
|
else
|
2014-07-01 15:58:25 +00:00
|
|
|
|
throw KeeperException("Can't get data for node " + path + ": node doesn't exist");
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
bool ZooKeeper::tryGet(const std::string & path, std::string & res, Stat * stat_, EventPtr watch)
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::getImpl, this, std::ref(path), std::ref(res), stat_, watch));
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2015-06-10 12:28:42 +00:00
|
|
|
|
if (!(code == ZOK ||
|
2014-06-04 13:48:36 +00:00
|
|
|
|
code == ZNONODE))
|
2014-04-21 07:22:38 +00:00
|
|
|
|
throw KeeperException(code, path);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-07-18 16:50:51 +00:00
|
|
|
|
return code == ZOK;
|
2014-03-07 13:50:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::setImpl(const std::string & path, const std::string & data,
|
|
|
|
|
int32_t version, Stat * stat_)
|
|
|
|
|
{
|
|
|
|
|
Stat stat;
|
|
|
|
|
int32_t code = zoo_set2(impl, path.c_str(), data.c_str(), data.length(), version, &stat);
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperSet);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
if (code == ZOK)
|
|
|
|
|
{
|
|
|
|
|
if (stat_)
|
|
|
|
|
*stat_ = stat;
|
|
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-07 17:57:53 +00:00
|
|
|
|
void ZooKeeper::set(const std::string & path, const std::string & data, int32_t version, Stat * stat)
|
|
|
|
|
{
|
2014-06-04 16:48:55 +00:00
|
|
|
|
check(trySet(path, data, version, stat), path);
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-09 12:30:30 +00:00
|
|
|
|
void ZooKeeper::createOrUpdate(const std::string & path, const std::string & data, int32_t mode)
|
|
|
|
|
{
|
|
|
|
|
int code = trySet(path, data, -1);
|
|
|
|
|
if (code == ZNONODE)
|
|
|
|
|
{
|
|
|
|
|
create(path, data, mode);
|
|
|
|
|
}
|
2015-06-10 12:44:55 +00:00
|
|
|
|
else if (code != ZOK)
|
2015-06-09 12:30:30 +00:00
|
|
|
|
throw zkutil::KeeperException(code, path);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
int32_t ZooKeeper::trySet(const std::string & path, const std::string & data,
|
|
|
|
|
int32_t version, Stat * stat_)
|
2014-03-07 19:18:48 +00:00
|
|
|
|
{
|
2014-06-26 19:08:48 +00:00
|
|
|
|
int32_t code = setImpl(path, data, version, stat_);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
if (!( code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
2014-07-18 16:50:51 +00:00
|
|
|
|
code == ZBADVERSION))
|
2014-04-21 07:22:38 +00:00
|
|
|
|
throw KeeperException(code, path);
|
2014-03-07 19:18:48 +00:00
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 16:48:55 +00:00
|
|
|
|
int32_t ZooKeeper::multiImpl(const Ops & ops_, OpResultsPtr * out_results_)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
{
|
2014-07-28 14:31:07 +00:00
|
|
|
|
if (ops_.empty())
|
|
|
|
|
return ZOK;
|
|
|
|
|
|
2014-08-11 11:24:10 +00:00
|
|
|
|
/// Workaround ошибки в сишном клиенте ZooKeeper. Если сессия истекла, zoo_multi иногда падает с segfault.
|
|
|
|
|
/// Наверно, здесь есть race condition, и возможен segfault, если сессия истечет между этой проверкой и zoo_multi.
|
|
|
|
|
/// TODO: Посмотреть, не исправлено ли это в последней версии клиента, и исправить.
|
|
|
|
|
if (expired())
|
|
|
|
|
return ZINVALIDSTATE;
|
|
|
|
|
|
2014-06-04 13:48:36 +00:00
|
|
|
|
size_t count = ops_.size();
|
|
|
|
|
OpResultsPtr out_results(new OpResults(count));
|
|
|
|
|
|
2014-06-27 13:47:00 +00:00
|
|
|
|
/// копируем структуру, содержащую указатели, дефолтным конструктором копирования
|
2014-06-04 13:48:36 +00:00
|
|
|
|
/// это безопасно, т.к. у нее нет деструктора
|
|
|
|
|
std::vector<zoo_op_t> ops;
|
|
|
|
|
for (const Op & op : ops_)
|
|
|
|
|
ops.push_back(*(op.data));
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_multi(impl, ops.size(), ops.data(), out_results->data());
|
2014-09-11 20:34:41 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperMulti);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-06-30 14:21:39 +00:00
|
|
|
|
if (out_results_)
|
|
|
|
|
*out_results_ = out_results;
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OpResultsPtr ZooKeeper::multi(const Ops & ops)
|
|
|
|
|
{
|
|
|
|
|
OpResultsPtr results;
|
|
|
|
|
check(tryMulti(ops, &results));
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int32_t ZooKeeper::tryMulti(const Ops & ops_, OpResultsPtr * out_results_)
|
|
|
|
|
{
|
2014-06-26 19:08:48 +00:00
|
|
|
|
int32_t code = multiImpl(ops_, out_results_);
|
2014-06-04 16:48:55 +00:00
|
|
|
|
|
2014-07-02 15:04:42 +00:00
|
|
|
|
if (!(code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
|
|
|
|
code == ZNODEEXISTS ||
|
|
|
|
|
code == ZNOCHILDRENFOREPHEMERALS ||
|
|
|
|
|
code == ZBADVERSION ||
|
2014-07-18 16:50:51 +00:00
|
|
|
|
code == ZNOTEMPTY))
|
2014-04-09 15:52:47 +00:00
|
|
|
|
throw KeeperException(code);
|
|
|
|
|
return code;
|
2014-03-07 19:18:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-03 11:22:12 +00:00
|
|
|
|
int32_t ZooKeeper::tryMultiWithRetries(const Ops & ops, OpResultsPtr * out_results, size_t * attempt)
|
2014-06-30 14:21:39 +00:00
|
|
|
|
{
|
2014-10-16 01:21:03 +00:00
|
|
|
|
int32_t code = retry(std::bind(&ZooKeeper::multiImpl, this, std::ref(ops), out_results), attempt);
|
2014-07-18 16:50:51 +00:00
|
|
|
|
if (!(code == ZOK ||
|
|
|
|
|
code == ZNONODE ||
|
|
|
|
|
code == ZNODEEXISTS ||
|
|
|
|
|
code == ZNOCHILDRENFOREPHEMERALS ||
|
|
|
|
|
code == ZBADVERSION ||
|
|
|
|
|
code == ZNOTEMPTY))
|
|
|
|
|
throw KeeperException(code);
|
|
|
|
|
return code;
|
2014-06-30 14:21:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-18 14:44:56 +00:00
|
|
|
|
static const int BATCH_SIZE = 100;
|
|
|
|
|
|
2014-05-27 12:08:40 +00:00
|
|
|
|
void ZooKeeper::removeChildrenRecursive(const std::string & path)
|
2014-03-22 14:44:44 +00:00
|
|
|
|
{
|
|
|
|
|
Strings children = getChildren(path);
|
2014-07-18 14:44:56 +00:00
|
|
|
|
while (!children.empty())
|
2014-05-19 09:21:57 +00:00
|
|
|
|
{
|
2014-07-18 14:44:56 +00:00
|
|
|
|
zkutil::Ops ops;
|
|
|
|
|
for (size_t i = 0; i < BATCH_SIZE && !children.empty(); ++i)
|
|
|
|
|
{
|
|
|
|
|
removeChildrenRecursive(path + "/" + children.back());
|
|
|
|
|
ops.push_back(new Op::Remove(path + "/" + children.back(), -1));
|
|
|
|
|
children.pop_back();
|
|
|
|
|
}
|
|
|
|
|
multi(ops);
|
2014-05-19 09:21:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-07 09:51:42 +00:00
|
|
|
|
void ZooKeeper::tryRemoveChildrenRecursive(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
Strings children;
|
|
|
|
|
if (tryGetChildren(path, children) != ZOK)
|
|
|
|
|
return;
|
2014-07-18 14:44:56 +00:00
|
|
|
|
while (!children.empty())
|
2014-07-07 09:51:42 +00:00
|
|
|
|
{
|
2014-07-18 14:44:56 +00:00
|
|
|
|
zkutil::Ops ops;
|
|
|
|
|
Strings batch;
|
|
|
|
|
for (size_t i = 0; i < BATCH_SIZE && !children.empty(); ++i)
|
|
|
|
|
{
|
|
|
|
|
batch.push_back(path + "/" + children.back());
|
|
|
|
|
children.pop_back();
|
|
|
|
|
tryRemoveChildrenRecursive(batch.back());
|
|
|
|
|
ops.push_back(new Op::Remove(batch.back(), -1));
|
|
|
|
|
}
|
2014-07-07 09:51:42 +00:00
|
|
|
|
|
2014-07-18 14:44:56 +00:00
|
|
|
|
/** Сначала пытаемся удалить детей более быстрым способом - сразу пачкой. Если не получилось,
|
|
|
|
|
* значит кто-то кроме нас удаляет этих детей, и придется удалять их по одному.
|
|
|
|
|
*/
|
|
|
|
|
if (tryMulti(ops) != ZOK)
|
2014-07-07 09:51:42 +00:00
|
|
|
|
{
|
2014-07-18 14:44:56 +00:00
|
|
|
|
for (const std::string & child : batch)
|
|
|
|
|
{
|
|
|
|
|
tryRemove(child);
|
|
|
|
|
}
|
2014-07-07 09:51:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-19 09:21:57 +00:00
|
|
|
|
void ZooKeeper::removeRecursive(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
removeChildrenRecursive(path);
|
2014-03-22 14:44:44 +00:00
|
|
|
|
remove(path);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-07 09:51:42 +00:00
|
|
|
|
void ZooKeeper::tryRemoveRecursive(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
tryRemoveChildrenRecursive(path);
|
|
|
|
|
tryRemove(path);
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 02:13:59 +00:00
|
|
|
|
|
|
|
|
|
void ZooKeeper::waitForDisappear(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
zkutil::EventPtr event = new Poco::Event;
|
|
|
|
|
|
|
|
|
|
std::string unused;
|
|
|
|
|
/// get вместо exists, чтобы не утек watch, если ноды уже нет.
|
|
|
|
|
if (!tryGet(path, unused, nullptr, event))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
event->wait();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-06-30 07:58:16 +00:00
|
|
|
|
ZooKeeper::~ZooKeeper()
|
2014-03-07 17:57:53 +00:00
|
|
|
|
{
|
2014-08-08 12:53:55 +00:00
|
|
|
|
LOG_INFO(&Logger::get("~ZooKeeper"), "Closing ZooKeeper session");
|
|
|
|
|
|
2014-06-30 07:58:16 +00:00
|
|
|
|
int code = zookeeper_close(impl);
|
|
|
|
|
if (code != ZOK)
|
|
|
|
|
{
|
|
|
|
|
LOG_ERROR(&Logger::get("~ZooKeeper"), "Failed to close ZooKeeper session: " << zerror(code));
|
|
|
|
|
}
|
2014-06-04 13:48:36 +00:00
|
|
|
|
|
2014-08-08 12:53:55 +00:00
|
|
|
|
LOG_INFO(&Logger::get("~ZooKeeper"), "Removing " << watch_store.size() << " watches");
|
|
|
|
|
|
2014-06-30 11:33:06 +00:00
|
|
|
|
/// удаляем WatchWithEvent которые уже никогда не будут обработаны
|
2014-07-01 08:50:03 +00:00
|
|
|
|
for (WatchWithEvent * watch : watch_store)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
delete watch;
|
2014-08-08 12:53:55 +00:00
|
|
|
|
|
|
|
|
|
LOG_INFO(&Logger::get("~ZooKeeper"), "Removed watches");
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-25 13:55:15 +00:00
|
|
|
|
ZooKeeperPtr ZooKeeper::startNewSession() const
|
|
|
|
|
{
|
2015-04-16 07:22:29 +00:00
|
|
|
|
return std::make_shared<ZooKeeper>(hosts, session_timeout_ms);
|
2014-04-25 13:55:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 07:02:36 +00:00
|
|
|
|
Op::Create::Create(const std::string & path_, const std::string & value_, ACLPtr acl, int32_t flags)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
: path(path_), value(value_), created_path(path.size() + ZooKeeper::SEQUENTIAL_SUFFIX_SIZE)
|
|
|
|
|
{
|
|
|
|
|
zoo_create_op_init(data.get(), path.c_str(), value.c_str(), value.size(), acl, flags, created_path.data(), created_path.size());
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 07:01:00 +00:00
|
|
|
|
ACLPtr ZooKeeper::getDefaultACL()
|
2014-06-04 13:48:36 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
return default_acl;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 07:01:00 +00:00
|
|
|
|
void ZooKeeper::setDefaultACL(ACLPtr new_acl)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
default_acl = new_acl;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-04 13:51:40 +00:00
|
|
|
|
std::string ZooKeeper::error2string(int32_t code)
|
2014-06-04 13:48:36 +00:00
|
|
|
|
{
|
|
|
|
|
return zerror(code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ZooKeeper::state()
|
|
|
|
|
{
|
|
|
|
|
return zoo_state(impl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ZooKeeper::expired()
|
|
|
|
|
{
|
|
|
|
|
return state() == ZOO_EXPIRED_SESSION_STATE;
|
|
|
|
|
}
|
2014-07-03 17:24:17 +00:00
|
|
|
|
|
|
|
|
|
int64_t ZooKeeper::getClientID()
|
|
|
|
|
{
|
|
|
|
|
return zoo_client_id(impl)->client_id;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-16 20:05:26 +00:00
|
|
|
|
|
|
|
|
|
ZooKeeper::GetFuture ZooKeeper::asyncGet(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
GetFuture future {
|
|
|
|
|
[path] (int rc, const char * value, int value_len, const Stat * stat)
|
|
|
|
|
{
|
|
|
|
|
if (rc != ZOK)
|
|
|
|
|
throw KeeperException(rc, path);
|
|
|
|
|
|
|
|
|
|
return ValueAndStat{ {value, size_t(value_len)}, *stat };
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_aget(
|
|
|
|
|
impl, path.c_str(), 0,
|
|
|
|
|
[] (int rc, const char * value, int value_len, const Stat * stat, const void * data)
|
|
|
|
|
{
|
2014-12-14 04:38:11 +00:00
|
|
|
|
GetFuture::TaskPtr owned_task = std::move(const_cast<GetFuture::TaskPtr &>(*static_cast<const GetFuture::TaskPtr *>(data)));
|
|
|
|
|
(*owned_task)(rc, value, value_len, stat);
|
2014-10-16 20:05:26 +00:00
|
|
|
|
},
|
|
|
|
|
future.task.get());
|
|
|
|
|
|
2014-10-16 22:03:38 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperGet);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
2014-10-16 20:05:26 +00:00
|
|
|
|
if (code != ZOK)
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ZooKeeper::TryGetFuture ZooKeeper::asyncTryGet(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
TryGetFuture future {
|
|
|
|
|
[path] (int rc, const char * value, int value_len, const Stat * stat)
|
|
|
|
|
{
|
|
|
|
|
if (rc != ZOK && rc != ZNONODE)
|
|
|
|
|
throw KeeperException(rc, path);
|
|
|
|
|
|
2015-09-21 21:37:34 +00:00
|
|
|
|
return ValueAndStatAndExists{ {value, size_t(value_len)}, stat ? *stat : Stat(), rc != ZNONODE };
|
2014-10-16 20:05:26 +00:00
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_aget(
|
|
|
|
|
impl, path.c_str(), 0,
|
|
|
|
|
[] (int rc, const char * value, int value_len, const Stat * stat, const void * data)
|
|
|
|
|
{
|
2014-12-14 04:38:11 +00:00
|
|
|
|
TryGetFuture::TaskPtr owned_task = std::move(const_cast<TryGetFuture::TaskPtr &>(*static_cast<const TryGetFuture::TaskPtr *>(data)));
|
|
|
|
|
(*owned_task)(rc, value, value_len, stat);
|
2014-10-16 20:05:26 +00:00
|
|
|
|
},
|
|
|
|
|
future.task.get());
|
|
|
|
|
|
2014-10-16 22:03:38 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperGet);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
2014-10-16 20:05:26 +00:00
|
|
|
|
if (code != ZOK)
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ZooKeeper::ExistsFuture ZooKeeper::asyncExists(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
ExistsFuture future {
|
|
|
|
|
[path] (int rc, const Stat * stat)
|
|
|
|
|
{
|
|
|
|
|
if (rc != ZOK && rc != ZNONODE)
|
|
|
|
|
throw KeeperException(rc, path);
|
|
|
|
|
|
2015-09-21 21:37:34 +00:00
|
|
|
|
return StatAndExists{ stat ? *stat : Stat(), rc != ZNONODE };
|
2014-10-16 20:05:26 +00:00
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_aexists(
|
|
|
|
|
impl, path.c_str(), 0,
|
|
|
|
|
[] (int rc, const Stat * stat, const void * data)
|
|
|
|
|
{
|
2014-12-14 04:38:11 +00:00
|
|
|
|
ExistsFuture::TaskPtr owned_task = std::move(const_cast<ExistsFuture::TaskPtr &>(*static_cast<const ExistsFuture::TaskPtr *>(data)));
|
|
|
|
|
(*owned_task)(rc, stat);
|
2014-10-16 20:05:26 +00:00
|
|
|
|
},
|
|
|
|
|
future.task.get());
|
|
|
|
|
|
2014-10-16 22:03:38 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperExists);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
2014-10-16 20:05:26 +00:00
|
|
|
|
if (code != ZOK)
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ZooKeeper::GetChildrenFuture ZooKeeper::asyncGetChildren(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
GetChildrenFuture future {
|
|
|
|
|
[path] (int rc, const String_vector * strings)
|
|
|
|
|
{
|
|
|
|
|
if (rc != ZOK)
|
|
|
|
|
throw KeeperException(rc, path);
|
|
|
|
|
|
|
|
|
|
Strings res;
|
|
|
|
|
res.resize(strings->count);
|
|
|
|
|
for (int i = 0; i < strings->count; ++i)
|
|
|
|
|
res[i] = std::string(strings->data[i]);
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_aget_children(
|
|
|
|
|
impl, path.c_str(), 0,
|
|
|
|
|
[] (int rc, const String_vector * strings, const void * data)
|
|
|
|
|
{
|
2014-12-14 04:38:11 +00:00
|
|
|
|
GetChildrenFuture::TaskPtr owned_task =
|
|
|
|
|
std::move(const_cast<GetChildrenFuture::TaskPtr &>(*static_cast<const GetChildrenFuture::TaskPtr *>(data)));
|
|
|
|
|
(*owned_task)(rc, strings);
|
2014-10-16 20:05:26 +00:00
|
|
|
|
},
|
|
|
|
|
future.task.get());
|
|
|
|
|
|
2014-10-16 22:03:38 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperGetChildren);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
2014-10-16 20:05:26 +00:00
|
|
|
|
if (code != ZOK)
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-23 20:51:01 +00:00
|
|
|
|
ZooKeeper::RemoveFuture ZooKeeper::asyncRemove(const std::string & path)
|
|
|
|
|
{
|
|
|
|
|
RemoveFuture future {
|
|
|
|
|
[path] (int rc)
|
|
|
|
|
{
|
|
|
|
|
if (rc != ZOK)
|
|
|
|
|
throw KeeperException(rc, path);
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
int32_t code = zoo_adelete(
|
|
|
|
|
impl, path.c_str(), -1,
|
|
|
|
|
[] (int rc, const void * data)
|
|
|
|
|
{
|
|
|
|
|
RemoveFuture::TaskPtr owned_task =
|
|
|
|
|
std::move(const_cast<RemoveFuture::TaskPtr &>(*static_cast<const RemoveFuture::TaskPtr *>(data)));
|
|
|
|
|
(*owned_task)(rc);
|
|
|
|
|
},
|
|
|
|
|
future.task.get());
|
|
|
|
|
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperRemove);
|
|
|
|
|
ProfileEvents::increment(ProfileEvents::ZooKeeperTransactions);
|
|
|
|
|
|
|
|
|
|
if (code != ZOK)
|
|
|
|
|
throw KeeperException(code, path);
|
|
|
|
|
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-07 17:57:53 +00:00
|
|
|
|
}
|