ClickHouse/programs/server/Server.h

76 lines
1.8 KiB
C++
Raw Normal View History

2012-03-09 03:06:09 +00:00
#pragma once
#include <Server/IServer.h>
2017-08-09 11:57:09 +00:00
#include <daemon/BaseDaemon.h>
2012-03-09 03:06:09 +00:00
/** Server provides three interfaces:
* 1. HTTP - simple interface for any applications.
* 2. TCP - interface for native clickhouse-client and for server to server internal communications.
* More rich and efficient, but less compatible
* - data is transferred by columns;
* - data is transferred compressed;
* Allows to get more information in response.
* 3. Interserver HTTP - for replication.
2012-03-09 03:06:09 +00:00
*/
2020-11-11 13:07:06 +00:00
namespace Poco
{
namespace Net
{
class ServerSocket;
}
}
2012-03-09 03:06:09 +00:00
namespace DB
{
2017-08-09 11:57:09 +00:00
class Server : public BaseDaemon, public IServer
2012-03-09 03:06:09 +00:00
{
public:
2019-02-02 13:17:55 +00:00
using ServerApplication::run;
2017-08-09 11:57:09 +00:00
Poco::Util::LayeredConfiguration & config() const override
{
return BaseDaemon::config();
}
Poco::Logger & logger() const override
{
return BaseDaemon::logger();
}
Context & context() const override
{
2020-04-17 12:58:52 +00:00
return *global_context_ptr;
2017-08-09 11:57:09 +00:00
}
2015-10-05 01:26:43 +00:00
2017-08-09 14:33:07 +00:00
bool isCancelled() const override
{
return BaseDaemon::isCancelled();
}
2019-02-02 13:17:55 +00:00
void defineOptions(Poco::Util::OptionSet & _options) override;
protected:
2019-02-02 13:17:55 +00:00
int run() override;
void initialize(Application & self) override;
2015-10-05 01:26:43 +00:00
void uninitialize() override;
2012-03-09 03:06:09 +00:00
int main(const std::vector<std::string> & args) override;
std::string getDefaultCorePath() const override;
2017-08-09 11:57:09 +00:00
private:
2020-04-17 12:58:52 +00:00
Context * global_context_ptr = nullptr;
2020-11-11 13:07:06 +00:00
2020-11-23 20:22:04 +00:00
Poco::Net::SocketAddress socketBindListen(Poco::Net::ServerSocket & socket, const std::string & host, UInt16 port, [[maybe_unused]] bool secure = false) const;
2020-11-11 13:07:06 +00:00
using CreateServerFunc = std::function<void(UInt16)>;
2020-11-23 20:22:04 +00:00
void createServer(const std::string & listen_host, const char * port_name, bool listen_try, CreateServerFunc && func) const;
2012-03-09 03:06:09 +00:00
};
}