2018-07-11 16:11:19 +00:00
|
|
|
#ifndef LLARP_SERVICE_CONTEXT_HPP
|
|
|
|
#define LLARP_SERVICE_CONTEXT_HPP
|
2018-12-12 02:15:08 +00:00
|
|
|
|
2018-12-12 01:12:59 +00:00
|
|
|
#include <handlers/tun.hpp>
|
2019-01-11 01:42:02 +00:00
|
|
|
#include <net/net.hpp>
|
2018-12-12 02:15:08 +00:00
|
|
|
#include <service/config.hpp>
|
|
|
|
#include <service/endpoint.hpp>
|
2018-12-12 01:12:59 +00:00
|
|
|
|
2018-07-11 16:11:19 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
/// holds all the hidden service endpoints we own
|
2019-04-19 15:10:26 +00:00
|
|
|
struct Context
|
2018-07-11 16:11:19 +00:00
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
explicit Context(AbstractRouter *r);
|
2018-07-11 16:11:19 +00:00
|
|
|
~Context();
|
|
|
|
|
|
|
|
void
|
2018-11-12 16:43:40 +00:00
|
|
|
Tick(llarp_time_t now);
|
2018-07-11 16:11:19 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// stop all held services
|
|
|
|
bool
|
|
|
|
StopAll();
|
|
|
|
|
2019-02-11 17:14:43 +00:00
|
|
|
util::StatusObject
|
2019-04-19 15:10:26 +00:00
|
|
|
ExtractStatus() const;
|
2019-02-08 19:43:25 +00:00
|
|
|
|
2018-10-03 10:44:58 +00:00
|
|
|
bool
|
|
|
|
hasEndpoints();
|
|
|
|
|
2018-10-23 21:28:01 +00:00
|
|
|
bool
|
2019-04-22 18:35:19 +00:00
|
|
|
FindBestAddressFor(const AlignedBuffer< 32 > &addr, bool isSNode,
|
2019-06-11 16:44:05 +00:00
|
|
|
huint128_t &);
|
2018-10-23 18:00:55 +00:00
|
|
|
|
2019-01-28 15:26:35 +00:00
|
|
|
/// function visitor returns false to prematurely break iteration
|
|
|
|
void
|
2019-04-23 16:13:22 +00:00
|
|
|
ForEachService(
|
|
|
|
std::function< bool(const std::string &, const Endpoint_ptr &) >
|
|
|
|
visit) const;
|
2019-01-28 15:26:35 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// add default endpoint with options
|
2018-10-03 10:44:58 +00:00
|
|
|
bool
|
2018-11-26 13:29:45 +00:00
|
|
|
AddDefaultEndpoint(
|
|
|
|
const std::unordered_multimap< std::string, std::string > &opts);
|
2018-10-03 10:44:58 +00:00
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// add endpoint via config
|
2018-07-11 16:11:19 +00:00
|
|
|
bool
|
2018-11-11 13:14:19 +00:00
|
|
|
AddEndpoint(const Config::section_t &conf, bool autostart = false);
|
|
|
|
|
2018-12-24 16:09:05 +00:00
|
|
|
/// stop and remove an endpoint by name
|
|
|
|
/// return false if we don't have the hidden service with that name
|
|
|
|
bool
|
|
|
|
RemoveEndpoint(const std::string &name);
|
|
|
|
|
2018-11-11 13:14:19 +00:00
|
|
|
bool
|
|
|
|
StartAll();
|
2018-07-11 16:11:19 +00:00
|
|
|
|
|
|
|
private:
|
2019-02-11 19:45:42 +00:00
|
|
|
AbstractRouter *m_Router;
|
2019-04-23 14:47:23 +00:00
|
|
|
std::unordered_map< std::string, std::shared_ptr< Endpoint > >
|
2018-08-17 19:49:58 +00:00
|
|
|
m_Endpoints;
|
2019-04-23 14:47:23 +00:00
|
|
|
std::list< std::shared_ptr< Endpoint > > m_Stopped;
|
2018-07-11 16:11:19 +00:00
|
|
|
};
|
2018-07-17 04:37:50 +00:00
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|
2018-08-17 19:49:58 +00:00
|
|
|
#endif
|