2017-05-21 12:18:16 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-10-20 13:12:15 +00:00
|
|
|
#include "Websocket.h"
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
#include <set>
|
2016-12-07 16:52:20 +00:00
|
|
|
#include <functional>
|
2016-10-20 13:12:15 +00:00
|
|
|
|
|
|
|
#include <websocketpp/config/asio_no_tls.hpp>
|
|
|
|
#include <websocketpp/server.hpp>
|
|
|
|
#include <boost/property_tree/ini_parser.hpp>
|
|
|
|
#define GCC47_BOOST149 ((BOOST_VERSION == 104900) && (__GNUC__ == 4) && (__GNUC_MINOR__ >= 7))
|
|
|
|
#if !GCC47_BOOST149
|
|
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2016-11-01 14:26:40 +00:00
|
|
|
namespace event
|
|
|
|
{
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
typedef websocketpp::server<websocketpp::config::asio> ServerImpl;
|
|
|
|
typedef websocketpp::connection_hdl ServerConn;
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
class WebsocketServerImpl : public EventListener
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
typedef ServerImpl::message_ptr MessagePtr;
|
|
|
|
public:
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
WebsocketServerImpl(const std::string & addr, int port) :
|
|
|
|
m_run(false),
|
|
|
|
m_ws_thread(nullptr),
|
|
|
|
m_ev_thread(nullptr),
|
|
|
|
m_WebsocketTicker(m_Service)
|
2016-11-01 14:26:40 +00:00
|
|
|
{
|
|
|
|
m_server.init_asio();
|
|
|
|
m_server.set_open_handler(std::bind(&WebsocketServerImpl::ConnOpened, this, std::placeholders::_1));
|
|
|
|
m_server.set_close_handler(std::bind(&WebsocketServerImpl::ConnClosed, this, std::placeholders::_1));
|
|
|
|
m_server.set_message_handler(std::bind(&WebsocketServerImpl::OnConnMessage, this, std::placeholders::_1, std::placeholders::_2));
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
m_server.listen(boost::asio::ip::address::from_string(addr), port);
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
~WebsocketServerImpl()
|
|
|
|
{
|
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void Start() {
|
|
|
|
m_run = true;
|
|
|
|
m_server.start_accept();
|
2016-12-07 16:52:20 +00:00
|
|
|
m_ws_thread = new std::thread([&] () {
|
2016-11-01 14:26:40 +00:00
|
|
|
while(m_run) {
|
2017-05-21 12:18:16 +00:00
|
|
|
try {
|
2016-11-01 14:26:40 +00:00
|
|
|
m_server.run();
|
|
|
|
} catch (std::exception & e ) {
|
|
|
|
LogPrint(eLogError, "Websocket server: ", e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-12-07 16:52:20 +00:00
|
|
|
m_ev_thread = new std::thread([&] () {
|
|
|
|
while(m_run) {
|
2017-05-21 12:18:16 +00:00
|
|
|
try {
|
2016-12-07 16:52:20 +00:00
|
|
|
m_Service.run();
|
|
|
|
break;
|
|
|
|
} catch (std::exception & e ) {
|
|
|
|
LogPrint(eLogError, "Websocket service: ", e.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ScheduleTick();
|
2016-11-01 14:26:40 +00:00
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void Stop() {
|
|
|
|
m_run = false;
|
2016-12-07 16:52:20 +00:00
|
|
|
m_Service.stop();
|
2016-11-01 14:26:40 +00:00
|
|
|
m_server.stop();
|
2016-12-07 16:52:20 +00:00
|
|
|
|
|
|
|
if(m_ev_thread) {
|
|
|
|
m_ev_thread->join();
|
|
|
|
delete m_ev_thread;
|
2016-11-01 14:26:40 +00:00
|
|
|
}
|
2016-12-07 16:52:20 +00:00
|
|
|
m_ev_thread = nullptr;
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
if(m_ws_thread) {
|
|
|
|
m_ws_thread->join();
|
|
|
|
delete m_ws_thread;
|
|
|
|
}
|
|
|
|
m_ws_thread = nullptr;
|
2016-11-01 14:26:40 +00:00
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void ConnOpened(ServerConn c)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(m_connsMutex);
|
|
|
|
m_conns.insert(c);
|
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void ConnClosed(ServerConn c)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(m_connsMutex);
|
|
|
|
m_conns.erase(c);
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void OnConnMessage(ServerConn conn, ServerImpl::message_ptr msg)
|
|
|
|
{
|
|
|
|
(void) conn;
|
|
|
|
(void) msg;
|
|
|
|
}
|
2016-12-07 16:52:20 +00:00
|
|
|
|
|
|
|
void HandleTick(const boost::system::error_code & ec)
|
|
|
|
{
|
|
|
|
|
|
|
|
if(ec != boost::asio::error::operation_aborted)
|
|
|
|
LogPrint(eLogError, "Websocket ticker: ", ec.message());
|
|
|
|
// pump collected events to us
|
|
|
|
i2p::event::core.PumpCollected(this);
|
|
|
|
ScheduleTick();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScheduleTick()
|
|
|
|
{
|
|
|
|
LogPrint(eLogDebug, "Websocket schedule tick");
|
|
|
|
boost::posix_time::seconds dlt(1);
|
|
|
|
m_WebsocketTicker.expires_from_now(dlt);
|
2017-05-21 12:18:16 +00:00
|
|
|
m_WebsocketTicker.async_wait(std::bind(&WebsocketServerImpl::HandleTick, this, std::placeholders::_1));
|
2016-12-07 16:52:20 +00:00
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
/** @brief called from m_ev_thread */
|
|
|
|
void HandlePumpEvent(const EventType & ev, const uint64_t & val)
|
|
|
|
{
|
|
|
|
EventType e;
|
|
|
|
for (const auto & i : ev)
|
|
|
|
e[i.first] = i.second;
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
e["number"] = std::to_string(val);
|
|
|
|
HandleEvent(e);
|
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
/** @brief called from m_ws_thread */
|
2016-11-01 14:26:40 +00:00
|
|
|
void HandleEvent(const EventType & ev)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(m_connsMutex);
|
|
|
|
boost::property_tree::ptree event;
|
|
|
|
for (const auto & item : ev) {
|
|
|
|
event.put(item.first, item.second);
|
|
|
|
}
|
|
|
|
std::ostringstream ss;
|
|
|
|
write_json(ss, event);
|
|
|
|
std::string s = ss.str();
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
ConnList::iterator it;
|
|
|
|
for (it = m_conns.begin(); it != m_conns.end(); ++it) {
|
|
|
|
ServerImpl::connection_ptr con = m_server.get_con_from_hdl(*it);
|
|
|
|
con->send(s);
|
|
|
|
}
|
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
private:
|
|
|
|
typedef std::set<ServerConn, std::owner_less<ServerConn> > ConnList;
|
|
|
|
bool m_run;
|
2016-12-07 16:52:20 +00:00
|
|
|
std::thread * m_ws_thread;
|
|
|
|
std::thread * m_ev_thread;
|
2016-11-01 14:26:40 +00:00
|
|
|
std::mutex m_connsMutex;
|
|
|
|
ConnList m_conns;
|
|
|
|
ServerImpl m_server;
|
2016-12-07 16:52:20 +00:00
|
|
|
boost::asio::io_service m_Service;
|
|
|
|
boost::asio::deadline_timer m_WebsocketTicker;
|
2016-11-01 14:26:40 +00:00
|
|
|
};
|
2016-10-20 13:12:15 +00:00
|
|
|
|
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
WebsocketServer::WebsocketServer(const std::string & addr, int port) : m_impl(new WebsocketServerImpl(addr, port)) {}
|
|
|
|
WebsocketServer::~WebsocketServer()
|
|
|
|
{
|
|
|
|
delete m_impl;
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void WebsocketServer::Start()
|
|
|
|
{
|
|
|
|
m_impl->Start();
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void WebsocketServer::Stop()
|
|
|
|
{
|
|
|
|
m_impl->Stop();
|
|
|
|
}
|
2017-05-21 12:18:16 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
EventListener * WebsocketServer::ToListener()
|
|
|
|
{
|
|
|
|
return m_impl;
|
|
|
|
}
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
}
|
2017-04-21 10:33:45 +00:00
|
|
|
#endif
|