2014-03-21 13:42:14 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/IO/ReadBuffer.h>
|
|
|
|
|
#include <DB/IO/WriteBuffer.h>
|
|
|
|
|
#include <DB/Core/Types.h>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <Poco/Net/HTMLForm.h>
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Обработчик запросов от других серверов.
|
|
|
|
|
*/
|
|
|
|
|
class InterserverIOEndpoint
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual void processQuery(const Poco::Net::HTMLForm & params, WriteBuffer & out) = 0;
|
|
|
|
|
|
|
|
|
|
virtual ~InterserverIOEndpoint() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef Poco::SharedPtr<InterserverIOEndpoint> InterserverIOEndpointPtr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Сюда можно зарегистрировать сервис, обрататывающий запросы от других серверов.
|
2014-03-22 14:44:44 +00:00
|
|
|
|
* Используется для передачи кусков в ReplicatedMergeTree.
|
2014-03-21 13:42:14 +00:00
|
|
|
|
*/
|
|
|
|
|
class InterserverIOHandler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void addEndpoint(const String & name, InterserverIOEndpointPtr endpoint)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
if (endpoint_map.count(name))
|
|
|
|
|
throw Exception("Duplicate interserver IO endpoint: " + name, ErrorCodes::DUPLICATE_INTERSERVER_IO_ENDPOINT);
|
|
|
|
|
endpoint_map[name] = endpoint;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void removeEndpoint(const String & name)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
if (!endpoint_map.count(name))
|
|
|
|
|
throw Exception("No interserver IO endpoint named " + name, ErrorCodes::NO_SUCH_INTERSERVER_IO_ENDPOINT);
|
|
|
|
|
endpoint_map.erase(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
InterserverIOEndpointPtr getEndpoint(const String & name)
|
|
|
|
|
{
|
|
|
|
|
Poco::ScopedLock<Poco::FastMutex> lock(mutex);
|
|
|
|
|
if (!endpoint_map.count(name))
|
|
|
|
|
throw Exception("No interserver IO endpoint named " + name, ErrorCodes::NO_SUCH_INTERSERVER_IO_ENDPOINT);
|
|
|
|
|
return endpoint_map[name];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
typedef std::map<String, InterserverIOEndpointPtr> EndpointMap;
|
|
|
|
|
|
|
|
|
|
EndpointMap endpoint_map;
|
|
|
|
|
Poco::FastMutex mutex;
|
|
|
|
|
};
|
|
|
|
|
|
2014-03-22 14:44:44 +00:00
|
|
|
|
/// В конструкторе вызывает addEndpoint, в деструкторе - removeEndpoint.
|
|
|
|
|
class InterserverIOEndpointHolder
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-04-02 07:59:43 +00:00
|
|
|
|
InterserverIOEndpointHolder(const String & name_, InterserverIOEndpointPtr endpoint_, InterserverIOHandler & handler_)
|
|
|
|
|
: name(name_), endpoint(endpoint_), handler(handler_)
|
2014-03-22 14:44:44 +00:00
|
|
|
|
{
|
|
|
|
|
handler.addEndpoint(name, endpoint);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-02 07:59:43 +00:00
|
|
|
|
InterserverIOEndpointPtr getEndpoint()
|
|
|
|
|
{
|
|
|
|
|
return endpoint;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-22 14:44:44 +00:00
|
|
|
|
~InterserverIOEndpointHolder()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
handler.removeEndpoint(name);
|
|
|
|
|
}
|
|
|
|
|
catch (...)
|
|
|
|
|
{
|
|
|
|
|
tryLogCurrentException("~InterserverIOEndpointHolder");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
String name;
|
2014-04-02 07:59:43 +00:00
|
|
|
|
InterserverIOEndpointPtr endpoint;
|
2014-03-22 14:44:44 +00:00
|
|
|
|
InterserverIOHandler & handler;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef Poco::SharedPtr<InterserverIOEndpointHolder> InterserverIOEndpointHolderPtr;
|
|
|
|
|
|
2014-03-21 13:42:14 +00:00
|
|
|
|
}
|