mirror of https://gitee.com/bigwinds/arangodb
1953 lines
58 KiB
C++
1953 lines
58 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Jan Steemann
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
#include "Cluster/AgencyComm.h"
|
|
#include "Basics/JsonHelper.h"
|
|
#include "Basics/ReadLocker.h"
|
|
#include "Basics/StringUtils.h"
|
|
#include "Basics/StringBuffer.h"
|
|
#include "Basics/VelocyPackHelper.h"
|
|
#include "Basics/WriteLocker.h"
|
|
#include "Basics/json.h"
|
|
#include "Basics/Logger.h"
|
|
#include "Basics/random.h"
|
|
#include "Cluster/ServerState.h"
|
|
#include "Rest/Endpoint.h"
|
|
#include "Rest/HttpRequest.h"
|
|
#include "SimpleHttpClient/GeneralClientConnection.h"
|
|
#include "SimpleHttpClient/SimpleHttpClient.h"
|
|
#include <velocypack/Iterator.h>
|
|
#include "SimpleHttpClient/SimpleHttpResult.h"
|
|
|
|
#include <velocypack/Dumper.h>
|
|
#include <velocypack/Sink.h>
|
|
#include <velocypack/Iterator.h>
|
|
#include <velocypack/velocypack-aliases.h>
|
|
|
|
using namespace arangodb;
|
|
|
|
void addEmptyVPackObject(std::string const& name, VPackBuilder &builder) {
|
|
builder.add(VPackValue(name));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates an agency endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyEndpoint::AgencyEndpoint(
|
|
arangodb::rest::Endpoint* endpoint,
|
|
arangodb::httpclient::GeneralClientConnection* connection)
|
|
: _endpoint(endpoint), _connection(connection), _busy(false) {}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an agency endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyEndpoint::~AgencyEndpoint() {
|
|
delete _connection;
|
|
delete _endpoint;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief constructs a communication result
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult::AgencyCommResult()
|
|
: _location(),
|
|
_message(),
|
|
_body(),
|
|
_values(),
|
|
_index(0),
|
|
_statusCode(0),
|
|
_connected(false) {}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys a communication result
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult::~AgencyCommResult() {
|
|
// All elements free themselves
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the connected flag from the result
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyCommResult::connected() const { return _connected; }
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the http code from the result
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int AgencyCommResult::httpCode() const { return _statusCode; }
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the error code from the result
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
int AgencyCommResult::errorCode() const {
|
|
try {
|
|
std::shared_ptr<VPackBuilder> bodyBuilder =
|
|
VPackParser::fromJson(_body.c_str());
|
|
VPackSlice body = bodyBuilder->slice();
|
|
if (!body.isObject()) {
|
|
return 0;
|
|
}
|
|
// get "errorCode" attribute (0 if not exist)
|
|
return arangodb::basics::VelocyPackHelper::getNumericValue<int>(
|
|
body, "errorCode", 0);
|
|
} catch (VPackException const&) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the error message from the result
|
|
/// if there is no error, an empty string will be returned
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyCommResult::errorMessage() const {
|
|
if (!_message.empty()) {
|
|
// return stored message first if set
|
|
return _message;
|
|
}
|
|
|
|
if (!_connected) {
|
|
return std::string("unable to connect to agency");
|
|
}
|
|
|
|
try {
|
|
std::shared_ptr<VPackBuilder> bodyBuilder =
|
|
VPackParser::fromJson(_body.c_str());
|
|
VPackSlice body = bodyBuilder->slice();
|
|
if (!body.isObject()) {
|
|
return "";
|
|
}
|
|
// get "message" attribute ("" if not exist)
|
|
return arangodb::basics::VelocyPackHelper::getStringValue(body, "message",
|
|
"");
|
|
} catch (VPackException const&) {
|
|
return std::string("Out of memory");
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief extract the error details from the result
|
|
/// if there is no error, an empty string will be returned
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyCommResult::errorDetails() const {
|
|
std::string const errorMessage = this->errorMessage();
|
|
|
|
if (errorMessage.empty()) {
|
|
return _message;
|
|
}
|
|
|
|
return _message + " (" + errorMessage + ")";
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief flush the internal result buffer
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyCommResult::clear() {
|
|
// clear existing values. They free themselves
|
|
_values.clear();
|
|
|
|
_location = "";
|
|
_message = "";
|
|
_body = "";
|
|
_index = 0;
|
|
_statusCode = 0;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief recursively flatten the JSON response into a map
|
|
///
|
|
/// stripKeyPrefix is decoded, as is the _globalPrefix
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyCommResult::parseVelocyPackNode(VPackSlice const& node,
|
|
std::string const& stripKeyPrefix,
|
|
bool withDirs) {
|
|
if (!node.isObject()) {
|
|
return true;
|
|
}
|
|
|
|
// get "key" attribute
|
|
VPackSlice const key = node.get("key");
|
|
|
|
if (!key.isString()) {
|
|
return false;
|
|
}
|
|
|
|
std::string keydecoded = AgencyComm::decodeKey(key.copyString());
|
|
|
|
// make sure we don't strip more bytes than the key is long
|
|
size_t const offset =
|
|
AgencyComm::_globalPrefix.size() + stripKeyPrefix.size();
|
|
size_t const length = keydecoded.size();
|
|
|
|
std::string prefix;
|
|
if (offset >= length) {
|
|
prefix = "";
|
|
} else {
|
|
prefix = keydecoded.substr(offset);
|
|
}
|
|
|
|
// get "dir" attribute
|
|
bool isDir =
|
|
arangodb::basics::VelocyPackHelper::getBooleanValue(node, "dir", false);
|
|
|
|
if (isDir) {
|
|
if (withDirs) {
|
|
AgencyCommResultEntry entry;
|
|
|
|
entry._index = 0;
|
|
entry._vpack = std::make_shared<VPackBuilder>();
|
|
entry._isDir = true;
|
|
_values.emplace(prefix, entry);
|
|
}
|
|
|
|
// is a directory, so there may be a "nodes" attribute
|
|
if (!node.hasKey("nodes")) {
|
|
// if directory is empty...
|
|
return true;
|
|
}
|
|
VPackSlice const nodes = node.get("nodes");
|
|
|
|
if (!nodes.isArray()) {
|
|
// if directory is empty...
|
|
return true;
|
|
}
|
|
|
|
for (auto const& subNode : VPackArrayIterator(nodes)) {
|
|
if (!parseVelocyPackNode(subNode, stripKeyPrefix, withDirs)) {
|
|
return false;
|
|
}
|
|
}
|
|
} else {
|
|
// not a directory
|
|
|
|
// get "value" attribute
|
|
VPackSlice const value = node.get("value");
|
|
|
|
if (value.isString()) {
|
|
if (!prefix.empty()) {
|
|
AgencyCommResultEntry entry;
|
|
|
|
// get "modifiedIndex"
|
|
entry._index = arangodb::basics::VelocyPackHelper::stringUInt64(
|
|
node.get("modifiedIndex"));
|
|
std::string tmp = value.copyString();
|
|
entry._vpack = VPackParser::fromJson(tmp);
|
|
entry._isDir = false;
|
|
|
|
_values.emplace(prefix, entry);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// parse an agency result
|
|
/// note that stripKeyPrefix is a decoded, normal key!
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyCommResult::parse(std::string const& stripKeyPrefix, bool withDirs) {
|
|
std::shared_ptr<VPackBuilder> parsedBody;
|
|
try {
|
|
parsedBody = VPackParser::fromJson(_body.c_str());
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
|
|
VPackSlice slice = parsedBody->slice();
|
|
|
|
if (!slice.isObject()) {
|
|
return false;
|
|
}
|
|
|
|
// get "node" attribute
|
|
VPackSlice const node = slice.get("node");
|
|
|
|
bool const result = parseVelocyPackNode(node, stripKeyPrefix, withDirs);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief the static global URL prefix
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string const AgencyComm::AGENCY_URL_PREFIX = "v2/keys";
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief global (variable) prefix used for endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::_globalPrefix = "";
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief lock for the global endpoints
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
arangodb::basics::ReadWriteLock AgencyComm::_globalLock;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief list of global endpoints
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::list<AgencyEndpoint*> AgencyComm::_globalEndpoints;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief global connection options
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyConnectionOptions AgencyComm::_globalConnectionOptions = {
|
|
15.0, // connectTimeout
|
|
120.0, // requestTimeout
|
|
120.0, // lockTimeout
|
|
10 // numRetries
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief constructs an agency comm locker
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommLocker::AgencyCommLocker(std::string const& key,
|
|
std::string const& type, double ttl)
|
|
: _key(key), _type(type), _version(0), _isLocked(false) {
|
|
AgencyComm comm;
|
|
|
|
_vpack = std::make_shared<VPackBuilder>();
|
|
try {
|
|
_vpack->add(VPackValue(type));
|
|
} catch (...) {
|
|
return;
|
|
}
|
|
|
|
if (comm.lock(key, ttl, 0.0, _vpack->slice())) {
|
|
fetchVersion(comm);
|
|
_isLocked = true;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an agency comm locker
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommLocker::~AgencyCommLocker() { unlock(); }
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief unlocks the lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyCommLocker::unlock() {
|
|
if (_isLocked) {
|
|
AgencyComm comm;
|
|
|
|
updateVersion(comm);
|
|
if (comm.unlock(_key, _vpack->slice(), 0.0)) {
|
|
_isLocked = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief fetch a lock version from the agency
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyCommLocker::fetchVersion(AgencyComm& comm) {
|
|
if (_type != "WRITE") {
|
|
return true;
|
|
}
|
|
|
|
AgencyCommResult result = comm.getValues(_key + "/Version", false);
|
|
if (!result.successful()) {
|
|
if (result.httpCode() != (int)arangodb::rest::HttpResponse::NOT_FOUND) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
result.parse("", false);
|
|
std::map<std::string, AgencyCommResultEntry>::const_iterator it =
|
|
result._values.begin();
|
|
|
|
if (it == result._values.end()) {
|
|
return false;
|
|
}
|
|
|
|
VPackSlice const versionSlice = it->second._vpack->slice();
|
|
_version = arangodb::basics::VelocyPackHelper::stringUInt64(versionSlice);
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief update a lock version in the agency
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyCommLocker::updateVersion(AgencyComm& comm) {
|
|
if (_type != "WRITE") {
|
|
return true;
|
|
}
|
|
|
|
if (_version == 0) {
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue(1));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
|
|
// no Version key found, now set it
|
|
AgencyCommResult result =
|
|
comm.casValue(_key + "/Version", builder.slice(), false, 0.0, 0.0);
|
|
|
|
return result.successful();
|
|
} else {
|
|
// Version key found, now update it
|
|
VPackBuilder oldBuilder;
|
|
try {
|
|
oldBuilder.add(VPackValue(_version));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
VPackBuilder newBuilder;
|
|
try {
|
|
newBuilder.add(VPackValue(_version + 1));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
AgencyCommResult result = comm.casValue(
|
|
_key + "/Version", oldBuilder.slice(), newBuilder.slice(), 0.0, 0.0);
|
|
|
|
return result.successful();
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief constructs an agency communication object
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyComm::AgencyComm(bool addNewEndpoints)
|
|
: _addNewEndpoints(addNewEndpoints) {}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief destroys an agency communication object
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyComm::~AgencyComm() {}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief cleans up all connections
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyComm::cleanup() {
|
|
AgencyComm::disconnect();
|
|
|
|
while (true) {
|
|
{
|
|
bool busyFound = false;
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
|
|
std::list<AgencyEndpoint*>::iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
if (agencyEndpoint->_busy) {
|
|
busyFound = true;
|
|
++it;
|
|
} else {
|
|
it = _globalEndpoints.erase(it);
|
|
delete agencyEndpoint;
|
|
}
|
|
}
|
|
if (!busyFound) {
|
|
break;
|
|
}
|
|
}
|
|
usleep(100000);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief tries to establish a communication channel
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::tryConnect() {
|
|
{
|
|
std::string endpointsStr { getUniqueEndpointsString() };
|
|
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
if (_globalEndpoints.size() == 0) {
|
|
return false;
|
|
}
|
|
|
|
// mop: not sure if a timeout makes sense here
|
|
while (true) {
|
|
LOG(INFO) << "Trying to find an active agency. Checking " << endpointsStr.c_str();
|
|
std::list<AgencyEndpoint*>::iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
TRI_ASSERT(agencyEndpoint->_endpoint != nullptr);
|
|
TRI_ASSERT(agencyEndpoint->_connection != nullptr);
|
|
|
|
if (agencyEndpoint->_endpoint->isConnected()) {
|
|
return true;
|
|
}
|
|
|
|
agencyEndpoint->_endpoint->connect(
|
|
_globalConnectionOptions._connectTimeout,
|
|
_globalConnectionOptions._requestTimeout);
|
|
|
|
if (agencyEndpoint->_endpoint->isConnected()) {
|
|
return true;
|
|
}
|
|
|
|
++it;
|
|
}
|
|
sleep(1);
|
|
}
|
|
}
|
|
|
|
// unable to connect to any endpoint
|
|
return false;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief will try to initialize a new agency
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
bool AgencyComm::initialize() {
|
|
if (!AgencyComm::tryConnect()) {
|
|
return false;
|
|
}
|
|
AgencyComm comm;
|
|
return comm.ensureStructureInitialized();
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief will try to initialize a new agency
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
bool AgencyComm::tryInitializeStructure() {
|
|
VPackBuilder trueBuilder;
|
|
trueBuilder.add(VPackValue(true));
|
|
|
|
VPackSlice trueSlice = trueBuilder.slice();
|
|
|
|
AgencyCommResult result;
|
|
result = casValue("Init", trueSlice, false, 120.0, 0.0);
|
|
if (!result.successful()) {
|
|
// mop: we couldn"t aquire a lock. so somebody else is already initializing
|
|
return false;
|
|
}
|
|
|
|
VPackBuilder builder;
|
|
try {
|
|
VPackObjectBuilder b(&builder);
|
|
builder.add(VPackValue("Sync"));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
builder.add("LatestID", VPackValue("\"1\""));
|
|
addEmptyVPackObject("Problems", builder);
|
|
builder.add("UserVersion", VPackValue("\"1\""));
|
|
addEmptyVPackObject("ServerStates", builder);
|
|
builder.add("HeartbeatIntervalMs", VPackValue("1000"));
|
|
addEmptyVPackObject("Commands", builder);
|
|
}
|
|
builder.add(VPackValue("Current"));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
builder.add(VPackValue("Collections"));
|
|
{
|
|
VPackObjectBuilder d(&builder);
|
|
addEmptyVPackObject("_system", builder);
|
|
}
|
|
builder.add("Version", VPackValue("\"1\""));
|
|
addEmptyVPackObject("ShardsCopied", builder);
|
|
addEmptyVPackObject("NewServers", builder);
|
|
addEmptyVPackObject("Coordinators", builder);
|
|
builder.add("Lock", VPackValue("\"UNLOCKED\""));
|
|
addEmptyVPackObject("DBServers", builder);
|
|
builder.add(VPackValue("ServersRegistered"));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
builder.add("Version", VPackValue("\"1\""));
|
|
}
|
|
addEmptyVPackObject("Databases", builder);
|
|
}
|
|
builder.add(VPackValue("Plan"));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
addEmptyVPackObject("Coordinators", builder);
|
|
builder.add(VPackValue("Databases"));
|
|
{
|
|
VPackObjectBuilder d(&builder);
|
|
builder.add("_system", VPackValue("{\"name\":\"_system\", \"id\":\"1\"}"));
|
|
}
|
|
builder.add("Lock", VPackValue("\"UNLOCKED\""));
|
|
addEmptyVPackObject("DBServers", builder);
|
|
builder.add("Version", VPackValue("\"1\""));
|
|
builder.add(VPackValue("Collections"));
|
|
{
|
|
VPackObjectBuilder d(&builder);
|
|
addEmptyVPackObject("_system", builder);
|
|
}
|
|
}
|
|
addEmptyVPackObject("Launchers", builder);
|
|
builder.add(VPackValue("Target"));
|
|
{
|
|
VPackObjectBuilder c(&builder);
|
|
addEmptyVPackObject("Coordinators", builder);
|
|
addEmptyVPackObject("MapIDToEndpoint", builder);
|
|
builder.add(VPackValue("Collections"));
|
|
{
|
|
VPackObjectBuilder d(&builder);
|
|
addEmptyVPackObject("_system", builder);
|
|
}
|
|
builder.add("Version", VPackValue("\"1\""));
|
|
addEmptyVPackObject("MapLocalToID", builder);
|
|
builder.add(VPackValue("Databases"));
|
|
{
|
|
VPackObjectBuilder d(&builder);
|
|
builder.add("_system", VPackValue("{\"name\":\"_system\", \"id\":\"1\"}"));
|
|
}
|
|
addEmptyVPackObject("DBServers", builder);
|
|
builder.add("Lock", VPackValue("\"UNLOCKED\""));
|
|
}
|
|
} catch (...) {
|
|
LOG(WARN) << "Couldn't create initializing structure";
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
VPackSlice s = builder.slice();
|
|
|
|
VPackOptions dumperOptions;
|
|
// now dump the Slice into an std::string
|
|
std::string buffer;
|
|
VPackStringSink sink(&buffer);
|
|
VPackDumper::dump(s, &sink, &dumperOptions);
|
|
|
|
LOG(DEBUG) << "Initializing agency with " << buffer;
|
|
|
|
if (!initFromVPackSlice(std::string(""), s)) {
|
|
LOG(FATAL) << "Couldn't initialize agency";
|
|
FATAL_ERROR_EXIT();
|
|
} else {
|
|
setValue("InitDone", trueSlice, 0.0);
|
|
return true;
|
|
}
|
|
} catch (std::exception const& e) {
|
|
LOG(FATAL) << "Fatal error initializing agency " << e.what();
|
|
FATAL_ERROR_EXIT();
|
|
} catch (...) {
|
|
LOG(FATAL) << "Fatal error initializing agency";
|
|
FATAL_ERROR_EXIT();
|
|
}
|
|
}
|
|
|
|
bool AgencyComm::initFromVPackSlice(std::string key, VPackSlice s) {
|
|
bool ret = true;
|
|
AgencyCommResult result;
|
|
if (s.isObject()) {
|
|
if (!key.empty()) {
|
|
result = createDirectory(key);
|
|
if (!result.successful()) {
|
|
// mop: forbidden will be thrown if directory already exists
|
|
// need ability to recover in a case where the agency was half
|
|
// initialized
|
|
if (result.httpCode() != arangodb::rest::HttpResponse::FORBIDDEN) {
|
|
ret = false;
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (auto const& it : VPackObjectIterator(s)) {
|
|
std::string subKey("");
|
|
if (!key.empty()) {
|
|
subKey += key + "/";
|
|
}
|
|
subKey += it.key.copyString();
|
|
|
|
ret = ret && initFromVPackSlice(subKey, it.value);
|
|
}
|
|
} else {
|
|
result = setValue(key, s.copyString(), 0.0);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
/// @brief checks if the agency is initialized
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
bool AgencyComm::hasInitializedStructure() {
|
|
AgencyCommResult result = getValues("InitDone", false);
|
|
|
|
if (!result.successful()) {
|
|
return false;
|
|
}
|
|
// mop: hmmm ... don't check value...we only save true there right now...
|
|
// should be sufficient to check for key presence
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief will initialize agency if it is freshly started
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
bool AgencyComm::ensureStructureInitialized() {
|
|
LOG(TRACE) << ("Checking if agency is initialized");
|
|
while (!hasInitializedStructure()) {
|
|
LOG(TRACE) << ("Agency is fresh. Needs initial structure.");
|
|
// mop: we initialized it .. great success
|
|
if (tryInitializeStructure()) {
|
|
LOG(TRACE) << ("Done initializing");
|
|
return true;
|
|
} else {
|
|
LOG(TRACE) << ("Somebody else is already initializing");
|
|
// mop: somebody else is initializing it right now...wait a bit and retry
|
|
sleep(1);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief disconnects all communication channels
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyComm::disconnect() {
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
|
|
std::list<AgencyEndpoint*>::iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
TRI_ASSERT(agencyEndpoint->_connection != nullptr);
|
|
TRI_ASSERT(agencyEndpoint->_endpoint != nullptr);
|
|
|
|
agencyEndpoint->_connection->disconnect();
|
|
agencyEndpoint->_endpoint->disconnect();
|
|
|
|
++it;
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief adds an endpoint to the endpoints list
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::addEndpoint(std::string const& endpointSpecification,
|
|
bool toFront) {
|
|
LOG(TRACE) << "adding global agency-endpoint '" << endpointSpecification.c_str() << "'";
|
|
|
|
{
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
|
|
// check if we already have got this endpoint
|
|
std::list<AgencyEndpoint*>::const_iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint const* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
if (agencyEndpoint->_endpoint->getSpecification() ==
|
|
endpointSpecification) {
|
|
// a duplicate. just ignore
|
|
return false;
|
|
}
|
|
|
|
++it;
|
|
}
|
|
|
|
// didn't find the endpoint in our list of endpoints, so now create a new
|
|
// one
|
|
for (size_t i = 0; i < NumConnections; ++i) {
|
|
AgencyEndpoint* agencyEndpoint =
|
|
createAgencyEndpoint(endpointSpecification);
|
|
|
|
if (agencyEndpoint == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (toFront) {
|
|
AgencyComm::_globalEndpoints.push_front(agencyEndpoint);
|
|
} else {
|
|
AgencyComm::_globalEndpoints.push_back(agencyEndpoint);
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief checks if an endpoint is present
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::hasEndpoint(std::string const& endpointSpecification) {
|
|
{
|
|
READ_LOCKER(readLocker, AgencyComm::_globalLock);
|
|
|
|
// check if we have got this endpoint
|
|
std::list<AgencyEndpoint*>::iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint const* agencyEndpoint = (*it);
|
|
|
|
if (agencyEndpoint->_endpoint->getSpecification() ==
|
|
endpointSpecification) {
|
|
return true;
|
|
}
|
|
|
|
++it;
|
|
}
|
|
}
|
|
|
|
// not found
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief get a stringified version of the endpoints
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::vector<std::string> AgencyComm::getEndpoints() {
|
|
std::vector<std::string> result;
|
|
|
|
{
|
|
// iterate over the list of endpoints
|
|
READ_LOCKER(readLocker, AgencyComm::_globalLock);
|
|
|
|
std::list<AgencyEndpoint*>::const_iterator it =
|
|
AgencyComm::_globalEndpoints.begin();
|
|
|
|
while (it != AgencyComm::_globalEndpoints.end()) {
|
|
AgencyEndpoint const* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
result.push_back(agencyEndpoint->_endpoint->getSpecification());
|
|
++it;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief get a stringified version of all endpoints (unique)
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::getUniqueEndpointsString() {
|
|
std::string result;
|
|
|
|
{
|
|
// iterate over the list of endpoints
|
|
READ_LOCKER(readLocker, AgencyComm::_globalLock);
|
|
|
|
std::list<AgencyEndpoint*> uniqueEndpoints{
|
|
AgencyComm::_globalEndpoints.begin(),
|
|
AgencyComm::_globalEndpoints.end()
|
|
};
|
|
|
|
uniqueEndpoints.unique([] (AgencyEndpoint *a, AgencyEndpoint *b) {
|
|
return a->_endpoint->getSpecification() == b->_endpoint->getSpecification();
|
|
});
|
|
|
|
std::list<AgencyEndpoint*>::const_iterator it =
|
|
uniqueEndpoints.begin();
|
|
|
|
while (it != uniqueEndpoints.end()) {
|
|
if (!result.empty()) {
|
|
result += ", ";
|
|
}
|
|
|
|
AgencyEndpoint const* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
result.append(agencyEndpoint->_endpoint->getSpecification());
|
|
++it;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief get a stringified version of the endpoints
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::getEndpointsString() {
|
|
std::string result;
|
|
|
|
{
|
|
// iterate over the list of endpoints
|
|
READ_LOCKER(readLocker, AgencyComm::_globalLock);
|
|
|
|
std::list<AgencyEndpoint*>::const_iterator it =
|
|
AgencyComm::_globalEndpoints.begin();
|
|
|
|
while (it != AgencyComm::_globalEndpoints.end()) {
|
|
if (!result.empty()) {
|
|
result += ", ";
|
|
}
|
|
|
|
AgencyEndpoint const* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
result.append(agencyEndpoint->_endpoint->getSpecification());
|
|
++it;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sets the global prefix for all operations
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::setPrefix(std::string const& prefix) {
|
|
// agency prefix must not be changed
|
|
_globalPrefix = prefix;
|
|
|
|
// make sure prefix starts with a forward slash
|
|
if (prefix[0] != '/') {
|
|
_globalPrefix = '/' + _globalPrefix;
|
|
}
|
|
|
|
// make sure prefix ends with a forward slash
|
|
if (_globalPrefix.size() > 0) {
|
|
if (_globalPrefix[_globalPrefix.size() - 1] != '/') {
|
|
_globalPrefix += '/';
|
|
}
|
|
}
|
|
|
|
LOG(TRACE) << "setting agency-prefix to '" << prefix.c_str() << "'";
|
|
return true;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief gets the global prefix for all operations
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::prefix() { return _globalPrefix; }
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief generate a timestamp
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::generateStamp() {
|
|
time_t tt = time(0);
|
|
struct tm tb;
|
|
char buffer[21];
|
|
|
|
TRI_gmtime(tt, &tb);
|
|
|
|
size_t len = ::strftime(buffer, sizeof(buffer), "%Y-%m-%dT%H:%M:%SZ", &tb);
|
|
|
|
return std::string(buffer, len);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a new agency endpoint
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyEndpoint* AgencyComm::createAgencyEndpoint(
|
|
std::string const& endpointSpecification) {
|
|
std::unique_ptr<arangodb::rest::Endpoint> endpoint(
|
|
arangodb::rest::Endpoint::clientFactory(endpointSpecification));
|
|
|
|
if (endpoint == nullptr) {
|
|
// could not create endpoint...
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<arangodb::httpclient::GeneralClientConnection> connection(
|
|
arangodb::httpclient::GeneralClientConnection::factory(
|
|
endpoint.get(), _globalConnectionOptions._requestTimeout,
|
|
_globalConnectionOptions._connectTimeout,
|
|
_globalConnectionOptions._connectRetries, 0));
|
|
|
|
if (connection == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
auto ep = new AgencyEndpoint(endpoint.get(), connection.get());
|
|
endpoint.release();
|
|
connection.release();
|
|
|
|
return ep;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sends the current server state to the agency
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::sendServerState(double ttl) {
|
|
// construct JSON value { "status": "...", "time": "..." }
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.openObject();
|
|
std::string const status =
|
|
ServerState::stateToString(ServerState::instance()->getState());
|
|
builder.add("status", VPackValue(status));
|
|
std::string const stamp = AgencyComm::generateStamp();
|
|
builder.add("time", VPackValue(stamp));
|
|
builder.close();
|
|
} catch (...) {
|
|
return AgencyCommResult();
|
|
}
|
|
|
|
AgencyCommResult result(
|
|
setValue("Sync/ServerStates/" + ServerState::instance()->getId(),
|
|
builder.slice(), ttl));
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief gets the backend version
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::getVersion() {
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(arangodb::rest::HttpRequest::HTTP_REQUEST_GET,
|
|
_globalConnectionOptions._requestTimeout, result, "version",
|
|
"", false);
|
|
|
|
if (result.successful()) {
|
|
return result._body;
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief update a version number in the agency
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::increaseVersion(std::string const& key) {
|
|
// fetch existing version number
|
|
AgencyCommResult result = getValues(key, false);
|
|
|
|
if (!result.successful()) {
|
|
if (result.httpCode() != (int)arangodb::rest::HttpResponse::NOT_FOUND) {
|
|
return false;
|
|
}
|
|
|
|
// no version key found, now set it
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue(1));
|
|
} catch (...) {
|
|
LOG(ERR) << "Couldn't add value to builder";
|
|
return false;
|
|
}
|
|
|
|
result.clear();
|
|
result = casValue(key, builder.slice(), false, 0.0, 0.0);
|
|
|
|
return result.successful();
|
|
}
|
|
|
|
// found a version
|
|
result.parse("", false);
|
|
auto it = result._values.begin();
|
|
|
|
if (it == result._values.end()) {
|
|
return false;
|
|
}
|
|
|
|
VPackSlice const versionSlice = it->second._vpack->slice();
|
|
uint64_t version =
|
|
arangodb::basics::VelocyPackHelper::stringUInt64(versionSlice);
|
|
|
|
// version key found, now update it
|
|
VPackBuilder oldBuilder;
|
|
try {
|
|
if (versionSlice.isString()) {
|
|
oldBuilder.add(VPackValue(std::to_string(version)));
|
|
} else {
|
|
oldBuilder.add(VPackValue(version));
|
|
}
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
VPackBuilder newBuilder;
|
|
try {
|
|
newBuilder.add(VPackValue(version + 1));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
result.clear();
|
|
|
|
result = casValue(key, oldBuilder.slice(), newBuilder.slice(), 0.0, 0.0);
|
|
|
|
return result.successful();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief update a version number in the agency, retry until it works
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyComm::increaseVersionRepeated(std::string const& key) {
|
|
bool ok = false;
|
|
while (!ok) {
|
|
ok = increaseVersion(key);
|
|
if (ok) {
|
|
return;
|
|
}
|
|
uint32_t val = 300 + TRI_UInt32Random() % 400;
|
|
LOG(INFO) << "Could not increase " << key.c_str() << " in agency, retrying in " << val << "!";
|
|
usleep(val * 1000);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a directory in the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::createDirectory(std::string const& key) {
|
|
AgencyCommResult result;
|
|
|
|
std::string url;
|
|
if (key.empty()) {
|
|
url = buildUrl();
|
|
} else {
|
|
url = buildUrl(key);
|
|
}
|
|
url += "?dir=true";
|
|
sendWithFailover(arangodb::rest::HttpRequest::HTTP_REQUEST_PUT,
|
|
_globalConnectionOptions._requestTimeout, result,
|
|
url, "", false);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sets a value in the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
AgencyCommResult AgencyComm::setValue(std::string const& key,
|
|
std::string const& value,
|
|
double ttl) {
|
|
AgencyCommResult result;
|
|
sendWithFailover(
|
|
arangodb::rest::HttpRequest::HTTP_REQUEST_PUT,
|
|
_globalConnectionOptions._requestTimeout, result,
|
|
buildUrl(key) + ttlParam(ttl, true),
|
|
"value=" + arangodb::basics::StringUtils::urlEncode(value),
|
|
false);
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sets a value in the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::setValue(std::string const& key,
|
|
arangodb::velocypack::Slice const& json,
|
|
double ttl) {
|
|
return setValue(key, json.toJson(), ttl);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief checks if a key exists
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::exists(std::string const& key) {
|
|
std::string url(buildUrl(key));
|
|
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(arangodb::rest::HttpRequest::HTTP_REQUEST_GET,
|
|
_globalConnectionOptions._requestTimeout, result, url, "",
|
|
false);
|
|
|
|
return result.successful();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief gets one or multiple values from the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::getValues(std::string const& key, bool recursive) {
|
|
std::string url(buildUrl(key));
|
|
if (recursive) {
|
|
url += "?recursive=true";
|
|
}
|
|
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(arangodb::rest::HttpRequest::HTTP_REQUEST_GET,
|
|
_globalConnectionOptions._requestTimeout, result, url, "",
|
|
false);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief removes one or multiple values from the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::removeValues(std::string const& key,
|
|
bool recursive) {
|
|
std::string url;
|
|
|
|
if (key.empty() && recursive) {
|
|
// delete everything, recursive
|
|
url = buildUrl();
|
|
} else {
|
|
url = buildUrl(key);
|
|
}
|
|
|
|
if (recursive) {
|
|
url += "?recursive=true";
|
|
}
|
|
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(arangodb::rest::HttpRequest::HTTP_REQUEST_DELETE,
|
|
_globalConnectionOptions._requestTimeout, result, url, "",
|
|
false);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief compares and swaps a single value in the backend
|
|
/// the CAS condition is whether or not a previous value existed for the key
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::casValue(std::string const& key,
|
|
arangodb::velocypack::Slice const json,
|
|
bool prevExist, double ttl,
|
|
double timeout) {
|
|
AgencyCommResult result;
|
|
|
|
std::string url;
|
|
|
|
if (key.empty()) {
|
|
url = buildUrl();
|
|
} else {
|
|
url = buildUrl(key);
|
|
}
|
|
|
|
url += "?prevExist=" + (prevExist ? std::string("true")
|
|
: std::string("false"));
|
|
url += ttlParam(ttl, false);
|
|
|
|
sendWithFailover(
|
|
arangodb::rest::HttpRequest::HTTP_REQUEST_PUT,
|
|
timeout == 0.0 ? _globalConnectionOptions._requestTimeout : timeout,
|
|
result, url,
|
|
"value=" + arangodb::basics::StringUtils::urlEncode(json.toJson()),
|
|
false);
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief compares and swaps a single value in the backend
|
|
/// the CAS condition is whether or not the previous value for the key was
|
|
/// identical to `oldValue`
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::casValue(std::string const& key,
|
|
VPackSlice const& oldJson,
|
|
VPackSlice const& newJson, double ttl,
|
|
double timeout) {
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(
|
|
arangodb::rest::HttpRequest::HTTP_REQUEST_PUT,
|
|
timeout == 0.0 ? _globalConnectionOptions._requestTimeout : timeout,
|
|
result, buildUrl(key) + "?prevValue=" +
|
|
arangodb::basics::StringUtils::urlEncode(oldJson.toJson()) +
|
|
ttlParam(ttl, false),
|
|
"value=" + arangodb::basics::StringUtils::urlEncode(newJson.toJson()),
|
|
false);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief blocks on a change of a single value in the backend
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::watchValue(std::string const& key,
|
|
uint64_t waitIndex, double timeout,
|
|
bool recursive) {
|
|
std::string url(buildUrl(key) + "?wait=true");
|
|
|
|
if (waitIndex > 0) {
|
|
url += "&waitIndex=" + arangodb::basics::StringUtils::itoa(waitIndex);
|
|
}
|
|
|
|
if (recursive) {
|
|
url += "&recursive=true";
|
|
}
|
|
|
|
AgencyCommResult result;
|
|
|
|
sendWithFailover(
|
|
arangodb::rest::HttpRequest::HTTP_REQUEST_GET,
|
|
timeout == 0.0 ? _globalConnectionOptions._requestTimeout : timeout,
|
|
result, url, "", true);
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief acquire a read lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::lockRead(std::string const& key, double ttl, double timeout) {
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("READ"));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
return lock(key, ttl, timeout, builder.slice());
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief acquire a write lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::lockWrite(std::string const& key, double ttl, double timeout) {
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("WRITE"));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
return lock(key, ttl, timeout, builder.slice());
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief release a read lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::unlockRead(std::string const& key, double timeout) {
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("READ"));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
return unlock(key, builder.slice(), timeout);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief release a write lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::unlockWrite(std::string const& key, double timeout) {
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("WRITE"));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
return unlock(key, builder.slice(), timeout);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief get unique id
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyCommResult AgencyComm::uniqid(std::string const& key, uint64_t count,
|
|
double timeout) {
|
|
static int const maxTries = 10;
|
|
int tries = 0;
|
|
|
|
AgencyCommResult result;
|
|
|
|
while (tries++ < maxTries) {
|
|
result.clear();
|
|
result = getValues(key, false);
|
|
|
|
if (result.httpCode() == (int)arangodb::rest::HttpResponse::NOT_FOUND) {
|
|
try {
|
|
VPackBuilder builder;
|
|
builder.add(VPackValue(0));
|
|
|
|
// create the key on the fly
|
|
setValue(key, builder.slice(), 0.0);
|
|
tries--;
|
|
|
|
continue;
|
|
} catch (...) {
|
|
// Could not build local key. Try again
|
|
}
|
|
}
|
|
|
|
if (!result.successful()) {
|
|
return result;
|
|
}
|
|
|
|
result.parse("", false);
|
|
|
|
std::shared_ptr<VPackBuilder> oldBuilder;
|
|
|
|
std::map<std::string, AgencyCommResultEntry>::iterator it =
|
|
result._values.begin();
|
|
|
|
try {
|
|
if (it != result._values.end()) {
|
|
// steal the velocypack
|
|
oldBuilder.swap((*it).second._vpack);
|
|
} else {
|
|
oldBuilder->add(VPackValue(0));
|
|
}
|
|
} catch (...) {
|
|
return AgencyCommResult();
|
|
}
|
|
|
|
VPackSlice oldSlice = oldBuilder->slice();
|
|
uint64_t const oldValue =
|
|
arangodb::basics::VelocyPackHelper::stringUInt64(oldSlice) + count;
|
|
uint64_t const newValue = oldValue + count;
|
|
|
|
VPackBuilder newBuilder;
|
|
try {
|
|
newBuilder.add(VPackValue(newValue));
|
|
} catch (...) {
|
|
return AgencyCommResult();
|
|
}
|
|
|
|
result.clear();
|
|
result = casValue(key, oldSlice, newBuilder.slice(), 0.0, timeout);
|
|
|
|
if (result.successful()) {
|
|
result._index = oldValue + 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief creates a ttl query parameter
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::ttlParam(double ttl, bool isFirst) {
|
|
if ((int)ttl <= 0) {
|
|
return "";
|
|
}
|
|
|
|
return (isFirst ? "?ttl=" : "&ttl=") +
|
|
arangodb::basics::StringUtils::itoa((int)ttl);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief acquires a lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::lock(std::string const& key, double ttl, double timeout,
|
|
VPackSlice const& slice) {
|
|
if (ttl == 0.0) {
|
|
ttl = _globalConnectionOptions._lockTimeout;
|
|
}
|
|
|
|
if (timeout == 0.0) {
|
|
timeout = _globalConnectionOptions._lockTimeout;
|
|
}
|
|
|
|
unsigned long sleepTime = InitialSleepTime;
|
|
double const end = TRI_microtime() + timeout;
|
|
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("UNLOCKED"));
|
|
} catch (...) {
|
|
return false;
|
|
}
|
|
VPackSlice oldSlice = builder.slice();
|
|
|
|
while (true) {
|
|
AgencyCommResult result =
|
|
casValue(key + "/Lock", oldSlice, slice, ttl, timeout);
|
|
|
|
if (!result.successful() &&
|
|
result.httpCode() == (int)arangodb::rest::HttpResponse::NOT_FOUND) {
|
|
// key does not yet exist. create it now
|
|
result = casValue(key + "/Lock", slice, false, ttl, timeout);
|
|
}
|
|
|
|
if (result.successful()) {
|
|
return true;
|
|
}
|
|
|
|
usleep(sleepTime);
|
|
|
|
if (sleepTime < MaxSleepTime) {
|
|
sleepTime += InitialSleepTime;
|
|
}
|
|
|
|
if (TRI_microtime() >= end) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
TRI_ASSERT(false);
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief releases a lock
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::unlock(std::string const& key, VPackSlice const& slice,
|
|
double timeout) {
|
|
if (timeout == 0.0) {
|
|
timeout = _globalConnectionOptions._lockTimeout;
|
|
}
|
|
|
|
unsigned long sleepTime = InitialSleepTime;
|
|
double const end = TRI_microtime() + timeout;
|
|
|
|
VPackBuilder builder;
|
|
try {
|
|
builder.add(VPackValue("UNLOCKED"));
|
|
} catch (...) {
|
|
// Out of Memory
|
|
return false;
|
|
}
|
|
VPackSlice newSlice = builder.slice();
|
|
|
|
while (true) {
|
|
AgencyCommResult result =
|
|
casValue(key + "/Lock", slice, newSlice, 0.0, timeout);
|
|
|
|
if (result.successful()) {
|
|
return true;
|
|
}
|
|
|
|
usleep(sleepTime);
|
|
|
|
if (sleepTime < MaxSleepTime) {
|
|
sleepTime += InitialSleepTime;
|
|
}
|
|
|
|
if (TRI_microtime() >= end) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
TRI_ASSERT(false);
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief pop an endpoint from the queue
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
AgencyEndpoint* AgencyComm::popEndpoint(std::string const& endpoint) {
|
|
unsigned long sleepTime = InitialSleepTime;
|
|
|
|
while (1) {
|
|
{
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
|
|
size_t const numEndpoints TRI_UNUSED = _globalEndpoints.size();
|
|
std::list<AgencyEndpoint*>::iterator it = _globalEndpoints.begin();
|
|
|
|
while (it != _globalEndpoints.end()) {
|
|
AgencyEndpoint* agencyEndpoint = (*it);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
if (!endpoint.empty() &&
|
|
agencyEndpoint->_endpoint->getSpecification() != endpoint) {
|
|
// we're looking for a different endpoint
|
|
++it;
|
|
continue;
|
|
}
|
|
|
|
if (!agencyEndpoint->_busy) {
|
|
agencyEndpoint->_busy = true;
|
|
|
|
if (AgencyComm::_globalEndpoints.size() > 1) {
|
|
// remove from list
|
|
AgencyComm::_globalEndpoints.remove(agencyEndpoint);
|
|
// and re-insert at end
|
|
AgencyComm::_globalEndpoints.push_back(agencyEndpoint);
|
|
}
|
|
|
|
TRI_ASSERT(_globalEndpoints.size() == numEndpoints);
|
|
|
|
return agencyEndpoint;
|
|
}
|
|
|
|
++it;
|
|
}
|
|
}
|
|
|
|
// if we got here, we ran out of non-busy connections...
|
|
|
|
usleep(sleepTime);
|
|
|
|
if (sleepTime < MaxSleepTime) {
|
|
sleepTime += InitialSleepTime;
|
|
}
|
|
}
|
|
|
|
// just to shut up compilers
|
|
TRI_ASSERT(false);
|
|
return nullptr;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief reinsert an endpoint into the queue
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
void AgencyComm::requeueEndpoint(AgencyEndpoint* agencyEndpoint,
|
|
bool wasWorking) {
|
|
WRITE_LOCKER(writeLocker, AgencyComm::_globalLock);
|
|
size_t const numEndpoints TRI_UNUSED = _globalEndpoints.size();
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
TRI_ASSERT(agencyEndpoint->_busy);
|
|
|
|
// set to non-busy
|
|
agencyEndpoint->_busy = false;
|
|
|
|
if (AgencyComm::_globalEndpoints.size() > 1) {
|
|
if (wasWorking) {
|
|
// remove from list
|
|
AgencyComm::_globalEndpoints.remove(agencyEndpoint);
|
|
|
|
// and re-insert at front
|
|
AgencyComm::_globalEndpoints.push_front(agencyEndpoint);
|
|
}
|
|
}
|
|
|
|
TRI_ASSERT(_globalEndpoints.size() == numEndpoints);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief construct a URL
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::buildUrl(std::string const& relativePart) const {
|
|
return AgencyComm::AGENCY_URL_PREFIX +
|
|
encodeKey(_globalPrefix + relativePart);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief construct a URL, without a key
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::buildUrl() const {
|
|
return AgencyComm::AGENCY_URL_PREFIX +
|
|
encodeKey(_globalPrefix.substr(0, _globalPrefix.size() - 1));
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sends an HTTP request to the agency, handling failover
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::sendWithFailover(
|
|
arangodb::rest::HttpRequest::HttpRequestType method, double const timeout,
|
|
AgencyCommResult& result, std::string const& url, std::string const& body,
|
|
bool isWatch) {
|
|
size_t numEndpoints;
|
|
|
|
{
|
|
READ_LOCKER(readLocker, AgencyComm::_globalLock);
|
|
numEndpoints = AgencyComm::_globalEndpoints.size();
|
|
|
|
if (numEndpoints == 0) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
TRI_ASSERT(numEndpoints > 0);
|
|
|
|
size_t tries = 0;
|
|
std::string realUrl = url;
|
|
std::string forceEndpoint;
|
|
|
|
while (tries++ < numEndpoints) {
|
|
AgencyEndpoint* agencyEndpoint = popEndpoint(forceEndpoint);
|
|
|
|
TRI_ASSERT(agencyEndpoint != nullptr);
|
|
|
|
try {
|
|
send(agencyEndpoint->_connection, method, timeout, result, realUrl, body);
|
|
} catch (...) {
|
|
result._connected = false;
|
|
result._statusCode = 0;
|
|
result._message = "could not send request to agency";
|
|
|
|
agencyEndpoint->_connection->disconnect();
|
|
|
|
requeueEndpoint(agencyEndpoint, true);
|
|
return false;
|
|
}
|
|
|
|
if (result._statusCode ==
|
|
(int)arangodb::rest::HttpResponse::TEMPORARY_REDIRECT) {
|
|
// sometimes the agency will return a 307 (temporary redirect)
|
|
// in this case we have to pick it up and use the new location returned
|
|
|
|
// put the current connection to the end of the list
|
|
requeueEndpoint(agencyEndpoint, false);
|
|
|
|
// a 307 does not count as a success
|
|
TRI_ASSERT(!result.successful());
|
|
|
|
std::string endpoint;
|
|
|
|
// transform location into an endpoint
|
|
if (result.location().substr(0, 7) == "http://") {
|
|
endpoint = "tcp://" + result.location().substr(7);
|
|
} else if (result.location().substr(0, 8) == "https://") {
|
|
endpoint = "ssl://" + result.location().substr(8);
|
|
} else {
|
|
// invalid endpoint, return an error
|
|
return false;
|
|
}
|
|
|
|
size_t const delim = endpoint.find('/', 6);
|
|
|
|
if (delim == std::string::npos) {
|
|
// invalid location header
|
|
return false;
|
|
}
|
|
|
|
realUrl = endpoint.substr(delim);
|
|
endpoint = endpoint.substr(0, delim);
|
|
|
|
if (!AgencyComm::hasEndpoint(endpoint)) {
|
|
// redirection to an unknown endpoint
|
|
if (_addNewEndpoints) {
|
|
AgencyComm::addEndpoint(endpoint, true);
|
|
|
|
LOG(INFO) << "adding agency-endpoint '" << endpoint.c_str() << "'";
|
|
|
|
// re-check the new endpoint
|
|
if (AgencyComm::hasEndpoint(endpoint)) {
|
|
++numEndpoints;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
LOG(ERR) << "found redirection to unknown endpoint '" << endpoint.c_str() << "'. Will not follow!";
|
|
|
|
// this is an error
|
|
return false;
|
|
}
|
|
|
|
forceEndpoint = endpoint;
|
|
|
|
// if we get here, we'll just use the next endpoint from the list
|
|
continue;
|
|
}
|
|
|
|
forceEndpoint = "";
|
|
|
|
// we can stop iterating over endpoints if the operation succeeded,
|
|
// if a watch timed out or
|
|
// if the reason for failure was a client-side error
|
|
bool const canAbort =
|
|
result.successful() || (isWatch && result._statusCode == 0) ||
|
|
(result._statusCode >= 400 && result._statusCode <= 499);
|
|
|
|
requeueEndpoint(agencyEndpoint, canAbort);
|
|
|
|
if (canAbort) {
|
|
// we're done
|
|
return true;
|
|
}
|
|
|
|
// otherwise, try next
|
|
}
|
|
|
|
// if we get here, we could not send data to any endpoint successfully
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief sends data to the URL
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool AgencyComm::send(arangodb::httpclient::GeneralClientConnection* connection,
|
|
arangodb::rest::HttpRequest::HttpRequestType method,
|
|
double timeout, AgencyCommResult& result,
|
|
std::string const& url, std::string const& body) {
|
|
TRI_ASSERT(connection != nullptr);
|
|
|
|
if (method == arangodb::rest::HttpRequest::HTTP_REQUEST_GET ||
|
|
method == arangodb::rest::HttpRequest::HTTP_REQUEST_HEAD ||
|
|
method == arangodb::rest::HttpRequest::HTTP_REQUEST_DELETE) {
|
|
TRI_ASSERT(body.empty());
|
|
}
|
|
|
|
TRI_ASSERT(!url.empty());
|
|
|
|
result._connected = false;
|
|
result._statusCode = 0;
|
|
|
|
LOG(TRACE) << "sending " << arangodb::rest::HttpRequest::translateMethod(method).c_str() << " request to agency at endpoint '" << connection->getEndpoint()->getSpecification().c_str() << "', url '" << url.c_str() << "': " << body.c_str();
|
|
|
|
arangodb::httpclient::SimpleHttpClient client(connection, timeout, false);
|
|
|
|
client.keepConnectionOnDestruction(true);
|
|
|
|
// set up headers
|
|
std::map<std::string, std::string> headers;
|
|
if (method == arangodb::rest::HttpRequest::HTTP_REQUEST_PUT ||
|
|
method == arangodb::rest::HttpRequest::HTTP_REQUEST_POST) {
|
|
// the agency needs this content-type for the body
|
|
headers["content-type"] = "application/x-www-form-urlencoded";
|
|
}
|
|
|
|
// send the actual request
|
|
std::unique_ptr<arangodb::httpclient::SimpleHttpResult> response(
|
|
client.request(method, url, body.c_str(), body.size(), headers));
|
|
|
|
if (response == nullptr) {
|
|
connection->disconnect();
|
|
result._message = "could not send request to agency";
|
|
LOG(TRACE) << "sending request to agency failed";
|
|
|
|
return false;
|
|
}
|
|
|
|
if (!response->isComplete()) {
|
|
connection->disconnect();
|
|
result._message = "sending request to agency failed";
|
|
LOG(TRACE) << "sending request to agency failed";
|
|
|
|
return false;
|
|
}
|
|
|
|
result._connected = true;
|
|
|
|
if (response->getHttpReturnCode() ==
|
|
(int)arangodb::rest::HttpResponse::TEMPORARY_REDIRECT) {
|
|
// temporary redirect. now save location header
|
|
|
|
bool found = false;
|
|
result._location = response->getHeaderField("location", found);
|
|
|
|
LOG(TRACE) << "redirecting to location: '" << result._location.c_str() << "'";
|
|
|
|
if (!found) {
|
|
// a 307 without a location header does not make any sense
|
|
connection->disconnect();
|
|
result._message = "invalid agency response (header missing)";
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
result._message = response->getHttpReturnMessage();
|
|
basics::StringBuffer& sb = response->getBody();
|
|
result._body = std::string(sb.c_str(), sb.length());
|
|
result._index = 0;
|
|
result._statusCode = response->getHttpReturnCode();
|
|
|
|
bool found = false;
|
|
std::string lastIndex = response->getHeaderField("x-etcd-index", found);
|
|
if (found) {
|
|
result._index = arangodb::basics::StringUtils::uint64(lastIndex);
|
|
}
|
|
|
|
LOG(TRACE) << "request to agency returned status code " << result._statusCode << ", message: '" << result._message.c_str() << "', body: '" << result._body.c_str() << "'";
|
|
|
|
if (result.successful()) {
|
|
return true;
|
|
}
|
|
|
|
connection->disconnect();
|
|
return false;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief encode a key for etcd
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::encodeKey(std::string const& s) {
|
|
std::string::const_iterator i;
|
|
std::string res;
|
|
for (i = s.begin(); i != s.end(); ++i) {
|
|
if (*i == '_') {
|
|
res.push_back('@');
|
|
res.push_back('U');
|
|
} else if (*i == '@') {
|
|
res.push_back('@');
|
|
res.push_back('@');
|
|
} else {
|
|
res.push_back(*i);
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief decode a key for etcd
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string AgencyComm::decodeKey(std::string const& s) {
|
|
std::string::const_iterator i;
|
|
std::string res;
|
|
for (i = s.begin(); i != s.end(); ++i) {
|
|
if (*i == '@') {
|
|
++i;
|
|
if (*i == 'U') {
|
|
res.push_back('_');
|
|
} else {
|
|
res.push_back('@');
|
|
}
|
|
} else {
|
|
res.push_back(*i);
|
|
}
|
|
}
|
|
return res;
|
|
}
|