2021-05-12 10:39:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Server/IServer.h>
|
|
|
|
#include <daemon/BaseDaemon.h>
|
|
|
|
|
|
|
|
namespace Poco
|
|
|
|
{
|
|
|
|
namespace Net
|
|
|
|
{
|
|
|
|
class ServerSocket;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2021-05-17 09:00:31 +00:00
|
|
|
/// standalone clickhouse-keeper server (replacement for ZooKeeper). Uses the same
|
2021-05-17 08:58:42 +00:00
|
|
|
/// config as clickhouse-server. Serves requests on TCP ports with or without
|
|
|
|
/// SSL using ZooKeeper protocol.
|
2021-05-12 10:39:07 +00:00
|
|
|
class Keeper : public BaseDaemon, public IServer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using ServerApplication::run;
|
|
|
|
|
|
|
|
Poco::Util::LayeredConfiguration & config() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::config();
|
|
|
|
}
|
|
|
|
|
|
|
|
Poco::Logger & logger() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::logger();
|
|
|
|
}
|
|
|
|
|
|
|
|
ContextPtr context() const override
|
|
|
|
{
|
|
|
|
return global_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isCancelled() const override
|
|
|
|
{
|
|
|
|
return BaseDaemon::isCancelled();
|
|
|
|
}
|
|
|
|
|
|
|
|
void defineOptions(Poco::Util::OptionSet & _options) override;
|
|
|
|
|
|
|
|
protected:
|
2021-05-12 13:04:34 +00:00
|
|
|
void logRevision() const override;
|
|
|
|
|
2021-05-12 10:39:07 +00:00
|
|
|
int run() override;
|
|
|
|
|
|
|
|
void initialize(Application & self) override;
|
|
|
|
|
|
|
|
void uninitialize() override;
|
|
|
|
|
|
|
|
int main(const std::vector<std::string> & args) override;
|
|
|
|
|
2021-05-12 13:04:34 +00:00
|
|
|
std::string getDefaultConfigFileName() const override;
|
2021-05-12 10:39:07 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
ContextPtr global_context;
|
|
|
|
|
|
|
|
Poco::Net::SocketAddress socketBindListen(Poco::Net::ServerSocket & socket, const std::string & host, UInt16 port, [[maybe_unused]] bool secure = false) const;
|
|
|
|
|
|
|
|
using CreateServerFunc = std::function<void(UInt16)>;
|
|
|
|
void createServer(const std::string & listen_host, const char * port_name, bool listen_try, CreateServerFunc && func) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|