2018-10-24 18:02:42 +00:00
|
|
|
#ifndef __ABYSS_SERVER_HPP__
|
|
|
|
#define __ABYSS_SERVER_HPP__
|
|
|
|
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <abyss/json.hpp>
|
2019-01-11 01:59:44 +00:00
|
|
|
#include <ev/ev.h>
|
|
|
|
#include <util/logic.hpp>
|
2019-01-10 19:41:51 +00:00
|
|
|
#include <util/string_view.hpp>
|
|
|
|
#include <util/time.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-10-24 18:02:42 +00:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2018-10-25 17:03:25 +00:00
|
|
|
#include <unordered_map>
|
2018-10-24 18:02:42 +00:00
|
|
|
|
|
|
|
namespace abyss
|
|
|
|
{
|
2018-11-01 12:47:14 +00:00
|
|
|
namespace httpd
|
2018-10-24 18:02:42 +00:00
|
|
|
{
|
|
|
|
struct ConnImpl;
|
|
|
|
|
|
|
|
struct IRPCHandler
|
|
|
|
{
|
2018-11-22 23:59:03 +00:00
|
|
|
using Method_t = std::string;
|
|
|
|
using Params = json::Value;
|
2019-02-08 22:44:21 +00:00
|
|
|
using Response = json::Writer;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
|
|
|
IRPCHandler(ConnImpl* impl);
|
|
|
|
|
|
|
|
virtual bool
|
2018-10-26 13:02:15 +00:00
|
|
|
HandleJSONRPC(Method_t method, const Params& params,
|
|
|
|
Response& response) = 0;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
2018-11-06 22:48:17 +00:00
|
|
|
virtual ~IRPCHandler();
|
2018-10-24 18:02:42 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
ShouldClose(llarp_time_t now) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
ConnImpl* m_Impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BaseReqHandler
|
|
|
|
{
|
|
|
|
BaseReqHandler(llarp_time_t req_timeout);
|
|
|
|
~BaseReqHandler();
|
|
|
|
|
|
|
|
bool
|
2018-12-10 14:14:55 +00:00
|
|
|
ServeAsync(llarp_ev_loop* loop, llarp::Logic* logic,
|
2018-10-24 18:02:42 +00:00
|
|
|
const sockaddr* bindaddr);
|
|
|
|
|
|
|
|
void
|
|
|
|
RemoveConn(IRPCHandler* handler);
|
|
|
|
|
2018-11-02 17:08:01 +00:00
|
|
|
/// close the handler and acceptor
|
|
|
|
void
|
|
|
|
Close();
|
|
|
|
|
2018-10-29 16:48:36 +00:00
|
|
|
llarp_time_t
|
|
|
|
now() const
|
|
|
|
{
|
|
|
|
return llarp_ev_loop_time_now_ms(m_loop);
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:02:42 +00:00
|
|
|
protected:
|
|
|
|
virtual IRPCHandler*
|
2018-11-02 18:02:45 +00:00
|
|
|
CreateHandler(ConnImpl* connimpl) = 0;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void
|
|
|
|
OnTick(llarp_tcp_acceptor*);
|
|
|
|
|
|
|
|
void
|
|
|
|
Tick();
|
|
|
|
|
|
|
|
static void
|
|
|
|
OnAccept(struct llarp_tcp_acceptor*, struct llarp_tcp_conn*);
|
|
|
|
|
|
|
|
llarp_ev_loop* m_loop;
|
2018-12-10 14:14:55 +00:00
|
|
|
llarp::Logic* m_Logic;
|
2018-10-24 18:02:42 +00:00
|
|
|
llarp_tcp_acceptor m_acceptor;
|
|
|
|
std::list< std::unique_ptr< IRPCHandler > > m_Conns;
|
|
|
|
llarp_time_t m_ReqTimeout;
|
|
|
|
};
|
2018-11-01 12:47:14 +00:00
|
|
|
} // namespace httpd
|
2018-10-24 18:02:42 +00:00
|
|
|
} // namespace abyss
|
|
|
|
|
|
|
|
#endif
|