danicoin/src/Rpc/HttpServer.h
2016-01-18 15:33:29 +00:00

49 lines
1.1 KiB
C++
Executable file

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <unordered_set>
#include <HTTP/HttpRequest.h>
#include <HTTP/HttpResponse.h>
#include <System/ContextGroup.h>
#include <System/Dispatcher.h>
#include <System/TcpListener.h>
#include <System/TcpConnection.h>
#include <System/Event.h>
#include <Logging/LoggerRef.h>
namespace CryptoNote {
class HttpServer {
public:
HttpServer(System::Dispatcher& dispatcher, Logging::ILogger& log);
void start(const std::string& address, uint16_t port);
void stop();
virtual void processRequest(const HttpRequest& request, HttpResponse& response) = 0;
protected:
System::Dispatcher& m_dispatcher;
private:
void acceptLoop();
void connectionHandler(System::TcpConnection&& conn);
System::ContextGroup workingContextGroup;
Logging::LoggerRef logger;
System::TcpListener m_listener;
std::unordered_set<System::TcpConnection*> m_connections;
};
}